root/modules/services_discovery/sap.c

Revision 1a3b1a8f27df60a72615dfc1e18423ab5cf02a5e, 47.0 kB (checked in by Antoine Cellerier <dionoea@videolan.org>, 2 weeks ago)

Remove last occurences of yield in the code and comments.

  • Property mode set to 100644
Line 
1 /*****************************************************************************
2  * sap.c :  SAP interface module
3  *****************************************************************************
4  * Copyright (C) 2004-2005 the VideoLAN team
5  * Copyright © 2007 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Clément Stenac <zorglub@videolan.org>
9  *          Rémi Denis-Courmont
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Includes
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <assert.h>
36
37 #include <vlc_demux.h>
38 #include <vlc_services_discovery.h>
39
40 #include <vlc_network.h>
41 #include <vlc_charset.h>
42
43 #include <ctype.h>
44 #include <errno.h>
45
46 #ifdef HAVE_UNISTD_H
47 #    include <unistd.h>
48 #endif
49 #ifdef HAVE_SYS_TIME_H
50 #    include <sys/time.h>
51 #endif
52 #ifdef HAVE_POLL
53 # include <poll.h>
54 #endif
55
56 #ifdef HAVE_ZLIB_H
57 #   include <zlib.h>
58 #endif
59
60 #ifndef WIN32
61 #   include <net/if.h>
62 #endif
63
64 /************************************************************************
65  * Macros and definitions
66  ************************************************************************/
67
68 #define MAX_LINE_LENGTH 256
69
70 /* SAP is always on that port */
71 #define SAP_PORT 9875
72 /* Global-scope SAP address */
73 #define SAP_V4_GLOBAL_ADDRESS   "224.2.127.254"
74 /* Organization-local SAP address */
75 #define SAP_V4_ORG_ADDRESS      "239.195.255.255"
76 /* Local (smallest non-link-local scope) SAP address */
77 #define SAP_V4_LOCAL_ADDRESS    "239.255.255.255"
78 /* Link-local SAP address */
79 #define SAP_V4_LINK_ADDRESS     "224.0.0.255"
80 #define ADD_SESSION 1
81
82 /*****************************************************************************
83  * Module descriptor
84  *****************************************************************************/
85 #define SAP_ADDR_TEXT N_( "SAP multicast address" )
86 #define SAP_ADDR_LONGTEXT N_( "The SAP module normally chooses itself the " \
87                               "right addresses to listen to. However, you " \
88                               "can specify a specific address." )
89 #define SAP_IPV4_TEXT N_( "IPv4 SAP" )
90 #define SAP_IPV4_LONGTEXT N_( \
91       "Listen to IPv4 announcements on the standard addresses." )
92 #define SAP_IPV6_TEXT N_( "IPv6 SAP" )
93 #define SAP_IPV6_LONGTEXT N_( \
94       "Listen to IPv6 announcements on the standard addresses." )
95 #define SAP_SCOPE_TEXT N_( "IPv6 SAP scope" )
96 #define SAP_SCOPE_LONGTEXT N_( \
97        "Scope for IPv6 announcements (default is 8)." )
98 #define SAP_TIMEOUT_TEXT N_( "SAP timeout (seconds)" )
99 #define SAP_TIMEOUT_LONGTEXT N_( \
100        "Delay after which SAP items get deleted if no new announcement " \
101        "is received." )
102 #define SAP_PARSE_TEXT N_( "Try to parse the announce" )
103 #define SAP_PARSE_LONGTEXT N_( \
104        "This enables actual parsing of the announces by the SAP module. " \
105        "Otherwise, all announcements are parsed by the \"live555\" " \
106        "(RTP/RTSP) module." )
107 #define SAP_STRICT_TEXT N_( "SAP Strict mode" )
108 #define SAP_STRICT_LONGTEXT N_( \
109        "When this is set, the SAP parser will discard some non-compliant " \
110        "announcements." )
111 #define SAP_CACHE_TEXT N_("Use SAP cache")
112 #define SAP_CACHE_LONGTEXT N_( \
113        "This enables a SAP caching mechanism. " \
114        "This will result in lower SAP startup time, but you could end up " \
115        "with items corresponding to legacy streams." )
116 #define SAP_TIMESHIFT_TEXT N_("Allow timeshifting")
117 #define SAP_TIMESHIFT_LONGTEXT N_( "This automatically enables timeshifting " \
118         "for streams discovered through SAP announcements." )
119
120 /* Callbacks */
121     static int  Open ( vlc_object_t * );
122     static void Close( vlc_object_t * );
123     static int  OpenDemux ( vlc_object_t * );
124     static void CloseDemux ( vlc_object_t * );
125
126 vlc_module_begin();
127     set_shortname( N_("SAP"));
128     set_description( N_("SAP Announcements") );
129     set_category( CAT_PLAYLIST );
130     set_subcategory( SUBCAT_PLAYLIST_SD );
131
132     add_string( "sap-addr", NULL, NULL,
133                 SAP_ADDR_TEXT, SAP_ADDR_LONGTEXT, true );
134     add_bool( "sap-ipv4", 1 , NULL,
135                SAP_IPV4_TEXT,SAP_IPV4_LONGTEXT, true );
136     add_bool( "sap-ipv6", 1 , NULL,
137               SAP_IPV6_TEXT, SAP_IPV6_LONGTEXT, true );
138     add_integer( "sap-timeout", 1800, NULL,
139                  SAP_TIMEOUT_TEXT, SAP_TIMEOUT_LONGTEXT, true );
140     add_bool( "sap-parse", 1 , NULL,
141                SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, true );
142     add_bool( "sap-strict", 0 , NULL,
143                SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, true );
144 #if 0
145     add_bool( "sap-cache", 0 , NULL,
146                SAP_CACHE_TEXT,SAP_CACHE_LONGTEXT, true );
147 #endif
148     add_bool( "sap-timeshift", 0 , NULL,
149               SAP_TIMESHIFT_TEXT,SAP_TIMESHIFT_LONGTEXT, true );
150
151     set_capability( "services_discovery", 0 );
152     set_callbacks( Open, Close );
153
154     add_submodule();
155         set_description( N_("SDP Descriptions parser") );
156         add_shortcut( "sdp" );
157         set_capability( "demux", 51 );
158         set_callbacks( OpenDemux, CloseDemux );
159 vlc_module_end();
160
161
162 /*****************************************************************************
163  * Local structures
164  *****************************************************************************/
165
166 typedef struct sdp_t sdp_t;
167 typedef struct attribute_t attribute_t;
168 typedef struct sap_announce_t sap_announce_t;
169
170
171 struct sdp_media_t
172 {
173     struct sdp_t           *parent;
174     char                   *fmt;
175     struct sockaddr_storage addr;
176     socklen_t               addrlen;
177     unsigned                n_addr;
178     int           i_attributes;
179     attribute_t  **pp_attributes;
180 };
181
182
183 /* The structure that contains sdp information */
184 struct  sdp_t
185 {
186     const char *psz_sdp;
187
188     /* o field */
189     char     username[64];
190     uint64_t session_id;
191     uint64_t session_version;
192     unsigned orig_ip_version;
193     char     orig_host[1024];
194
195     /* s= field */
196     char *psz_sessionname;
197
198     /* old cruft */
199     /* "computed" URI */
200     char *psz_uri;
201     int           i_media_type;
202
203     /* a= global attributes */
204     int           i_attributes;
205     attribute_t  **pp_attributes;
206
207     /* medias (well, we only support one atm) */
208     unsigned            mediac;
209     struct sdp_media_t *mediav;
210 };
211
212 struct attribute_t
213 {
214     const char *value;
215     char name[];
216 };
217
218 struct sap_announce_t
219 {
220     mtime_t i_last;
221     mtime_t i_period;
222     uint8_t i_period_trust;
223
224     uint16_t    i_hash;
225     uint32_t    i_source[4];
226
227     /* SAP annnounces must only contain one SDP */
228     sdp_t       *p_sdp;
229
230     input_item_t * p_item;
231 };
232
233 struct services_discovery_sys_t
234 {
235     vlc_thread_t thread;
236
237     /* Socket descriptors */
238     int i_fd;
239     int *pi_fd;
240
241     /* Table of announces */
242     int i_announces;
243     struct sap_announce_t **pp_announces;
244
245     /* Modes */
246     bool  b_strict;
247     bool  b_parse;
248     bool  b_timeshift;
249
250     int i_timeout;
251 };
252
253 struct demux_sys_t
254 {
255     sdp_t *p_sdp;
256 };
257
258 /*****************************************************************************
259  * Local prototypes
260  *****************************************************************************/
261
262
263 /* Main functions */
264     static int Demux( demux_t *p_demux );
265     static int Control( demux_t *, int, va_list );
266     static void *Run  ( void *p_sd );
267
268 /* Main parsing functions */
269     static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp );
270     static int ParseSAP( services_discovery_t *p_sd, const uint8_t *p_buffer, size_t i_read );
271     static sdp_t *ParseSDP (vlc_object_t *p_sd, const char *psz_sdp);
272     static sap_announce_t *CreateAnnounce( services_discovery_t *, uint16_t, sdp_t * );
273     static int RemoveAnnounce( services_discovery_t *p_sd, sap_announce_t *p_announce );
274
275 /* Helper functions */
276     static inline attribute_t *MakeAttribute (const char *str);
277     static const char *GetAttribute (attribute_t **tab, unsigned n, const char *name);
278     static inline void FreeAttribute (attribute_t *a);
279     static const char *FindAttribute (const sdp_t *sdp, unsigned media,
280                                       const char *name);
281
282     static bool IsSameSession( sdp_t *p_sdp1, sdp_t *p_sdp2 );
283     static int InitSocket( services_discovery_t *p_sd, const char *psz_address, int i_port );
284     static int Decompress( const unsigned char *psz_src, unsigned char **_dst, int i_len );
285     static void FreeSDP( sdp_t *p_sdp );
286
287 static inline int min_int( int a, int b )
288 {
289     return a > b ? b : a;
290 }
291
292 /*****************************************************************************
293  * Open: initialize and create stuff
294  *****************************************************************************/
295 static int Open( vlc_object_t *p_this )
296 {
297     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
298     services_discovery_sys_t *p_sys  = (services_discovery_sys_t *)
299                                 malloc( sizeof( services_discovery_sys_t ) );
300     if( !p_sys )
301         return VLC_ENOMEM;
302
303     p_sys->i_timeout = var_CreateGetInteger( p_sd, "sap-timeout" );
304
305     p_sd->p_sys  = p_sys;
306
307     p_sys->pi_fd = NULL;
308     p_sys->i_fd = 0;
309
310     p_sys->b_strict = var_CreateGetInteger( p_sd, "sap-strict");
311     p_sys->b_parse = var_CreateGetInteger( p_sd, "sap-parse" );
312
313 #if 0
314     if( var_CreateGetInteger( p_sd, "sap-cache" ) )
315     {
316         CacheLoad( p_sd );
317     }
318 #endif
319
320     /* Cache sap_timeshift value */
321     p_sys->b_timeshift = var_CreateGetInteger( p_sd, "sap-timeshift" );
322
323     /* Set our name */
324     services_discovery_SetLocalizedName( p_sd, _("SAP") );
325
326     p_sys->i_announces = 0;
327     p_sys->pp_announces = NULL;
328     /* TODO: create sockets here, and fix racy sockets table */
329     if (vlc_clone (&p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW))
330     {
331         free (p_sys);
332         return VLC_EGENERIC;
333     }
334
335     return VLC_SUCCESS;
336 }
337
338 /*****************************************************************************
339  * OpenDemux: initialize and create stuff
340  *****************************************************************************/
341 static int OpenDemux( vlc_object_t *p_this )
342 {
343     demux_t *p_demux = (demux_t *)p_this;
344     const uint8_t *p_peek;
345     char *psz_sdp = NULL;
346     sdp_t *p_sdp = NULL;
347     int errval = VLC_EGENERIC;
348     size_t i_len;
349
350     if( !var_CreateGetInteger( p_demux, "sap-parse" ) )
351     {
352         /* We want livedotcom module to parse this SDP file */
353         return VLC_EGENERIC;
354     }
355
356     assert( p_demux->s ); /* this is NOT an access_demux */
357
358     /* Probe for SDP */
359     if( stream_Peek( p_demux->s, &p_peek, 7 ) < 7 )
360         return VLC_EGENERIC;
361
362     if( memcmp( p_peek, "v=0\r\no=", 7 ) && memcmp( p_peek, "v=0\no=", 6 ) )
363         return VLC_EGENERIC;
364
365     /* Gather the complete sdp file */
366     for( i_len = 0, psz_sdp = NULL; i_len < 65536; )
367     {
368         const int i_read_max = 1024;
369         char *psz_sdp_new = realloc( psz_sdp, i_len + i_read_max );
370         size_t i_read;
371         if( psz_sdp_new == NULL )
372         {
373             errval = VLC_ENOMEM;
374             goto error;
375         }
376         psz_sdp = psz_sdp_new;
377
378         i_read = stream_Read( p_demux->s, &psz_sdp[i_len], i_read_max );
379         if( (int)i_read < 0 )
380         {
381             msg_Err( p_demux, "cannot read SDP" );
382             goto error;
383         }
384         i_len += i_read;
385
386         psz_sdp[i_len] = '\0';
387
388         if( (int)i_read < i_read_max )
389             break; // EOF
390     }
391
392     p_sdp = ParseSDP( VLC_OBJECT(p_demux), psz_sdp );
393
394     if( !p_sdp )
395     {
396         msg_Warn( p_demux, "invalid SDP");
397         goto error;
398     }
399
400     if( ParseConnection( VLC_OBJECT( p_demux ), p_sdp ) )
401     {
402         p_sdp->psz_uri = NULL;
403     }
404     switch (p_sdp->i_media_type)
405     {   /* Should be in sync with modules/demux/rtp.c */
406         case  0: /* PCMU/8000 */
407         case  8: /* PCMA/8000 */
408         case 10: /* L16/44100/2 */
409         case 11: /* L16/44100 */
410         case 14: /* MPA/90000 */
411         case 32: /* MPV/90000 */
412         case 33: /* MP2/90000 */
413             break;
414         default:
415             goto error;
416     }
417     if( p_sdp->psz_uri == NULL ) goto error;
418
419     p_demux->p_sys = (demux_sys_t *)malloc( sizeof(demux_sys_t) );
420     p_demux->p_sys->p_sdp = p_sdp;
421     p_demux->pf_control = Control;
422     p_demux->pf_demux = Demux;
423
424     FREENULL( psz_sdp );
425     return VLC_SUCCESS;
426
427 error:
428     FREENULL( psz_sdp );
429     if( p_sdp ) FreeSDP( p_sdp ); p_sdp = NULL;
430     stream_Seek( p_demux->s, 0 );
431     return errval;
432 }
433
434 /*****************************************************************************
435  * Close:
436  *****************************************************************************/
437 static void Close( vlc_object_t *p_this )
438 {
439     services_discovery_t *p_sd = ( services_discovery_t* )p_this;
440     services_discovery_sys_t    *p_sys  = p_sd->p_sys;
441     int i;
442
443     vlc_cancel (p_sys->thread);
444     vlc_join (p_sys->thread, NULL);
445
446     for( i = p_sys->i_fd-1 ; i >= 0 ; i-- )
447     {
448         net_Close( p_sys->pi_fd[i] );
449     }
450     FREENULL( p_sys->pi_fd );
451
452 #if 0
453     if( config_GetInt( p_sd, "sap-cache" ) )
454     {
455         CacheSave( p_sd );
456     }
457 #endif
458
459     for( i = p_sys->i_announces  - 1;  i>= 0; i-- )
460     {
461         RemoveAnnounce( p_sd, p_sys->pp_announces[i] );
462     }
463     FREENULL( p_sys->pp_announces );
464
465     free( p_sys );
466 }
467
468 /*****************************************************************************
469  * CloseDemux: Close the demuxer
470  *****************************************************************************/
471 static void CloseDemux( vlc_object_t *p_this )
472 {
473     demux_t *p_demux = (demux_t *)p_this;
474     if( p_demux->p_sys )
475     {
476         if( p_demux->p_sys->p_sdp ) { FreeSDP( p_demux->p_sys->p_sdp ); p_demux->p_sys->p_sdp = NULL; }
477         free( p_demux->p_sys );
478     }
479 }
480
481 /*****************************************************************************
482  * Run: main SAP thread
483  *****************************************************************************
484  * Listens to SAP packets, and sends them to packet_handle
485  *****************************************************************************/
486 #define MAX_SAP_BUFFER 5000
487
488 static void *Run( void *data )
489 {
490     services_discovery_t *p_sd = data;
491     char *psz_addr;
492     int i;
493     int timeout = -1;
494     int canc = vlc_savecancel ();
495
496     /* Braindead Winsock DNS resolver will get stuck over 2 seconds per failed
497      * DNS queries, even if the DNS server returns an error with milliseconds.
498      * You don't want to know why the bug (as of XP SP2) wasn't fixed since
499      * Winsock 1.1 from Windows 95, if not Windows 3.1.
500      * Anyway, to avoid a 30 seconds delay for failed IPv6 socket creation,
501      * we have to open sockets in Run() rather than Open(). */
502     if( var_CreateGetInteger( p_sd, "sap-ipv4" ) )
503     {
504         InitSocket( p_sd, SAP_V4_GLOBAL_ADDRESS, SAP_PORT );
505         InitSocket( p_sd, SAP_V4_ORG_ADDRESS, SAP_PORT );
506         InitSocket( p_sd, SAP_V4_LOCAL_ADDRESS, SAP_PORT );
507         InitSocket( p_sd, SAP_V4_LINK_ADDRESS, SAP_PORT );
508     }
509     if( var_CreateGetInteger( p_sd, "sap-ipv6" ) )
510     {
511         char psz_address[NI_MAXNUMERICHOST] = "ff02::2:7ffe%";
512
513 #ifndef WIN32
514         struct if_nameindex *l = if_nameindex ();
515         if (l != NULL)
516         {
517             char *ptr = strchr (psz_address, '%') + 1;
518             for (unsigned i = 0; l[i].if_index; i++)
519             {
520                 strcpy (ptr, l[i].if_name);
521                 InitSocket (p_sd, psz_address, SAP_PORT);
522             }
523             if_freenameindex (l);
524         }
525 #else
526         /* this is the Winsock2 equivalant of SIOCGIFCONF on BSD stacks,
527            which if_nameindex uses internally anyway */
528
529         // first create a dummy socket to pin down the protocol family
530         SOCKET s = socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
531         if( s != INVALID_SOCKET )
532         {
533             INTERFACE_INFO ifaces[10]; // Assume there will be no more than 10 IP interfaces
534             size_t len = sizeof(ifaces);
535
536             if( SOCKET_ERROR != WSAIoctl(s, SIO_GET_INTERFACE_LIST, NULL, 0, &ifaces, len, &len, NULL, NULL) )
537             {
538                 unsigned ifcount = len/sizeof(INTERFACE_INFO);
539                 char *ptr = strchr (psz_address, '%') + 1;
540                 for(unsigned i = 1; i<=ifcount; ++i )
541                 {
542                     // append link-local zone identifier
543                     sprintf(ptr, "%d", i);
544                 }
545             }
546             closesocket(s);
547         }
548 #endif
549         *strchr (psz_address, '%') = '\0';
550
551         static const char ipv6_scopes[] = "1456789ABCDE";
552         for (const char *c_scope = ipv6_scopes; *c_scope; c_scope++)
553         {
554             psz_address[3] = *c_scope;
555             InitSocket( p_sd, psz_address, SAP_PORT );
556         }
557     }
558
559     psz_addr = var_CreateGetString( p_sd, "sap-addr" );
560     if( psz_addr && *psz_addr )
561         InitSocket( p_sd, psz_addr, SAP_PORT );
562     free( psz_addr );
563
564     if( p_sd->p_sys->i_fd == 0 )
565     {
566         msg_Err( p_sd, "unable to listen on any address" );
567         return NULL;
568     }
569
570     /* read SAP packets */
571     for (;;)
572     {
573         vlc_restorecancel (canc);
574         unsigned n = p_sd->p_sys->i_fd;
575         struct pollfd ufd[n];
576
577         for (unsigned i = 0; i < n; i++)
578         {
579             ufd[i].fd = p_sd->p_sys->pi_fd[i];
580             ufd[i].events = POLLIN;
581             ufd[i].revents = 0;
582         }
583
584         int val = poll (ufd, n, timeout);
585         canc = vlc_savecancel ();
586         if (val > 0)
587         {
588             for (unsigned i = 0; i < n; i++)
589             {
590                 if (ufd[i].revents)
591                 {
592                     uint8_t p_buffer[MAX_SAP_BUFFER+1];
593                     ssize_t i_read;
594
595                     i_read = net_Read (p_sd, ufd[i].fd, NULL, p_buffer,
596                                        MAX_SAP_BUFFER, false);
597                     if (i_read < 0)
598                         msg_Warn (p_sd, "receive error: %m");
599                     if (i_read > 6)
600                     {
601                         /* Parse the packet */
602                         p_buffer[i_read] = '\0';
603                         ParseSAP (p_sd, p_buffer, i_read);
604                     }
605                 }
606             }
607         }
608
609         mtime_t now = mdate();
610
611         /* A 1 hour timeout correspong to the RFC Implicit timeout.
612          * This timeout is tuned in the following loop. */
613         timeout = 1000 * 60 * 60;
614
615         /* Check for items that need deletion */
616         for( i = 0; i < p_sd->p_sys->i_announces; i++ )
617         {
618             mtime_t i_timeout = ( mtime_t ) 1000000 * p_sd->p_sys->i_timeout;
619             sap_announce_t * p_announce = p_sd->p_sys->pp_announces[i];
620             mtime_t i_last_period = now - p_announce->i_last;
621
622             /* Remove the annoucement, if the last announcement was 1 hour ago
623              * or if the last packet emitted was 3 times the average time
624              * between two packets */
625             if( ( p_announce->i_period_trust > 5 && i_last_period > 3 * p_announce->i_period ) ||
626                 i_last_period > i_timeout )
627             {
628                 RemoveAnnounce( p_sd, p_announce );
629             }
630             else
631             {
632                 /* Compute next timeout */
633                 if( p_announce->i_period_trust > 5 )
634                     timeout = min_int((3 * p_announce->i_period - i_last_period) / 1000, timeout);
635                 timeout = min_int((i_timeout - i_last_period)/1000, timeout);
636             }
637         }
638
639         if( !p_sd->p_sys->i_announces )
640             timeout = -1; /* We can safely poll indefinitly. */
641         else if( timeout < 200 )
642             timeout = 200; /* Don't wakeup too fast. */
643     }
644     assert (0);
645 }
646
647 /**********************************************************************
648  * Demux: reads and demuxes data packets
649  * Return -1 if error, 0 if EOF, 1 else
650  **********************************************************************/
651 static int Demux( demux_t *p_demux )
652 {
653     sdp_t *p_sdp = p_demux->p_sys->p_sdp;
654     input_thread_t *p_input;
655     input_item_t *p_parent_input;
656
657     p_input = (input_thread_t *)vlc_object_find( p_demux, VLC_OBJECT_INPUT,
658                                                  FIND_PARENT );
659     assert( p_input );
660     if( !p_input )
661     {
662         msg_Err( p_demux, "parent input could not be found" );
663         return VLC_EGENERIC;
664     }
665
666     /* This item hasn't been held by input_GetItem
667      * don't release it */
668     p_parent_input = input_GetItem( p_input );
669
670     input_item_SetURI( p_parent_input, p_sdp->psz_uri );
671     input_item_SetName( p_parent_input, p_sdp->psz_sessionname );
672
673     vlc_mutex_lock( &p_parent_input->lock );
674
675     p_parent_input->i_type = ITEM_TYPE_NET;
676
677     vlc_mutex_unlock( &p_parent_input->lock );
678     return VLC_SUCCESS;
679 }
680
681 static int Control( demux_t *p_demux, int i_query, va_list args )
682 {
683     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
684     return VLC_EGENERIC;
685 }
686
687 /**************************************************************
688  * Local functions
689  **************************************************************/
690
691 /* i_read is at least > 6 */
692 static int ParseSAP( services_discovery_t *p_sd, const uint8_t *buf,
693                      size_t len )
694 {
695     int i;
696     const char          *psz_sdp;
697     const uint8_t *end = buf + len;
698     sdp_t               *p_sdp;
699
700     assert (buf[len] == '\0');
701
702     if (len < 4)
703         return VLC_EGENERIC;
704
705     uint8_t flags = buf[0];
706
707     /* First, check the sap announce is correct */
708     if ((flags >> 5) != 1)
709         return VLC_EGENERIC;
710
711     bool b_ipv6 = (flags & 0x10) != 0;
712     bool b_need_delete = (flags & 0x04) != 0;
713
714     if (flags & 0x02)
715     {
716         msg_Dbg( p_sd, "encrypted packet, unsupported" );
717         return VLC_EGENERIC;
718     }
719
720     bool b_compressed = (flags & 0x01) != 0;
721
722     uint16_t i_hash = U16_AT (buf + 2);
723
724     if( p_sd->p_sys->b_strict && i_hash == 0 )
725     {
726         msg_Dbg( p_sd, "strict mode, discarding announce with null id hash");
727         return VLC_EGENERIC;
728     }
729
730     // Skips source address and auth data
731     buf += 4 + (b_ipv6 ? 16 : 4) + buf[1];
732     if (buf > end)
733         return VLC_EGENERIC;
734
735     uint8_t *decomp = NULL;
736     if( b_compressed )
737     {
738         int newsize = Decompress (buf, &decomp, end - buf);
739         if (newsize < 0)
740         {
741             msg_Dbg( p_sd, "decompression of SAP packet failed" );
742             return VLC_EGENERIC;
743         }
744
745         decomp = realloc (decomp, newsize + 1);
746         decomp[newsize] = '\0';
747         psz_sdp = (const char *)decomp;
748         len = newsize;
749     }
750     else
751     {
752         psz_sdp = (const char *)buf;
753         len = end - buf;
754     }
755
756     /* len is a strlen here here. both buf and decomp are len+1 where the 1 should be a \0 */
757     assert( psz_sdp[len] == '\0');
758
759     /* Skip payload type */
760     /* SAPv1 has implicit "application/sdp" payload type: first line is v=0 */
761     if (strncmp (psz_sdp, "v=0", 3))
762     {
763         size_t clen = strlen (psz_sdp) + 1;
764
765         if (strcmp (psz_sdp, "application/sdp"))
766         {
767             msg_Dbg (p_sd, "unsupported content type: %s", psz_sdp);
768             return VLC_EGENERIC;
769         }
770
771         // skips content type
772         if (len <= clen)
773             return VLC_EGENERIC;
774
775         len -= clen;
776         psz_sdp += clen;
777     }
778
779     /* Parse SDP info */
780     p_sdp = ParseSDP( VLC_OBJECT(p_sd), psz_sdp );
781
782     if( p_sdp == NULL )
783         return VLC_EGENERIC;
784
785     p_sdp->psz_sdp = psz_sdp;
786
787     /* Decide whether we should add a playlist item for this SDP */
788     /* Parse connection information (c= & m= ) */
789     if( ParseConnection( VLC_OBJECT(p_sd), p_sdp ) )
790         p_sdp->psz_uri = NULL;
791
792     /* Multi-media or no-parse -> pass to LIVE.COM */
793     if( ( p_sdp->i_media_type != 14
794        && p_sdp->i_media_type != 32
795        && p_sdp->i_media_type != 33)
796      || p_sd->p_sys->b_parse == false )
797     {
798         free( p_sdp->psz_uri );
799         if (asprintf( &p_sdp->psz_uri, "sdp://%s", p_sdp->psz_sdp ) == -1)
800             p_sdp->psz_uri = NULL;
801     }
802
803     if( p_sdp->psz_uri == NULL )
804     {
805         FreeSDP( p_sdp );
806         return VLC_EGENERIC;
807     }
808
809     for( i = 0 ; i< p_sd->p_sys->i_announces ; i++ )
810     {
811         sap_announce_t * p_announce = p_sd->p_sys->pp_announces[i];
812         /* FIXME: slow */
813         /* FIXME: we create a new announce each time the sdp changes */
814         if( IsSameSession( p_announce->p_sdp, p_sdp ) )
815         {
816             /* We don't support delete announcement as they can easily
817              * Be used to highjack an announcement by a third party.
818              * Intead we cleverly implement Implicit Announcement removal.
819              *
820              * if( b_need_delete )
821              *    RemoveAnnounce( p_sd, p_sd->p_sys->pp_announces[i]);
822              * else
823              */
824
825             if( !b_need_delete )
826             {
827                 /* No need to go after six, as we start to trust the
828                  * average period at six */
829                 if( p_announce->i_period_trust <= 5 )
830                     p_announce->i_period_trust++;
831
832                 /* Compute the average period */
833                 mtime_t now = mdate();
834                 p_announce->i_period = (p_announce->i_period + (now - p_announce->i_last)) / 2;
835                 p_announce->i_last = now;
836             }
837             FreeSDP( p_sdp ); p_sdp = NULL;
838             return VLC_SUCCESS;
839         }
840     }
841
842     CreateAnnounce( p_sd, i_hash, p_sdp );
843
844     FREENULL (decomp);
845     return VLC_SUCCESS;
846 }
847
848 sap_announce_t *CreateAnnounce( services_discovery_t *p_sd, uint16_t i_hash,
849                                 sdp_t *p_sdp )
850 {
851     input_item_t *p_input;
852     const char *psz_value;
853     sap_announce_t *p_sap = (sap_announce_t *)malloc(
854                                         sizeof(sap_announce_t ) );
855     services_discovery_sys_t *p_sys;
856     if( p_sap == NULL )
857         return NULL;
858
859     p_sys = p_sd->p_sys;
860
861     p_sap->i_last = mdate();
862     p_sap->i_period = 0;
863     p_sap->i_period_trust = 0;
864     p_sap->i_hash = i_hash;
865     p_sap->p_sdp = p_sdp;
866
867     /* Released in RemoveAnnounce */
868     p_input = input_item_NewWithType( VLC_OBJECT(p_sd),
869                                      p_sap->p_sdp->psz_uri,
870                                      p_sdp->psz_sessionname,
871                                      0, NULL, -1, ITEM_TYPE_NET );
872     p_sap->p_item = p_input;
873     if( !p_input )
874     {
875         free( p_sap );
876         return NULL;
877     }
878
879     if( p_sys->b_timeshift )
880         input_item_AddOption( p_input, ":access-filter=timeshift" );
881
882     psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "tool" );
883     if( psz_value != NULL )
884     {
885         input_item_AddInfo( p_input, _("Session"), _("Tool"), "%s", psz_value );
886     }
887     if( strcmp( p_sdp->username, "-" ) )
888     {
889         input_item_AddInfo( p_input, _("Session"), _("User"), "%s",
890                            p_sdp->username );
891     }
892
893     /* Handle group */
894     if (p_sap->p_sdp->mediac >= 1)
895         psz_value = FindAttribute (p_sap->p_sdp, 0, "x-plgroup");
896     else
897         psz_value = GetAttribute( p_sap->p_sdp->pp_attributes, p_sap->p_sdp->i_attributes, "x-plgroup" );
898
899     services_discovery_AddItem( p_sd, p_input, psz_value /* category name */ );
900
901     TAB_APPEND( p_sys->i_announces, p_sys->pp_announces, p_sap );
902
903     return p_sap;
904 }
905
906
907 static const char *FindAttribute (const sdp_t *sdp, unsigned media,
908                                   const char *name)
909 {
910     /* Look for media attribute, and fallback to session */
911     return GetAttribute (sdp->mediav[media].pp_attributes,
912                          sdp->mediav[media].i_attributes, name)
913         ?: GetAttribute (sdp->pp_attributes, sdp->i_attributes, name);
914 }
915
916
917 /* Fill p_sdp->psz_uri */
918