]> git.sesse.net Git - vlc/blob - modules/stream_out/rtp.c
rtsp: clean up multicast parameters
[vlc] / modules / stream_out / rtp.c
1 /*****************************************************************************
2  * rtp.c: rtp stream output module
3  *****************************************************************************
4  * Copyright (C) 2003-2004, 2010 the VideoLAN team
5  * Copyright © 2007-2008 Rémi Denis-Courmont
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Pierre Ynard
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
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 <vlc_sout.h>
36 #include <vlc_block.h>
37
38 #include <vlc_httpd.h>
39 #include <vlc_url.h>
40 #include <vlc_network.h>
41 #include <vlc_fs.h>
42 #include <vlc_rand.h>
43 #ifdef HAVE_SRTP
44 # include <srtp.h>
45 #endif
46
47 #include "rtp.h"
48
49 #ifdef HAVE_UNISTD_H
50 #   include <sys/types.h>
51 #   include <unistd.h>
52 #endif
53 #ifdef HAVE_ARPA_INET_H
54 #   include <arpa/inet.h>
55 #endif
56 #ifdef HAVE_LINUX_DCCP_H
57 #   include <linux/dccp.h>
58 #endif
59 #ifndef IPPROTO_DCCP
60 # define IPPROTO_DCCP 33
61 #endif
62 #ifndef IPPROTO_UDPLITE
63 # define IPPROTO_UDPLITE 136
64 #endif
65
66 #include <errno.h>
67
68 #include <assert.h>
69
70 /*****************************************************************************
71  * Module descriptor
72  *****************************************************************************/
73
74 #define DEST_TEXT N_("Destination")
75 #define DEST_LONGTEXT N_( \
76     "This is the output URL that will be used." )
77 #define SDP_TEXT N_("SDP")
78 #define SDP_LONGTEXT N_( \
79     "This allows you to specify how the SDP (Session Descriptor) for this RTP "\
80     "session will be made available. You must use an url: http://location to " \
81     "access the SDP via HTTP, rtsp://location for RTSP access, and sap:// " \
82     "for the SDP to be announced via SAP." )
83 #define SAP_TEXT N_("SAP announcing")
84 #define SAP_LONGTEXT N_("Announce this session with SAP.")
85 #define MUX_TEXT N_("Muxer")
86 #define MUX_LONGTEXT N_( \
87     "This allows you to specify the muxer used for the streaming output. " \
88     "Default is to use no muxer (standard RTP stream)." )
89
90 #define NAME_TEXT N_("Session name")
91 #define NAME_LONGTEXT N_( \
92     "This is the name of the session that will be announced in the SDP " \
93     "(Session Descriptor)." )
94 #define DESC_TEXT N_("Session description")
95 #define DESC_LONGTEXT N_( \
96     "This allows you to give a short description with details about the stream, " \
97     "that will be announced in the SDP (Session Descriptor)." )
98 #define URL_TEXT N_("Session URL")
99 #define URL_LONGTEXT N_( \
100     "This allows you to give an URL with more details about the stream " \
101     "(often the website of the streaming organization), that will " \
102     "be announced in the SDP (Session Descriptor)." )
103 #define EMAIL_TEXT N_("Session email")
104 #define EMAIL_LONGTEXT N_( \
105     "This allows you to give a contact mail address for the stream, that will " \
106     "be announced in the SDP (Session Descriptor)." )
107 #define PHONE_TEXT N_("Session phone number")
108 #define PHONE_LONGTEXT N_( \
109     "This allows you to give a contact telephone number for the stream, that will " \
110     "be announced in the SDP (Session Descriptor)." )
111
112 #define PORT_TEXT N_("Port")
113 #define PORT_LONGTEXT N_( \
114     "This allows you to specify the base port for the RTP streaming." )
115 #define PORT_AUDIO_TEXT N_("Audio port")
116 #define PORT_AUDIO_LONGTEXT N_( \
117     "This allows you to specify the default audio port for the RTP streaming." )
118 #define PORT_VIDEO_TEXT N_("Video port")
119 #define PORT_VIDEO_LONGTEXT N_( \
120     "This allows you to specify the default video port for the RTP streaming." )
121
122 #define TTL_TEXT N_("Hop limit (TTL)")
123 #define TTL_LONGTEXT N_( \
124     "This is the hop limit (also known as \"Time-To-Live\" or TTL) of " \
125     "the multicast packets sent by the stream output (-1 = use operating " \
126     "system built-in default).")
127
128 #define RTCP_MUX_TEXT N_("RTP/RTCP multiplexing")
129 #define RTCP_MUX_LONGTEXT N_( \
130     "This sends and receives RTCP packet multiplexed over the same port " \
131     "as RTP packets." )
132
133 #define CACHING_TEXT N_("Caching value (ms)")
134 #define CACHING_LONGTEXT N_( \
135     "Default caching value for outbound RTP streams. This " \
136     "value should be set in milliseconds." )
137
138 #define PROTO_TEXT N_("Transport protocol")
139 #define PROTO_LONGTEXT N_( \
140     "This selects which transport protocol to use for RTP." )
141
142 #define SRTP_KEY_TEXT N_("SRTP key (hexadecimal)")
143 #define SRTP_KEY_LONGTEXT N_( \
144     "RTP packets will be integrity-protected and ciphered "\
145     "with this Secure RTP master shared secret key.")
146
147 #define SRTP_SALT_TEXT N_("SRTP salt (hexadecimal)")
148 #define SRTP_SALT_LONGTEXT N_( \
149     "Secure RTP requires a (non-secret) master salt value.")
150
151 static const char *const ppsz_protos[] = {
152     "dccp", "sctp", "tcp", "udp", "udplite",
153 };
154
155 static const char *const ppsz_protocols[] = {
156     "DCCP", "SCTP", "TCP", "UDP", "UDP-Lite",
157 };
158
159 #define RFC3016_TEXT N_("MP4A LATM")
160 #define RFC3016_LONGTEXT N_( \
161     "This allows you to stream MPEG4 LATM audio streams (see RFC3016)." )
162
163 #define RTSP_HOST_TEXT N_( "RTSP host address" )
164 #define RTSP_HOST_LONGTEXT N_( \
165     "This defines the address, port and path the RTSP VOD server will listen " \
166     "on.\nSyntax is address:port/path. The default is to listen on all "\
167     "interfaces (address 0.0.0.0), on port 554, with no path.\nTo listen " \
168     "only on the local interface, use \"localhost\" as address." )
169
170 #define RTSP_TIMEOUT_TEXT N_( "RTSP session timeout (s)" )
171 #define RTSP_TIMEOUT_LONGTEXT N_( "RTSP sessions will be closed after " \
172     "not receiving any RTSP request for this long. Setting it to a " \
173     "negative value or zero disables timeouts. The default is 60 (one " \
174     "minute)." )
175
176 static int  Open ( vlc_object_t * );
177 static void Close( vlc_object_t * );
178
179 #define SOUT_CFG_PREFIX "sout-rtp-"
180 #define MAX_EMPTY_BLOCKS 200
181
182 vlc_module_begin ()
183     set_shortname( N_("RTP"))
184     set_description( N_("RTP stream output") )
185     set_capability( "sout stream", 0 )
186     add_shortcut( "rtp", "vod" )
187     set_category( CAT_SOUT )
188     set_subcategory( SUBCAT_SOUT_STREAM )
189
190     add_string( SOUT_CFG_PREFIX "dst", "", DEST_TEXT,
191                 DEST_LONGTEXT, true )
192     add_string( SOUT_CFG_PREFIX "sdp", "", SDP_TEXT,
193                 SDP_LONGTEXT, true )
194     add_string( SOUT_CFG_PREFIX "mux", "", MUX_TEXT,
195                 MUX_LONGTEXT, true )
196     add_bool( SOUT_CFG_PREFIX "sap", false, SAP_TEXT, SAP_LONGTEXT,
197               true )
198
199     add_string( SOUT_CFG_PREFIX "name", "", NAME_TEXT,
200                 NAME_LONGTEXT, true )
201     add_string( SOUT_CFG_PREFIX "description", "", DESC_TEXT,
202                 DESC_LONGTEXT, true )
203     add_string( SOUT_CFG_PREFIX "url", "", URL_TEXT,
204                 URL_LONGTEXT, true )
205     add_string( SOUT_CFG_PREFIX "email", "", EMAIL_TEXT,
206                 EMAIL_LONGTEXT, true )
207     add_string( SOUT_CFG_PREFIX "phone", "", PHONE_TEXT,
208                 PHONE_LONGTEXT, true )
209
210     add_string( SOUT_CFG_PREFIX "proto", "udp", PROTO_TEXT,
211                 PROTO_LONGTEXT, false )
212         change_string_list( ppsz_protos, ppsz_protocols, NULL )
213     add_integer( SOUT_CFG_PREFIX "port", 5004, PORT_TEXT,
214                  PORT_LONGTEXT, true )
215     add_integer( SOUT_CFG_PREFIX "port-audio", 0, PORT_AUDIO_TEXT,
216                  PORT_AUDIO_LONGTEXT, true )
217     add_integer( SOUT_CFG_PREFIX "port-video", 0, PORT_VIDEO_TEXT,
218                  PORT_VIDEO_LONGTEXT, true )
219
220     add_integer( SOUT_CFG_PREFIX "ttl", -1, TTL_TEXT,
221                  TTL_LONGTEXT, true )
222     add_bool( SOUT_CFG_PREFIX "rtcp-mux", false,
223               RTCP_MUX_TEXT, RTCP_MUX_LONGTEXT, false )
224     add_integer( SOUT_CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000,
225                  CACHING_TEXT, CACHING_LONGTEXT, true )
226
227 #ifdef HAVE_SRTP
228     add_string( SOUT_CFG_PREFIX "key", "",
229                 SRTP_KEY_TEXT, SRTP_KEY_LONGTEXT, false )
230     add_string( SOUT_CFG_PREFIX "salt", "",
231                 SRTP_SALT_TEXT, SRTP_SALT_LONGTEXT, false )
232 #endif
233
234     add_bool( SOUT_CFG_PREFIX "mp4a-latm", false, RFC3016_TEXT,
235                  RFC3016_LONGTEXT, false )
236
237     set_callbacks( Open, Close )
238
239     add_submodule ()
240     set_shortname( N_("RTSP VoD" ) )
241     set_description( N_("RTSP VoD server") )
242     set_category( CAT_SOUT )
243     set_subcategory( SUBCAT_SOUT_VOD )
244     set_capability( "vod server", 10 )
245     set_callbacks( OpenVoD, CloseVoD )
246     add_shortcut( "rtsp" )
247     add_string ( "rtsp-host", NULL, RTSP_HOST_TEXT,
248                  RTSP_HOST_LONGTEXT, true )
249     add_integer( "rtsp-timeout", 60, RTSP_TIMEOUT_TEXT,
250                  RTSP_TIMEOUT_LONGTEXT, true )
251
252 vlc_module_end ()
253
254 /*****************************************************************************
255  * Exported prototypes
256  *****************************************************************************/
257 static const char *const ppsz_sout_options[] = {
258     "dst", "name", "port", "port-audio", "port-video", "*sdp", "ttl", "mux",
259     "sap", "description", "url", "email", "phone",
260     "proto", "rtcp-mux", "caching", "key", "salt",
261     "mp4a-latm", NULL
262 };
263
264 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
265 static int               Del ( sout_stream_t *, sout_stream_id_t * );
266 static int               Send( sout_stream_t *, sout_stream_id_t *,
267                                block_t* );
268 static sout_stream_id_t *MuxAdd ( sout_stream_t *, es_format_t * );
269 static int               MuxDel ( sout_stream_t *, sout_stream_id_t * );
270 static int               MuxSend( sout_stream_t *, sout_stream_id_t *,
271                                   block_t* );
272
273 static sout_access_out_t *GrabberCreate( sout_stream_t *p_sout );
274 static void* ThreadSend( void * );
275 static void *rtp_listen_thread( void * );
276
277 static void SDPHandleUrl( sout_stream_t *, const char * );
278
279 static int SapSetup( sout_stream_t *p_stream );
280 static int FileSetup( sout_stream_t *p_stream );
281 static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t * );
282
283 static int64_t rtp_init_ts( const vod_media_t *p_media,
284                             const char *psz_vod_session );
285
286 struct sout_stream_sys_t
287 {
288     /* SDP */
289     char    *psz_sdp;
290     vlc_mutex_t  lock_sdp;
291
292     /* SDP to disk */
293     char *psz_sdp_file;
294
295     /* SDP via SAP */
296     bool b_export_sap;
297     session_descriptor_t *p_session;
298
299     /* SDP via HTTP */
300     httpd_host_t *p_httpd_host;
301     httpd_file_t *p_httpd_file;
302
303     /* RTSP */
304     rtsp_stream_t *rtsp;
305
306     /* RTSP NPT and timestamp computations */
307     mtime_t      i_npt_zero;    /* when NPT=0 packet is sent */
308     int64_t      i_pts_zero;    /* predicts PTS of NPT=0 packet */
309     int64_t      i_pts_offset;  /* matches actual PTS to prediction */
310     vlc_mutex_t  lock_ts;
311
312     /* */
313     char     *psz_destination;
314     uint16_t  i_port;
315     uint16_t  i_port_audio;
316     uint16_t  i_port_video;
317     uint8_t   proto;
318     bool      rtcp_mux;
319     bool      b_latm;
320
321     /* VoD */
322     vod_media_t *p_vod_media;
323     char     *psz_vod_session;
324
325     /* in case we do TS/PS over rtp */
326     sout_mux_t        *p_mux;
327     sout_access_out_t *p_grab;
328     block_t           *packet;
329
330     /* */
331     vlc_mutex_t      lock_es;
332     int              i_es;
333     sout_stream_id_t **es;
334 };
335
336 typedef struct rtp_sink_t
337 {
338     int rtp_fd;
339     rtcp_sender_t *rtcp;
340 } rtp_sink_t;
341
342 struct sout_stream_id_t
343 {
344     sout_stream_t *p_stream;
345     /* rtp field */
346     uint16_t    i_sequence;
347     bool        b_ts_init;
348     uint32_t    i_ts_offset;
349     uint8_t     ssrc[4];
350
351     /* for rtsp */
352     uint16_t    i_seq_sent_next;
353
354     /* for sdp */
355     rtp_format_t rtp_fmt;
356     int          i_port;
357
358     /* Packetizer specific fields */
359     int                 i_mtu;
360 #ifdef HAVE_SRTP
361     srtp_session_t     *srtp;
362 #endif
363
364     /* Packets sinks */
365     vlc_thread_t      thread;
366     vlc_mutex_t       lock_sink;
367     int               sinkc;
368     rtp_sink_t       *sinkv;
369     rtsp_stream_id_t *rtsp_id;
370     struct {
371         int          *fd;
372         vlc_thread_t  thread;
373     } listen;
374
375     block_fifo_t     *p_fifo;
376     int64_t           i_caching;
377 };
378
379 /*****************************************************************************
380  * Open:
381  *****************************************************************************/
382 static int Open( vlc_object_t *p_this )
383 {
384     sout_stream_t       *p_stream = (sout_stream_t*)p_this;
385     sout_instance_t     *p_sout = p_stream->p_sout;
386     sout_stream_sys_t   *p_sys = NULL;
387     config_chain_t      *p_cfg = NULL;
388     char                *psz;
389     bool          b_rtsp = false;
390
391     config_ChainParse( p_stream, SOUT_CFG_PREFIX,
392                        ppsz_sout_options, p_stream->p_cfg );
393
394     p_sys = malloc( sizeof( sout_stream_sys_t ) );
395     if( p_sys == NULL )
396         return VLC_ENOMEM;
397
398     p_sys->psz_destination = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "dst" );
399
400     p_sys->i_port       = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port" );
401     p_sys->i_port_audio = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-audio" );
402     p_sys->i_port_video = var_GetInteger( p_stream, SOUT_CFG_PREFIX "port-video" );
403     p_sys->rtcp_mux     = var_GetBool( p_stream, SOUT_CFG_PREFIX "rtcp-mux" );
404
405     if( p_sys->i_port_audio && p_sys->i_port_video == p_sys->i_port_audio )
406     {
407         msg_Err( p_stream, "audio and video RTP port must be distinct" );
408         free( p_sys->psz_destination );
409         free( p_sys );
410         return VLC_EGENERIC;
411     }
412
413     for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
414     {
415         if( !strcmp( p_cfg->psz_name, "sdp" )
416          && ( p_cfg->psz_value != NULL )
417          && !strncasecmp( p_cfg->psz_value, "rtsp:", 5 ) )
418         {
419             b_rtsp = true;
420             break;
421         }
422     }
423     if( !b_rtsp )
424     {
425         psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
426         if( psz != NULL )
427         {
428             if( !strncasecmp( psz, "rtsp:", 5 ) )
429                 b_rtsp = true;
430             free( psz );
431         }
432     }
433
434     /* Transport protocol */
435     p_sys->proto = IPPROTO_UDP;
436     psz = var_GetNonEmptyString (p_stream, SOUT_CFG_PREFIX"proto");
437
438     if ((psz == NULL) || !strcasecmp (psz, "udp"))
439         (void)0; /* default */
440     else
441     if (!strcasecmp (psz, "dccp"))
442     {
443         p_sys->proto = IPPROTO_DCCP;
444         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
445     }
446 #if 0
447     else
448     if (!strcasecmp (psz, "sctp"))
449     {
450         p_sys->proto = IPPROTO_TCP;
451         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
452     }
453 #endif
454 #if 0
455     else
456     if (!strcasecmp (psz, "tcp"))
457     {
458         p_sys->proto = IPPROTO_TCP;
459         p_sys->rtcp_mux = true; /* Force RTP/RTCP mux */
460     }
461 #endif
462     else
463     if (!strcasecmp (psz, "udplite") || !strcasecmp (psz, "udp-lite"))
464         p_sys->proto = IPPROTO_UDPLITE;
465     else
466         msg_Warn (p_this, "unknown or unsupported transport protocol \"%s\"",
467                   psz);
468     free (psz);
469     var_Create (p_this, "dccp-service", VLC_VAR_STRING);
470
471     p_sys->p_vod_media = NULL;
472     p_sys->psz_vod_session = NULL;
473
474     if (! strcmp(p_stream->psz_name, "vod"))
475     {
476         /* The VLM stops all instances before deleting a media, so this
477          * reference will remain valid during the lifetime of the rtp
478          * stream output. */
479         p_sys->p_vod_media = var_InheritAddress(p_stream, "vod-media");
480
481         if (p_sys->p_vod_media != NULL)
482         {
483             p_sys->psz_vod_session = var_InheritString(p_stream, "vod-session");
484             if (p_sys->psz_vod_session == NULL)
485             {
486                 msg_Err(p_stream, "missing VoD session");
487                 free(p_sys);
488                 return VLC_EGENERIC;
489             }
490
491             const char *mux = vod_get_mux(p_sys->p_vod_media);
492             var_SetString(p_stream, SOUT_CFG_PREFIX "mux", mux);
493         }
494     }
495
496     if( p_sys->psz_destination == NULL && !b_rtsp
497         && p_sys->p_vod_media == NULL )
498     {
499         msg_Err( p_stream, "missing destination and not in RTSP mode" );
500         free( p_sys );
501         return VLC_EGENERIC;
502     }
503
504     int i_ttl = var_GetInteger( p_stream, SOUT_CFG_PREFIX "ttl" );
505     if( i_ttl != -1 )
506     {
507         var_Create( p_stream, "ttl", VLC_VAR_INTEGER );
508         var_SetInteger( p_stream, "ttl", i_ttl );
509     }
510
511     p_sys->b_latm = var_GetBool( p_stream, SOUT_CFG_PREFIX "mp4a-latm" );
512
513     /* NPT=0 time will be determined when we packetize the first packet
514      * (of any ES). But we want to be able to report rtptime in RTSP
515      * without waiting (and already did in the VoD case). So until then,
516      * we use an arbitrary reference PTS for timestamp computations, and
517      * then actual PTS will catch up using offsets. */
518     p_sys->i_npt_zero = VLC_TS_INVALID;
519     p_sys->i_pts_zero = rtp_init_ts(p_sys->p_vod_media,
520                                     p_sys->psz_vod_session); 
521     p_sys->i_es = 0;
522     p_sys->es   = NULL;
523     p_sys->rtsp = NULL;
524     p_sys->psz_sdp = NULL;
525
526     p_sys->b_export_sap = false;
527     p_sys->p_session = NULL;
528     p_sys->psz_sdp_file = NULL;
529
530     p_sys->p_httpd_host = NULL;
531     p_sys->p_httpd_file = NULL;
532
533     p_stream->p_sys     = p_sys;
534
535     vlc_mutex_init( &p_sys->lock_sdp );
536     vlc_mutex_init( &p_sys->lock_ts );
537     vlc_mutex_init( &p_sys->lock_es );
538
539     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
540     if( psz != NULL )
541     {
542         /* Check muxer type */
543         if( strncasecmp( psz, "ps", 2 )
544          && strncasecmp( psz, "mpeg1", 5 )
545          && strncasecmp( psz, "ts", 2 ) )
546         {
547             msg_Err( p_stream, "unsupported muxer type for RTP (only TS/PS)" );
548             free( psz );
549             vlc_mutex_destroy( &p_sys->lock_sdp );
550             vlc_mutex_destroy( &p_sys->lock_ts );
551             vlc_mutex_destroy( &p_sys->lock_es );
552             free( p_sys->psz_vod_session );
553             free( p_sys->psz_destination );
554             free( p_sys );
555             return VLC_EGENERIC;
556         }
557
558         p_sys->p_grab = GrabberCreate( p_stream );
559         p_sys->p_mux = sout_MuxNew( p_sout, psz, p_sys->p_grab );
560         free( psz );
561
562         if( p_sys->p_mux == NULL )
563         {
564             msg_Err( p_stream, "cannot create muxer" );
565             sout_AccessOutDelete( p_sys->p_grab );
566             vlc_mutex_destroy( &p_sys->lock_sdp );
567             vlc_mutex_destroy( &p_sys->lock_ts );
568             vlc_mutex_destroy( &p_sys->lock_es );
569             free( p_sys->psz_vod_session );
570             free( p_sys->psz_destination );
571             free( p_sys );
572             return VLC_EGENERIC;
573         }
574
575         p_sys->packet = NULL;
576
577         p_stream->pf_add  = MuxAdd;
578         p_stream->pf_del  = MuxDel;
579         p_stream->pf_send = MuxSend;
580     }
581     else
582     {
583         p_sys->p_mux    = NULL;
584         p_sys->p_grab   = NULL;
585
586         p_stream->pf_add    = Add;
587         p_stream->pf_del    = Del;
588         p_stream->pf_send   = Send;
589     }
590
591     if( var_GetBool( p_stream, SOUT_CFG_PREFIX"sap" ) )
592         SDPHandleUrl( p_stream, "sap" );
593
594     psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "sdp" );
595     if( psz != NULL )
596     {
597         config_chain_t *p_cfg;
598
599         SDPHandleUrl( p_stream, psz );
600
601         for( p_cfg = p_stream->p_cfg; p_cfg != NULL; p_cfg = p_cfg->p_next )
602         {
603             if( !strcmp( p_cfg->psz_name, "sdp" ) )
604             {
605                 if( p_cfg->psz_value == NULL || *p_cfg->psz_value == '\0' )
606                     continue;
607
608                 /* needed both :sout-rtp-sdp= and rtp{sdp=} can be used */
609                 if( !strcmp( p_cfg->psz_value, psz ) )
610                     continue;
611
612                 SDPHandleUrl( p_stream, p_cfg->psz_value );
613             }
614         }
615         free( psz );
616     }
617
618     /* update p_sout->i_out_pace_nocontrol */
619     p_stream->p_sout->i_out_pace_nocontrol++;
620
621     if( p_sys->p_mux != NULL )
622     {
623         sout_stream_id_t *id = Add( p_stream, NULL );
624         if( id == NULL )
625         {
626             Close( p_this );
627             return VLC_EGENERIC;
628         }
629     }
630
631     return VLC_SUCCESS;
632 }
633
634 /*****************************************************************************
635  * Close:
636  *****************************************************************************/
637 static void Close( vlc_object_t * p_this )
638 {
639     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
640     sout_stream_sys_t *p_sys = p_stream->p_sys;
641
642     /* update p_sout->i_out_pace_nocontrol */
643     p_stream->p_sout->i_out_pace_nocontrol--;
644
645     if( p_sys->p_mux )
646     {
647         assert( p_sys->i_es <= 1 );
648
649         sout_MuxDelete( p_sys->p_mux );
650         if ( p_sys->i_es > 0 )
651             Del( p_stream, p_sys->es[0] );
652         sout_AccessOutDelete( p_sys->p_grab );
653
654         if( p_sys->packet )
655         {
656             block_Release( p_sys->packet );
657         }
658     }
659
660     if( p_sys->rtsp != NULL )
661         RtspUnsetup( p_sys->rtsp );
662
663     vlc_mutex_destroy( &p_sys->lock_sdp );
664     vlc_mutex_destroy( &p_sys->lock_ts );
665     vlc_mutex_destroy( &p_sys->lock_es );
666
667     if( p_sys->p_httpd_file )
668         httpd_FileDelete( p_sys->p_httpd_file );
669
670     if( p_sys->p_httpd_host )
671         httpd_HostDelete( p_sys->p_httpd_host );
672
673     free( p_sys->psz_sdp );
674
675     if( p_sys->psz_sdp_file != NULL )
676     {
677 #ifdef HAVE_UNISTD_H
678         unlink( p_sys->psz_sdp_file );
679 #endif
680         free( p_sys->psz_sdp_file );
681     }
682     free( p_sys->psz_vod_session );
683     free( p_sys->psz_destination );
684     free( p_sys );
685 }
686
687 /*****************************************************************************
688  * SDPHandleUrl:
689  *****************************************************************************/
690 static void SDPHandleUrl( sout_stream_t *p_stream, const char *psz_url )
691 {
692     sout_stream_sys_t *p_sys = p_stream->p_sys;
693     vlc_url_t url;
694
695     vlc_UrlParse( &url, psz_url, 0 );
696     if( url.psz_protocol && !strcasecmp( url.psz_protocol, "http" ) )
697     {
698         if( p_sys->p_httpd_file )
699         {
700             msg_Err( p_stream, "you can use sdp=http:// only once" );
701             goto out;
702         }
703
704         if( HttpSetup( p_stream, &url ) )
705         {
706             msg_Err( p_stream, "cannot export SDP as HTTP" );
707         }
708     }
709     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "rtsp" ) )
710     {
711         if( p_sys->rtsp != NULL )
712         {
713             msg_Err( p_stream, "you can use sdp=rtsp:// only once" );
714             goto out;
715         }
716
717         p_sys->rtsp = RtspSetup( VLC_OBJECT(p_stream), NULL, &url );
718         if( p_sys->rtsp == NULL )
719             msg_Err( p_stream, "cannot export SDP as RTSP" );
720     }
721     else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) ||
722              ( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) )
723     {
724         p_sys->b_export_sap = true;
725         SapSetup( p_stream );
726     }
727     else if( url.psz_protocol && !strcasecmp( url.psz_protocol, "file" ) )
728     {
729         if( p_sys->psz_sdp_file != NULL )
730         {
731             msg_Err( p_stream, "you can use sdp=file:// only once" );
732             goto out;
733         }
734         p_sys->psz_sdp_file = make_path( psz_url );
735         if( p_sys->psz_sdp_file == NULL )
736             goto out;
737         FileSetup( p_stream );
738     }
739     else
740     {
741         msg_Warn( p_stream, "unknown protocol for SDP (%s)",
742                   url.psz_protocol );
743     }
744
745 out:
746     vlc_UrlClean( &url );
747 }
748
749 /*****************************************************************************
750  * SDPGenerate
751  *****************************************************************************/
752 /*static*/
753 char *SDPGenerate( sout_stream_t *p_stream, const char *rtsp_url )
754 {
755     sout_stream_sys_t *p_sys = p_stream->p_sys;
756     char *psz_sdp = NULL;
757     struct sockaddr_storage dst;
758     socklen_t dstlen;
759     int i;
760     /*
761      * When we have a fixed destination (typically when we do multicast),
762      * we need to put the actual port numbers in the SDP.
763      * When there is no fixed destination, we only support RTSP unicast
764      * on-demand setup, so we should rather let the clients decide which ports
765      * to use.
766      * When there is both a fixed destination and RTSP unicast, we need to
767      * put port numbers used by the fixed destination, otherwise the SDP would
768      * become totally incorrect for multicast use. It should be noted that
769      * port numbers from SDP with RTSP are only "recommendation" from the
770      * server to the clients (per RFC2326), so only broken clients will fail
771      * to handle this properly. There is no solution but to use two differents
772      * output chain with two different RTSP URLs if you need to handle this
773      * scenario.
774      */
775     int inclport;
776
777     vlc_mutex_lock( &p_sys->lock_es );
778     if( unlikely(p_sys->i_es == 0 || (rtsp_url != NULL && !p_sys->es[0]->rtsp_id)) )
779         goto out; /* hmm... */
780
781     if( p_sys->psz_destination != NULL )
782     {
783         inclport = 1;
784
785         /* Oh boy, this is really ugly! */
786         dstlen = sizeof( dst );
787         if( p_sys->es[0]->listen.fd != NULL )
788             getsockname( p_sys->es[0]->listen.fd[0],
789                          (struct sockaddr *)&dst, &dstlen );
790         else
791             getpeername( p_sys->es[0]->sinkv[0].rtp_fd,
792                          (struct sockaddr *)&dst, &dstlen );
793     }
794     else
795     {
796         inclport = 0;
797
798         /* Check against URL format rtsp://[<ipv6>]:<port>/<path> */
799         bool ipv6 = rtsp_url != NULL && strlen( rtsp_url ) > 7
800                     && rtsp_url[7] == '[';
801
802         /* Dummy destination address for RTSP */
803         dstlen = ipv6 ? sizeof( struct sockaddr_in6 )
804                       : sizeof( struct sockaddr_in );
805         memset (&dst, 0, dstlen);
806         dst.ss_family = ipv6 ? AF_INET6 : AF_INET;
807 #ifdef HAVE_SA_LEN
808         dst.ss_len = dstlen;
809 #endif
810     }
811
812     psz_sdp = vlc_sdp_Start( VLC_OBJECT( p_stream ), SOUT_CFG_PREFIX,
813                              NULL, 0, (struct sockaddr *)&dst, dstlen );
814     if( psz_sdp == NULL )
815         goto out;
816
817     /* TODO: a=source-filter */
818     if( p_sys->rtcp_mux )
819         sdp_AddAttribute( &psz_sdp, "rtcp-mux", NULL );
820
821     if( rtsp_url != NULL )
822         sdp_AddAttribute ( &psz_sdp, "control", "%s", rtsp_url );
823
824     const char *proto = "RTP/AVP"; /* protocol */
825     if( rtsp_url == NULL )
826     {
827         switch( p_sys->proto )
828         {
829             case IPPROTO_UDP:
830                 break;
831             case IPPROTO_TCP:
832                 proto = "TCP/RTP/AVP";
833                 break;
834             case IPPROTO_DCCP:
835                 proto = "DCCP/RTP/AVP";
836                 break;
837             case IPPROTO_UDPLITE:
838                 return psz_sdp;
839         }
840     }
841
842     for( i = 0; i < p_sys->i_es; i++ )
843     {
844         sout_stream_id_t *id = p_sys->es[i];
845         rtp_format_t *rtp_fmt = &id->rtp_fmt;
846         const char *mime_major; /* major MIME type */
847
848         switch( rtp_fmt->cat )
849         {
850             case VIDEO_ES:
851                 mime_major = "video";
852                 break;
853             case AUDIO_ES:
854                 mime_major = "audio";
855                 break;
856             case SPU_ES:
857                 mime_major = "text";
858                 break;
859             default:
860                 continue;
861         }
862
863         sdp_AddMedia( &psz_sdp, mime_major, proto, inclport * id->i_port,
864                       rtp_fmt->payload_type, false, rtp_fmt->bitrate,
865                       rtp_fmt->ptname, rtp_fmt->clock_rate, rtp_fmt->channels,
866                       rtp_fmt->fmtp);
867
868         /* cf RFC4566 §5.14 */
869         if( inclport && !p_sys->rtcp_mux && (id->i_port & 1) )
870             sdp_AddAttribute ( &psz_sdp, "rtcp", "%u", id->i_port + 1 );
871
872         if( rtsp_url != NULL )
873         {
874             char *track_url = RtspAppendTrackPath( id->rtsp_id, rtsp_url );
875             if( track_url != NULL )
876             {
877                 sdp_AddAttribute ( &psz_sdp, "control", "%s", track_url );
878                 free( track_url );
879             }
880         }
881         else
882         {
883             if( id->listen.fd != NULL )
884                 sdp_AddAttribute( &psz_sdp, "setup", "passive" );
885             if( p_sys->proto == IPPROTO_DCCP )
886                 sdp_AddAttribute( &psz_sdp, "dccp-service-code",
887                                   "SC:RTP%c", toupper( mime_major[0] ) );
888         }
889     }
890 out:
891     vlc_mutex_unlock( &p_sys->lock_es );
892     return psz_sdp;
893 }
894
895 /*****************************************************************************
896  * RTP mux
897  *****************************************************************************/
898
899 /**
900  * Shrink the MTU down to a fixed packetization time (for audio).
901  */
902 static void
903 rtp_set_ptime (sout_stream_id_t *id, unsigned ptime_ms, size_t bytes)
904 {
905     /* Samples per second */
906     size_t spl = (id->rtp_fmt.clock_rate - 1) * ptime_ms / 1000 + 1;
907     bytes *= id->rtp_fmt.channels;
908     spl *= bytes;
909
910     if (spl < rtp_mtu (id)) /* MTU is big enough for ptime */
911         id->i_mtu = 12 + spl;
912     else /* MTU is too small for ptime, align to a sample boundary */
913         id->i_mtu = 12 + (((id->i_mtu - 12) / bytes) * bytes);
914 }
915
916 uint32_t rtp_compute_ts( unsigned i_clock_rate, int64_t i_pts )
917 {
918     /* NOTE: this plays nice with offsets because the calculations are
919      * linear. */
920     return i_pts * (int64_t)i_clock_rate / CLOCK_FREQ;
921 }
922
923 /** Add an ES as a new RTP stream */
924 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
925 {
926     /* NOTE: As a special case, if we use a non-RTP
927      * mux (TS/PS), then p_fmt is NULL. */
928     sout_stream_sys_t *p_sys = p_stream->p_sys;
929     char              *psz_sdp;
930
931     sout_stream_id_t *id = malloc( sizeof( *id ) );
932     if( unlikely(id == NULL) )
933         return NULL;
934     id->p_stream   = p_stream;
935
936     id->i_mtu = var_InheritInteger( p_stream, "mtu" );
937     if( id->i_mtu <= 12 + 16 )
938         id->i_mtu = 576 - 20 - 8; /* pessimistic */
939     msg_Dbg( p_stream, "maximum RTP packet size: %d bytes", id->i_mtu );
940
941 #ifdef HAVE_SRTP
942     id->srtp = NULL;
943 #endif
944     vlc_mutex_init( &id->lock_sink );
945     id->sinkc = 0;
946     id->sinkv = NULL;
947     id->rtsp_id = NULL;
948     id->p_fifo = NULL;
949     id->listen.fd = NULL;
950
951     id->i_caching =
952         (int64_t)1000 * var_GetInteger( p_stream, SOUT_CFG_PREFIX "caching");
953
954     vlc_rand_bytes (&id->i_sequence, sizeof (id->i_sequence));
955     vlc_rand_bytes (id->ssrc, sizeof (id->ssrc));
956
957     bool format = false;
958
959     if (p_sys->p_vod_media != NULL)
960     {
961         id->rtp_fmt.ptname = NULL;
962         uint32_t ssrc;
963         int val = vod_init_id(p_sys->p_vod_media, p_sys->psz_vod_session,
964                               p_fmt ? p_fmt->i_id : 0, id, &id->rtp_fmt,
965                               &ssrc, &id->i_seq_sent_next);
966         if (val == VLC_SUCCESS)
967         {
968             memcpy(id->ssrc, &ssrc, sizeof(id->ssrc));
969             /* This is ugly, but id->i_seq_sent_next needs to be
970              * initialized inside vod_init_id() to avoid race
971              * conditions. */
972             id->i_sequence = id->i_seq_sent_next;
973         }
974         /* vod_init_id() may fail either because the ES wasn't found in
975          * the VoD media, or because that track wasn't SETUP. In the
976          * former case, id->rtp_fmt was left untouched. */
977         format = (id->rtp_fmt.ptname != NULL);
978     }
979
980     if (!format)
981     {
982         id->rtp_fmt.fmtp = NULL; /* don't free() garbage on error */
983         char *psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
984         if (p_fmt == NULL && psz == NULL)
985             goto error;
986         int val = rtp_get_fmt(VLC_OBJECT(p_stream), p_fmt, psz, &id->rtp_fmt);
987         free( psz );
988         if (val != VLC_SUCCESS)
989             goto error;
990     }
991
992 #ifdef HAVE_SRTP
993     char *key = var_CreateGetNonEmptyString (p_stream, SOUT_CFG_PREFIX"key");
994     if (key)
995     {
996         id->srtp = srtp_create (SRTP_ENCR_AES_CM, SRTP_AUTH_HMAC_SHA1, 10,
997                                    SRTP_PRF_AES_CM, SRTP_RCC_MODE1);
998         if (id->srtp == NULL)
999         {
1000             free (key);
1001             goto error;
1002         }
1003
1004         char *salt = var_CreateGetNonEmptyString (p_stream, SOUT_CFG_PREFIX"salt");
1005         errno = srtp_setkeystring (id->srtp, key, salt ? salt : "");
1006         free (salt);
1007         free (key);
1008         if (errno)
1009         {
1010             msg_Err (p_stream, "bad SRTP key/salt combination (%m)");
1011             goto error;
1012         }
1013         id->i_sequence = 0; /* FIXME: awful hack for libvlc_srtp */
1014     }
1015 #endif
1016
1017     id->i_seq_sent_next = id->i_sequence;
1018
1019     int mcast_fd = -1;
1020     if( p_sys->psz_destination != NULL )
1021     {
1022         /* Choose the port */
1023         uint16_t i_port = 0;
1024         if( p_fmt == NULL )
1025             ;
1026         else
1027         if( p_fmt->i_cat == AUDIO_ES && p_sys->i_port_audio > 0 )
1028             i_port = p_sys->i_port_audio;
1029         else
1030         if( p_fmt->i_cat == VIDEO_ES && p_sys->i_port_video > 0 )
1031             i_port = p_sys->i_port_video;
1032
1033         /* We do not need the ES lock (p_sys->lock_es) here, because
1034          * this is the only one thread that can *modify* the ES table.
1035          * The ES lock protects the other threads from our modifications
1036          * (TAB_APPEND, TAB_REMOVE). */
1037         for (int i = 0; i_port && (i < p_sys->i_es); i++)
1038              if (i_port == p_sys->es[i]->i_port)
1039                  i_port = 0; /* Port already in use! */
1040         for (uint16_t p = p_sys->i_port; i_port == 0; p += 2)
1041         {
1042             if (p == 0)
1043             {
1044                 msg_Err (p_stream, "too many RTP elementary streams");
1045                 goto error;
1046             }
1047             i_port = p;
1048             for (int i = 0; i_port && (i < p_sys->i_es); i++)
1049                  if (p == p_sys->es[i]->i_port)
1050                      i_port = 0;
1051         }
1052
1053         id->i_port = i_port;
1054
1055         int type = SOCK_STREAM;
1056
1057         switch( p_sys->proto )
1058         {
1059 #ifdef SOCK_DCCP
1060             case IPPROTO_DCCP:
1061             {
1062                 const char *code;
1063                 switch (id->rtp_fmt.cat)
1064                 {
1065                     case VIDEO_ES: code = "RTPV";     break;
1066                     case AUDIO_ES: code = "RTPARTPV"; break;
1067                     case SPU_ES:   code = "RTPTRTPV"; break;
1068                     default:       code = "RTPORTPV"; break;
1069                 }
1070                 var_SetString (p_stream, "dccp-service", code);
1071                 type = SOCK_DCCP;
1072             }   /* fall through */
1073 #endif
1074             case IPPROTO_TCP:
1075                 id->listen.fd = net_Listen( VLC_OBJECT(p_stream),
1076                                             p_sys->psz_destination, i_port,
1077                                             type, p_sys->proto );
1078                 if( id->listen.fd == NULL )
1079                 {
1080                     msg_Err( p_stream, "passive COMEDIA RTP socket failed" );
1081                     goto error;
1082                 }
1083                 if( vlc_clone( &id->listen.thread, rtp_listen_thread, id,
1084                                VLC_THREAD_PRIORITY_LOW ) )
1085                 {
1086                     net_ListenClose( id->listen.fd );
1087                     id->listen.fd = NULL;
1088                     goto error;
1089                 }
1090                 break;
1091
1092             default:
1093             {
1094                 int fd = net_ConnectDgram( p_stream, p_sys->psz_destination,
1095                                            i_port, -1, p_sys->proto );
1096                 if( fd == -1 )
1097                 {
1098                     msg_Err( p_stream, "cannot create RTP socket" );
1099                     goto error;
1100                 }
1101                 /* Ignore any unexpected incoming packet (including RTCP-RR
1102                  * packets in case of rtcp-mux) */
1103                 setsockopt (fd, SOL_SOCKET, SO_RCVBUF, &(int){ 0 },
1104                             sizeof (int));
1105                 rtp_add_sink( id, fd, p_sys->rtcp_mux, NULL );
1106                 /* FIXME: test if this is multicast  */
1107                 mcast_fd = fd;
1108             }
1109         }
1110     }
1111
1112     if( p_fmt != NULL )
1113     switch( p_fmt->i_codec )
1114     {
1115         case VLC_CODEC_MULAW:
1116         case VLC_CODEC_ALAW:
1117         case VLC_CODEC_U8:
1118             rtp_set_ptime (id, 20, 1);
1119             break;
1120         case VLC_CODEC_S16B:
1121         case VLC_CODEC_S16L:
1122             rtp_set_ptime (id, 20, 2);
1123             break;
1124         default:
1125             break;
1126     }
1127
1128 #if 0 /* No payload formats sets this at the moment */
1129     int cscov = -1;
1130     if( cscov != -1 )
1131         cscov += 8 /* UDP */ + 12 /* RTP */;
1132     if( id->sinkc > 0 )
1133         net_SetCSCov( id->sinkv[0].rtp_fd, cscov, -1 );
1134 #endif
1135
1136     vlc_mutex_lock( &p_sys->lock_ts );
1137     id->b_ts_init = ( p_sys->i_npt_zero != VLC_TS_INVALID );
1138     vlc_mutex_unlock( &p_sys->lock_ts );
1139     if( id->b_ts_init )
1140         id->i_ts_offset = rtp_compute_ts( id->rtp_fmt.clock_rate,
1141                                           p_sys->i_pts_offset );
1142
1143     if( p_sys->rtsp != NULL )
1144         id->rtsp_id = RtspAddId( p_sys->rtsp, id, GetDWBE( id->ssrc ),
1145                                  id->rtp_fmt.clock_rate, mcast_fd );
1146
1147     id->p_fifo = block_FifoNew();
1148     if( unlikely(id->p_fifo == NULL) )
1149         goto error;
1150     if( vlc_clone( &id->thread, ThreadSend, id, VLC_THREAD_PRIORITY_HIGHEST ) )
1151     {
1152         block_FifoRelease( id->p_fifo );
1153         id->p_fifo = NULL;
1154         goto error;
1155     }
1156
1157     /* Update p_sys context */
1158     vlc_mutex_lock( &p_sys->lock_es );
1159     TAB_APPEND( p_sys->i_es, p_sys->es, id );
1160     vlc_mutex_unlock( &p_sys->lock_es );
1161
1162     psz_sdp = SDPGenerate( p_stream, NULL );
1163
1164     vlc_mutex_lock( &p_sys->lock_sdp );
1165     free( p_sys->psz_sdp );
1166     p_sys->psz_sdp = psz_sdp;
1167     vlc_mutex_unlock( &p_sys->lock_sdp );
1168
1169     msg_Dbg( p_stream, "sdp=\n%s", p_sys->psz_sdp );
1170
1171     /* Update SDP (sap/file) */
1172     if( p_sys->b_export_sap ) SapSetup( p_stream );
1173     if( p_sys->psz_sdp_file != NULL ) FileSetup( p_stream );
1174
1175     return id;
1176
1177 error:
1178     Del( p_stream, id );
1179     return NULL;
1180 }
1181
1182 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
1183 {
1184     sout_stream_sys_t *p_sys = p_stream->p_sys;
1185
1186     vlc_mutex_lock( &p_sys->lock_es );
1187     TAB_REMOVE( p_sys->i_es, p_sys->es, id );
1188     vlc_mutex_unlock( &p_sys->lock_es );
1189
1190     if( likely(id->p_fifo != NULL) )
1191     {
1192         vlc_cancel( id->thread );
1193         vlc_join( id->thread, NULL );
1194         block_FifoRelease( id->p_fifo );
1195     }
1196
1197     free( id->rtp_fmt.fmtp );
1198
1199     if (p_sys->p_vod_media != NULL)
1200         vod_detach_id(p_sys->p_vod_media, p_sys->psz_vod_session, id);
1201     if( id->rtsp_id )
1202         RtspDelId( p_sys->rtsp, id->rtsp_id );
1203     if( id->listen.fd != NULL )
1204     {
1205         vlc_cancel( id->listen.thread );
1206         vlc_join( id->listen.thread, NULL );
1207         net_ListenClose( id->listen.fd );
1208     }
1209     /* Delete remaining sinks (incoming connections or explicit
1210      * outgoing dst=) */
1211     while( id->sinkc > 0 )
1212         rtp_del_sink( id, id->sinkv[0].rtp_fd );
1213 #ifdef HAVE_SRTP
1214     if( id->srtp != NULL )
1215         srtp_destroy( id->srtp );
1216 #endif
1217
1218     vlc_mutex_destroy( &id->lock_sink );
1219
1220     /* Update SDP (sap/file) */
1221     if( p_sys->b_export_sap ) SapSetup( p_stream );
1222     if( p_sys->psz_sdp_file != NULL ) FileSetup( p_stream );
1223
1224     free( id );
1225     return VLC_SUCCESS;
1226 }
1227
1228 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
1229                  block_t *p_buffer )
1230 {
1231     block_t *p_next;
1232
1233     assert( p_stream->p_sys->p_mux == NULL );
1234     (void)p_stream;
1235
1236     while( p_buffer != NULL )
1237     {
1238         p_next = p_buffer->p_next;
1239
1240         /* Send a Vorbis/Theora Packed Configuration packet (RFC 5215 §3.1)
1241          * as the first packet of the stream */
1242         if (id->i_sequence == id->i_seq_sent_next
1243             && (!strcmp(id->rtp_fmt.ptname, "vorbis")
1244                 || !strcmp(id->rtp_fmt.ptname, "theora")))
1245                 rtp_packetize_xiph_config(id, id->rtp_fmt.fmtp,
1246                                           p_buffer->i_pts);
1247
1248         if( id->rtp_fmt.pf_packetize( id, p_buffer ) )
1249             break;
1250
1251         block_Release( p_buffer );
1252         p_buffer = p_next;
1253     }
1254     return VLC_SUCCESS;
1255 }
1256
1257 /****************************************************************************
1258  * SAP:
1259  ****************************************************************************/
1260 static int SapSetup( sout_stream_t *p_stream )
1261 {
1262     sout_stream_sys_t *p_sys = p_stream->p_sys;
1263     sout_instance_t   *p_sout = p_stream->p_sout;
1264
1265     /* Remove the previous session */
1266     if( p_sys->p_session != NULL)
1267     {
1268         sout_AnnounceUnRegister( p_sout, p_sys->p_session);
1269         p_sys->p_session = NULL;
1270     }
1271
1272     if( p_sys->i_es > 0 && p_sys->psz_sdp && *p_sys->psz_sdp )
1273     {
1274         announce_method_t *p_method = sout_SAPMethod();
1275         p_sys->p_session = sout_AnnounceRegisterSDP( p_sout,
1276                                                      p_sys->psz_sdp,
1277                                                      p_sys->psz_destination,
1278                                                      p_method );
1279         sout_MethodRelease( p_method );
1280     }
1281
1282     return VLC_SUCCESS;
1283 }
1284
1285 /****************************************************************************
1286 * File:
1287 ****************************************************************************/
1288 static int FileSetup( sout_stream_t *p_stream )
1289 {
1290     sout_stream_sys_t *p_sys = p_stream->p_sys;
1291     FILE            *f;
1292
1293     if( p_sys->psz_sdp == NULL )
1294         return VLC_EGENERIC; /* too early */
1295
1296     if( ( f = vlc_fopen( p_sys->psz_sdp_file, "wt" ) ) == NULL )
1297     {
1298         msg_Err( p_stream, "cannot open file '%s' (%m)",
1299                  p_sys->psz_sdp_file );
1300         return VLC_EGENERIC;
1301     }
1302
1303     fputs( p_sys->psz_sdp, f );
1304     fclose( f );
1305
1306     return VLC_SUCCESS;
1307 }
1308
1309 /****************************************************************************
1310  * HTTP:
1311  ****************************************************************************/
1312 static int  HttpCallback( httpd_file_sys_t *p_args,
1313                           httpd_file_t *, uint8_t *p_request,
1314                           uint8_t **pp_data, int *pi_data );
1315
1316 static int HttpSetup( sout_stream_t *p_stream, const vlc_url_t *url)
1317 {
1318     sout_stream_sys_t *p_sys = p_stream->p_sys;
1319
1320     p_sys->p_httpd_host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host,
1321                                          url->i_port > 0 ? url->i_port : 80 );
1322     if( p_sys->p_httpd_host )
1323     {
1324         p_sys->p_httpd_file = httpd_FileNew( p_sys->p_httpd_host,
1325                                              url->psz_path ? url->psz_path : "/",
1326                                              "application/sdp",
1327                                              NULL, NULL, NULL,
1328                                              HttpCallback, (void*)p_sys );
1329     }
1330     if( p_sys->p_httpd_file == NULL )
1331     {
1332         return VLC_EGENERIC;
1333     }
1334     return VLC_SUCCESS;
1335 }
1336
1337 static int  HttpCallback( httpd_file_sys_t *p_args,
1338                           httpd_file_t *f, uint8_t *p_request,
1339                           uint8_t **pp_data, int *pi_data )
1340 {
1341     VLC_UNUSED(f); VLC_UNUSED(p_request);
1342     sout_stream_sys_t *p_sys = (sout_stream_sys_t*)p_args;
1343
1344     vlc_mutex_lock( &p_sys->lock_sdp );
1345     if( p_sys->psz_sdp && *p_sys->psz_sdp )
1346     {
1347         *pi_data = strlen( p_sys->psz_sdp );
1348         *pp_data = malloc( *pi_data );
1349         memcpy( *pp_data, p_sys->psz_sdp, *pi_data );
1350     }
1351     else
1352     {
1353         *pp_data = NULL;
1354         *pi_data = 0;
1355     }
1356     vlc_mutex_unlock( &p_sys->lock_sdp );
1357
1358     return VLC_SUCCESS;
1359 }
1360
1361 /****************************************************************************
1362  * RTP send
1363  ****************************************************************************/
1364 static void* ThreadSend( void *data )
1365 {
1366 #ifdef WIN32
1367 # define ECONNREFUSED WSAECONNREFUSED
1368 # define ENOPROTOOPT  WSAENOPROTOOPT
1369 # define EHOSTUNREACH WSAEHOSTUNREACH
1370 # define ENETUNREACH  WSAENETUNREACH
1371 # define ENETDOWN     WSAENETDOWN
1372 # define ENOBUFS      WSAENOBUFS
1373 # define EAGAIN       WSAEWOULDBLOCK
1374 # define EWOULDBLOCK  WSAEWOULDBLOCK
1375 #endif
1376     sout_stream_id_t *id = data;
1377     unsigned i_caching = id->i_caching;
1378
1379     for (;;)
1380     {
1381         block_t *out = block_FifoGet( id->p_fifo );
1382         block_cleanup_push (out);
1383
1384 #ifdef HAVE_SRTP
1385         if( id->srtp )
1386         {   /* FIXME: this is awfully inefficient */
1387             size_t len = out->i_buffer;
1388             out = block_Realloc( out, 0, len + 10 );
1389             out->i_buffer = len;
1390
1391             int canc = vlc_savecancel ();
1392             int val = srtp_send( id->srtp, out->p_buffer, &len, len + 10 );
1393             vlc_restorecancel (canc);
1394             if( val )
1395             {
1396                 errno = val;
1397                 msg_Dbg( id->p_stream, "SRTP sending error: %m" );
1398                 block_Release( out );
1399                 out = NULL;
1400             }
1401             else
1402                 out->i_buffer = len;
1403         }
1404         if (out)
1405 #endif
1406             mwait (out->i_dts + i_caching);
1407         vlc_cleanup_pop ();
1408         if (out == NULL)
1409             continue;
1410
1411         ssize_t len = out->i_buffer;
1412         int canc = vlc_savecancel ();
1413
1414         vlc_mutex_lock( &id->lock_sink );
1415         unsigned deadc = 0; /* How many dead sockets? */
1416         int deadv[id->sinkc]; /* Dead sockets list */
1417
1418         for( int i = 0; i < id->sinkc; i++ )
1419         {
1420 #ifdef HAVE_SRTP
1421             if( !id->srtp ) /* FIXME: SRTCP support */
1422 #endif
1423                 SendRTCP( id->sinkv[i].rtcp, out );
1424
1425             if( send( id->sinkv[i].rtp_fd, out->p_buffer, len, 0 ) >= 0 )
1426                 continue;
1427             switch( net_errno )
1428             {
1429                 /* Soft errors (e.g. ICMP): */
1430                 case ECONNREFUSED: /* Port unreachable */
1431                 case ENOPROTOOPT:
1432 #ifdef EPROTO
1433                 case EPROTO:       /* Protocol unreachable */
1434 #endif
1435                 case EHOSTUNREACH: /* Host unreachable */
1436                 case ENETUNREACH:  /* Network unreachable */
1437                 case ENETDOWN:     /* Entire network down */
1438                     send( id->sinkv[i].rtp_fd, out->p_buffer, len, 0 );
1439                 /* Transient congestion: */
1440                 case ENOMEM: /* out of socket buffers */
1441                 case ENOBUFS:
1442                 case EAGAIN:
1443 #if (EAGAIN != EWOULDBLOCK)
1444                 case EWOULDBLOCK:
1445 #endif
1446                     continue;
1447             }
1448
1449             deadv[deadc++] = id->sinkv[i].rtp_fd;
1450         }
1451         id->i_seq_sent_next = ntohs(((uint16_t *) out->p_buffer)[1]) + 1;
1452         vlc_mutex_unlock( &id->lock_sink );
1453         block_Release( out );
1454
1455         for( unsigned i = 0; i < deadc; i++ )
1456         {
1457             msg_Dbg( id->p_stream, "removing socket %d", deadv[i] );
1458             rtp_del_sink( id, deadv[i] );
1459         }
1460         vlc_restorecancel (canc);
1461     }
1462     return NULL;
1463 }
1464
1465
1466 /* This thread dequeues incoming connections (DCCP streaming) */
1467 static void *rtp_listen_thread( void *data )
1468 {
1469     sout_stream_id_t *id = data;
1470
1471     assert( id->listen.fd != NULL );
1472
1473     for( ;; )
1474     {
1475         int fd = net_Accept( id->p_stream, id->listen.fd );
1476         if( fd == -1 )
1477             continue;
1478         int canc = vlc_savecancel( );
1479         rtp_add_sink( id, fd, true, NULL );
1480         vlc_restorecancel( canc );
1481     }
1482
1483     assert( 0 );
1484 }
1485
1486
1487 int rtp_add_sink( sout_stream_id_t *id, int fd, bool rtcp_mux, uint16_t *seq )
1488 {
1489     rtp_sink_t sink = { fd, NULL };
1490     sink.rtcp = OpenRTCP( VLC_OBJECT( id->p_stream ), fd, IPPROTO_UDP,
1491                           rtcp_mux );
1492     if( sink.rtcp == NULL )
1493         msg_Err( id->p_stream, "RTCP failed!" );
1494
1495     vlc_mutex_lock( &id->lock_sink );
1496     INSERT_ELEM( id->sinkv, id->sinkc, id->sinkc, sink );
1497     if( seq != NULL )
1498         *seq = id->i_seq_sent_next;
1499     vlc_mutex_unlock( &id->lock_sink );
1500     return VLC_SUCCESS;
1501 }
1502
1503 void rtp_del_sink( sout_stream_id_t *id, int fd )
1504 {
1505     rtp_sink_t sink = { fd, NULL };
1506
1507     /* NOTE: must be safe to use if fd is not included */
1508     vlc_mutex_lock( &id->lock_sink );
1509     for( int i = 0; i < id->sinkc; i++ )
1510     {
1511         if (id->sinkv[i].rtp_fd == fd)
1512         {
1513             sink = id->sinkv[i];
1514             REMOVE_ELEM( id->sinkv, id->sinkc, i );
1515             break;
1516         }
1517     }
1518     vlc_mutex_unlock( &id->lock_sink );
1519
1520     CloseRTCP( sink.rtcp );
1521     net_Close( sink.rtp_fd );
1522 }
1523
1524 uint16_t rtp_get_seq( sout_stream_id_t *id )
1525 {
1526     /* This will return values for the next packet. */
1527     uint16_t seq;
1528
1529     vlc_mutex_lock( &id->lock_sink );
1530     seq = id->i_seq_sent_next;
1531     vlc_mutex_unlock( &id->lock_sink );
1532
1533     return seq;
1534 }
1535
1536 /* Return an arbitrary initial timestamp for RTP timestamp computations.
1537  * RFC 3550 states that the resulting initial RTP timestamps SHOULD be
1538  * random (although we use the same reference for all the ES as a
1539  * feature). In the VoD case, this function is called independently
1540  * from several parts of the code, so we need to always return the same
1541  * value. */
1542 static int64_t rtp_init_ts( const vod_media_t *p_media,
1543                             const char *psz_vod_session )
1544 {
1545     if (p_media == NULL || psz_vod_session == NULL)
1546         return mdate();
1547
1548     uint64_t i_ts_init;
1549     /* As per RFC 2326, session identifiers are at least 8 bytes long */
1550     strncpy((char *)&i_ts_init, psz_vod_session, sizeof(uint64_t));
1551     i_ts_init ^= (uint64_t) p_media;
1552     /* Limit the timestamp to 48 bytes, this is enough and allows us
1553      * to stay away from overflows */
1554     i_ts_init &= 0xFFFFFFFFFFFF;
1555     return i_ts_init;
1556 }
1557
1558 /* Return a timestamp corresponding to packets being sent now, and that
1559  * can be passed to rtp_compute_ts() to get rtptime values for each ES.
1560  * If the stream output is not started, the initial timestamp that will
1561  * be used with the first packets is returned instead. */
1562 int64_t rtp_get_ts( const sout_stream_t *p_stream, const sout_stream_id_t *id,
1563                     const vod_media_t *p_media, const char *psz_vod_session )
1564 {
1565     if (id != NULL)
1566         p_stream = id->p_stream;
1567
1568     if (p_stream == NULL)
1569         return rtp_init_ts(p_media, psz_vod_session);
1570
1571     sout_stream_sys_t *p_sys = p_stream->p_sys;
1572     mtime_t i_npt_zero;
1573     vlc_mutex_lock( &p_sys->lock_ts );
1574     i_npt_zero = p_sys->i_npt_zero;
1575     vlc_mutex_unlock( &p_sys->lock_ts );
1576
1577     if( i_npt_zero == VLC_TS_INVALID )
1578         return p_sys->i_pts_zero;
1579
1580     mtime_t now = mdate();
1581     if( now < i_npt_zero )
1582         return p_sys->i_pts_zero;
1583
1584     return p_sys->i_pts_zero + (now - i_npt_zero); 
1585 }
1586
1587 void rtp_packetize_common( sout_stream_id_t *id, block_t *out,
1588                            int b_marker, int64_t i_pts )
1589 {
1590     if( !id->b_ts_init )
1591     {
1592         sout_stream_sys_t *p_sys = id->p_stream->p_sys;
1593         vlc_mutex_lock( &p_sys->lock_ts );
1594         if( p_sys->i_npt_zero == VLC_TS_INVALID )
1595         {
1596             /* This is the first packet of any ES. We initialize the
1597              * NPT=0 time reference, and the offset to match the
1598              * arbitrary PTS reference. */
1599             p_sys->i_npt_zero = i_pts + id->i_caching;
1600             p_sys->i_pts_offset = p_sys->i_pts_zero - i_pts;
1601         }
1602         vlc_mutex_unlock( &p_sys->lock_ts );
1603
1604         /* And in any case this is the first packet of this ES, so we
1605          * initialize the offset for this ES. */
1606         id->i_ts_offset = rtp_compute_ts( id->rtp_fmt.clock_rate,
1607                                           p_sys->i_pts_offset );
1608         id->b_ts_init = true;
1609     }
1610
1611     uint32_t i_timestamp = rtp_compute_ts( id->rtp_fmt.clock_rate, i_pts )
1612                            + id->i_ts_offset;
1613
1614     out->p_buffer[0] = 0x80;
1615     out->p_buffer[1] = (b_marker?0x80:0x00)|id->rtp_fmt.payload_type;
1616     out->p_buffer[2] = ( id->i_sequence >> 8)&0xff;
1617     out->p_buffer[3] = ( id->i_sequence     )&0xff;
1618     out->p_buffer[4] = ( i_timestamp >> 24 )&0xff;
1619     out->p_buffer[5] = ( i_timestamp >> 16 )&0xff;
1620     out->p_buffer[6] = ( i_timestamp >>  8 )&0xff;
1621     out->p_buffer[7] = ( i_timestamp       )&0xff;
1622
1623     memcpy( out->p_buffer + 8, id->ssrc, 4 );
1624
1625     out->i_buffer = 12;
1626     id->i_sequence++;
1627 }
1628
1629 void rtp_packetize_send( sout_stream_id_t *id, block_t *out )
1630 {
1631     block_FifoPut( id->p_fifo, out );
1632 }
1633
1634 /**
1635  * @return configured max RTP payload size (including payload type-specific
1636  * headers, excluding RTP and transport headers)
1637  */
1638 size_t rtp_mtu (const sout_stream_id_t *id)
1639 {
1640     return id->i_mtu - 12;
1641 }
1642
1643 /*****************************************************************************
1644  * Non-RTP mux
1645  *****************************************************************************/
1646
1647 /** Add an ES to a non-RTP muxed stream */
1648 static sout_stream_id_t *MuxAdd( sout_stream_t *p_stream, es_format_t *p_fmt )
1649 {
1650     sout_input_t      *p_input;
1651     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1652     assert( p_mux != NULL );
1653
1654     p_input = sout_MuxAddStream( p_mux, p_fmt );
1655     if( p_input == NULL )
1656     {
1657         msg_Err( p_stream, "cannot add this stream to the muxer" );
1658         return NULL;
1659     }
1660
1661     return (sout_stream_id_t *)p_input;
1662 }
1663
1664
1665 static int MuxSend( sout_stream_t *p_stream, sout_stream_id_t *id,
1666                     block_t *p_buffer )
1667 {
1668     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1669     assert( p_mux != NULL );
1670
1671     sout_MuxSendBuffer( p_mux, (sout_input_t *)id, p_buffer );
1672     return VLC_SUCCESS;
1673 }
1674
1675
1676 /** Remove an ES from a non-RTP muxed stream */
1677 static int MuxDel( sout_stream_t *p_stream, sout_stream_id_t *id )
1678 {
1679     sout_mux_t *p_mux = p_stream->p_sys->p_mux;
1680     assert( p_mux != NULL );
1681
1682     sout_MuxDeleteStream( p_mux, (sout_input_t *)id );
1683     return VLC_SUCCESS;
1684 }
1685
1686
1687 static ssize_t AccessOutGrabberWriteBuffer( sout_stream_t *p_stream,
1688                                             const block_t *p_buffer )
1689 {
1690     sout_stream_sys_t *p_sys = p_stream->p_sys;
1691     sout_stream_id_t *id = p_sys->es[0];
1692
1693     int64_t  i_dts = p_buffer->i_dts;
1694
1695     uint8_t         *p_data = p_buffer->p_buffer;
1696     size_t          i_data  = p_buffer->i_buffer;
1697     size_t          i_max   = id->i_mtu - 12;
1698
1699     size_t i_packet = ( p_buffer->i_buffer + i_max - 1 ) / i_max;
1700
1701     while( i_data > 0 )
1702     {
1703         size_t i_size;
1704
1705         /* output complete packet */
1706         if( p_sys->packet &&
1707             p_sys->packet->i_buffer + i_data > i_max )
1708         {
1709             rtp_packetize_send( id, p_sys->packet );
1710             p_sys->packet = NULL;
1711         }
1712
1713         if( p_sys->packet == NULL )
1714         {
1715             /* allocate a new packet */
1716             p_sys->packet = block_New( p_stream, id->i_mtu );
1717             rtp_packetize_common( id, p_sys->packet, 1, i_dts );
1718             p_sys->packet->i_dts = i_dts;
1719             p_sys->packet->i_length = p_buffer->i_length / i_packet;
1720             i_dts += p_sys->packet->i_length;
1721         }
1722
1723         i_size = __MIN( i_data,
1724                         (unsigned)(id->i_mtu - p_sys->packet->i_buffer) );
1725
1726         memcpy( &p_sys->packet->p_buffer[p_sys->packet->i_buffer],
1727                 p_data, i_size );
1728
1729         p_sys->packet->i_buffer += i_size;
1730         p_data += i_size;
1731         i_data -= i_size;
1732     }
1733
1734     return VLC_SUCCESS;
1735 }
1736
1737
1738 static ssize_t AccessOutGrabberWrite( sout_access_out_t *p_access,
1739                                       block_t *p_buffer )
1740 {
1741     sout_stream_t *p_stream = (sout_stream_t*)p_access->p_sys;
1742
1743     while( p_buffer )
1744     {
1745         block_t *p_next;
1746
1747         AccessOutGrabberWriteBuffer( p_stream, p_buffer );
1748
1749         p_next = p_buffer->p_next;
1750         block_Release( p_buffer );
1751         p_buffer = p_next;
1752     }
1753
1754     return VLC_SUCCESS;
1755 }
1756
1757
1758 static sout_access_out_t *GrabberCreate( sout_stream_t *p_stream )
1759 {
1760     sout_access_out_t *p_grab;
1761
1762     p_grab = vlc_object_create( p_stream->p_sout, sizeof( *p_grab ) );
1763     if( p_grab == NULL )
1764         return NULL;
1765
1766     p_grab->p_module    = NULL;
1767     p_grab->psz_access  = strdup( "grab" );
1768     p_grab->p_cfg       = NULL;
1769     p_grab->psz_path    = strdup( "" );
1770     p_grab->p_sys       = (sout_access_out_sys_t *)p_stream;
1771     p_grab->pf_seek     = NULL;
1772     p_grab->pf_write    = AccessOutGrabberWrite;
1773     vlc_object_attach( p_grab, p_stream );
1774     return p_grab;
1775 }