]> git.sesse.net Git - vlc/blob - modules/access/udp.c
* modules/demux/sgimb.c
[vlc] / modules / access / udp.c
1 /*****************************************************************************
2  * udp.c: raw UDP & RTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Tristan Leteurtre <tooney@via.ecp.fr>
9  *          Laurent Aimar <fenrir@via.ecp.fr>
10  *
11  * Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman@wxs.nl>
12  *
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.
17  *
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.
22  *
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  *****************************************************************************/
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #include <stdlib.h>
32
33 #include <vlc/vlc.h>
34 #include <vlc/input.h>
35
36 #include "network.h"
37
38 /*****************************************************************************
39  * Module descriptor
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 miliseconds units." )
45
46 static int  Open ( vlc_object_t * );
47 static void Close( vlc_object_t * );
48
49 vlc_module_begin();
50     set_description( _("UDP/RTP input") );
51
52     add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
53                  CACHING_LONGTEXT, VLC_TRUE );
54
55     set_capability( "access", 0 );
56     add_shortcut( "udp" );
57     add_shortcut( "udpstream" );
58     add_shortcut( "udp4" );
59     add_shortcut( "udp6" );
60     add_shortcut( "rtp" );
61     add_shortcut( "rtp4" );
62     add_shortcut( "rtp6" );
63     set_callbacks( Open, Close );
64 vlc_module_end();
65
66 /*****************************************************************************
67  * Local prototypes
68  *****************************************************************************/
69 #define RTP_HEADER_LEN 12
70
71 static ssize_t Read    ( input_thread_t *, byte_t *, size_t );
72 static ssize_t RTPRead ( input_thread_t *, byte_t *, size_t );
73 static ssize_t RTPChoose( input_thread_t *, byte_t *, size_t );
74
75 struct access_sys_t
76 {
77     int fd;
78 };
79
80 /*****************************************************************************
81  * Open: open the socket
82  *****************************************************************************/
83 static int Open( vlc_object_t *p_this )
84 {
85     input_thread_t     *p_input = (input_thread_t *)p_this;
86     access_sys_t       *p_sys;
87
88     char *              psz_name = strdup(p_input->psz_name);
89     char *              psz_parser = psz_name;
90     char *              psz_server_addr = "";
91     char *              psz_server_port = "";
92     char *              psz_bind_addr = "";
93     char *              psz_bind_port = "";
94     int                 i_bind_port = 0, i_server_port = 0;
95     vlc_value_t         val;
96
97
98     /* First set ipv4/ipv6 */
99     var_Create( p_input, "ipv4", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
100     var_Create( p_input, "ipv6", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
101
102     if( *p_input->psz_access )
103     {
104         /* Find out which shortcut was used */
105         if( !strncmp( p_input->psz_access, "udp4", 6 ) ||
106             !strncmp( p_input->psz_access, "rtp4", 6 ))
107         {
108             val.b_bool = VLC_TRUE;
109             var_Set( p_input, "ipv4", val );
110
111             val.b_bool = VLC_FALSE;
112             var_Set( p_input, "ipv6", val );
113         }
114         else if( !strncmp( p_input->psz_access, "udp6", 6 ) ||
115                  !strncmp( p_input->psz_access, "rtp6", 6 ) )
116         {
117             val.b_bool = VLC_TRUE;
118             var_Set( p_input, "ipv6", val );
119
120             val.b_bool = VLC_FALSE;
121             var_Set( p_input, "ipv4", val );
122         }
123     }
124
125     /* Parse psz_name syntax :
126      * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
127     if( *psz_parser && *psz_parser != '@' )
128     {
129         /* Found server */
130         psz_server_addr = psz_parser;
131
132         while( *psz_parser && *psz_parser != ':' && *psz_parser != '@' )
133         {
134             if( *psz_parser == '[' )
135             {
136                 /* IPv6 address */
137                 while( *psz_parser && *psz_parser != ']' )
138                 {
139                     psz_parser++;
140                 }
141             }
142             psz_parser++;
143         }
144
145         if( *psz_parser == ':' )
146         {
147             /* Found server port */
148             *psz_parser++ = '\0'; /* Terminate server name */
149             psz_server_port = psz_parser;
150
151             while( *psz_parser && *psz_parser != '@' )
152             {
153                 psz_parser++;
154             }
155         }
156     }
157
158     if( *psz_parser == '@' )
159     {
160         /* Found bind address or bind port */
161         *psz_parser++ = '\0'; /* Terminate server port or name if necessary */
162
163         if( *psz_parser && *psz_parser != ':' )
164         {
165             /* Found bind address */
166             psz_bind_addr = psz_parser;
167
168             while( *psz_parser && *psz_parser != ':' )
169             {
170                 if( *psz_parser == '[' )
171                 {
172                     /* IPv6 address */
173                     while( *psz_parser && *psz_parser != ']' )
174                     {
175                         psz_parser++;
176                     }
177                 }
178                 psz_parser++;
179             }
180         }
181
182         if( *psz_parser == ':' )
183         {
184             /* Found bind port */
185             *psz_parser++ = '\0'; /* Terminate bind address if necessary */
186             psz_bind_port = psz_parser;
187         }
188     }
189
190     i_server_port = strtol( psz_server_port, NULL, 10 );
191     if( ( i_bind_port   = strtol( psz_bind_port,   NULL, 10 ) ) == 0 )
192     {
193         i_bind_port = config_GetInt( p_this, "server-port" );
194     }
195
196     msg_Dbg( p_input, "opening server=%s:%d local=%s:%d",
197              psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
198
199     p_sys = p_input->p_access_data = malloc( sizeof( access_sys_t ) );
200     if( p_sys == NULL )
201     {
202         msg_Err( p_input, "out of memory" );
203         return VLC_EGENERIC;
204     }
205
206     p_sys->fd = net_OpenUDP( p_input, psz_bind_addr, i_bind_port,
207                                       psz_server_addr, i_server_port );
208     if( p_sys->fd < 0 )
209     {
210         msg_Err( p_input, "cannot open socket" );
211         free( psz_name );
212         free( p_sys );
213         return VLC_EGENERIC;
214     }
215     free( psz_name );
216
217     /* FIXME */
218     var_Create( p_input, "mtu", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
219     var_Get( p_input, "mtu", &val);
220     p_input->i_mtu = val.i_int;
221
222     /* fill p_input fields */
223     p_input->pf_read = RTPChoose;
224     p_input->pf_set_program = input_SetProgram;
225     p_input->pf_set_area = NULL;
226     p_input->pf_seek = NULL;
227
228     vlc_mutex_lock( &p_input->stream.stream_lock );
229     p_input->stream.b_pace_control = VLC_FALSE;
230     p_input->stream.b_seekable = VLC_FALSE;
231     p_input->stream.p_selected_area->i_tell = 0;
232     p_input->stream.i_method = INPUT_METHOD_NETWORK;
233     vlc_mutex_unlock( &p_input->stream.stream_lock );
234
235     /* Update default_pts to a suitable value for udp access */
236     var_Create( p_input, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
237     var_Get( p_input, "udp-caching", &val );
238     p_input->i_pts_delay = val.i_int * 1000;
239
240     return VLC_SUCCESS;
241 }
242
243 /*****************************************************************************
244  * Close: free unused data structures
245  *****************************************************************************/
246 static void Close( vlc_object_t *p_this )
247 {
248     input_thread_t *p_input = (input_thread_t *)p_this;
249     access_sys_t   *p_sys = p_input->p_access_data;
250
251     msg_Info( p_input, "closing UDP target `%s'", p_input->psz_source );
252
253     net_Close( p_sys->fd );
254
255     free( p_sys );
256 }
257
258 /*****************************************************************************
259  * Read: read on a file descriptor, checking b_die periodically
260  *****************************************************************************/
261 static ssize_t Read( input_thread_t * p_input, byte_t * p_buffer, size_t i_len )
262 {
263     access_sys_t   *p_sys = p_input->p_access_data;
264
265     return net_Read( p_input, p_sys->fd, p_buffer, i_len, VLC_FALSE );
266 }
267
268 /*****************************************************************************
269  * RTPRead : read from the network, and parse the RTP header
270  *****************************************************************************/
271 static ssize_t RTPRead( input_thread_t * p_input, byte_t * p_buffer,
272                         size_t i_len )
273 {
274     int         i_rtp_version;
275     int         i_CSRC_count;
276     int         i_payload_type;
277     int         i_skip = 0;
278
279     byte_t *    p_tmp_buffer = alloca( p_input->i_mtu );
280
281     /* Get the raw data from the socket.
282      * We first assume that RTP header size is the classic RTP_HEADER_LEN. */
283     ssize_t i_ret = Read( p_input, p_tmp_buffer, p_input->i_mtu );
284
285     if ( i_ret <= 0 ) return 0; /* i_ret is at least 1 */
286
287     /* Parse the header and make some verifications.
288      * See RFC 1889 & RFC 2250. */
289
290     i_rtp_version  = ( p_tmp_buffer[0] & 0xC0 ) >> 6;
291     i_CSRC_count   = ( p_tmp_buffer[0] & 0x0F );
292     i_payload_type = ( p_tmp_buffer[1] & 0x7F );
293
294     if ( i_rtp_version != 2 )
295         msg_Dbg( p_input, "RTP version is %u, should be 2", i_rtp_version );
296
297     if( i_payload_type == 14 )
298     {
299         i_skip = 4;
300     }
301     else if( i_payload_type !=  33 && i_payload_type != 32 )
302     {
303         msg_Dbg( p_input, "unsupported RTP payload type (%u)",
304                  i_payload_type );
305     }
306     i_skip += RTP_HEADER_LEN + 4*i_CSRC_count;
307
308     /* A CSRC extension field is 32 bits in size (4 bytes) */
309     if ( i_ret < i_skip )
310     {
311         /* Packet is not big enough to hold the complete RTP_HEADER with
312          * CSRC extensions.
313          */
314         msg_Warn( p_input, "RTP input trashing %d bytes", i_ret - i_len );
315         return 0;
316     }
317
318     /* Return the packet without the RTP header. */
319     i_ret -= i_skip;
320
321     if ( (size_t)i_ret > i_len )
322     {
323         /* This should NOT happen. */
324         msg_Warn( p_input, "RTP input trashing %d bytes", i_ret - i_len );
325         i_ret = i_len;
326     }
327
328     p_input->p_vlc->pf_memcpy( p_buffer, &p_tmp_buffer[i_skip], i_ret );
329
330     return i_ret;
331 }
332
333 /*****************************************************************************
334  * RTPChoose : read from the network, and decide whether it's UDP or RTP
335  *****************************************************************************/
336 static ssize_t RTPChoose( input_thread_t * p_input, byte_t * p_buffer,
337                           size_t i_len )
338 {
339     int         i_rtp_version;
340     int         i_CSRC_count;
341     int         i_payload_type;
342
343     byte_t *    p_tmp_buffer = alloca( p_input->i_mtu );
344
345     /* Get the raw data from the socket.
346      * We first assume that RTP header size is the classic RTP_HEADER_LEN. */
347     ssize_t i_ret = Read( p_input, p_tmp_buffer, p_input->i_mtu );
348
349     if ( i_ret <= 0 ) return 0; /* i_ret is at least 1 */
350
351     /* Check that it's not TS. */
352     if ( p_tmp_buffer[0] == 0x47 )
353     {
354         msg_Dbg( p_input, "detected TS over raw UDP" );
355         p_input->pf_read = Read;
356         p_input->p_vlc->pf_memcpy( p_buffer, p_tmp_buffer, i_ret );
357         return i_ret;
358     }
359
360     /* Parse the header and make some verifications.
361      * See RFC 1889 & RFC 2250. */
362
363     i_rtp_version  = ( p_tmp_buffer[0] & 0xC0 ) >> 6;
364     i_CSRC_count   = ( p_tmp_buffer[0] & 0x0F );
365     i_payload_type = ( p_tmp_buffer[1] & 0x7F );
366
367     if ( i_rtp_version != 2 )
368     {
369         msg_Dbg( p_input, "no supported RTP header detected" );
370         p_input->pf_read = Read;
371         p_input->p_vlc->pf_memcpy( p_buffer, p_tmp_buffer, i_ret );
372         return i_ret;
373     }
374
375     switch ( i_payload_type )
376     {
377     case 33:
378         msg_Dbg( p_input, "detected TS over RTP" );
379         break;
380
381     case 14:
382         msg_Dbg( p_input, "detected MPEG audio over RTP" );
383         if( !p_input->psz_demux || *p_input->psz_demux == '\0' )
384         {
385             p_input->psz_demux = "mp3";
386         }
387         break;
388
389     case 32:
390         msg_Dbg( p_input, "detected MPEG video over RTP" );
391         break;
392
393     default:
394         msg_Dbg( p_input, "no RTP header detected" );
395         p_input->pf_read = Read;
396         p_input->p_vlc->pf_memcpy( p_buffer, p_tmp_buffer, i_ret );
397         return i_ret;
398     }
399
400     p_input->pf_read = RTPRead;
401
402     /* A CSRC extension field is 32 bits in size (4 bytes) */
403     if( i_ret < RTP_HEADER_LEN + 4*i_CSRC_count )
404     {
405         /* Packet is not big enough to hold the complete RTP_HEADER with
406          * CSRC extensions.
407          */
408         msg_Warn( p_input, "RTP input trashing %d bytes", i_ret - i_len );
409         return 0;
410     }
411
412     /* Return the packet without the RTP header. */
413     i_ret -= RTP_HEADER_LEN + 4*i_CSRC_count;
414
415     if ( (size_t)i_ret > i_len )
416     {
417         /* This should NOT happen. */
418         msg_Warn( p_input, "RTP input trashing %d bytes", i_ret - i_len );
419         i_ret = i_len;
420     }
421
422     p_input->p_vlc->pf_memcpy( p_buffer,
423                                &p_tmp_buffer[RTP_HEADER_LEN + 4*i_CSRC_count],
424                                i_ret );
425
426     return i_ret;
427 }