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