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