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