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