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