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