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