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