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