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