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