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