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