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