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