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