1 /*****************************************************************************
2 * rtsp.c: RTSP support for RTP stream output module
3 *****************************************************************************
4 * Copyright (C) 2003-2004 the VideoLAN team
5 * Copyright © 2007 Rémi Denis-Courmont
9 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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.
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.
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 *****************************************************************************/
26 /*****************************************************************************
28 *****************************************************************************/
33 #include <vlc_common.h>
36 #include <vlc_httpd.h>
38 #include <vlc_network.h>
46 typedef struct rtsp_session_t rtsp_session_t;
55 const char *track_fmt;
59 rtsp_session_t **sessionv;
63 static int RtspCallback( httpd_callback_sys_t *p_args,
64 httpd_client_t *cl, httpd_message_t *answer,
65 const httpd_message_t *query );
66 static int RtspCallbackId( httpd_callback_sys_t *p_args,
67 httpd_client_t *cl, httpd_message_t *answer,
68 const httpd_message_t *query );
69 static void RtspClientDel( rtsp_stream_t *rtsp, rtsp_session_t *session );
71 rtsp_stream_t *RtspSetup( sout_stream_t *p_stream, const vlc_url_t *url )
73 rtsp_stream_t *rtsp = malloc( sizeof( *rtsp ) );
75 if( rtsp == NULL || ( url->i_port > 99999 ) )
81 rtsp->owner = p_stream;
83 rtsp->sessionv = NULL;
86 rtsp->psz_path = NULL;
87 vlc_mutex_init( &rtsp->lock );
89 rtsp->port = (url->i_port > 0) ? url->i_port : 554;
90 rtsp->psz_path = strdup( ( url->psz_path != NULL ) ? url->psz_path : "/" );
91 if( rtsp->psz_path == NULL )
94 assert( strlen( rtsp->psz_path ) > 0 );
95 if( rtsp->psz_path[strlen( rtsp->psz_path ) - 1] == '/' )
96 rtsp->track_fmt = "%strackID=%u";
98 rtsp->track_fmt = "%s/trackID=%u";
100 msg_Dbg( p_stream, "RTSP stream: host %s port %d at %s",
101 url->psz_host, rtsp->port, rtsp->psz_path );
103 rtsp->host = httpd_HostNew( VLC_OBJECT(p_stream), url->psz_host,
105 if( rtsp->host == NULL )
108 rtsp->url = httpd_UrlNewUnique( rtsp->host, rtsp->psz_path,
110 if( rtsp->url == NULL )
113 httpd_UrlCatch( rtsp->url, HTTPD_MSG_DESCRIBE, RtspCallback, (void*)rtsp );
114 httpd_UrlCatch( rtsp->url, HTTPD_MSG_SETUP, RtspCallback, (void*)rtsp );
115 httpd_UrlCatch( rtsp->url, HTTPD_MSG_PLAY, RtspCallback, (void*)rtsp );
116 httpd_UrlCatch( rtsp->url, HTTPD_MSG_PAUSE, RtspCallback, (void*)rtsp );
117 httpd_UrlCatch( rtsp->url, HTTPD_MSG_GETPARAMETER, RtspCallback,
119 httpd_UrlCatch( rtsp->url, HTTPD_MSG_TEARDOWN, RtspCallback, (void*)rtsp );
128 void RtspUnsetup( rtsp_stream_t *rtsp )
130 while( rtsp->sessionc > 0 )
131 RtspClientDel( rtsp, rtsp->sessionv[0] );
134 httpd_UrlDelete( rtsp->url );
137 httpd_HostDelete( rtsp->host );
139 free( rtsp->psz_path );
140 vlc_mutex_destroy( &rtsp->lock );
144 struct rtsp_stream_id_t
146 rtsp_stream_t *stream;
147 sout_stream_id_t *sout_id;
152 uint16_t loport, hiport;
156 typedef struct rtsp_strack_t rtsp_strack_t;
158 /* For unicast streaming */
159 struct rtsp_session_t
161 rtsp_stream_t *stream;
164 /* output (id-access) */
166 rtsp_strack_t *trackv;
170 /* Unicast session track */
173 sout_stream_id_t *id;
179 rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid,
180 unsigned num, uint32_t ssrc,
181 /* Multicast stuff - TODO: cleanup */
182 const char *dst, int ttl,
183 unsigned loport, unsigned hiport )
185 char urlbuf[sizeof( "/trackID=123" ) + strlen( rtsp->psz_path )];
186 rtsp_stream_id_t *id = malloc( sizeof( *id ) );
195 /* TODO: can we assume that this need not be strdup'd? */
197 if( id->dst != NULL )
204 /* FIXME: num screws up if any ES has been removed and re-added */
205 snprintf( urlbuf, sizeof( urlbuf ), rtsp->track_fmt, rtsp->psz_path,
207 msg_Dbg( rtsp->owner, "RTSP: adding %s", urlbuf );
208 url = id->url = httpd_UrlNewUnique( rtsp->host, urlbuf, NULL, NULL, NULL );
216 httpd_UrlCatch( url, HTTPD_MSG_DESCRIBE, RtspCallbackId, (void *)id );
217 httpd_UrlCatch( url, HTTPD_MSG_SETUP, RtspCallbackId, (void *)id );
218 httpd_UrlCatch( url, HTTPD_MSG_PLAY, RtspCallbackId, (void *)id );
219 httpd_UrlCatch( url, HTTPD_MSG_PAUSE, RtspCallbackId, (void *)id );
220 httpd_UrlCatch( url, HTTPD_MSG_GETPARAMETER, RtspCallbackId, (void *)id );
221 httpd_UrlCatch( url, HTTPD_MSG_TEARDOWN, RtspCallbackId, (void *)id );
227 void RtspDelId( rtsp_stream_t *rtsp, rtsp_stream_id_t *id )
229 vlc_mutex_lock( &rtsp->lock );
230 for( int i = 0; i < rtsp->sessionc; i++ )
232 rtsp_session_t *ses = rtsp->sessionv[i];
234 for( int j = 0; j < ses->trackc; j++ )
236 if( ses->trackv[j].id == id->sout_id )
238 rtsp_strack_t *tr = ses->trackv + j;
240 REMOVE_ELEM( ses->trackv, ses->trackc, j );
245 vlc_mutex_unlock( &rtsp->lock );
246 httpd_UrlDelete( id->url );
251 /** rtsp must be locked */
253 rtsp_session_t *RtspClientNew( rtsp_stream_t *rtsp )
255 rtsp_session_t *s = malloc( sizeof( *s ) );
260 vlc_rand_bytes (&s->id, sizeof (s->id));
264 TAB_APPEND( rtsp->sessionc, rtsp->sessionv, s );
270 /** rtsp must be locked */
272 rtsp_session_t *RtspClientGet( rtsp_stream_t *rtsp, const char *name )
282 id = strtoull( name, &end, 0x10 );
286 /* FIXME: use a hash/dictionary */
287 for( i = 0; i < rtsp->sessionc; i++ )
289 if( rtsp->sessionv[i]->id == id )
290 return rtsp->sessionv[i];
296 /** rtsp must be locked */
298 void RtspClientDel( rtsp_stream_t *rtsp, rtsp_session_t *session )
301 TAB_REMOVE( rtsp->sessionc, rtsp->sessionv, session );
303 for( i = 0; i < session->trackc; i++ )
304 rtp_del_sink( session->trackv[i].id, session->trackv[i].fd );
306 free( session->trackv );
311 /** Finds the next transport choice */
312 static inline const char *transport_next( const char *str )
314 /* Looks for comma */
315 str = strchr( str, ',' );
317 return NULL; /* No more transport options */
319 str++; /* skips comma */
320 while( strchr( "\r\n\t ", *str ) )
323 return (*str) ? str : NULL;
327 /** Finds the next transport parameter */
328 static inline const char *parameter_next( const char *str )
330 while( strchr( ",;", *str ) == NULL )
333 return (*str == ';') ? (str + 1) : NULL;
337 /** RTSP requests handler
338 * @param id selected track for non-aggregate URLs,
339 * NULL for aggregate URLs
341 static int RtspHandler( rtsp_stream_t *rtsp, rtsp_stream_id_t *id,
343 httpd_message_t *answer,
344 const httpd_message_t *query )
346 sout_stream_t *p_stream = rtsp->owner;
348 const char *psz_session = NULL, *psz;
349 char control[sizeof("rtsp://[]:12345") + NI_MAXNUMERICHOST
350 + strlen( rtsp->psz_path )];
355 if( answer == NULL || query == NULL || cl == NULL )
359 /* Build self-referential control URL */
360 char ip[NI_MAXNUMERICHOST], *ptr;
362 httpd_ServerIP( cl, ip );
363 ptr = strchr( ip, '%' );
367 if( strchr( ip, ':' ) != NULL )
368 sprintf( control, "rtsp://[%s]:%u%s", ip, rtsp->port,
371 sprintf( control, "rtsp://%s:%u%s", ip, rtsp->port,
376 answer->i_proto = HTTPD_PROTO_RTSP;
377 answer->i_version= 0;
378 answer->i_type = HTTPD_MSG_ANSWER;
380 answer->p_body = NULL;
382 httpd_MsgAdd( answer, "Server", "%s", PACKAGE_STRING );
384 /* Date: is always allowed, and sometimes mandatory with RTSP/2.0. */
386 if (gmtime_r (&now, &ut) != NULL)
387 { /* RFC1123 format, GMT is mandatory */
388 static const char wdays[7][4] = {
389 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
390 static const char mons[12][4] = {
391 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
392 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
393 httpd_MsgAdd (answer, "Date", "%s, %02u %s %04u %02u:%02u:%02u GMT",
394 wdays[ut.tm_wday], ut.tm_mday, mons[ut.tm_mon],
395 1900 + ut.tm_year, ut.tm_hour, ut.tm_min, ut.tm_sec);
398 if( query->i_proto != HTTPD_PROTO_RTSP )
400 answer->i_status = 505;
403 if( httpd_MsgGet( query, "Require" ) != NULL )
405 answer->i_status = 551;
406 httpd_MsgAdd( answer, "Unsupported", "%s",
407 httpd_MsgGet( query, "Require" ) );
410 switch( query->i_type )
412 case HTTPD_MSG_DESCRIBE:
413 { /* Aggregate-only */
416 answer->i_status = 460;
420 answer->i_status = 200;
421 httpd_MsgAdd( answer, "Content-Type", "%s", "application/sdp" );
422 httpd_MsgAdd( answer, "Content-Base", "%s", control );
423 answer->p_body = (uint8_t *)SDPGenerate( rtsp->owner, control );
424 if( answer->p_body != NULL )
425 answer->i_body = strlen( (char *)answer->p_body );
427 answer->i_status = 500;
431 case HTTPD_MSG_SETUP:
432 /* Non-aggregate-only */
435 answer->i_status = 459;
439 psz_session = httpd_MsgGet( query, "Session" );
440 answer->i_status = 461;
442 for( const char *tpt = httpd_MsgGet( query, "Transport" );
444 tpt = transport_next( tpt ) )
446 bool b_multicast = true, b_unsupp = false;
447 unsigned loport = 5004, hiport = 5005; /* from RFC3551 */
449 /* Check transport protocol. */
450 /* Currently, we only support RTP/AVP over UDP */
451 if( strncmp( tpt, "RTP/AVP", 7 ) )
454 if( strncmp( tpt, "/UDP", 4 ) == 0 )
456 if( strchr( ";,", *tpt ) == NULL )
459 /* Parse transport options */
460 for( const char *opt = parameter_next( tpt );
462 opt = parameter_next( opt ) )
464 if( strncmp( opt, "multicast", 9 ) == 0)
467 if( strncmp( opt, "unicast", 7 ) == 0 )
470 if( sscanf( opt, "client_port=%u-%u", &loport, &hiport )
474 if( strncmp( opt, "mode=", 5 ) == 0 )
476 if( strncasecmp( opt + 5, "play", 4 )
477 && strncasecmp( opt + 5, "\"PLAY\"", 6 ) )
485 if( strncmp( opt,"destination=", 12 ) == 0 )
487 answer->i_status = 403;
493 * Every other option is unsupported:
495 * "source" and "append" are invalid (server-only);
496 * "ssrc" also (as clarified per RFC2326bis).
498 * For multicast, "port", "layers", "ttl" are set by the
499 * stream output configuration.
501 * For unicast, we want to decide "server_port" values.
503 * "interleaved" is not implemented.
515 const char *dst = id->dst;
519 if( psz_session == NULL )
521 /* Create a dummy session ID */
522 snprintf( psz_sesbuf, sizeof( psz_sesbuf ), "%d",
524 psz_session = psz_sesbuf;
526 answer->i_status = 200;
528 httpd_MsgAdd( answer, "Transport",
529 "RTP/AVP/UDP;destination=%s;port=%u-%u;"
531 dst, id->loport, id->hiport,
532 ( id->ttl > 0 ) ? id->ttl : 1 );
536 char ip[NI_MAXNUMERICHOST], src[NI_MAXNUMERICHOST];
537 rtsp_session_t *ses = NULL;
538 rtsp_strack_t track = { id->sout_id, -1, false };
541 if( httpd_ClientIP( cl, ip ) == NULL )
543 answer->i_status = 500;
547 track.fd = net_ConnectDgram( p_stream, ip, loport, -1,
552 "cannot create RTP socket for %s port %u",
554 answer->i_status = 500;
558 net_GetSockAddress( track.fd, src, &sport );
560 vlc_mutex_lock( &rtsp->lock );
561 if( psz_session == NULL )
563 ses = RtspClientNew( rtsp );
564 snprintf( psz_sesbuf, sizeof( psz_sesbuf ), "%"PRIx64,
566 psz_session = psz_sesbuf;
570 /* FIXME: we probably need to remove an access out,
571 * if there is already one for the same ID */
572 ses = RtspClientGet( rtsp, psz_session );
575 answer->i_status = 454;
576 vlc_mutex_unlock( &rtsp->lock );
581 INSERT_ELEM( ses->trackv, ses->trackc, ses->trackc,
583 vlc_mutex_unlock( &rtsp->lock );
585 httpd_ServerIP( cl, ip );
587 if( strcmp( src, ip ) )
589 /* Specify source IP if it is different from the RTSP
590 * control connection server address */
591 char *ptr = strchr( src, '%' );
592 if( ptr != NULL ) *ptr = '\0'; /* remove scope ID */
594 httpd_MsgAdd( answer, "Transport",
595 "RTP/AVP/UDP;unicast;source=%s;"
596 "client_port=%u-%u;server_port=%u-%u;"
597 "ssrc=%08X;mode=play",
598 src, loport, loport + 1, sport,
599 sport + 1, id->ssrc );
603 httpd_MsgAdd( answer, "Transport",
604 "RTP/AVP/UDP;unicast;"
605 "client_port=%u-%u;server_port=%u-%u;"
606 "ssrc=%08X;mode=play",
607 loport, loport + 1, sport, sport + 1,
611 answer->i_status = 200;
620 answer->i_status = 200;
622 psz_session = httpd_MsgGet( query, "Session" );
623 const char *range = httpd_MsgGet (query, "Range");
624 if (range && strncmp (range, "npt=", 4))
626 answer->i_status = 501;
630 vlc_mutex_lock( &rtsp->lock );
631 ses = RtspClientGet( rtsp, psz_session );
634 /* FIXME: we really need to limit the number of tracks... */
635 char info[ses->trackc * ( strlen( control )
636 + sizeof("/trackID=123;seq=65535, ") ) + 1];
639 for( int i = 0; i < ses->trackc; i++ )
641 rtsp_strack_t *tr = ses->trackv + i;
642 if( ( id == NULL ) || ( tr->id == id->sout_id ) )
647 rtp_add_sink( tr->id, tr->fd, false );
649 infolen += sprintf( info + infolen,
650 "%s/trackID=%u;seq=%u, ", control,
651 rtp_get_num( tr->id ),
652 rtp_get_seq( tr->id ) );
657 info[infolen - 2] = '\0'; /* remove trailing ", " */
658 httpd_MsgAdd( answer, "RTP-Info", "%s", info );
661 vlc_mutex_unlock( &rtsp->lock );
663 if( httpd_MsgGet( query, "Scale" ) != NULL )
664 httpd_MsgAdd( answer, "Scale", "1." );
668 case HTTPD_MSG_PAUSE:
669 answer->i_status = 405;
670 httpd_MsgAdd( answer, "Allow",
671 "%s, TEARDOWN, PLAY, GET_PARAMETER",
672 ( id != NULL ) ? "SETUP" : "DESCRIBE" );
675 case HTTPD_MSG_GETPARAMETER:
676 if( query->i_body > 0 )
678 answer->i_status = 451;
682 psz_session = httpd_MsgGet( query, "Session" );
683 answer->i_status = 200;
686 case HTTPD_MSG_TEARDOWN:
690 answer->i_status = 200;
692 psz_session = httpd_MsgGet( query, "Session" );
694 vlc_mutex_lock( &rtsp->lock );
695 ses = RtspClientGet( rtsp, psz_session );
698 if( id == NULL ) /* Delete the entire session */
699 RtspClientDel( rtsp, ses );
700 else /* Delete one track from the session */
701 for( int i = 0; i < ses->trackc; i++ )
703 if( ses->trackv[i].id == id->sout_id )
705 rtp_del_sink( id->sout_id, ses->trackv[i].fd );
706 REMOVE_ELEM( ses->trackv, ses->trackc, i );
710 vlc_mutex_unlock( &rtsp->lock );
719 httpd_MsgAdd( answer, "Session", "%s"/*;timeout=5*/, psz_session );
721 httpd_MsgAdd( answer, "Content-Length", "%d", answer->i_body );
722 httpd_MsgAdd( answer, "Cache-Control", "no-cache" );
724 psz = httpd_MsgGet( query, "Cseq" );
726 httpd_MsgAdd( answer, "Cseq", "%s", psz );
727 psz = httpd_MsgGet( query, "Timestamp" );
729 httpd_MsgAdd( answer, "Timestamp", "%s", psz );
735 /** Aggregate RTSP callback */
736 static int RtspCallback( httpd_callback_sys_t *p_args,
738 httpd_message_t *answer,
739 const httpd_message_t *query )
741 return RtspHandler( (rtsp_stream_t *)p_args, NULL, cl, answer, query );
745 /** Non-aggregate RTSP callback */
746 static int RtspCallbackId( httpd_callback_sys_t *p_args,
748 httpd_message_t *answer,
749 const httpd_message_t *query )
751 rtsp_stream_id_t *id = (rtsp_stream_id_t *)p_args;
752 return RtspHandler( id->stream, id, cl, answer, query );