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