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