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