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