]> git.sesse.net Git - vlc/blob - modules/services_discovery/sap.c
de9a933442c1aa5987bdbbd57a866d5260e98d3f
[vlc] / modules / services_discovery / sap.c
1 /*****************************************************************************
2  * sap.c :  SAP interface module
3  *****************************************************************************
4  * Copyright (C) 2004-2005 the VideoLAN team
5  * Copyright © 2007 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Clément Stenac <zorglub@videolan.org>
9  *          Rémi Denis-Courmont
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Includes
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <assert.h>
36
37 #include <vlc_demux.h>
38 #include <vlc_services_discovery.h>
39
40 #include <vlc_network.h>
41 #include <vlc_charset.h>
42
43 #include <ctype.h>
44 #include <errno.h>
45
46 #ifdef HAVE_UNISTD_H
47 #    include <unistd.h>
48 #endif
49 #ifdef HAVE_SYS_TIME_H
50 #    include <sys/time.h>
51 #endif
52 #ifdef HAVE_POLL
53 # include <poll.h>
54 #endif
55
56 #ifdef HAVE_ZLIB_H
57 #   include <zlib.h>
58 #endif
59
60 #ifndef WIN32
61 #   include <net/if.h>
62 #endif
63
64 /************************************************************************
65  * Macros and definitions
66  ************************************************************************/
67
68 #define MAX_LINE_LENGTH 256
69
70 /* SAP is always on that port */
71 #define SAP_PORT 9875
72 /* Global-scope SAP address */
73 #define SAP_V4_GLOBAL_ADDRESS   "224.2.127.254"
74 /* Organization-local SAP address */
75 #define SAP_V4_ORG_ADDRESS      "239.195.255.255"
76 /* Local (smallest non-link-local scope) SAP address */
77 #define SAP_V4_LOCAL_ADDRESS    "239.255.255.255"
78 /* Link-local SAP address */
79 #define SAP_V4_LINK_ADDRESS     "224.0.0.255"
80 #define ADD_SESSION 1
81
82 /*****************************************************************************
83  * Module descriptor
84  *****************************************************************************/
85 #define SAP_ADDR_TEXT N_( "SAP multicast address" )
86 #define SAP_ADDR_LONGTEXT N_( "The SAP module normally chooses itself the " \
87                               "right addresses to listen to. However, you " \
88                               "can specify a specific address." )
89 #define SAP_IPV4_TEXT N_( "IPv4 SAP" )
90 #define SAP_IPV4_LONGTEXT N_( \
91       "Listen to IPv4 announcements on the standard addresses." )
92 #define SAP_IPV6_TEXT N_( "IPv6 SAP" )
93 #define SAP_IPV6_LONGTEXT N_( \
94       "Listen to IPv6 announcements on the standard addresses." )
95 #define SAP_SCOPE_TEXT N_( "IPv6 SAP scope" )
96 #define SAP_SCOPE_LONGTEXT N_( \
97        "Scope for IPv6 announcements (default is 8)." )
98 #define SAP_TIMEOUT_TEXT N_( "SAP timeout (seconds)" )
99 #define SAP_TIMEOUT_LONGTEXT N_( \
100        "Delay after which SAP items get deleted if no new announcement " \
101        "is received." )
102 #define SAP_PARSE_TEXT N_( "Try to parse the announce" )
103 #define SAP_PARSE_LONGTEXT N_( \
104        "This enables actual parsing of the announces by the SAP module. " \
105        "Otherwise, all announcements are parsed by the \"live555\" " \
106        "(RTP/RTSP) module." )
107 #define SAP_STRICT_TEXT N_( "SAP Strict mode" )
108 #define SAP_STRICT_LONGTEXT N_( \
109        "When this is set, the SAP parser will discard some non-compliant " \
110        "announcements." )
111 #define SAP_CACHE_TEXT N_("Use SAP cache")
112 #define SAP_CACHE_LONGTEXT N_( \
113        "This enables a SAP caching mechanism. " \
114        "This will result in lower SAP startup time, but you could end up " \
115        "with items corresponding to legacy streams." )
116
117 /* Callbacks */
118     static int  Open ( vlc_object_t * );
119     static void Close( vlc_object_t * );
120     static int  OpenDemux ( vlc_object_t * );
121     static void CloseDemux ( vlc_object_t * );
122
123 vlc_module_begin ()
124     set_shortname( N_("SAP"))
125     set_description( N_("SAP Announcements") )
126     set_category( CAT_PLAYLIST )
127     set_subcategory( SUBCAT_PLAYLIST_SD )
128
129     add_string( "sap-addr", NULL, NULL,
130                 SAP_ADDR_TEXT, SAP_ADDR_LONGTEXT, true );
131     add_bool( "sap-ipv4", 1 , NULL,
132                SAP_IPV4_TEXT,SAP_IPV4_LONGTEXT, true );
133     add_bool( "sap-ipv6", 1 , NULL,
134               SAP_IPV6_TEXT, SAP_IPV6_LONGTEXT, true );
135     add_integer( "sap-timeout", 1800, NULL,
136                  SAP_TIMEOUT_TEXT, SAP_TIMEOUT_LONGTEXT, true );
137     add_bool( "sap-parse", 1 , NULL,
138                SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, true );
139     add_bool( "sap-strict", 0 , NULL,
140                SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, true );
141 #if 0
142     add_bool( "sap-cache", 0 , NULL,
143                SAP_CACHE_TEXT,SAP_CACHE_LONGTEXT, true );
144 #endif
145     add_obsolete_bool( "sap-timeshift" ) /* Redumdant since 1.0.0 */
146
147     set_capability( "services_discovery", 0 )
148     set_callbacks( Open, Close )
149
150     add_submodule ()
151         set_description( N_("SDP Descriptions parser") )
152         add_shortcut( "sdp" )
153         set_capability( "demux", 51 )
154         set_callbacks( OpenDemux, CloseDemux )
155 vlc_module_end ()
156
157
158 /*****************************************************************************
159  * Local structures
160  *****************************************************************************/
161
162 typedef struct sdp_t sdp_t;
163 typedef struct attribute_t attribute_t;
164 typedef struct sap_announce_t sap_announce_t;
165
166
167 struct sdp_media_t
168 {
169     struct sdp_t           *parent;
170     char                   *fmt;
171     struct sockaddr_storage addr;
172     socklen_t               addrlen;
173     unsigned                n_addr;
174     int           i_attributes;
175     attribute_t  **pp_attributes;
176 };
177
178
179 /* The structure that contains sdp information */
180 struct  sdp_t
181 {
182     const char *psz_sdp;
183
184     /* o field */
185     char     username[64];
186     uint64_t session_id;
187     uint64_t session_version;
188     unsigned orig_ip_version;
189     char     orig_host[1024];
190
191     /* s= field */
192     char *psz_sessionname;
193
194     /* old cruft */
195     /* "computed" URI */
196     char *psz_uri;
197     int           i_media_type;
198     unsigned rtcp_port;
199
200     /* a= global attributes */
201     int           i_attributes;
202     attribute_t  **pp_attributes;
203
204     /* medias (well, we only support one atm) */
205     unsigned            mediac;
206     struct sdp_media_t *mediav;
207 };
208
209 struct attribute_t
210 {
211     const char *value;
212     char name[];
213 };
214
215 struct sap_announce_t
216 {
217     mtime_t i_last;
218     mtime_t i_period;
219     uint8_t i_period_trust;
220
221     uint16_t    i_hash;
222     uint32_t    i_source[4];
223
224     /* SAP annnounces must only contain one SDP */
225     sdp_t       *p_sdp;
226
227     input_item_t * p_item;
228 };
229
230 struct services_discovery_sys_t
231 {
232     vlc_thread_t thread;
233
234     /* Socket descriptors */
235     int i_fd;
236     int *pi_fd;
237
238     /* Table of announces */
239     int i_announces;
240     struct sap_announce_t **pp_announces;
241
242     /* Modes */
243     bool  b_strict;
244     bool  b_parse;
245
246     int i_timeout;
247 };
248
249 struct demux_sys_t
250 {
251     sdp_t *p_sdp;
252 };
253
254 /*****************************************************************************
255  * Local prototypes
256  *****************************************************************************/
257
258
259 /* Main functions */
260     static int Demux( demux_t *p_demux );
261     static int Control( demux_t *, int, va_list );
262     static void *Run  ( void *p_sd );
263
264 /* Main parsing functions */
265     static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp );
266     static int ParseSAP( services_discovery_t *p_sd, const uint8_t *p_buffer, size_t i_read );
267     static sdp_t *ParseSDP (vlc_object_t *p_sd, const char *psz_sdp);
268     static sap_announce_t *CreateAnnounce( services_discovery_t *, uint16_t, sdp_t * );
269     static int RemoveAnnounce( services_discovery_t *p_sd, sap_announce_t *p_announce );
270
271 /* Helper functions */
272     static inline attribute_t *MakeAttribute (const char *str);
273     static const char *GetAttribute (attribute_t **tab, unsigned n, const char *name);
274     static inline void FreeAttribute (attribute_t *a);
275     static const char *FindAttribute (const sdp_t *sdp, unsigned media,
276                                       const char *name);
277
278     static bool IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 );
279     static int InitSocket( services_discovery_t *p_sd, const char *psz_address, int i_port );
280     static int Decompress( const unsigned char *psz_src, unsigned char **_dst, int i_len );
281     static void FreeSDP( sdp_t *p_sdp );
282
283 static inline int min_int( int a, int b )
284 {
285     return a > b ? b : a;
286 }
287
288 /*****************************************************************************
289  * Open: initialize and create stuff
290  *****************************************************************************/
291 static int Open( vlc_object_t *p_this )
292 {
293     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
294     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)
295                                 malloc( sizeof( services_discovery_sys_t ) );
296     if( !p_sys )
297         return VLC_ENOMEM;
298
299     p_sys->i_timeout = var_CreateGetInteger( p_sd, "sap-timeout" );
300
301     p_sd->p_sys  = p_sys;
302
303     p_sys->pi_fd = NULL;
304     p_sys->i_fd = 0;
305
306     p_sys->b_strict = var_CreateGetInteger( p_sd, "sap-strict");
307     p_sys->b_parse = var_CreateGetInteger( p_sd, "sap-parse" );
308
309 #if 0
310     if( var_CreateGetInteger( p_sd, "sap-cache" ) )
311     {
312         CacheLoad( p_sd );
313     }
314 #endif
315
316     p_sys->i_announces = 0;
317     p_sys->pp_announces = NULL;
318     /* TODO: create sockets here, and fix racy sockets table */
319     if (vlc_clone (&p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW))
320     {
321         free (p_sys);
322         return VLC_EGENERIC;
323     }
324
325     return VLC_SUCCESS;
326 }
327
328 /*****************************************************************************
329  * OpenDemux: initialize and create stuff
330  *****************************************************************************/
331 static int OpenDemux( vlc_object_t *p_this )
332 {
333     demux_t *p_demux = (demux_t *)p_this;
334     const uint8_t *p_peek;
335     char *psz_sdp = NULL;
336     sdp_t *p_sdp = NULL;
337     int errval = VLC_EGENERIC;
338     size_t i_len;
339
340     if( !var_CreateGetInteger( p_demux, "sap-parse" ) )
341     {
342         /* We want livedotcom module to parse this SDP file */
343         return VLC_EGENERIC;
344     }
345
346     assert( p_demux->s ); /* this is NOT an access_demux */
347
348     /* Probe for SDP */
349     if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 )
350         return VLC_EGENERIC;
351
352     if( memcmp( p_peek, "v=0\r\no=", 7 ) && memcmp( p_peek, "v=0\no=", 6 ) )
353         return VLC_EGENERIC;
354
355     /* Gather the complete sdp file */
356     for( i_len = 0, psz_sdp = NULL; i_len < 65536; )
357     {
358         const int i_read_max = 1024;
359         char *psz_sdp_new = realloc( psz_sdp, i_len + i_read_max );
360         size_t i_read;
361         if( psz_sdp_new == NULL )
362         {
363             errval = VLC_ENOMEM;
364             goto error;
365         }
366         psz_sdp = psz_sdp_new;
367
368         i_read = stream_Read( p_demux->s, &psz_sdp[i_len], i_read_max );
369         if( (int)i_read < 0 )
370         {
371             msg_Err( p_demux, "cannot read SDP" );
372             goto error;
373         }
374         i_len += i_read;
375
376         psz_sdp[i_len] = '\0';
377
378         if( (int)i_read < i_read_max )
379             break; // EOF
380     }
381
382     p_sdp = ParseSDP( VLC_OBJECT(p_demux), psz_sdp );
383
384     if( !p_sdp )
385     {
386         msg_Warn( p_demux, "invalid SDP");
387         goto error;
388     }
389
390     if( ParseConnection( VLC_OBJECT( p_demux ), p_sdp ) )
391     {
392         p_sdp->psz_uri = NULL;
393     }
394     switch (p_sdp->i_media_type)
395     {   /* Should be in sync with modules/demux/rtp.c */
396         case  0: /* PCMU/8000 */
397         case  8: /* PCMA/8000 */
398         case 10: /* L16/44100/2 */
399         case 11: /* L16/44100 */
400         case 14: /* MPA/90000 */
401         case 32: /* MPV/90000 */
402         case 33: /* MP2/90000 */
403             break;
404         default:
405             goto error;
406     }
407     if( p_sdp->psz_uri == NULL ) goto error;
408
409     p_demux->p_sys = (demux_sys_t *)malloc( sizeof(demux_sys_t) );
410     p_demux->p_sys->p_sdp = p_sdp;
411     p_demux->pf_control = Control;
412     p_demux->pf_demux = Demux;
413
414     FREENULL( psz_sdp );
415     return VLC_SUCCESS;
416
417 error:
418     FREENULL( psz_sdp );
419     if( p_sdp ) FreeSDP( p_sdp ); p_sdp = NULL;
420     stream_Seek( p_demux->s, 0 );
421     return errval;
422 }
423
424 /*****************************************************************************
425  * Close:
426  *****************************************************************************/
427 static void Close( vlc_object_t *p_this )
428 {
429     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
430     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
431     int i;
432
433     vlc_cancel (p_sys->thread);
434     vlc_join (p_sys->thread, NULL);
435
436     for( i = p_sys->i_fd-1 ; i >= 0 ; i-- )
437     {
438         net_Close( p_sys->pi_fd[i] );
439     }
440     FREENULL( p_sys->pi_fd );
441
442 #if 0
443     if( config_GetInt( p_sd, "sap-cache" ) )
444     {
445         CacheSave( p_sd );
446     }
447 #endif
448
449     for( i = p_sys->i_announces  - 1;  i>= 0; i-- )
450     {
451         RemoveAnnounce( p_sd, p_sys->pp_announces[i] );
452     }
453     FREENULL( p_sys->pp_announces );
454
455     free( p_sys );
456 }
457
458 /*****************************************************************************
459  * CloseDemux: Close the demuxer
460  *****************************************************************************/
461 static void CloseDemux( vlc_object_t *p_this )
462 {
463     demux_t *p_demux = (demux_t *)p_this;
464     if( p_demux->p_sys )
465     {
466         if( p_demux->p_sys->p_sdp ) { FreeSDP( p_demux->p_sys->p_sdp ); p_demux->p_sys->p_sdp = NULL; }
467         free( p_demux->p_sys );
468     }
469 }
470
471 /*****************************************************************************
472  * Run: main SAP thread
473  *****************************************************************************
474  * Listens to SAP packets, and sends them to packet_handle
475  *****************************************************************************/
476 #define MAX_SAP_BUFFER 5000
477
478 static void *Run( void *data )
479 {
480     services_discovery_t *p_sd = data;
481     char *psz_addr;
482     int i;
483     int timeout = -1;
484     int canc = vlc_savecancel ();
485
486     /* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
487      * DNS queries, even if the DNS server returns an error with milliseconds.
488      * You don't want to know why the bug (as of XP SP2) wasn't fixed since
489      * Winsock 1.1 from Windows 95, if not Windows 3.1.
490      * Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation,
491      * we have to open sockets in Run() rather than Open(). */
492     if( var_CreateGetInteger( p_sd, "sap-ipv4" ) )
493     {
494         InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
495         InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
496         InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
497         InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
498     }
499     if( var_CreateGetInteger( p_sd, "sap-ipv6" ) )
500     {
501         char psz_address[NI_MAXNUMERICHOST] = "ff02::2:7ffe%";
502
503 #ifndef WIN32
504         struct if_nameindex *l = if_nameindex ();
505         if (l != NULL)
506         {
507             char *ptr = strchr (psz_address, '%') + 1;
508             for (unsigned i = 0; l[i].if_index; i++)
509             {
510                 strcpy (ptr, l[i].if_name);
511                 InitSocket (p_sd, psz_address, SAP_PORT);
512             }
513             if_freenameindex (l);
514         }
515 #else
516         /* this is the Winsock2 equivalant of SIOCGIFCONF on BSD stacks,
517            which if_nameindex uses internally anyway */
518
519         // first create a dummy socket to pin down the protocol family
520         SOCKET s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
521         if( s != INVALID_SOCKET )
522         {
523             INTERFACE_INFO ifaces[10]; // Assume there will be no more than 10 IP interfaces
524             size_t len = sizeof(ifaces);
525
526             if( SOCKET_ERROR != WSAIoctl(s, SIO_GET_INTERFACE_LIST, NULL, 0, &ifaces, len, &len, NULL, NULL) )
527             {
528                 unsigned ifcount = len/sizeof(INTERFACE_INFO);
529                 char *ptr = strchr (psz_address, '%') + 1;
530                 for(unsigned i = 1; i<=ifcount; ++i )
531                 {
532                     // append link-local zone identifier
533                     sprintf(ptr, "%d", i);
534                 }
535             }
536             closesocket(s);
537         }
538 #endif
539         *strchr (psz_address, '%') = '\0';
540
541         static const char ipv6_scopes[] = "1456789ABCDE";
542         for (const char *c_scope = ipv6_scopes; *c_scope; c_scope++)
543         {
544             psz_address[3] = *c_scope;
545             InitSocket( p_sd, psz_address, SAP_PORT );
546         }
547     }
548
549     psz_addr = var_CreateGetString( p_sd, "sap-addr" );
550     if( psz_addr && *psz_addr )
551         InitSocket( p_sd, psz_addr, SAP_PORT );
552     free( psz_addr );
553
554     if( p_sd->p_sys->i_fd == 0 )
555     {
556         msg_Err( p_sd, "unable to listen on any address" );
557         return NULL;
558     }
559
560     /* read SAP packets */
561     for (;;)
562     {
563         vlc_restorecancel (canc);
564         unsigned n = p_sd->p_sys->i_fd;
565         struct pollfd ufd[n];
566
567         for (unsigned i = 0; i < n; i++)
568         {
569             ufd[i].fd = p_sd->p_sys->pi_fd[i];
570             ufd[i].events = POLLIN;
571             ufd[i].revents = 0;
572         }
573
574         int val = poll (ufd, n, timeout);
575         canc = vlc_savecancel ();
576         if (val > 0)
577         {
578             for (unsigned i = 0; i < n; i++)
579             {
580                 if (ufd[i].revents)
581                 {
582                     uint8_t p_buffer[MAX_SAP_BUFFER+1];
583                     ssize_t i_read;
584
585                     i_read = net_Read (p_sd, ufd[i].fd, NULL, p_buffer,
586                                        MAX_SAP_BUFFER, false);
587                     if (i_read < 0)
588                         msg_Warn (p_sd, "receive error: %m");
589                     if (i_read > 6)
590                     {
591                         /* Parse the packet */
592                         p_buffer[i_read] = '\0';
593                         ParseSAP (p_sd, p_buffer, i_read);
594                     }
595                 }
596             }
597         }
598
599         mtime_t now = mdate();
600
601         /* A 1 hour timeout correspong to the RFC Implicit timeout.
602          * This timeout is tuned in the following loop. */
603         timeout = 1000 * 60 * 60;
604
605         /* Check for items that need deletion */
606         for( i = 0; i < p_sd->p_sys->i_announces; i++ )
607         {
608             mtime_t i_timeout = ( mtime_t ) 1000000 * p_sd->p_sys->i_timeout;
609             sap_announce_t * p_announce = p_sd->p_sys->pp_announces[i];
610             mtime_t i_last_period = now - p_announce->i_last;
611
612             /* Remove the annoucement, if the last announcement was 1 hour ago
613              * or if the last packet emitted was 3 times the average time
614              * between two packets */
615             if( ( p_announce->i_period_trust > 5 && i_last_period > 3 * p_announce->i_period ) ||
616                 i_last_period > i_timeout )
617             {
618                 RemoveAnnounce( p_sd, p_announce );
619             }
620             else
621             {
622                 /* Compute next timeout */
623                 if( p_announce->i_period_trust > 5 )
624                     timeout = min_int((3 * p_announce->i_period - i_last_period) / 1000, timeout);
625                 timeout = min_int((i_timeout - i_last_period)/1000, timeout);
626             }
627         }
628
629         if( !p_sd->p_sys->i_announces )
630             timeout = -1; /* We can safely poll indefinitly. */
631         else if( timeout < 200 )
632             timeout = 200; /* Don't wakeup too fast. */
633     }
634     assert (0);
635 }
636
637 /**********************************************************************
638  * Demux: reads and demuxes data packets
639  * Return -1 if error, 0 if EOF, 1 else
640  **********************************************************************/
641 static int Demux( demux_t *p_demux )
642 {
643     sdp_t *p_sdp = p_demux->p_sys->p_sdp;
644     input_thread_t *p_input;
645     input_item_t *p_parent_input;
646
647     p_input = (input_thread_t *)vlc_object_find( p_demux, VLC_OBJECT_INPUT,
648                                                  FIND_PARENT );
649     assert( p_input );
650     if( !p_input )
651     {
652         msg_Err( p_demux, "parent input could not be found" );
653         return VLC_EGENERIC;
654     }
655
656     /* This item hasn't been held by input_GetItem
657      * don't release it */
658     p_parent_input = input_GetItem( p_input );
659
660     input_item_SetURI( p_parent_input, p_sdp->psz_uri );
661     input_item_SetName( p_parent_input, p_sdp->psz_sessionname );
662     if( p_sdp->rtcp_port )
663     {
664         char *rtcp;
665         if( asprintf( &rtcp, ":rtcp-port=%u", p_sdp->rtcp_port ) != -1 )
666         {
667             input_item_AddOption( p_parent_input, rtcp );
668             free( rtcp );
669         }
670     }
671
672     vlc_mutex_lock( &p_parent_input->lock );
673
674     p_parent_input->i_type = ITEM_TYPE_NET;
675
676     vlc_mutex_unlock( &p_parent_input->lock );
677     return VLC_SUCCESS;
678 }
679
680 static int Control( demux_t *p_demux, int i_query, va_list args )
681 {
682     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
683     return VLC_EGENERIC;
684 }
685
686 /**************************************************************
687  * Local functions
688  **************************************************************/
689
690 /* i_read is at least > 6 */
691 static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
692                      size_t len )
693 {
694     int i;
695     const char          *psz_sdp;
696     const uint8_t *end = buf + len;
697     sdp_t               *p_sdp;
698
699     assert (buf[len] == '\0');
700
701     if (len < 4)
702         return VLC_EGENERIC;
703
704     uint8_t flags = buf[0];
705
706     /* First, check the sap announce is correct */
707     if ((flags >> 5) != 1)
708         return VLC_EGENERIC;
709
710     bool b_ipv6 = (flags & 0x10) != 0;
711     bool b_need_delete = (flags & 0x04) != 0;
712
713     if (flags & 0x02)
714     {
715         msg_Dbg( p_sd, "encrypted packet, unsupported" );
716         return VLC_EGENERIC;
717     }
718
719     bool b_compressed = (flags & 0x01) != 0;
720
721     uint16_t i_hash = U16_AT (buf + 2);
722
723     if( p_sd->p_sys->b_strict && i_hash == 0 )
724     {
725         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
726         return VLC_EGENERIC;
727     }
728
729     // Skips source address and auth data
730     buf += 4 + (b_ipv6 ? 16 : 4) + buf[1];
731     if (buf > end)
732         return VLC_EGENERIC;
733
734     uint8_t *decomp = NULL;
735     if( b_compressed )
736     {
737         int newsize = Decompress (buf, &decomp, end - buf);
738         if (newsize < 0)
739         {
740             msg_Dbg( p_sd, "decompression of SAP packet failed" );
741             return VLC_EGENERIC;
742         }
743
744         decomp = realloc (decomp, newsize + 1);
745         decomp[newsize] = '\0';
746         psz_sdp = (const char *)decomp;
747         len = newsize;
748     }
749     else
750     {
751         psz_sdp = (const char *)buf;
752         len = end - buf;
753     }
754
755     /* len is a strlen here here. both buf and decomp are len+1 where the 1 should be a \0 */
756     assert( psz_sdp[len] == '\0');
757
758     /* Skip payload type */
759     /* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
760     if (strncmp (psz_sdp, "v=0", 3))
761     {
762         size_t clen = strlen (psz_sdp) + 1;
763
764         if (strcmp (psz_sdp, "application/sdp"))
765         {
766             msg_Dbg (p_sd, "unsupported content type: %s", psz_sdp);
767             return VLC_EGENERIC;
768         }
769
770         // skips content type
771         if (len <= clen)
772             return VLC_EGENERIC;
773
774         len -= clen;
775         psz_sdp += clen;
776     }
777
778     /* Parse SDP info */
779     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
780
781     if( p_sdp == NULL )
782         return VLC_EGENERIC;
783
784     p_sdp->psz_sdp = psz_sdp;
785
786     /* Decide whether we should add a playlist item for this SDP */
787     /* Parse connection information (c= & m= ) */
788     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
789         p_sdp->psz_uri = NULL;
790
791     /* Multi-media or no-parse -> pass to LIVE.COM */
792     if( ( p_sdp->i_media_type != 14
793        && p_sdp->i_media_type != 32
794        && p_sdp->i_media_type != 33)
795      || p_sd->p_sys->b_parse == false )
796     {
797         free( p_sdp->psz_uri );
798         if (asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp ) == -1)
799             p_sdp->psz_uri = NULL;
800     }
801
802     if( p_sdp->psz_uri == NULL )
803     {
804         FreeSDP( p_sdp );
805         return VLC_EGENERIC;
806     }
807
808     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
809     {
810         sap_announce_t * p_announce = p_sd->p_sys->pp_announces[i];
811         /* FIXME: slow */
812         /* FIXME: we create a new announce each time the sdp changes */
813         if( IsSameSession( p_announce->p_sdp, p_sdp ) )
814         {
815             /* We don't support delete announcement as they can easily
816              * Be used to highjack an announcement by a third party.
817              * Intead we cleverly implement Implicit Announcement removal.
818              *
819              * if( b_need_delete )
820              *    RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
821              * else
822              */
823
824             if( !b_need_delete )
825             {
826                 /* No need to go after six, as we start to trust the
827                  * average period at six */
828                 if( p_announce->i_period_trust <= 5 )
829                     p_announce->i_period_trust++;
830
831                 /* Compute the average period */
832                 mtime_t now = mdate();
833                 p_announce->i_period = (p_announce->i_period + (now - p_announce->i_last)) / 2;
834                 p_announce->i_last = now;
835             }
836             FreeSDP( p_sdp ); p_sdp = NULL;
837             return VLC_SUCCESS;
838         }
839     }
840
841     CreateAnnounce( p_sd, i_hash, p_sdp );
842
843     FREENULL (decomp);
844     return VLC_SUCCESS;
845 }
846
847 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint16_t i_hash,
848                                 sdp_t *p_sdp )
849 {
850     input_item_t *p_input;
851     const char *psz_value;
852     sap_announce_t *p_sap = (sap_announce_t *)malloc(
853                                         sizeof(sap_announce_t ) );
854     services_discovery_sys_t *p_sys;
855     if( p_sap == NULL )
856         return NULL;
857
858     p_sys = p_sd->p_sys;
859
860     p_sap->i_last = mdate();
861     p_sap->i_period = 0;
862     p_sap->i_period_trust = 0;
863     p_sap->i_hash = i_hash;
864     p_sap->p_sdp = p_sdp;
865
866     /* Released in RemoveAnnounce */
867     p_input = input_item_NewWithType( VLC_OBJECT(p_sd),
868                                      p_sap->p_sdp->psz_uri,
869                                      p_sdp->psz_sessionname,
870                                      0, NULL, -1, ITEM_TYPE_NET );
871     p_sap->p_item = p_input;
872     if( !p_input )
873     {
874         free( p_sap );
875         return NULL;
876     }
877
878     if( p_sdp->rtcp_port )
879     {
880         char *rtcp;
881         if( asprintf( &rtcp, ":rtcp-port=%u", p_sdp->rtcp_port ) != -1 )
882         {
883             input_item_AddOption( p_input, rtcp );
884             free( rtcp );
885         }
886     }
887
888     psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "tool" );
889     if( psz_value != NULL )
890     {
891         input_item_AddInfo( p_input, _("Session"), _("Tool"), "%s", psz_value );
892     }
893     if( strcmp( p_sdp->username, "-" ) )
894     {
895         input_item_AddInfo( p_input, _("Session"), _("User"), "%s",
896                            p_sdp->username );
897     }
898
899     /* Handle group */
900     if (p_sap->p_sdp->mediac >= 1)
901         psz_value = FindAttribute (p_sap->p_sdp, 0, "x-plgroup");
902     else
903         psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "x-plgroup" );
904
905     services_discovery_AddItem( p_sd, p_input, psz_value /* category name */ );
906
907     TAB_APPEND( p_sys->i_announces, p_sys->pp_announces, p_sap );
908
909     return p_sap;
910 }
911
912
913 static const char *FindAttribute (const sdp_t *sdp, unsigned media,
914                                   const char *name)
915 {
916     /* Look for media attribute, and fallback to session */
917     return GetAttribute (sdp->mediav[media].pp_attributes,
918                          sdp->mediav[media].i_attributes, name)
919         ?: GetAttribute (sdp->pp_attributes, sdp->i_attributes, name);
920 }
921
922
923 /* Fill p_sdp->psz_uri */
924 static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
925 {
926     if (p_sdp->mediac == 0)
927     {
928         msg_Dbg (p_obj, "Ignoring SDP with no media");
929         return VLC_EGENERIC;
930     }
931
932     for (unsigned i = 1; i < p_sdp->mediac; i++)
933     {
934         if ((p_sdp->mediav[i].n_addr != p_sdp->mediav->n_addr)
935          || (p_sdp->mediav[i].addrlen != p_sdp->mediav->addrlen)
936          || memcmp (&p_sdp->mediav[i].addr, &p_sdp->mediav->addr,
937                     p_sdp->mediav->addrlen))
938         {
939             msg_Dbg (p_obj, "Multiple media ports not supported -> live555");
940             return VLC_EGENERIC;
941         }
942     }
943
944     if (p_sdp->mediav->n_addr != 1)
945     {
946         msg_Dbg (p_obj, "Layered encoding not supported -> live555");
947         return VLC_EGENERIC;
948     }
949
950     char psz_uri[1026];
951     const char *host;
952     int port;
953
954     psz_uri[0] = '[';
955     if (vlc_getnameinfo ((struct sockaddr *)&(p_sdp->mediav->addr),
956                          p_sdp->mediav->addrlen, psz_uri + 1,
957                          sizeof (psz_uri) - 2, &port, NI_NUMERICHOST))
958         return VLC_EGENERIC;
959
960     if (strchr (psz_uri + 1, ':'))
961     {
962         host = psz_uri;
963         strcat (psz_uri, "]");
964     }
965     else
966         host = psz_uri + 1;
967
968     /* Parse m= field */
969     char *sdp_proto = strdup (p_sdp->mediav[0].fmt);
970     if (sdp_proto == NULL)
971         return VLC_ENOMEM;
972
973     char *subtype = strchr (sdp_proto, ' ');
974     if (subtype == NULL)
975     {
976         msg_Dbg (p_obj, "missing SDP media subtype: %s", sdp_proto);
977         free (sdp_proto);
978         return VLC_EGENERIC;
979     }
980     else
981     {
982         *subtype++ = '\0';
983         /* FIXME: check for multiple payload types in RTP/AVP case.
984          * FIXME: check for "mpeg" subtype in raw udp case. */
985         if (!strcasecmp (sdp_proto, "udp"))
986             p_sdp->i_media_type = 33;
987         else
988             p_sdp->i_media_type = atoi (subtype);
989     }
990
991     /* RTP protocol, nul, VLC shortcut, nul, flags byte as follow:
992      * 0x1: Connection-Oriented media. */
993     static const char proto_match[] =
994         "udp\0"             "udp\0\0"
995         "RTP/AVP\0"         "rtp\0\0"
996         "UDPLite/RTP/AVP\0" "udplite\0\0"
997         "DCCP/RTP/AVP\0"    "dccp\0\1"
998         "TCP/RTP/AVP\0"     "rtptcp\0\1"
999         "\0";
1000
1001     const char *vlc_proto = NULL;
1002     uint8_t flags = 0;
1003     for (const char *proto = proto_match; *proto;)
1004     {
1005         if (strcasecmp (proto, sdp_proto) == 0)
1006         {
1007             vlc_proto = proto + strlen (proto) + 1;
1008             flags = vlc_proto[strlen (vlc_proto) + 1];
1009             break;
1010         }
1011         proto += strlen (proto) + 1;
1012         proto += strlen (proto) + 2;
1013     }
1014
1015     free (sdp_proto);
1016     if (vlc_proto == NULL)
1017     {
1018         msg_Dbg (p_obj, "unknown SDP media protocol: %s",
1019                  p_sdp->mediav[0].fmt);
1020         return VLC_EGENERIC;
1021     }
1022
1023     if (FindAttribute (p_sdp, 0, "rtcp-mux"))
1024         p_sdp->rtcp_port = 0;
1025     else
1026     {
1027         const char *rtcp = FindAttribute (p_sdp, 0, "rtcp");
1028         if (rtcp)
1029             p_sdp->rtcp_port = atoi (rtcp);
1030         else
1031         if (port & 1) /* odd port -> RTCP; next even port -> RTP */
1032             p_sdp->rtcp_port = port++;
1033         else /* even port -> RTP; next odd port -> RTCP */
1034             p_sdp->rtcp_port = port + 1;
1035     }
1036
1037     if (flags & 1)
1038     {
1039         /* Connection-oriented media */
1040         const char *setup = FindAttribute (p_sdp, 0, "setup");
1041         if (setup == NULL)
1042             setup = "active"; /* default value */
1043
1044         if (strcmp (setup, "actpass") && strcmp (setup, "passive"))
1045         {
1046             msg_Dbg (p_obj, "unsupported COMEDIA mode: %s", setup);
1047             return VLC_EGENERIC;
1048         }
1049
1050         if (asprintf (&p_sdp->psz_uri, "%s://%s:%d", vlc_proto,
1051                       host, port) == -1)
1052             return VLC_ENOMEM;
1053     }
1054     else
1055     {
1056         /* Non-connected (normally multicast) media */
1057         char psz_source[258] = "";
1058         const char *sfilter = FindAttribute (p_sdp, 0, "source-filter");
1059         if (sfilter != NULL)
1060         {
1061             char psz_source_ip[256];
1062             unsigned ipv;
1063
1064             if (sscanf (sfilter, " incl IN IP%u %*s %255s ", &ipv,
1065                         psz_source_ip) == 2)
1066             {
1067                 /* According to RFC4570, FQDNs can be used for source-filters,
1068                  * but -seriously- this is impractical */
1069                 switch (ipv)
1070                 {
1071 #ifdef AF_INET6
1072                     case 6:
1073                     {
1074                         struct in6_addr addr;
1075                         if ((inet_pton (AF_INET6, psz_source_ip, &addr) > 0)
1076                         && (inet_ntop (AF_INET6, &addr, psz_source + 1,
1077                                         sizeof (psz_source) - 2) != NULL))
1078                         {
1079                             psz_source[0] = '[';
1080                             psz_source[strlen (psz_source)] = ']';
1081                         }
1082                         break;
1083                     }
1084 #endif
1085                     case 4:
1086                     {
1087                         struct in_addr addr;
1088                         if ((inet_pton (AF_INET, psz_source_ip, &addr) > 0)
1089                         && (inet_ntop (AF_INET, &addr, psz_source,
1090                                         sizeof (psz_source)) == NULL))
1091                             *psz_source = '\0';
1092                         break;
1093                     }
1094                 }
1095             }
1096         }
1097
1098         if (asprintf (&p_sdp->psz_uri, "%s://%s@%s:%i", vlc_proto, psz_source,
1099                      host, port) == -1)
1100             return VLC_ENOMEM;
1101     }
1102
1103     return VLC_SUCCESS;
1104 }
1105
1106
1107 static int ParseSDPConnection (const char *str, struct sockaddr_storage *addr,
1108                                socklen_t *addrlen, unsigned *number)
1109 {
1110     char host[60];
1111     unsigned fam, n1, n2;
1112
1113     int res = sscanf (str, "IN IP%u %59[^/]/%u/%u", &fam, host, &n1, &n2);
1114     if (res < 2)
1115         return -1;
1116
1117     switch (fam)
1118     {
1119 #ifdef AF_INET6
1120         case 6:
1121             addr->ss_family = AF_INET6;
1122 # ifdef HAVE_SA_LEN
1123             addr->ss_len =
1124 # endif
1125            *addrlen = sizeof (struct sockaddr_in6);
1126
1127             if (inet_pton (AF_INET6, host,
1128                            &((struct sockaddr_in6 *)addr)->sin6_addr) <= 0)
1129                 return -1;
1130
1131             *number = (res >= 3) ? n1 : 1;
1132             break;
1133 #endif
1134
1135         case 4:
1136             addr->ss_family = AF_INET;
1137 # ifdef HAVE_SA_LEN
1138             addr->ss_len =
1139 # endif
1140            *addrlen = sizeof (struct sockaddr_in);
1141
1142             if (inet_pton (AF_INET, host,
1143                            &((struct sockaddr_in *)addr)->sin_addr) <= 0)
1144                 return -1;
1145
1146             *number = (res >= 4) ? n2 : 1;
1147             break;
1148
1149         default:
1150             return -1;
1151     }
1152     return 0;
1153 }
1154
1155
1156 /***********************************************************************
1157  * ParseSDP : SDP parsing
1158  * *********************************************************************
1159  * Validate SDP and parse all fields
1160  ***********************************************************************/
1161 static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
1162 {
1163     if( psz_sdp == NULL )
1164         return NULL;
1165
1166     sdp_t *p_sdp = calloc (1, sizeof (*p_sdp));
1167     if (p_sdp == NULL)
1168         return NULL;
1169
1170     char expect = 'V';
1171     struct sockaddr_storage glob_addr;
1172     memset (&glob_addr, 0, sizeof (glob_addr));
1173     socklen_t glob_len = 0;
1174     unsigned glob_count = 1;
1175     int port = 0;
1176
1177     /* TODO: use iconv and charset attribute instead of EnsureUTF8 */
1178     while (*psz_sdp)
1179     {
1180         /* Extract one line */
1181         char *eol = strchr (psz_sdp, '\n');
1182         size_t linelen = eol ? (size_t)(eol - psz_sdp) : strlen (psz_sdp);
1183         char line[linelen + 1];
1184         memcpy (line, psz_sdp, linelen);
1185         line[linelen] = '\0';
1186
1187         psz_sdp += linelen + 1;
1188
1189         /* Remove carriage return if present */
1190         eol = strchr (line, '\r');
1191         if (eol != NULL)
1192         {
1193             linelen = eol - line;
1194             line[linelen] = '\0';
1195         }
1196
1197         /* Validate line */
1198         char cat = line[0], *data = line + 2;
1199         if (!cat || (strchr ("vosiuepcbtrzkam", cat) == NULL))
1200         {
1201             /* MUST ignore SDP with unknown line type */
1202             msg_Dbg (p_obj, "unknown SDP line type: 0x%02x", (int)cat);
1203             goto error;
1204         }
1205         if (line[1] != '=')
1206         {
1207             msg_Dbg (p_obj, "invalid SDP line: %s", line);
1208             goto error;
1209         }
1210
1211         assert (linelen >= 2);
1212
1213         /* SDP parsing state machine
1214          * We INTERNALLY use uppercase for session, lowercase for media
1215          */
1216         switch (expect)
1217         {
1218             /* Session description */
1219             case 'V':
1220                 expect = 'O';
1221                 if (cat != 'v')
1222                 {
1223                     msg_Dbg (p_obj, "missing SDP version");
1224                     goto error;
1225                 }
1226                 if (strcmp (data, "0"))
1227                 {
1228                     msg_Dbg (p_obj, "unknown SDP version: %s", data);
1229                     goto error;
1230                 }
1231                 break;
1232
1233             case 'O':
1234             {
1235                 expect = 'S';
1236                 if (cat != 'o')
1237                 {
1238                     msg_Dbg (p_obj, "missing SDP originator");
1239                     goto error;
1240                 }
1241
1242                 if ((sscanf (data, "%63s %"PRIu64" %"PRIu64" IN IP%u %1023s",
1243                              p_sdp->username, &p_sdp->session_id,
1244                              &p_sdp->session_version, &p_sdp->orig_ip_version,
1245                              p_sdp->orig_host) != 5)
1246                  || ((p_sdp->orig_ip_version != 4)
1247                   && (p_sdp->orig_ip_version != 6)))
1248                 {
1249                     msg_Dbg (p_obj, "SDP origin not supported: %s\n", data);
1250                     /* Or maybe out-of-range, but this looks suspicious */
1251                     return NULL;
1252                 }
1253                 EnsureUTF8 (p_sdp->orig_host);
1254                 break;
1255             }
1256
1257             case 'S':
1258             {
1259                 expect = 'I';
1260                 if ((cat != 's') || !*data)
1261                 {
1262                     /* MUST be present AND non-empty */
1263                     msg_Dbg (p_obj, "missing SDP session name");
1264                     goto error;
1265                 }
1266                 assert (p_sdp->psz_sessionname == NULL); // no memleak here
1267                 p_sdp->psz_sessionname = strdup (data);
1268                 if (p_sdp->psz_sessionname == NULL)
1269                     goto error;
1270                 EnsureUTF8 (p_sdp->psz_sessionname);
1271                 break;
1272             }
1273
1274             case 'I':
1275                 expect = 'U';
1276                 if (cat == 'i')
1277                     break;
1278             case 'U':
1279                 expect = 'E';
1280                 if (cat == 'u')
1281                     break;
1282             case 'E':
1283                 expect = 'E';
1284                 if (cat == 'e')
1285                     break;
1286             case 'P':
1287                 expect = 'P';
1288                 if (cat == 'p')
1289                     break;
1290             case 'C':
1291                 expect = 'B';
1292                 if (cat == 'c')
1293                 {
1294                     if (ParseSDPConnection (data, &glob_addr, &glob_len,
1295                                             &glob_count))
1296                     {
1297                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1298                                  "%s", data);
1299                         goto error;
1300                     }
1301                     break;
1302                 }
1303             case 'B':
1304                 assert (expect == 'B');
1305                 if (cat == 'b')
1306                     break;
1307             case 'T':
1308                 expect = 'R';
1309                 if (cat != 't')
1310                 {
1311                     msg_Dbg (p_obj, "missing SDP time description");
1312                     goto error;
1313                 }
1314                 break;
1315
1316             case 'R':
1317                 if ((cat == 't') || (cat == 'r'))
1318                     break;
1319
1320             case 'Z':
1321                 expect = 'K';
1322                 if (cat == 'z')
1323                     break;
1324             case 'K':
1325                 expect = 'A';
1326                 if (cat == 'k')
1327                     break;
1328             case 'A':
1329                 //expect = 'A';
1330                 if (cat == 'a')
1331                 {
1332                     attribute_t *p_attr = MakeAttribute (data);
1333                     TAB_APPEND( p_sdp->i_attributes, p_sdp->pp_attributes, p_attr );
1334                     break;
1335                 }
1336
1337             /* Media description */
1338             case 'm':
1339             media:
1340             {
1341                 expect = 'i';
1342                 if (cat != 'm')
1343                 {
1344                     msg_Dbg (p_obj, "missing SDP media description");
1345                     goto error;
1346                 }
1347                 struct sdp_media_t *m;
1348                 m = realloc (p_sdp->mediav, (p_sdp->mediac + 1) * sizeof (*m));
1349                 if (m == NULL)
1350                     goto error;
1351
1352                 p_sdp->mediav = m;
1353                 m += p_sdp->mediac;
1354                 p_sdp->mediac++;
1355
1356                 memset (m, 0, sizeof (*m));
1357                 memcpy (&m->addr, &glob_addr, m->addrlen = glob_len);
1358                 m->n_addr = glob_count;
1359
1360                 /* TODO: remember media type (if we need multiple medias) */
1361                 data = strchr (data, ' ');
1362                 if (data == NULL)
1363                 {
1364                     msg_Dbg (p_obj, "missing SDP media port");
1365                     goto error;
1366                 }
1367                 port = atoi (++data);
1368                 if (port <= 0 || port >= 65536)
1369                 {
1370                     msg_Dbg (p_obj, "invalid transport port %d", port);
1371                     goto error;
1372                 }
1373                 net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1374
1375                 data = strchr (data, ' ');
1376                 if (data == NULL)
1377                 {
1378                     msg_Dbg (p_obj, "missing SDP media format");
1379                     goto error;
1380                 }
1381                 m->fmt = strdup (++data);
1382                 if (m->fmt == NULL)
1383                     goto error;
1384
1385                 break;
1386             }
1387             case 'i':
1388                 expect = 'c';
1389                 if (cat == 'i')
1390                     break;
1391             case 'c':
1392                 expect = 'b';
1393                 if (cat == 'c')
1394                 {
1395                     struct sdp_media_t *m = p_sdp->mediav + p_sdp->mediac - 1;
1396                     if (ParseSDPConnection (data, &m->addr, &m->addrlen,
1397                                             &m->n_addr))
1398                     {
1399                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1400                                  "%s", data);
1401                         goto error;
1402                     }
1403                     net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1404                     break;
1405                 }
1406             case 'b':
1407                 expect = 'b';
1408                 if (cat == 'b')
1409                     break;
1410             case 'k':
1411                 expect = 'a';
1412                 if (cat == 'k')
1413                     break;
1414             case 'a':
1415                 assert (expect == 'a');
1416                 if (cat == 'a')
1417                 {
1418                     attribute_t *p_attr = MakeAttribute (data);
1419                     if (p_attr == NULL)
1420                         goto error;
1421
1422                     TAB_APPEND (p_sdp->mediav[p_sdp->mediac - 1].i_attributes,
1423                                 p_sdp->mediav[p_sdp->mediac - 1].pp_attributes, p_attr);
1424                     break;
1425                 }
1426
1427                 if (cat == 'm')
1428                     goto media;
1429
1430                 if (cat != 'm')
1431                 {
1432                     msg_Dbg (p_obj, "unexpected SDP line: 0x%02x", (int)cat);
1433                     goto error;
1434                 }
1435                 break;
1436
1437             default:
1438                 msg_Err (p_obj, "*** BUG in SDP parser! ***");
1439                 goto error;
1440         }
1441     }
1442
1443     return p_sdp;
1444
1445 error:
1446     FreeSDP (p_sdp);
1447     return NULL;
1448 }
1449
1450 static int InitSocket( services_discovery_t *p_sd, const char *psz_address,
1451                        int i_port )
1452 {
1453     int i_fd = net_ListenUDP1 ((vlc_object_t *)p_sd, psz_address, i_port);
1454     if (i_fd == -1)
1455         return VLC_EGENERIC;
1456
1457     shutdown( i_fd, SHUT_WR );
1458     INSERT_ELEM (p_sd->p_sys->pi_fd, p_sd->p_sys->i_fd,
1459                  p_sd->p_sys->i_fd, i_fd);
1460     return VLC_SUCCESS;
1461 }
1462
1463 static int Decompress( const unsigned char *psz_src, unsigned char **_dst, int i_len )
1464 {
1465 #ifdef HAVE_ZLIB_H
1466     int i_result, i_dstsize, n = 0;
1467     unsigned char *psz_dst = NULL;
1468     z_stream d_stream;
1469
1470     memset (&d_stream, 0, sizeof (d_stream));
1471
1472     i_result = inflateInit(&d_stream);
1473     if( i_result != Z_OK )
1474         return( -1 );
1475
1476     d_stream.next_in = (Bytef *)psz_src;
1477     d_stream.avail_in = i_len;
1478
1479     do
1480     {
1481         n++;
1482         psz_dst = (unsigned char *)realloc( psz_dst, n * 1000 );
1483         d_stream.next_out = (Bytef *)&psz_dst[(n - 1) * 1000];
1484         d_stream.avail_out = 1000;
1485
1486         i_result = inflate(&d_stream, Z_NO_FLUSH);
1487         if( ( i_result != Z_OK ) && ( i_result != Z_STREAM_END ) )
1488         {
1489             inflateEnd( &d_stream );
1490             return( -1 );
1491         }
1492     }
1493     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
1494            ( i_result != Z_STREAM_END ) );
1495
1496     i_dstsize = d_stream.total_out;
1497     inflateEnd( &d_stream );
1498
1499     *_dst = (unsigned char *)realloc( psz_dst, i_dstsize );
1500
1501     return i_dstsize;
1502 #else
1503     (void)psz_src;
1504     (void)_dst;
1505     (void)i_len;
1506     return -1;
1507 #endif
1508 }
1509
1510
1511 static void FreeSDP( sdp_t *p_sdp )
1512 {
1513     free( p_sdp->psz_sessionname );
1514     free( p_sdp->psz_uri );
1515
1516     for (unsigned j = 0; j < p_sdp->mediac; j++)
1517     {
1518         free (p_sdp->mediav[j].fmt);
1519         for (int i = 0; i < p_sdp->mediav[j].i_attributes; i++)
1520             FreeAttribute (p_sdp->mediav[j].pp_attributes[i]);
1521         free (p_sdp->mediav[j].pp_attributes);
1522     }
1523     free (p_sdp->mediav);
1524
1525     for (int i = 0; i < p_sdp->i_attributes; i++)
1526         FreeAttribute (p_sdp->pp_attributes[i]);
1527
1528     free (p_sdp->pp_attributes);
1529     free (p_sdp);
1530 }
1531
1532 static int RemoveAnnounce( services_discovery_t *p_sd,
1533                            sap_announce_t *p_announce )
1534 {
1535     int i;
1536
1537     if( p_announce->p_sdp )
1538     {
1539         FreeSDP( p_announce->p_sdp );
1540         p_announce->p_sdp = NULL;
1541     }
1542
1543     if( p_announce->p_item )
1544     {
1545         services_discovery_RemoveItem( p_sd, p_announce->p_item );
1546         vlc_gc_decref( p_announce->p_item );
1547         p_announce->p_item = NULL;
1548     }
1549
1550     for( i = 0; i< p_sd->p_sys->i_announces; i++)
1551     {
1552         if( p_sd->p_sys->pp_announces[i] == p_announce )
1553         {
1554             REMOVE_ELEM( p_sd->p_sys->pp_announces, p_sd->p_sys->i_announces,
1555                          i);
1556             break;
1557         }
1558     }
1559
1560     free( p_announce );
1561
1562     return VLC_SUCCESS;
1563 }
1564
1565 static bool IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 )
1566 {
1567     /* A session is identified by
1568      * - username,
1569      * - session_id,
1570      * - network type (which is always IN),
1571      * - address type (currently, this means IP version),
1572      * - and hostname.
1573      */
1574     if (strcmp (p_sdp1->username, p_sdp2->username)
1575      || (p_sdp1->session_id != p_sdp2->session_id)
1576      || (p_sdp1->orig_ip_version != p_sdp2->orig_ip_version)
1577      || strcmp (p_sdp1->orig_host, p_sdp2->orig_host))
1578         return false;
1579
1580     return true;
1581 }
1582
1583
1584 static inline attribute_t *MakeAttribute (const char *str)
1585 {
1586     attribute_t *a = malloc (sizeof (*a) + strlen (str) + 1);
1587     if (a == NULL)
1588         return NULL;
1589
1590     strcpy (a->name, str);
1591     EnsureUTF8 (a->name);
1592     char *value = strchr (a->name, ':');
1593     if (value != NULL)
1594     {
1595         *value++ = '\0';
1596         a->value = value;
1597     }
1598     else
1599         a->value = "";
1600     return a;
1601 }
1602
1603
1604 static const char *GetAttribute (attribute_t **tab, unsigned n,
1605                                  const char *name)
1606 {
1607     for (unsigned i = 0; i < n; i++)
1608         if (strcasecmp (tab[i]->name, name) == 0)
1609             return tab[i]->value;
1610     return NULL;
1611 }
1612
1613
1614 static inline void FreeAttribute (attribute_t *a)
1615 {
1616     free (a);
1617 }