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