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