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