]> git.sesse.net Git - vlc/blob - modules/services_discovery/sap.c
vlc_plugin: fix non-LGPL plugins meta infos
[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_NET;
647
648     vlc_mutex_unlock( &p_parent_input->lock );
649     vlc_object_release( p_input );
650     return VLC_SUCCESS;
651 }
652
653 static int Control( demux_t *p_demux, int i_query, va_list args )
654 {
655     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
656     return VLC_EGENERIC;
657 }
658
659 /**************************************************************
660  * Local functions
661  **************************************************************/
662
663 /* i_read is at least > 6 */
664 static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
665                      size_t len )
666 {
667     int i;
668     const char          *psz_sdp;
669     const uint8_t *end = buf + len;
670     sdp_t               *p_sdp;
671     uint32_t            i_source[4];
672
673     assert (buf[len] == '\0');
674
675     if (len < 4)
676         return VLC_EGENERIC;
677
678     uint8_t flags = buf[0];
679     uint8_t auth_len = buf[1];
680
681     /* First, check the sap announce is correct */
682     if ((flags >> 5) != 1)
683         return VLC_EGENERIC;
684
685     bool b_ipv6 = (flags & 0x10) != 0;
686     bool b_need_delete = (flags & 0x04) != 0;
687
688     if (flags & 0x02)
689     {
690         msg_Dbg( p_sd, "encrypted packet, unsupported" );
691         return VLC_EGENERIC;
692     }
693
694     bool b_compressed = (flags & 0x01) != 0;
695
696     uint16_t i_hash = U16_AT (buf + 2);
697
698     if( p_sd->p_sys->b_strict && i_hash == 0 )
699     {
700         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
701         return VLC_EGENERIC;
702     }
703
704     buf += 4;
705     if( b_ipv6 )
706     {
707         for( int i = 0; i < 4; i++,buf+=4)
708             i_source[i] = U32_AT(buf);
709     }
710     else
711     {
712         memset(i_source, 0, sizeof(i_source));
713         i_source[3] = U32_AT(buf);
714         buf+=4;
715     }
716     // Skips auth data
717     buf += auth_len;
718     if (buf > end)
719         return VLC_EGENERIC;
720
721     uint8_t *decomp = NULL;
722     if( b_compressed )
723     {
724         int newsize = Decompress (buf, &decomp, end - buf);
725         if (newsize < 0)
726         {
727             msg_Dbg( p_sd, "decompression of SAP packet failed" );
728             return VLC_EGENERIC;
729         }
730
731         decomp = realloc (decomp, newsize + 1);
732         decomp[newsize] = '\0';
733         psz_sdp = (const char *)decomp;
734         len = newsize;
735     }
736     else
737     {
738         psz_sdp = (const char *)buf;
739         len = end - buf;
740     }
741
742     /* len is a strlen here here. both buf and decomp are len+1 where the 1 should be a \0 */
743     assert( psz_sdp[len] == '\0');
744
745     /* Skip payload type */
746     /* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
747     if (strncmp (psz_sdp, "v=0", 3))
748     {
749         size_t clen = strlen (psz_sdp) + 1;
750
751         if (strcmp (psz_sdp, "application/sdp"))
752         {
753             msg_Dbg (p_sd, "unsupported content type: %s", psz_sdp);
754             goto error;
755         }
756
757         // skips content type
758         if (len <= clen)
759             goto error;
760
761         len -= clen;
762         psz_sdp += clen;
763     }
764
765     /* Parse SDP info */
766     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
767
768     if( p_sdp == NULL )
769         goto error;
770
771     p_sdp->psz_sdp = psz_sdp;
772
773     /* Decide whether we should add a playlist item for this SDP */
774     /* Parse connection information (c= & m= ) */
775     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
776         p_sdp->psz_uri = NULL;
777
778     /* Multi-media or no-parse -> pass to LIVE.COM */
779     if( !IsWellKnownPayload( p_sdp->i_media_type ) || !p_sd->p_sys->b_parse )
780     {
781         free( p_sdp->psz_uri );
782         if (asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp ) == -1)
783             p_sdp->psz_uri = NULL;
784     }
785
786     if( p_sdp->psz_uri == NULL )
787     {
788         FreeSDP( p_sdp );
789         goto error;
790     }
791
792     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
793     {
794         sap_announce_t * p_announce = p_sd->p_sys->pp_announces[i];
795         /* FIXME: slow */
796         if( ( !i_hash && IsSameSession( p_announce->p_sdp, p_sdp ) )
797             || ( i_hash && p_announce->i_hash == i_hash
798                  && !memcmp(p_announce->i_source, i_source, sizeof(i_source)) ) )
799         {
800             /* We don't support delete announcement as they can easily
801              * Be used to highjack an announcement by a third party.
802              * Instead we cleverly implement Implicit Announcement removal.
803              *
804              * if( b_need_delete )
805              *    RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
806              * else
807              */
808
809             if( !b_need_delete )
810             {
811                 /* No need to go after six, as we start to trust the
812                  * average period at six */
813                 if( p_announce->i_period_trust <= 5 )
814                     p_announce->i_period_trust++;
815
816                 /* Compute the average period */
817                 mtime_t now = mdate();
818                 p_announce->i_period = ( p_announce->i_period * (p_announce->i_period_trust-1) + (now - p_announce->i_last) ) / p_announce->i_period_trust;
819                 p_announce->i_last = now;
820             }
821             FreeSDP( p_sdp );
822             free (decomp);
823             return VLC_SUCCESS;
824         }
825     }
826
827     CreateAnnounce( p_sd, i_source, i_hash, p_sdp );
828
829     free (decomp);
830     return VLC_SUCCESS;
831 error:
832     free (decomp);
833     return VLC_EGENERIC;
834 }
835
836 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint32_t *i_source, uint16_t i_hash,
837                                 sdp_t *p_sdp )
838 {
839     input_item_t *p_input;
840     const char *psz_value;
841     sap_announce_t *p_sap = (sap_announce_t *)malloc(
842                                         sizeof(sap_announce_t ) );
843     services_discovery_sys_t *p_sys;
844     if( p_sap == NULL )
845         return NULL;
846
847     p_sys = p_sd->p_sys;
848
849     p_sap->i_last = mdate();
850     p_sap->i_period = 0;
851     p_sap->i_period_trust = 0;
852     p_sap->i_hash = i_hash;
853     memcpy (p_sap->i_source, i_source, sizeof(p_sap->i_source));
854     p_sap->p_sdp = p_sdp;
855
856     /* Released in RemoveAnnounce */
857     p_input = input_item_NewWithType( p_sap->p_sdp->psz_uri,
858                                       p_sdp->psz_sessionname,
859                                       0, NULL, 0, -1, ITEM_TYPE_NET );
860     if( unlikely(p_input == NULL) )
861     {
862         free( p_sap );
863         return NULL;
864     }
865     p_sap->p_item = p_input;
866
867     vlc_meta_t *p_meta = vlc_meta_New();
868     if( likely(p_meta != NULL) )
869     {
870         vlc_meta_Set( p_meta, vlc_meta_Description, p_sdp->psz_sessioninfo );
871         p_input->p_meta = p_meta;
872     }
873
874     if( p_sdp->rtcp_port )
875     {
876         char *rtcp;
877         if( asprintf( &rtcp, ":rtcp-port=%u", p_sdp->rtcp_port ) != -1 )
878         {
879             input_item_AddOption( p_input, rtcp, VLC_INPUT_OPTION_TRUSTED );
880             free( rtcp );
881         }
882     }
883
884     psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "tool" );
885     if( psz_value != NULL )
886     {
887         input_item_AddInfo( p_input, _("Session"), _("Tool"), "%s", psz_value );
888     }
889     if( strcmp( p_sdp->username, "-" ) )
890     {
891         input_item_AddInfo( p_input, _("Session"), _("User"), "%s",
892                            p_sdp->username );
893     }
894
895     /* Handle category */
896     psz_value = GetAttribute(p_sap->p_sdp->pp_attributes,
897                              p_sap->p_sdp->i_attributes, "cat");
898     if (psz_value != NULL)
899     {
900         /* a=cat provides a dot-separated hierarchy.
901          * For the time being only replace dots with pipe. TODO: FIXME */
902         char *str = strdup(psz_value);
903         if (likely(str != NULL))
904             for (char *p = strchr(str, '.'); p != NULL; p = strchr(p, '.'))
905                 *(p++) = '|';
906         services_discovery_AddItem(p_sd, p_input, str ? str : psz_value);
907         free(str);
908     }
909     else
910     {
911         /* backward compatibility with VLC 0.7.3-2.0.0 senders */
912         psz_value = GetAttribute(p_sap->p_sdp->pp_attributes,
913                                  p_sap->p_sdp->i_attributes, "x-plgroup");
914         services_discovery_AddItem(p_sd, p_input, psz_value);
915     }
916
917     TAB_APPEND( p_sys->i_announces, p_sys->pp_announces, p_sap );
918
919     return p_sap;
920 }
921
922
923 static const char *FindAttribute (const sdp_t *sdp, unsigned media,
924                                   const char *name)
925 {
926     /* Look for media attribute, and fallback to session */
927     const char *attr = GetAttribute (sdp->mediav[media].pp_attributes,
928                                      sdp->mediav[media].i_attributes, name);
929     if (attr == NULL)
930         attr = GetAttribute (sdp->pp_attributes, sdp->i_attributes, name);
931     return attr;
932 }
933
934
935 /* Fill p_sdp->psz_uri */
936 static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
937 {
938     if (p_sdp->mediac == 0)
939     {
940         msg_Dbg (p_obj, "Ignoring SDP with no media");
941         return VLC_EGENERIC;
942     }
943
944     for (unsigned i = 1; i < p_sdp->mediac; i++)
945     {
946         if ((p_sdp->mediav[i].n_addr != p_sdp->mediav->n_addr)
947          || (p_sdp->mediav[i].addrlen != p_sdp->mediav->addrlen)
948          || memcmp (&p_sdp->mediav[i].addr, &p_sdp->mediav->addr,
949                     p_sdp->mediav->addrlen))
950         {
951             msg_Dbg (p_obj, "Multiple media ports not supported -> live555");
952             return VLC_EGENERIC;
953         }
954     }
955
956     if (p_sdp->mediav->n_addr != 1)
957     {
958         msg_Dbg (p_obj, "Layered encoding not supported -> live555");
959         return VLC_EGENERIC;
960     }
961
962     char psz_uri[1026];
963     const char *host;
964     int port;
965
966     psz_uri[0] = '[';
967     if (vlc_getnameinfo ((struct sockaddr *)&(p_sdp->mediav->addr),
968                          p_sdp->mediav->addrlen, psz_uri + 1,
969                          sizeof (psz_uri) - 2, &port, NI_NUMERICHOST))
970         return VLC_EGENERIC;
971
972     if (strchr (psz_uri + 1, ':'))
973     {
974         host = psz_uri;
975         strcat (psz_uri, "]");
976     }
977     else
978         host = psz_uri + 1;
979
980     /* Parse m= field */
981     char *sdp_proto = strdup (p_sdp->mediav[0].fmt);
982     if (sdp_proto == NULL)
983         return VLC_ENOMEM;
984
985     char *subtype = strchr (sdp_proto, ' ');
986     if (subtype == NULL)
987     {
988         msg_Dbg (p_obj, "missing SDP media subtype: %s", sdp_proto);
989         free (sdp_proto);
990         return VLC_EGENERIC;
991     }
992     else
993     {
994         *subtype++ = '\0';
995         /* FIXME: check for multiple payload types in RTP/AVP case.
996          * FIXME: check for "mpeg" subtype in raw udp case. */
997         if (!strcasecmp (sdp_proto, "udp"))
998             p_sdp->i_media_type = 33;
999         else
1000             p_sdp->i_media_type = atoi (subtype);
1001     }
1002
1003     /* RTP protocol, nul, VLC shortcut, nul, flags byte as follow:
1004      * 0x1: Connection-Oriented media. */
1005     static const char proto_match[] =
1006         "udp\0"             "udp\0\0"
1007         "RTP/AVP\0"         "rtp\0\0"
1008         "UDPLite/RTP/AVP\0" "udplite\0\0"
1009         "DCCP/RTP/AVP\0"    "dccp\0\1"
1010         "TCP/RTP/AVP\0"     "rtptcp\0\1"
1011         "\0";
1012
1013     const char *vlc_proto = NULL;
1014     uint8_t flags = 0;
1015     for (const char *proto = proto_match; *proto;)
1016     {
1017         if (strcasecmp (proto, sdp_proto) == 0)
1018         {
1019             vlc_proto = proto + strlen (proto) + 1;
1020             flags = vlc_proto[strlen (vlc_proto) + 1];
1021             break;
1022         }
1023         proto += strlen (proto) + 1;
1024         proto += strlen (proto) + 2;
1025     }
1026
1027     free (sdp_proto);
1028     if (vlc_proto == NULL)
1029     {
1030         msg_Dbg (p_obj, "unknown SDP media protocol: %s",
1031                  p_sdp->mediav[0].fmt);
1032         return VLC_EGENERIC;
1033     }
1034
1035     if (!strcmp (vlc_proto, "udp") || FindAttribute (p_sdp, 0, "rtcp-mux"))
1036         p_sdp->rtcp_port = 0;
1037     else
1038     {
1039         const char *rtcp = FindAttribute (p_sdp, 0, "rtcp");
1040         if (rtcp)
1041             p_sdp->rtcp_port = atoi (rtcp);
1042         else
1043         if (port & 1) /* odd port -> RTCP; next even port -> RTP */
1044             p_sdp->rtcp_port = port++;
1045         else /* even port -> RTP; next odd port -> RTCP */
1046             p_sdp->rtcp_port = port + 1;
1047     }
1048
1049     if (flags & 1)
1050     {
1051         /* Connection-oriented media */
1052         const char *setup = FindAttribute (p_sdp, 0, "setup");
1053         if (setup == NULL)
1054             setup = "active"; /* default value */
1055
1056         if (strcmp (setup, "actpass") && strcmp (setup, "passive"))
1057         {
1058             msg_Dbg (p_obj, "unsupported COMEDIA mode: %s", setup);
1059             return VLC_EGENERIC;
1060         }
1061
1062         if (asprintf (&p_sdp->psz_uri, "%s://%s:%d", vlc_proto,
1063                       host, port) == -1)
1064             return VLC_ENOMEM;
1065     }
1066     else
1067     {
1068         /* Non-connected (normally multicast) media */
1069         char psz_source[258] = "";
1070         const char *sfilter = FindAttribute (p_sdp, 0, "source-filter");
1071         if (sfilter != NULL)
1072         {
1073             char psz_source_ip[256];
1074             unsigned ipv;
1075
1076             if (sscanf (sfilter, " incl IN IP%u %*s %255s ", &ipv,
1077                         psz_source_ip) == 2)
1078             {
1079                 /* According to RFC4570, FQDNs can be used for source-filters,
1080                  * but -seriously- this is impractical */
1081                 switch (ipv)
1082                 {
1083 #ifdef AF_INET6
1084                     case 6:
1085                     {
1086                         struct in6_addr addr;
1087                         if ((inet_pton (AF_INET6, psz_source_ip, &addr) > 0)
1088                         && (inet_ntop (AF_INET6, &addr, psz_source + 1,
1089                                         sizeof (psz_source) - 2) != NULL))
1090                         {
1091                             psz_source[0] = '[';
1092                             psz_source[strlen (psz_source)] = ']';
1093                         }
1094                         break;
1095                     }
1096 #endif
1097                     case 4:
1098                     {
1099                         struct in_addr addr;
1100                         if ((inet_pton (AF_INET, psz_source_ip, &addr) > 0)
1101                         && (inet_ntop (AF_INET, &addr, psz_source,
1102                                         sizeof (psz_source)) == NULL))
1103                             *psz_source = '\0';
1104                         break;
1105                     }
1106                 }
1107             }
1108         }
1109
1110         if (asprintf (&p_sdp->psz_uri, "%s://%s@%s:%i", vlc_proto, psz_source,
1111                      host, port) == -1)
1112             return VLC_ENOMEM;
1113     }
1114
1115     return VLC_SUCCESS;
1116 }
1117
1118
1119 static int ParseSDPConnection (const char *str, struct sockaddr_storage *addr,
1120                                socklen_t *addrlen, unsigned *number)
1121 {
1122     char host[60];
1123     unsigned fam, n1, n2;
1124
1125     int res = sscanf (str, "IN IP%u %59[^/]/%u/%u", &fam, host, &n1, &n2);
1126     if (res < 2)
1127         return -1;
1128
1129     switch (fam)
1130     {
1131 #ifdef AF_INET6
1132         case 6:
1133             addr->ss_family = AF_INET6;
1134 # ifdef HAVE_SA_LEN
1135             addr->ss_len =
1136 # endif
1137            *addrlen = sizeof (struct sockaddr_in6);
1138
1139             if (inet_pton (AF_INET6, host,
1140                            &((struct sockaddr_in6 *)addr)->sin6_addr) <= 0)
1141                 return -1;
1142
1143             *number = (res >= 3) ? n1 : 1;
1144             break;
1145 #endif
1146
1147         case 4:
1148             addr->ss_family = AF_INET;
1149 # ifdef HAVE_SA_LEN
1150             addr->ss_len =
1151 # endif
1152            *addrlen = sizeof (struct sockaddr_in);
1153
1154             if (inet_pton (AF_INET, host,
1155                            &((struct sockaddr_in *)addr)->sin_addr) <= 0)
1156                 return -1;
1157
1158             *number = (res >= 4) ? n2 : 1;
1159             break;
1160
1161         default:
1162             return -1;
1163     }
1164     return 0;
1165 }
1166
1167
1168 /***********************************************************************
1169  * ParseSDP : SDP parsing
1170  * *********************************************************************
1171  * Validate SDP and parse all fields
1172  ***********************************************************************/
1173 static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp)
1174 {
1175     if( psz_sdp == NULL )
1176         return NULL;
1177
1178     sdp_t *p_sdp = calloc (1, sizeof (*p_sdp));
1179     if (p_sdp == NULL)
1180         return NULL;
1181
1182     char expect = 'V';
1183     struct sockaddr_storage glob_addr;
1184     memset (&glob_addr, 0, sizeof (glob_addr));
1185     socklen_t glob_len = 0;
1186     unsigned glob_count = 1;
1187     int port = 0;
1188
1189     /* TODO: use iconv and charset attribute instead of EnsureUTF8 */
1190     while (*psz_sdp)
1191     {
1192         /* Extract one line */
1193         char *eol = strchr (psz_sdp, '\n');
1194         size_t linelen = eol ? (size_t)(eol - psz_sdp) : strlen (psz_sdp);
1195         char line[linelen + 1];
1196         memcpy (line, psz_sdp, linelen);
1197         line[linelen] = '\0';
1198
1199         psz_sdp += linelen + 1;
1200
1201         /* Remove carriage return if present */
1202         eol = strchr (line, '\r');
1203         if (eol != NULL)
1204         {
1205             linelen = eol - line;
1206             line[linelen] = '\0';
1207         }
1208
1209         /* Validate line */
1210         char cat = line[0], *data = line + 2;
1211         if (!cat || (strchr ("vosiuepcbtrzkam", cat) == NULL))
1212         {
1213             /* MUST ignore SDP with unknown line type */
1214             msg_Dbg (p_obj, "unknown SDP line type: 0x%02x", (int)cat);
1215             goto error;
1216         }
1217         if (line[1] != '=')
1218         {
1219             msg_Dbg (p_obj, "invalid SDP line: %s", line);
1220             goto error;
1221         }
1222
1223         assert (linelen >= 2);
1224
1225         /* SDP parsing state machine
1226          * We INTERNALLY use uppercase for session, lowercase for media
1227          */
1228         switch (expect)
1229         {
1230             /* Session description */
1231             case 'V':
1232                 expect = 'O';
1233                 if (cat != 'v')
1234                 {
1235                     msg_Dbg (p_obj, "missing SDP version");
1236                     goto error;
1237                 }
1238                 if (strcmp (data, "0"))
1239                 {
1240                     msg_Dbg (p_obj, "unknown SDP version: %s", data);
1241                     goto error;
1242                 }
1243                 break;
1244
1245             case 'O':
1246             {
1247                 expect = 'S';
1248                 if (cat != 'o')
1249                 {
1250                     msg_Dbg (p_obj, "missing SDP originator");
1251                     goto error;
1252                 }
1253
1254                 if ((sscanf (data, "%63s %"SCNu64" %"SCNu64" IN IP%u %1023s",
1255                              p_sdp->username, &p_sdp->session_id,
1256                              &p_sdp->session_version, &p_sdp->orig_ip_version,
1257                              p_sdp->orig_host) != 5)
1258                  || ((p_sdp->orig_ip_version != 4)
1259                   && (p_sdp->orig_ip_version != 6)))
1260                 {
1261                     msg_Dbg (p_obj, "SDP origin not supported: %s", data);
1262                     /* Or maybe out-of-range, but this looks suspicious */
1263                     goto error;
1264                 }
1265                 EnsureUTF8 (p_sdp->orig_host);
1266                 break;
1267             }
1268
1269             case 'S':
1270             {
1271                 expect = 'I';
1272                 if ((cat != 's') || !*data)
1273                 {
1274                     /* MUST be present AND non-empty */
1275                     msg_Dbg (p_obj, "missing SDP session name");
1276                     goto error;
1277                 }
1278                 assert (p_sdp->psz_sessionname == NULL); // no memleak here
1279                 p_sdp->psz_sessionname = strdup (data);
1280                 if (p_sdp->psz_sessionname == NULL)
1281                     goto error;
1282                 EnsureUTF8 (p_sdp->psz_sessionname);
1283                 break;
1284             }
1285
1286             case 'I':
1287             {
1288                 expect = 'U';
1289                 /* optional (and may be empty) */
1290                 if (cat == 'i')
1291                 {
1292                     assert (p_sdp->psz_sessioninfo == NULL);
1293                     p_sdp->psz_sessioninfo = strdup (data);
1294                     if (p_sdp->psz_sessioninfo == NULL)
1295                         goto error;
1296                     EnsureUTF8 (p_sdp->psz_sessioninfo);
1297                     break;
1298                 }
1299             }
1300
1301             case 'U':
1302                 expect = 'E';
1303                 if (cat == 'u')
1304                     break;
1305             case 'E':
1306                 expect = 'E';
1307                 if (cat == 'e')
1308                     break;
1309             case 'P':
1310                 expect = 'P';
1311                 if (cat == 'p')
1312                     break;
1313             case 'C':
1314                 expect = 'B';
1315                 if (cat == 'c')
1316                 {
1317                     if (ParseSDPConnection (data, &glob_addr, &glob_len,
1318                                             &glob_count))
1319                     {
1320                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1321                                  "%s", data);
1322                         goto error;
1323                     }
1324                     break;
1325                 }
1326             case 'B':
1327                 assert (expect == 'B');
1328                 if (cat == 'b')
1329                     break;
1330             case 'T':
1331                 expect = 'R';
1332                 if (cat != 't')
1333                 {
1334                     msg_Dbg (p_obj, "missing SDP time description");
1335                     goto error;
1336                 }
1337                 break;
1338
1339             case 'R':
1340                 if ((cat == 't') || (cat == 'r'))
1341                     break;
1342
1343             case 'Z':
1344                 expect = 'K';
1345                 if (cat == 'z')
1346                     break;
1347             case 'K':
1348                 expect = 'A';
1349                 if (cat == 'k')
1350                     break;
1351             case 'A':
1352                 //expect = 'A';
1353                 if (cat == 'a')
1354                 {
1355                     attribute_t *p_attr = MakeAttribute (data);
1356                     TAB_APPEND( p_sdp->i_attributes, p_sdp->pp_attributes, p_attr );
1357                     break;
1358                 }
1359
1360             /* Media description */
1361             case 'm':
1362             media:
1363             {
1364                 expect = 'i';
1365                 if (cat != 'm')
1366                 {
1367                     msg_Dbg (p_obj, "missing SDP media description");
1368                     goto error;
1369                 }
1370                 struct sdp_media_t *m;
1371                 m = realloc (p_sdp->mediav, (p_sdp->mediac + 1) * sizeof (*m));
1372                 if (m == NULL)
1373                     goto error;
1374
1375                 p_sdp->mediav = m;
1376                 m += p_sdp->mediac;
1377                 p_sdp->mediac++;
1378
1379                 memset (m, 0, sizeof (*m));
1380                 memcpy (&m->addr, &glob_addr, m->addrlen = glob_len);
1381                 m->n_addr = glob_count;
1382
1383                 /* TODO: remember media type (if we need multiple medias) */
1384                 data = strchr (data, ' ');
1385                 if (data == NULL)
1386                 {
1387                     msg_Dbg (p_obj, "missing SDP media port");
1388                     goto error;
1389                 }
1390                 port = atoi (++data);
1391                 if (port <= 0 || port >= 65536)
1392                 {
1393                     msg_Dbg (p_obj, "invalid transport port %d", port);
1394                     goto error;
1395                 }
1396                 net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1397
1398                 data = strchr (data, ' ');
1399                 if (data == NULL)
1400                 {
1401                     msg_Dbg (p_obj, "missing SDP media format");
1402                     goto error;
1403                 }
1404                 m->fmt = strdup (++data);
1405                 if (m->fmt == NULL)
1406                     goto error;
1407
1408                 break;
1409             }
1410             case 'i':
1411                 expect = 'c';
1412                 if (cat == 'i')
1413                     break;
1414             case 'c':
1415                 expect = 'b';
1416                 if (cat == 'c')
1417                 {
1418                     struct sdp_media_t *m = p_sdp->mediav + p_sdp->mediac - 1;
1419                     if (ParseSDPConnection (data, &m->addr, &m->addrlen,
1420                                             &m->n_addr))
1421                     {
1422                         msg_Dbg (p_obj, "SDP connection infos not supported: "
1423                                  "%s", data);
1424                         goto error;
1425                     }
1426                     net_SetPort ((struct sockaddr *)&m->addr, htons (port));
1427                     break;
1428                 }
1429             case 'b':
1430                 expect = 'b';
1431                 if (cat == 'b')
1432                     break;
1433             case 'k':
1434                 expect = 'a';
1435                 if (cat == 'k')
1436                     break;
1437             case 'a':
1438                 assert (expect == 'a');
1439                 if (cat == 'a')
1440                 {
1441                     attribute_t *p_attr = MakeAttribute (data);
1442                     if (p_attr == NULL)
1443                         goto error;
1444
1445                     TAB_APPEND (p_sdp->mediav[p_sdp->mediac - 1].i_attributes,
1446                                 p_sdp->mediav[p_sdp->mediac - 1].pp_attributes, p_attr);
1447                     break;
1448                 }
1449
1450                 if (cat == 'm')
1451                     goto media;
1452
1453                 msg_Dbg (p_obj, "unexpected SDP line: 0x%02x", (int)cat);
1454                 goto error;
1455
1456             default:
1457                 msg_Err (p_obj, "*** BUG in SDP parser! ***");
1458                 goto error;
1459         }
1460     }
1461
1462     return p_sdp;
1463
1464 error:
1465     FreeSDP (p_sdp);
1466     return NULL;
1467 }
1468
1469 static int InitSocket( services_discovery_t *p_sd, const char *psz_address,
1470                        int i_port )
1471 {
1472     int i_fd = net_ListenUDP1 ((vlc_object_t *)p_sd, psz_address, i_port);
1473     if (i_fd == -1)
1474         return VLC_EGENERIC;
1475
1476     shutdown( i_fd, SHUT_WR );
1477     INSERT_ELEM (p_sd->p_sys->pi_fd, p_sd->p_sys->i_fd,
1478                  p_sd->p_sys->i_fd, i_fd);
1479     return VLC_SUCCESS;
1480 }
1481
1482 static int Decompress( const unsigned char *psz_src, unsigned char **_dst, int i_len )
1483 {
1484 #ifdef HAVE_ZLIB_H
1485     int i_result, i_dstsize, n = 0;
1486     unsigned char *psz_dst = NULL;
1487     z_stream d_stream;
1488
1489     memset (&d_stream, 0, sizeof (d_stream));
1490
1491     i_result = inflateInit(&d_stream);
1492     if( i_result != Z_OK )
1493         return( -1 );
1494
1495     d_stream.next_in = (Bytef *)psz_src;
1496     d_stream.avail_in = i_len;
1497
1498     do
1499     {
1500         n++;
1501         psz_dst = (unsigned char *)realloc( psz_dst, n * 1000 );
1502         d_stream.next_out = (Bytef *)&psz_dst[(n - 1) * 1000];
1503         d_stream.avail_out = 1000;
1504
1505         i_result = inflate(&d_stream, Z_NO_FLUSH);
1506         if( ( i_result != Z_OK ) && ( i_result != Z_STREAM_END ) )
1507         {
1508             inflateEnd( &d_stream );
1509             free( psz_dst );
1510             return( -1 );
1511         }
1512     }
1513     while( ( d_stream.avail_out == 0 ) && ( d_stream.avail_in != 0 ) &&
1514            ( i_result != Z_STREAM_END ) );
1515
1516     i_dstsize = d_stream.total_out;
1517     inflateEnd( &d_stream );
1518
1519     *_dst = (unsigned char *)realloc( psz_dst, i_dstsize );
1520
1521     return i_dstsize;
1522 #else
1523     (void)psz_src;
1524     (void)_dst;
1525     (void)i_len;
1526     return -1;
1527 #endif
1528 }
1529
1530
1531 static void FreeSDP( sdp_t *p_sdp )
1532 {
1533     free( p_sdp->psz_sessionname );
1534     free( p_sdp->psz_sessioninfo );
1535     free( p_sdp->psz_uri );
1536
1537     for (unsigned j = 0; j < p_sdp->mediac; j++)
1538     {
1539         free (p_sdp->mediav[j].fmt);
1540         for (int i = 0; i < p_sdp->mediav[j].i_attributes; i++)
1541             FreeAttribute (p_sdp->mediav[j].pp_attributes[i]);
1542         free (p_sdp->mediav[j].pp_attributes);
1543     }
1544     free (p_sdp->mediav);
1545
1546     for (int i = 0; i < p_sdp->i_attributes; i++)
1547         FreeAttribute (p_sdp->pp_attributes[i]);
1548
1549     free (p_sdp->pp_attributes);
1550     free (p_sdp);
1551 }
1552
1553 static int RemoveAnnounce( services_discovery_t *p_sd,
1554                            sap_announce_t *p_announce )
1555 {
1556     int i;
1557
1558     if( p_announce->p_sdp )
1559     {
1560         FreeSDP( p_announce->p_sdp );
1561         p_announce->p_sdp = NULL;
1562     }
1563
1564     if( p_announce->p_item )
1565     {
1566         services_discovery_RemoveItem( p_sd, p_announce->p_item );
1567         vlc_gc_decref( p_announce->p_item );
1568         p_announce->p_item = NULL;
1569     }
1570
1571     for( i = 0; i< p_sd->p_sys->i_announces; i++)
1572     {
1573         if( p_sd->p_sys->pp_announces[i] == p_announce )
1574         {
1575             REMOVE_ELEM( p_sd->p_sys->pp_announces, p_sd->p_sys->i_announces,
1576                          i);
1577             break;
1578         }
1579     }
1580
1581     free( p_announce );
1582
1583     return VLC_SUCCESS;
1584 }
1585
1586 /*
1587  * Compare two sessions, when hash is not set (SAP v0)
1588  */
1589 static bool IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 )
1590 {
1591     /* A session is identified by
1592      * - username,
1593      * - session_id,
1594      * - network type (which is always IN),
1595      * - address type (currently, this means IP version),
1596      * - and hostname.
1597      */
1598     if (strcmp (p_sdp1->username, p_sdp2->username)
1599      || (p_sdp1->session_id != p_sdp2->session_id)
1600      || (p_sdp1->orig_ip_version != p_sdp2->orig_ip_version)
1601      || strcmp (p_sdp1->orig_host, p_sdp2->orig_host))
1602         return false;
1603
1604     return true;
1605 }
1606
1607 static inline attribute_t *MakeAttribute (const char *str)
1608 {
1609     attribute_t *a = malloc (sizeof (*a) + strlen (str) + 1);
1610     if (a == NULL)
1611         return NULL;
1612
1613     strcpy (a->name, str);
1614     EnsureUTF8 (a->name);
1615     char *value = strchr (a->name, ':');
1616     if (value != NULL)
1617     {
1618         *value++ = '\0';
1619         a->value = value;
1620     }
1621     else
1622         a->value = "";
1623     return a;
1624 }
1625
1626
1627 static const char *GetAttribute (attribute_t **tab, unsigned n,
1628                                  const char *name)
1629 {
1630     for (unsigned i = 0; i < n; i++)
1631         if (strcasecmp (tab[i]->name, name) == 0)
1632             return tab[i]->value;
1633     return NULL;
1634 }
1635
1636
1637 static inline void FreeAttribute (attribute_t *a)
1638 {
1639     free (a);
1640 }