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