1 /*****************************************************************************
2 * udp.c: raw UDP & RTP input module
3 *****************************************************************************
4 * Copyright (C) 2001-2004 VideoLAN (Centrale Réseaux) and its contributors
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Tristan Leteurtre <tooney@via.ecp.fr>
9 * Laurent Aimar <fenrir@via.ecp.fr>
11 * Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman@wxs.nl>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
26 *****************************************************************************/
28 /*****************************************************************************
30 *****************************************************************************/
34 #include <vlc/input.h>
38 /*****************************************************************************
40 *****************************************************************************/
41 #define CACHING_TEXT N_("Caching value in ms")
42 #define CACHING_LONGTEXT N_( \
43 "Allows you to modify the default caching value for UDP streams. This " \
44 "value should be set in millisecond units." )
46 #define AUTO_MTU_TEXT N_("Autodetection of MTU")
47 #define AUTO_MTU_LONGTEXT N_( \
48 "Allows growing the MTU if truncated packets are found" )
50 static int Open ( vlc_object_t * );
51 static void Close( vlc_object_t * );
54 set_shortname( _("UDP/RTP" ) );
55 set_description( _("UDP/RTP input") );
56 set_category( CAT_INPUT );
57 set_subcategory( SUBCAT_INPUT_ACCESS );
59 add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
60 CACHING_LONGTEXT, VLC_TRUE );
61 add_bool( "udp-auto-mtu", 1, NULL,
62 AUTO_MTU_TEXT, AUTO_MTU_LONGTEXT, VLC_TRUE );
64 set_capability( "access2", 0 );
65 add_shortcut( "udp" );
66 add_shortcut( "udpstream" );
67 add_shortcut( "udp4" );
68 add_shortcut( "udp6" );
69 add_shortcut( "rtp" );
70 add_shortcut( "rtp4" );
71 add_shortcut( "rtp6" );
72 set_callbacks( Open, Close );
75 /*****************************************************************************
77 *****************************************************************************/
78 #define RTP_HEADER_LEN 12
80 static block_t *BlockUDP( access_t * );
81 static block_t *BlockRTP( access_t * );
82 static block_t *BlockChoose( access_t * );
83 static int Control( access_t *, int, va_list );
90 vlc_bool_t b_auto_mtu;
93 /*****************************************************************************
94 * Open: open the socket
95 *****************************************************************************/
96 static int Open( vlc_object_t *p_this )
98 access_t *p_access = (access_t*)p_this;
101 char *psz_name = strdup( p_access->psz_path );
102 char *psz_parser = psz_name;
103 char *psz_server_addr = "";
104 char *psz_server_port = "";
105 char *psz_bind_addr = "";
106 char *psz_bind_port = "";
108 int i_server_port = 0;
111 /* First set ipv4/ipv6 */
112 var_Create( p_access, "ipv4", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
113 var_Create( p_access, "ipv6", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
115 if( *p_access->psz_access )
118 /* Find out which shortcut was used */
119 if( !strncmp( p_access->psz_access, "udp4", 6 ) ||
120 !strncmp( p_access->psz_access, "rtp4", 6 ))
122 val.b_bool = VLC_TRUE;
123 var_Set( p_access, "ipv4", val );
125 val.b_bool = VLC_FALSE;
126 var_Set( p_access, "ipv6", val );
128 else if( !strncmp( p_access->psz_access, "udp6", 6 ) ||
129 !strncmp( p_access->psz_access, "rtp6", 6 ) )
131 val.b_bool = VLC_TRUE;
132 var_Set( p_access, "ipv6", val );
134 val.b_bool = VLC_FALSE;
135 var_Set( p_access, "ipv4", val );
139 /* Parse psz_name syntax :
140 * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
141 if( *psz_parser && *psz_parser != '@' )
144 psz_server_addr = psz_parser;
146 while( *psz_parser && *psz_parser != ':' && *psz_parser != '@' )
148 if( *psz_parser == '[' )
151 while( *psz_parser && *psz_parser != ']' )
159 if( *psz_parser == ':' )
161 /* Found server port */
162 *psz_parser++ = '\0'; /* Terminate server name */
163 psz_server_port = psz_parser;
165 while( *psz_parser && *psz_parser != '@' )
172 if( *psz_parser == '@' )
174 /* Found bind address or bind port */
175 *psz_parser++ = '\0'; /* Terminate server port or name if necessary */
177 if( *psz_parser && *psz_parser != ':' )
179 /* Found bind address */
180 psz_bind_addr = psz_parser;
182 while( *psz_parser && *psz_parser != ':' )
184 if( *psz_parser == '[' )
187 while( *psz_parser && *psz_parser != ']' )
196 if( *psz_parser == ':' )
198 /* Found bind port */
199 *psz_parser++ = '\0'; /* Terminate bind address if necessary */
200 psz_bind_port = psz_parser;
204 i_server_port = strtol( psz_server_port, NULL, 10 );
205 if( ( i_bind_port = strtol( psz_bind_port, NULL, 10 ) ) == 0 )
207 i_bind_port = var_CreateGetInteger( p_access, "server-port" );
210 msg_Dbg( p_access, "opening server=%s:%d local=%s:%d",
211 psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
213 /* Set up p_access */
214 p_access->pf_read = NULL;
215 if( !strcasecmp( p_access->psz_access, "rtp" )
216 || !strcasecmp( p_access->psz_access, "rtp4" )
217 || !strcasecmp( p_access->psz_access, "rtp6" ) )
219 p_access->pf_block = BlockRTP;
223 p_access->pf_block = BlockChoose;
225 p_access->pf_control = Control;
226 p_access->pf_seek = NULL;
227 p_access->info.i_update = 0;
228 p_access->info.i_size = 0;
229 p_access->info.i_pos = 0;
230 p_access->info.b_eof = VLC_FALSE;
231 p_access->info.i_title = 0;
232 p_access->info.i_seekpoint = 0;
234 p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
235 p_sys->fd = net_OpenUDP( p_access, psz_bind_addr, i_bind_port,
236 psz_server_addr, i_server_port );
239 msg_Err( p_access, "cannot open socket" );
246 net_StopSend( p_sys->fd );
249 p_sys->i_mtu = var_CreateGetInteger( p_access, "mtu" );
250 if( p_sys->i_mtu <= 1 )
251 p_sys->i_mtu = 1500; /* Avoid problem */
253 p_sys->b_auto_mtu = var_CreateGetBool( p_access, "udp-auto-mtu" );;
255 /* Update default_pts to a suitable value for udp access */
256 var_Create( p_access, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
261 /*****************************************************************************
262 * Close: free unused data structures
263 *****************************************************************************/
264 static void Close( vlc_object_t *p_this )
266 access_t *p_access = (access_t*)p_this;
267 access_sys_t *p_sys = p_access->p_sys;
269 net_Close( p_sys->fd );
273 /*****************************************************************************
275 *****************************************************************************/
276 static int Control( access_t *p_access, int i_query, va_list args )
278 access_sys_t *p_sys = p_access->p_sys;
286 case ACCESS_CAN_SEEK:
287 case ACCESS_CAN_FASTSEEK:
288 case ACCESS_CAN_PAUSE:
289 case ACCESS_CAN_CONTROL_PACE:
290 pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
291 *pb_bool = VLC_FALSE;
295 pi_int = (int*)va_arg( args, int * );
296 *pi_int = p_sys->i_mtu;
299 case ACCESS_GET_PTS_DELAY:
300 pi_64 = (int64_t*)va_arg( args, int64_t * );
301 *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000;
305 case ACCESS_SET_PAUSE_STATE:
306 case ACCESS_GET_TITLE_INFO:
307 case ACCESS_SET_TITLE:
308 case ACCESS_SET_SEEKPOINT:
309 case ACCESS_SET_PRIVATE_ID_STATE:
313 msg_Warn( p_access, "unimplemented query in control" );
320 /*****************************************************************************
322 *****************************************************************************/
323 static block_t *BlockUDP( access_t *p_access )
325 access_sys_t *p_sys = p_access->p_sys;
329 p_block = block_New( p_access, p_sys->i_mtu );
330 p_block->i_buffer = net_Read( p_access, p_sys->fd, NULL,
331 p_block->p_buffer, p_sys->i_mtu,
333 if( p_block->i_buffer <= 0 )
335 block_Release( p_block );
339 if( p_block->i_buffer >= p_sys->i_mtu && p_sys->b_auto_mtu &&
340 p_sys->i_mtu < 32767 )
342 /* Increase by 100% */
344 msg_Dbg( p_access, "increasing MTU to %d", p_sys->i_mtu );
350 /*****************************************************************************
351 * BlockParseRTP/BlockRTP:
352 *****************************************************************************/
353 static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
360 if( p_block->i_buffer < RTP_HEADER_LEN )
363 /* Parse the header and make some verifications.
364 * See RFC 1889 & RFC 2250. */
365 i_rtp_version = ( p_block->p_buffer[0] & 0xC0 ) >> 6;
366 i_CSRC_count = ( p_block->p_buffer[0] & 0x0F );
367 i_payload_type = ( p_block->p_buffer[1] & 0x7F );
369 if ( i_rtp_version != 2 )
370 msg_Dbg( p_access, "RTP version is %u, should be 2", i_rtp_version );
372 if( i_payload_type == 14 )
374 else if( i_payload_type != 33 && i_payload_type != 32 )
375 msg_Dbg( p_access, "unsupported RTP payload type (%u)", i_payload_type );
377 i_skip += RTP_HEADER_LEN + 4*i_CSRC_count;
379 /* A CSRC extension field is 32 bits in size (4 bytes) */
380 if( i_skip >= p_block->i_buffer )
383 /* Return the packet without the RTP header. */
384 p_block->i_buffer -= i_skip;
385 p_block->p_buffer += i_skip;
390 msg_Warn( p_access, "received a too short packet for RTP" );
391 block_Release( p_block );
395 static block_t *BlockRTP( access_t *p_access )
397 block_t *p_block = BlockUDP( p_access );
399 if ( p_block != NULL )
400 return BlockParseRTP( p_access, p_block );
405 /*****************************************************************************
406 * BlockChoose: decide between RTP and UDP
407 *****************************************************************************/
408 static block_t *BlockChoose( access_t *p_access )
415 if( ( p_block = BlockUDP( p_access ) ) == NULL )
418 if( p_block->p_buffer[0] == 0x47 )
420 msg_Dbg( p_access, "detected TS over raw UDP" );
421 p_access->pf_block = BlockUDP;
425 if( p_block->i_buffer < RTP_HEADER_LEN )
428 /* Parse the header and make some verifications.
429 * See RFC 1889 & RFC 2250. */
431 i_rtp_version = ( p_block->p_buffer[0] & 0xC0 ) >> 6;
432 i_CSRC_count = ( p_block->p_buffer[0] & 0x0F );
433 i_payload_type = ( p_block->p_buffer[1] & 0x7F );
435 if( i_rtp_version != 2 )
437 msg_Dbg( p_access, "no supported RTP header detected" );
438 p_access->pf_block = BlockUDP;
442 switch( i_payload_type )
445 msg_Dbg( p_access, "detected TS over RTP" );
446 p_access->psz_demux = strdup( "ts" );
450 msg_Dbg( p_access, "detected MPEG audio over RTP" );
451 p_access->psz_demux = strdup( "mpga" );
455 msg_Dbg( p_access, "detected MPEG video over RTP" );
456 p_access->psz_demux = strdup( "mpgv" );
460 msg_Dbg( p_access, "no RTP header detected" );
461 p_access->pf_block = BlockUDP;
465 p_access->pf_block = BlockRTP;
467 return BlockParseRTP( p_access, p_block );