]> git.sesse.net Git - vlc/blob - modules/services_discovery/sap.c
sap: do not release an object we did't yield
[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( (int)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( (int)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     free( p_sys );
431 }
432
433 /*****************************************************************************
434  * CloseDemux: Close the demuxer
435  *****************************************************************************/
436 static void CloseDemux( vlc_object_t *p_this )
437 {
438     demux_t *p_demux = (demux_t *)p_this;
439     if( p_demux->p_sys )
440     {
441         if( p_demux->p_sys->p_sdp ) { FreeSDP( p_demux->p_sys->p_sdp ); p_demux->p_sys->p_sdp = NULL; }
442         free( p_demux->p_sys );
443     }
444 }
445
446 /*****************************************************************************
447  * Run: main SAP thread
448  *****************************************************************************
449  * Listens to SAP packets, and sends them to packet_handle
450  *****************************************************************************/
451 #define MAX_SAP_BUFFER 5000
452
453 static void Run( services_discovery_t *p_sd )
454 {
455     char *psz_addr;
456     int i;
457
458     /* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
459      * DNS queries, even if the DNS server returns an error with milliseconds.
460      * You don't want to know why the bug (as of XP SP2) wasn't fixed since
461      * Winsock 1.1 from Windows 95, if not Windows 3.1.
462      * Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation,
463      * we have to open sockets in Run() rather than Open(). */
464     if( var_CreateGetInteger( p_sd, "sap-ipv4" ) )
465     {
466         InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
467         InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
468         InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
469         InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
470     }
471     if( var_CreateGetInteger( p_sd, "sap-ipv6" ) )
472     {
473         char psz_address[NI_MAXNUMERICHOST] = "ff02::2:7ffe%";
474
475 #ifndef WIN32
476         struct if_nameindex *l = if_nameindex ();
477         if (l != NULL)
478         {
479             char *ptr = strchr (psz_address, '%') + 1;
480             for (unsigned i = 0; l[i].if_index; i++)
481             {
482                 strcpy (ptr, l[i].if_name);
483                 InitSocket (p_sd, psz_address, SAP_PORT);
484             }
485             if_freenameindex (l);
486         }
487 #else
488         /* this is the Winsock2 equivalant of SIOCGIFCONF on BSD stacks,
489            which if_nameindex uses internally anyway */
490
491         // first create a dummy socket to pin down the protocol family
492         SOCKET s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
493         if( s != INVALID_SOCKET )
494         {
495             INTERFACE_INFO ifaces[10]; // Assume there will be no more than 10 IP interfaces
496             size_t len = sizeof(ifaces);
497
498             if( SOCKET_ERROR != WSAIoctl(s, SIO_GET_INTERFACE_LIST, NULL, 0, &ifaces, len, &len, NULL, NULL) )
499             {
500                 unsigned ifcount = len/sizeof(INTERFACE_INFO);
501                 char *ptr = strchr (psz_address, '%') + 1;
502                 for(unsigned i = 1; i<=ifcount; ++i )
503                 {
504                     // append link-local zone identifier
505                     sprintf(ptr, "%d", i);
506                 }
507             }
508             closesocket(s);
509         }
510 #endif
511         *strchr (psz_address, '%') = '\0';
512
513         static const char ipv6_scopes[] = "1456789ABCDE";
514         for (const char *c_scope = ipv6_scopes; *c_scope; c_scope++)
515         {
516             psz_address[3] = *c_scope;
517             InitSocket( p_sd, psz_address, SAP_PORT );
518         }
519     }
520
521     psz_addr = var_CreateGetString( p_sd, "sap-addr" );
522     if( psz_addr && *psz_addr )
523     {
524         InitSocket( p_sd, psz_addr, SAP_PORT );
525         free( psz_addr );
526     }
527
528     if( p_sd->p_sys->i_fd == 0 )
529     {
530         msg_Err( p_sd, "unable to listen on any address" );
531         return;
532     }
533
534     /* read SAP packets */
535     while( !p_sd->b_die )
536     {
537         int i_read;
538         uint8_t p_buffer[MAX_SAP_BUFFER+1];
539
540         i_read = net_Select( p_sd, p_sd->p_sys->pi_fd,
541                              p_sd->p_sys->i_fd, p_buffer,
542                              MAX_SAP_BUFFER );
543
544         /* Check for items that need deletion */
545         for( i = 0; i < p_sd->p_sys->i_announces; i++ )
546         {
547             mtime_t i_timeout = ( mtime_t ) 1000000 * p_sd->p_sys->i_timeout;
548
549             if( mdate() - p_sd->p_sys->pp_announces[i]->i_last > i_timeout )
550             {
551                 RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i] );
552             }
553         }
554
555         /* Minimum length is > 6 */
556         if( i_read <= 6 )
557         {
558             if( i_read < 0 )
559             {
560                 msg_Warn( p_sd, "socket read error" );
561             }
562             continue;
563         }
564
565         p_buffer[i_read] = '\0';
566
567         /* Parse the packet */
568         ParseSAP( p_sd, p_buffer, i_read );
569     }
570 }
571
572 /**********************************************************************
573  * Demux: reads and demuxes data packets
574  * Return -1 if error, 0 if EOF, 1 else
575  **********************************************************************/
576 static int Demux( demux_t *p_demux )
577 {
578     sdp_t *p_sdp = p_demux->p_sys->p_sdp;
579     input_thread_t *p_input;
580     input_item_t *p_parent_input;
581
582     playlist_t *p_playlist = pl_Yield( p_demux );
583     p_input = (input_thread_t *)vlc_object_find( p_demux, VLC_OBJECT_INPUT,
584                                                  FIND_PARENT );
585     assert( p_input );
586     if( !p_input )
587     {
588         msg_Err( p_demux, "parent input could not be found" );
589         return VLC_EGENERIC;
590     }
591
592     p_parent_input = input_GetItem( p_input );
593
594     input_item_SetURI( p_parent_input, p_sdp->psz_uri );
595     input_item_SetName( p_parent_input, p_sdp->psz_sessionname );
596
597     vlc_mutex_lock( &p_parent_input->lock );
598
599     p_parent_input->i_type = ITEM_TYPE_NET;
600
601     if( p_playlist->status.p_item &&
602              p_playlist->status.p_item->p_input == p_parent_input )
603     {
604         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, VLC_TRUE,
605                           p_playlist->status.p_node, p_playlist->status.p_item );
606     }
607
608     vlc_mutex_unlock( &p_parent_input->lock );
609     vlc_object_release( p_input );
610     vlc_object_release( p_playlist );
611
612     return VLC_SUCCESS;
613 }
614
615 static int Control( demux_t *p_demux, int i_query, va_list args )
616 {
617     return VLC_EGENERIC;
618 }
619
620 /**************************************************************
621  * Local functions
622  **************************************************************/
623
624 /* i_read is at least > 6 */
625 static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
626                      size_t len )
627 {
628     int i;
629     const char          *psz_sdp;
630     const uint8_t *end = buf + len;
631     sdp_t               *p_sdp;
632
633     assert (buf[len] == '\0');
634
635     if (len < 4)
636         return VLC_EGENERIC;
637
638     uint8_t flags = buf[0];
639
640     /* First, check the sap announce is correct */
641     if ((flags >> 5) != 1)
642         return VLC_EGENERIC;
643
644     vlc_bool_t b_ipv6 = (flags & 0x10) != 0;
645     vlc_bool_t b_need_delete = (flags & 0x04) != 0;
646
647     if (flags & 0x02)
648     {
649         msg_Dbg( p_sd, "encrypted packet, unsupported" );
650         return VLC_EGENERIC;
651     }
652
653     vlc_bool_t b_compressed = (flags & 0x01) != 0;
654
655     uint16_t i_hash = U16_AT (buf + 2);
656
657     if( p_sd->p_sys->b_strict && i_hash == 0 )
658     {
659         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
660         return VLC_EGENERIC;
661     }
662
663     // Skips source address and auth data
664     buf += 4 + (b_ipv6 ? 16 : 4) + buf[1];
665     if (buf > end)
666         return VLC_EGENERIC;
667
668     uint8_t *decomp = NULL;
669     if( b_compressed )
670     {
671         int newsize = Decompress (buf, &decomp, end - buf);
672         if (newsize < 0)
673         {
674             msg_Dbg( p_sd, "decompression of SAP packet failed" );
675             return VLC_EGENERIC;
676         }
677
678         decomp = realloc (decomp, newsize + 1);
679         decomp[newsize] = '\0';
680         psz_sdp = (const char *)decomp;
681         len = newsize;
682     }
683     else
684     {
685         psz_sdp = (const char *)buf;
686         len = end - buf;
687     }
688
689     /* len is a strlen here here. both buf and decomp are len+1 where the 1 should be a \0 */
690     assert( psz_sdp[len] == '\0');
691
692     /* Skip payload type */
693     /* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
694     if (strncmp (psz_sdp, "v=0", 3))
695     {
696         size_t clen = strlen (psz_sdp) + 1;
697
698         if (strcmp (psz_sdp, "application/sdp"))
699         {
700             msg_Dbg (p_sd, "unsupported content type: %s", psz_sdp);
701             return VLC_EGENERIC;
702         }
703
704         // skips content type
705         if (len <= clen)
706             return VLC_EGENERIC;
707
708         len -= clen;
709         psz_sdp += clen;
710     }
711
712     /* Parse SDP info */
713     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
714
715     if( p_sdp == NULL )
716         return VLC_EGENERIC;
717
718     p_sdp->psz_sdp = psz_sdp;
719
720     /* Decide whether we should add a playlist item for this SDP */
721     /* Parse connection information (c= & m= ) */
722     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
723         p_sdp->psz_uri = NULL;
724
725     /* Multi-media or no-parse -> pass to LIVE.COM */
726     if( ( p_sdp->i_media_type != 14
727        && p_sdp->i_media_type != 32
728        && p_sdp->i_media_type != 33)
729      || p_sd->p_sys->b_parse == VLC_FALSE )
730     {
731         free( p_sdp->psz_uri );
732         if (asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp ) == -1)
733             p_sdp->psz_uri = NULL;
734     }
735
736     if( p_sdp->psz_uri == NULL ) return VLC_EGENERIC;
737
738     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
739     {
740         /* FIXME: slow */
741         /* FIXME: we create a new announce each time the sdp changes */
742         if( IsSameSession( p_sd->p_sys->pp_announces[i]->p_sdp, p_sdp ) )
743         {
744             if( b_need_delete )
745             {
746                 RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
747             }
748             else
749             {
750                 p_sd->p_sys->pp_announces[i]->i_last = mdate();
751             }
752             FreeSDP( p_sdp ); p_sdp = NULL;
753             return VLC_SUCCESS;
754         }
755     }
756
757     CreateAnnounce( p_sd, i_hash, p_sdp );
758
759     FREENULL (decomp);
760     return VLC_SUCCESS;
761 }
762
763 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint16_t i_hash,
764                                 sdp_t *p_sdp )
765 {
766     input_item_t *p_input;
767     const char *psz_value;
768     sap_announce_t *p_sap = (sap_announce_t *)malloc(
769                                         sizeof(sap_announce_t ) );
770     services_discovery_sys_t *p_sys;
771     if( p_sap == NULL )
772         return NULL;
773
774     p_sys = p_sd->p_sys;
775
776     p_sap->i_last = mdate();
777     p_sap->i_hash = i_hash;
778     p_sap->p_sdp = p_sdp;
779
780     /* Create the actual playlist item here */
781     p_input = input_ItemNewWithType( VLC_OBJECT(p_sd),
782                                      p_sap->p_sdp->psz_uri,
783                                      p_sdp->psz_sessionname,
784                                      0, NULL, -1, ITEM_TYPE_NET );
785     p_sap->i_input_id = p_input->i_id;
786     if( !p_input )
787     {
788         free( p_sap );
789         return NULL;
790     }
791
792     if( p_sys->b_timeshift )
793         input_ItemAddOption( p_input, ":access-filter=timeshift" );
794
795     psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "tool" );
796     if( psz_value != NULL )
797     {
798         input_ItemAddInfo( p_input, _("Session"), _("Tool"), "%s",
799                            psz_value );
800     }
801     if( strcmp( p_sdp->username, "-" ) )
802     {
803         input_ItemAddInfo( p_input, _("Session"), _("User"), "%s",
804                            p_sdp->username );
805     }
806
807     /* Handle group */
808     if (p_sap->p_sdp->mediac >= 1)
809         psz_value = FindAttribute (p_sap->p_sdp, 0, "x-plgroup");
810     else
811         psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "x-plgroup" );
812
813     services_discovery_AddItem( p_sd, p_input, psz_value /* category name */ );
814
815     TAB_APPEND( p_sys->i_announces, p_sys->pp_announces, p_sap );
816
817     return p_sap;
818 }
819
820
821 static const char *FindAttribute (const sdp_t *sdp, unsigned media,
822                                   const char *name)
823 {
824     /* Look for media attribute, and fallback to session */
825     return GetAttribute (sdp->mediav[media].pp_attributes,
826                          sdp->mediav[media].i_attributes, name)
827         ?: GetAttribute (sdp->pp_attributes, sdp->i_attributes, name);
828 }
829
830
831 /* Fill p_sdp->psz_uri */
832 static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
833 {
834     if (p_sdp->mediac == 0)
835     {
836         msg_Dbg (p_obj, "Ignoring SDP with no media");
837         return VLC_EGENERIC;
838     }
839
840     for (unsigned i = 1; i < p_sdp->mediac; i++)
841     {
842         if ((p_sdp->mediav[i].n_addr != p_sdp->mediav->n_addr)
843          || (p_sdp->mediav[i].addrlen != p_sdp->mediav->addrlen)
844          || memcmp (&p_sdp->mediav[i].addr, &p_sdp->mediav->addr,
845                     p_sdp->mediav->addrlen))
846         {
847             msg_Dbg (p_obj, "Multiple media ports not supported -> live555");
848             return VLC_EGENERIC;
849         }
850     }
851
852     if (p_sdp->mediav->n_addr != 1)
853     {
854         msg_Dbg (p_obj, "Layered encoding not supported -> live555");
855         return VLC_EGENERIC;
856     }
857
858     char psz_uri[1026];
859     const char *host;
860     int port;
861
862     psz_uri[0] = '[';
863     if (vlc_getnameinfo ((struct sockaddr *)&(p_sdp->mediav->addr),
864                          p_sdp->mediav->addrlen, psz_uri + 1,
865                          sizeof (psz_uri) - 2, &port, NI_NUMERICHOST))
866         return VLC_EGENERIC;
867
868     if (strchr (psz_uri + 1, ':'))
869     {
870         host = psz_uri;
871         strcat (psz_uri, "]");
872     }
873     else
874         host = psz_uri + 1;
875
876     /* Parse m= field */
877     char *sdp_proto = strdup (p_sdp->mediav[0].fmt);
878     if (sdp_proto == NULL)
879         return VLC_ENOMEM;
880
881     char *subtype = strchr (sdp_proto, ' ');
882     if (subtype == NULL)
883     {
884         msg_Dbg (p_obj, "missing SDP media subtype: %s", sdp_proto);
885         p_sdp->i_media_type = 0;
886     }
887     else
888     {
889         *subtype++ = '\0';
890         p_sdp->i_media_type = atoi (subtype);
891     }
892     if (p_sdp->i_media_type == 0)
893          p_sdp->i_media_type = 33;
894
895     /* RTP protocol, nul, VLC shortcut, nul, flags byte as follow:
896      * 0x1: Connection-Oriented media. */
897     static const char proto_match[] =
898         "udp\0"             "udp\0\0"
899         "RTP/AVP\0"         "rtp\0\0"
900         "UDPLite/RTP/AVP\0" "udplite\0\0"
901         "DCCP/RTP/AVP\0"    "dccp\0\1"
902         "TCP/RTP/AVP\0"     "rtptcp\0\1"
903         "\0";
904
905     const char *vlc_proto = NULL;
906     uint8_t flags = 0;
907     for (const char *proto = proto_match; *proto;)
908     {
909         if (strcasecmp (proto, sdp_proto) == 0)
910         {
911             vlc_proto = proto + strlen (proto) + 1;
912             flags = vlc_proto[strlen (vlc_proto) + 1];
913             break;
914         }
915         proto += strlen (proto) + 1;
916         proto += strlen (proto) + 2;
917     }
918
919     free (sdp_proto);
920     if (vlc_proto == NULL)
921     {
922         msg_Dbg (p_obj, "unknown SDP media protocol: %s",
923                  p_sdp->mediav[0].fmt);
924         return VLC_EGENERIC;
925     }
926
927     if (flags & 1)
928     {
929         /* Connection-oriented media */
930         const char *setup = FindAttribute (p_sdp, 0, "setup");
931         if (setup == NULL)
932             setup = "active"; /* default value */
933
934         if (strcmp (setup, "actpass") && strcmp (setup, "passive"))
935         {
936             msg_Dbg (p_obj, "unsupported COMEDIA mode: %s", setup);
937             return VLC_EGENERIC;
938         }
939
940         if (asprintf (&p_sdp->psz_uri, "%s://%s:%d", vlc_proto,
941                       host, port) == -1)
942             return VLC_ENOMEM;
943     }
944     else
945     {
946         /* Non-connected (normally multicast) media */
947
948         char psz_source[258] = "";
949         const char *sfilter = FindAttribute (p_sdp, 0, "source-filter");
950         if (sfilter != NULL)
951         {
952             char psz_source_ip[256];
953             unsigned ipv;
954
955             if (sscanf (sfilter, " incl IN IP%u %*s %255s ", &ipv,
956                         psz_source_ip) == 2)
957             {
958                 /* According to RFC4570, FQDNs can be used for source-filters,
959                  * but -seriously- this is impractical */
960                 switch (ipv)
961                 {
962 #ifdef AF_INET6
963                     case 6:
964                     {
965                         struct in6_addr addr;
966                         if ((inet_pton (AF_INET6, psz_source_ip, &addr) > 0)
967                         && (inet_ntop (AF_INET6, &addr, psz_source + 1,
968                                         sizeof (psz_source) - 2) != NULL))
969                         {
970                             psz_source[0] = '[';
971                             psz_source[strlen (psz_source)] = ']';
972                         }
973                         break;
974                     }
975 #endif
976                     case 4:
977                     {
978                         struct in_addr addr;
979                         if ((inet_pton (AF_INET, psz_source_ip, &addr) > 0)
980                         && (inet_ntop (AF_INET, &addr, psz_source,
981                                         sizeof (psz_source)) == NULL))
982                             *psz_source = '\0';
983                         break;
984                     }
985                 }
986             }
987         }
988
989         if (asprintf (&p_sdp->psz_uri, "%s://%s@%s:%i", vlc_proto, psz_source,
990                      host, port) == -1)
991             return VLC_ENOMEM;
992     }
993
994     return VLC_SUCCESS;
995 }
996
997
998 static int ParseSDPConnection (const char *str, struct sockaddr_storage *addr,
999                                socklen_t *addrlen, unsigned *number)
1000 {
1001     char host[60];
1002     unsigned fam, n1, n2;
1003
1004     int res = sscanf (str, "IN IP%u %59[^/]/%u/%u", &fam, host, &n1, &n2);
1005     if (res < 2)
1006         return -1;
1007
1008     switch (fam)
1009     {
1010 #ifdef AF_INET6
1011         case 6:
1012             addr->ss_family = AF_INET6;
1013 # ifdef HAVE_SA_LEN
1014             addr->ss_len =
1015 # endif
1016            *addrlen = sizeof (struct sockaddr_in6);
1017
1018             if (inet_pton (AF_INET6, host,
1019                            &((struct sockaddr_in6 *)addr)->sin6_addr) <= 0)
1020                 return -1;
1021
1022             *number = (res >= 3) ? n1 : 1;
1023             break;
1024 #endif
1025
1026         case 4:
1027             addr->ss_family = AF_INET;
1028 # ifdef HAVE_SA_LEN
1029             addr->ss_len =
1030 # endif
1031            *addrlen = sizeof (struct sockaddr_in);
1032
1033             if (inet_pton (AF_INET, host,
1034                            &((struct sockaddr_in *)addr)->sin_addr) <= 0)
1035                 return -1;
1036
1037             *number = (res >= 4) ? n2 : 1;
1038             break;
1039
1040         default:
1041             return -1;
1042     }
1043     return 0;
1044 }
1045
1046
1047 /***********************************************************************
1048  * ParseSDP : SDP parsing
1049  * *********************************************************************
1050  * Validate SDP and parse all fields
1051  ***********************************************************************/
1052 static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
1053 {
1054     if( psz_sdp == NULL )
1055         return NULL;
1056
1057     sdp_t *p_sdp = calloc (1, sizeof (*p_sdp));
1058     if (p_sdp == NULL)
1059         return NULL;
1060
1061     char expect = 'V';
1062     struct sockaddr_storage glob_addr;
1063     memset (&glob_addr, 0, sizeof (glob_addr));
1064     socklen_t glob_len = 0;
1065     unsigned glob_count = 1;
1066     int port = 0;
1067
1068     /* TODO: use iconv and charset attribute instead of EnsureUTF8 */
1069     while (*psz_sdp)
1070     {
1071         /* Extract one line */
1072         char *eol = strchr (psz_sdp, '\n');
1073         size_t linelen = eol ? (size_t)(eol - psz_sdp) : strlen (psz_sdp);
1074         char line[linelen + 1];
1075         memcpy (line, psz_sdp, linelen);
1076         line[linelen] = '\0';
1077
1078         psz_sdp += linelen + 1;
1079
1080         /* Remove carriage return if present */
1081         eol = strchr (line, '\r');
1082         if (eol != NULL)
1083         {
1084             linelen = eol - line;
1085             line[linelen] = '\0';
1086         }
1087
1088         /* Validate line */
1089         char cat = line[0], *data = line + 2;
1090         if (!cat || (strchr ("vosiuepcbtrzkam", cat) == NULL))
1091         {
1092             /* MUST ignore SDP with unknown line type */
1093             msg_Dbg (p_obj, "unknown SDP line type: 0x%02x", (int)cat);
1094             goto error;
1095         }
1096         if (line[1] != '=')
1097         {
1098             msg_Dbg (p_obj, "invalid SDP line: %s", line);
1099             goto error;
1100         }
1101
1102         assert (linelen >= 2);
1103
1104         /* SDP parsing state machine
1105          * We INTERNALLY use uppercase for session, lowercase for media
1106          */
1107         switch (expect)
1108         {
1109             /* Session description */
1110             case 'V':
1111                 expect = 'O';
1112                 if (cat != 'v')
1113                 {
1114                     msg_Dbg (p_obj, "missing SDP version");
1115                     goto error;
1116                 }
1117                 if (strcmp (data, "0"))
1118                 {
1119                     msg_Dbg (p_obj, "unknown SDP version: %s", data);
1120                     goto error;
1121                 }
1122                 break;
1123
1124             case 'O':
1125             {
1126                 expect = 'S';
1127                 if (cat != 'o')
1128                 {
1129                     msg_Dbg (p_obj, "missing SDP originator");
1130                     goto error;
1131                 }
1132
1133                 if ((sscanf (data, "%63s "I64Fu" "I64Fu" IN IP%u %1023s",
1134                              p_sdp->username, &p_sdp->session_id,
1135                              &p_sdp->session_version, &p_sdp->orig_ip_version,
1136                              p_sdp->orig_host) != 5)
1137                  || ((p_sdp->orig_ip_version != 4)
1138                   && (p_sdp->orig_ip_version != 6)))
1139                 {
1140                     msg_Dbg (p_obj, "SDP origin not supported: %s\n", data);
1141                     /* Or maybe out-of-range, but this looks suspicious */
1142                     return NULL;
1143                 }
1144                 EnsureUTF8 (p_sdp->orig_host);
1145                 break;
1146             }
1147
1148             case 'S':
1149             {
1150                 expect = 'I';
1151                 if ((cat != 's') || !*data)
1152                 {
1153                     /* MUST be present AND non-empty */
1154                     msg_Dbg (p_obj, "missing SDP session name");
1155                     goto error;
1156                 }
1157                 assert (p_sdp->psz_sessionname == NULL); // no memleak here
1158                 p_sdp->psz_sessionname = strdup (data);
1159                 EnsureUTF8 (p_sdp->psz_sessionname);
1160                 if (p_sdp->psz_sessionname == NULL)
1161                     goto error;
1162                 break;
1163             }
1164
1165             case 'I':
1166                 expect = 'U';
1167                 if (cat == 'i')
1168                     break;
1169             case 'U':
1170                 expect = 'E';
1171                 if (cat == 'u')
1172                     break;
1173             case 'E':
1174                 expect = 'E';
1175                 if (cat == 'e')
1176                     break;
1177             case 'P':
1178                 expect = 'P';
1179                 if (cat == 'p')
1180                     break;
1181             case 'C':
1182                 expect = 'B';
1183                 if (cat == 'c')
1184                 {
1185                     if (ParseSDPConnection (data, &glob_addr, &glob_len,
1186                                             &glob_count))
1187                     {
1188                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1189                                  "%s", data);
1190                         goto error;
1191                     }
1192                     break;
1193                 }
1194             case 'B':
1195                 assert (expect == 'B');
1196                 if (cat == 'b')
1197                     break;
1198             case 'T':
1199                 expect = 'R';
1200                 if (cat != 't')
1201                 {
1202                     msg_Dbg (p_obj, "missing SDP time description");
1203                     goto error;
1204                 }
1205                 break;
1206
1207             case 'R':
1208                 if ((cat == 't') || (cat == 'r'))
1209                     break;
1210
1211             case 'Z':
1212                 expect = 'K';
1213                 if (cat == 'z')
1214                     break;
1215             case 'K':
1216                 expect = 'A';
1217                 if (cat == 'k')
1218                     break;
1219             case 'A':
1220                 //expect = 'A';
1221                 if (cat == 'a')
1222                 {
1223                     attribute_t *p_attr = MakeAttribute (data);
1224                     TAB_APPEND( p_sdp->i_attributes, p_sdp->pp_attributes, p_attr );
1225                     break;
1226                 }
1227
1228             /* Media description */
1229             case 'm':
1230             media:
1231             {
1232                 expect = 'i';
1233                 if (cat != 'm')
1234                 {
1235                     msg_Dbg (p_obj, "missing SDP media description");
1236                     goto error;
1237                 }
1238                 struct sdp_media_t *m;
1239                 m = realloc (p_sdp->mediav, (p_sdp->mediac + 1) * sizeof (*m));
1240                 if (m == NULL)
1241                     goto error;
1242
1243                 p_sdp->mediav = m;
1244                 m += p_sdp->mediac;
1245                 p_sdp->mediac++;
1246
1247                 memset (m, 0, sizeof (*m));
1248                 memcpy (&m->addr, &glob_addr, m->addrlen = glob_len);
1249                 m->n_addr = glob_count;
1250
1251                 /* TODO: remember media type (if we need multiple medias) */
1252                 data = strchr (data, ' ');
1253                 if (data == NULL)
1254                 {
1255                     msg_Dbg (p_obj, "missing SDP media port");
1256                     goto error;
1257                 }
1258                 port = atoi (++data);
1259                 if (port <= 0 || port >= 65536)
1260                 {
1261                     msg_Dbg (p_obj, "invalid transport port %d", port);
1262                     goto error;
1263                 }
1264                 net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1265
1266                 data = strchr (data, ' ');
1267                 if (data == NULL)
1268                 {
1269                     msg_Dbg (p_obj, "missing SDP media format");
1270                     goto error;
1271                 }
1272                 m->fmt = strdup (++data);
1273                 if (m->fmt == NULL)
1274                     goto error;
1275
1276                 break;
1277             }
1278             case 'i':
1279                 expect = 'c';
1280                 if (cat == 'i')
1281                     break;
1282             case 'c':
1283                 expect = 'b';
1284                 if (cat == 'c')
1285                 {
1286                     struct sdp_media_t *m = p_sdp->mediav + p_sdp->mediac - 1;
1287                     if (ParseSDPConnection (data, &m->addr, &m->addrlen,
1288                                             &m->n_addr))
1289                     {
1290                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1291                                  "%s", data);
1292                         goto error;
1293                     }
1294                     net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1295                     break;
1296                 }
1297             case 'b':
1298                 expect = 'b';
1299                 if (cat == 'b')
1300                     break;
1301             case 'k':
1302                 expect = 'a';
1303                 if (cat == 'k')
1304                     break;
1305             case 'a':
1306                 assert (expect == 'a');
1307                 if (cat == 'a')
1308                 {
1309                     attribute_t *p_attr = MakeAttribute (data);
1310                     if (p_attr == NULL)
1311                         goto error;
1312
1313                     TAB_APPEND (p_sdp->mediav[p_sdp->mediac - 1].i_attributes,
1314                                 p_sdp->mediav[p_sdp->mediac - 1].pp_attributes, p_attr);
1315                     break;
1316                 }
1317
1318                 if (cat == 'm')
1319                     goto media;
1320
1321                 if (cat != 'm')
1322                 {
1323                     msg_Dbg (p_obj, "unexpected SDP line: 0x%02x", (int)cat);
1324                     goto error;
1325                 }
1326                 break;
1327
1328             default:
1329                 msg_Err (p_obj, "*** BUG in SDP parser! ***");
1330                 goto error;
1331         }
1332     }
1333
1334     return p_sdp;
1335
1336 error:
1337     FreeSDP (p_sdp);
1338     return NULL;
1339 }
1340
1341 static int InitSocket( services_discovery_t *p_sd, const char *psz_address,
1342                        int i_port )
1343 {
1344     int i_fd = net_ListenUDP1 ((vlc_object_t *)p_sd, psz_address, i_port);
1345     if (i_fd == -1)
1346         return VLC_EGENERIC;
1347
1348     shutdown( i_fd, SHUT_WR );
1349     INSERT_ELEM (p_sd->p_sys->pi_fd, p_sd->p_sys->i_fd,
1350                  p_sd->p_sys->i_fd, i_fd);
1351     return VLC_SUCCESS;
1352 }
1353
1354 static int Decompress( const unsigned char *psz_src, unsigned char **_dst, int i_len )
1355 {
1356 #ifdef HAVE_ZLIB_H
1357     int i_result, i_dstsize, n = 0;
1358     unsigned char *psz_dst = NULL;
1359     z_stream d_stream;
1360
1361     memset (&d_stream, 0, sizeof (d_stream));
1362
1363     i_result = inflateInit(&d_stream);
1364     if( i_result != Z_OK )
1365         return( -1 );
1366
1367     d_stream.next_in = (Bytef *)psz_src;
1368     d_stream.avail_in = i_len;
1369
1370     do
1371     {
1372         n++;
1373         psz_dst = (unsigned char *)realloc( psz_dst, n * 1000 );
1374         d_stream.next_out = (Bytef *)&psz_dst[(n - 1) * 1000];
1375         d_stream.avail_out = 1000;
1376
1377         i_result = inflate(&d_stream, Z_NO_FLUSH);
1378         if( ( i_result != Z_OK ) && ( i_result != Z_STREAM_END ) )
1379         {
1380             inflateEnd( &d_stream );
1381             return( -1 );
1382         }
1383     }
1384     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
1385            ( i_result != Z_STREAM_END ) );
1386
1387     i_dstsize = d_stream.total_out;
1388     inflateEnd( &d_stream );
1389
1390     *_dst = (unsigned char *)realloc( psz_dst, i_dstsize );
1391
1392     return i_dstsize;
1393 #else
1394     (void)psz_src;
1395     (void)_dst;
1396     (void)i_len;
1397     return -1;
1398 #endif
1399 }
1400
1401
1402 static void FreeSDP( sdp_t *p_sdp )
1403 {
1404     free( p_sdp->psz_sessionname );
1405     free( p_sdp->psz_uri );
1406
1407     for (unsigned j = 0; j < p_sdp->mediac; j++)
1408     {
1409         free (p_sdp->mediav[j].fmt);
1410         for (int i = 0; i < p_sdp->mediav[j].i_attributes; i++)
1411             FreeAttribute (p_sdp->mediav[j].pp_attributes[i]);
1412         free (p_sdp->mediav[j].pp_attributes);
1413     }
1414     free (p_sdp->mediav);
1415
1416     for (int i = 0; i < p_sdp->i_attributes; i++)
1417         FreeAttribute (p_sdp->pp_attributes[i]);
1418
1419     free (p_sdp->pp_attributes);
1420     free (p_sdp);
1421 }
1422
1423 static int RemoveAnnounce( services_discovery_t *p_sd,
1424                            sap_announce_t *p_announce )
1425 {
1426     int i;
1427
1428     if( p_announce->p_sdp )
1429     {
1430         FreeSDP( p_announce->p_sdp );
1431         p_announce->p_sdp = NULL;
1432     }
1433
1434     if( p_announce->i_input_id > -1 )
1435         playlist_DeleteFromInput( pl_Get(p_sd), p_announce->i_input_id, VLC_FALSE );
1436
1437     for( i = 0; i< p_sd->p_sys->i_announces; i++)
1438     {
1439         if( p_sd->p_sys->pp_announces[i] == p_announce )
1440         {
1441             REMOVE_ELEM( p_sd->p_sys->pp_announces, p_sd->p_sys->i_announces,
1442                          i);
1443             break;
1444         }
1445     }
1446
1447     free( p_announce );
1448
1449     return VLC_SUCCESS;
1450 }
1451
1452 static vlc_bool_t IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 )
1453 {
1454     /* A session is identified by
1455      * - username,
1456      * - session_id,
1457      * - network type (which is always IN),
1458      * - address type (currently, this means IP version),
1459      * - and hostname.
1460      */
1461     if (strcmp (p_sdp1->username, p_sdp2->username)
1462      || (p_sdp1->session_id != p_sdp2->session_id)
1463      || (p_sdp1->orig_ip_version != p_sdp2->orig_ip_version)
1464      || strcmp (p_sdp1->orig_host, p_sdp2->orig_host))
1465         return VLC_FALSE;
1466
1467     return VLC_TRUE;
1468 }
1469
1470
1471 static inline attribute_t *MakeAttribute (const char *str)
1472 {
1473     attribute_t *a = malloc (sizeof (*a) + strlen (str) + 1);
1474     if (a == NULL)
1475         return NULL;
1476
1477     strcpy (a->name, str);
1478     EnsureUTF8 (a->name);
1479     char *value = strchr (a->name, ':');
1480     if (value != NULL)
1481     {
1482         *value++ = '\0';
1483         a->value = value;
1484     }
1485     else
1486         a->value = "";
1487     return a;
1488 }
1489
1490
1491 static const char *GetAttribute (attribute_t **tab, unsigned n,
1492                                  const char *name)
1493 {
1494     for (unsigned i = 0; i < n; i++)
1495         if (strcasecmp (tab[i]->name, name) == 0)
1496             return tab[i]->value;
1497     return NULL;
1498 }
1499
1500
1501 static inline void FreeAttribute (attribute_t *a)
1502 {
1503     free (a);
1504 }