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