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