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