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