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