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