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