vlc/modules/access/udp.c

249 lines
7.0 KiB
C
Raw Normal View History

/*****************************************************************************
2008-06-07 23:34:16 +08:00
* udp.c: raw UDP input module
*****************************************************************************
LGPL Re-license almost all the playback modules to LGPLv2.1+ with authorization from their respective contributors (230+) This includes: - access, codec, packetizers, demux - audio filters, audio mixers, audio output - video filters, video chroma, video output - text renderers - XML parser - ARM NEON and SSE2 optimisations (mostly for chromas and filters) Some modules are not concerned: - BDA and DShow access modules because Manol Manolov is AWOL - Real RTSP, because it is derived from Xine - x264 and t140 because they are encoders only - DLL Loader, because it is derived from MPlayer - DTS packetizer, because Jon Lech Johansen is AWOL - Shine and WMAfixed, because they are derived from Rockbox - Real demuxer, as it is derived from MPlayer and Wang Bo is AWOL - MPC demuxer, as Yavor Doganov is AWOL - Tivo demuxer, because it is derived from an MPlayer fork - Playlist demuxer, (WPL and ZPL parts missing), because suheaven is AWOL - iOS audio output and video display, because author refuses the license change - Equalizer and compressor, because Ronald Wright is AWOL - Mono, Headphone and Dolby, because author refuses the license change - hqdn3d and yadif, because they are from MPlayer/libavfilter - remoteosd, because it derives from RealVNC code - MMX optimisations, because Ollie Lho, from SiS, is AWOL - Rotate, because it depends on GPL motion Nota Bene: - Some modules depend on GPL-only libraries, a LGPL module does not mean that the resulting binary module will be LGPL. Libraries affected would include liba52, libdvdcss, libdvdnav, libdvdread, faad2, libdca, libmad, libmpeg2, libpostproc, SRC, sid, zvbi and probably others.
2012-11-07 00:48:33 +08:00
* Copyright (C) 2001-2005 VLC authors and VideoLAN
2007-02-06 01:06:28 +08:00
* Copyright (C) 2007 Remi Denis-Courmont
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Tristan Leteurtre <tooney@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr>
* Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
2007-02-06 01:06:28 +08:00
* Remi Denis-Courmont
*
2006-03-09 17:47:30 +08:00
* Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
*
LGPL Re-license almost all the playback modules to LGPLv2.1+ with authorization from their respective contributors (230+) This includes: - access, codec, packetizers, demux - audio filters, audio mixers, audio output - video filters, video chroma, video output - text renderers - XML parser - ARM NEON and SSE2 optimisations (mostly for chromas and filters) Some modules are not concerned: - BDA and DShow access modules because Manol Manolov is AWOL - Real RTSP, because it is derived from Xine - x264 and t140 because they are encoders only - DLL Loader, because it is derived from MPlayer - DTS packetizer, because Jon Lech Johansen is AWOL - Shine and WMAfixed, because they are derived from Rockbox - Real demuxer, as it is derived from MPlayer and Wang Bo is AWOL - MPC demuxer, as Yavor Doganov is AWOL - Tivo demuxer, because it is derived from an MPlayer fork - Playlist demuxer, (WPL and ZPL parts missing), because suheaven is AWOL - iOS audio output and video display, because author refuses the license change - Equalizer and compressor, because Ronald Wright is AWOL - Mono, Headphone and Dolby, because author refuses the license change - hqdn3d and yadif, because they are from MPlayer/libavfilter - remoteosd, because it derives from RealVNC code - MMX optimisations, because Ollie Lho, from SiS, is AWOL - Rotate, because it depends on GPL motion Nota Bene: - Some modules depend on GPL-only libraries, a LGPL module does not mean that the resulting binary module will be LGPL. Libraries affected would include liba52, libdvdcss, libdvdnav, libdvdread, faad2, libdca, libmad, libmpeg2, libpostproc, SRC, sid, zvbi and probably others.
2012-11-07 00:48:33 +08:00
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
LGPL Re-license almost all the playback modules to LGPLv2.1+ with authorization from their respective contributors (230+) This includes: - access, codec, packetizers, demux - audio filters, audio mixers, audio output - video filters, video chroma, video output - text renderers - XML parser - ARM NEON and SSE2 optimisations (mostly for chromas and filters) Some modules are not concerned: - BDA and DShow access modules because Manol Manolov is AWOL - Real RTSP, because it is derived from Xine - x264 and t140 because they are encoders only - DLL Loader, because it is derived from MPlayer - DTS packetizer, because Jon Lech Johansen is AWOL - Shine and WMAfixed, because they are derived from Rockbox - Real demuxer, as it is derived from MPlayer and Wang Bo is AWOL - MPC demuxer, as Yavor Doganov is AWOL - Tivo demuxer, because it is derived from an MPlayer fork - Playlist demuxer, (WPL and ZPL parts missing), because suheaven is AWOL - iOS audio output and video display, because author refuses the license change - Equalizer and compressor, because Ronald Wright is AWOL - Mono, Headphone and Dolby, because author refuses the license change - hqdn3d and yadif, because they are from MPlayer/libavfilter - remoteosd, because it derives from RealVNC code - MMX optimisations, because Ollie Lho, from SiS, is AWOL - Rotate, because it depends on GPL motion Nota Bene: - Some modules depend on GPL-only libraries, a LGPL module does not mean that the resulting binary module will be LGPL. Libraries affected would include liba52, libdvdcss, libdvdnav, libdvdread, faad2, libdca, libmad, libmpeg2, libpostproc, SRC, sid, zvbi and probably others.
2012-11-07 00:48:33 +08:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
LGPL Re-license almost all the playback modules to LGPLv2.1+ with authorization from their respective contributors (230+) This includes: - access, codec, packetizers, demux - audio filters, audio mixers, audio output - video filters, video chroma, video output - text renderers - XML parser - ARM NEON and SSE2 optimisations (mostly for chromas and filters) Some modules are not concerned: - BDA and DShow access modules because Manol Manolov is AWOL - Real RTSP, because it is derived from Xine - x264 and t140 because they are encoders only - DLL Loader, because it is derived from MPlayer - DTS packetizer, because Jon Lech Johansen is AWOL - Shine and WMAfixed, because they are derived from Rockbox - Real demuxer, as it is derived from MPlayer and Wang Bo is AWOL - MPC demuxer, as Yavor Doganov is AWOL - Tivo demuxer, because it is derived from an MPlayer fork - Playlist demuxer, (WPL and ZPL parts missing), because suheaven is AWOL - iOS audio output and video display, because author refuses the license change - Equalizer and compressor, because Ronald Wright is AWOL - Mono, Headphone and Dolby, because author refuses the license change - hqdn3d and yadif, because they are from MPlayer/libavfilter - remoteosd, because it derives from RealVNC code - MMX optimisations, because Ollie Lho, from SiS, is AWOL - Rotate, because it depends on GPL motion Nota Bene: - Some modules depend on GPL-only libraries, a LGPL module does not mean that the resulting binary module will be LGPL. Libraries affected would include liba52, libdvdcss, libdvdnav, libdvdread, faad2, libdca, libmad, libmpeg2, libpostproc, SRC, sid, zvbi and probably others.
2012-11-07 00:48:33 +08:00
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
2008-05-08 23:30:33 +08:00
#include <vlc_plugin.h>
#include <vlc_access.h>
#include <vlc_network.h>
#include <vlc_block.h>
#include <vlc_interrupt.h>
2020-06-06 21:47:43 +08:00
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#ifdef HAVE_SYS_UIO_H
# include <sys/uio.h>
#endif
2019-05-19 23:54:44 +08:00
/* Buffer can be max theoretical datagram content minus anticipated MTU.
* IPv6 headers are larger than IPv4, ignore IPv6 jumbograms.
*/
#define MRU 65507u
typedef struct {
int fd;
int timeout;
size_t length;
char *offset;
char buf[MRU];
} access_sys_t;
static int Control(stream_t *access, int query, va_list args)
{
switch (query) {
case STREAM_CAN_SEEK:
case STREAM_CAN_FASTSEEK:
case STREAM_CAN_PAUSE:
case STREAM_CAN_CONTROL_PACE:
*va_arg(args, bool *) = false;
break;
case STREAM_GET_PTS_DELAY:
*va_arg(args, vlc_tick_t *) =
VLC_TICK_FROM_MS(var_InheritInteger(access, "network-caching"));
break;
default:
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}
static ssize_t Read(stream_t *access, void *buf, size_t len)
{
access_sys_t *sys = access->p_sys;
if (sys->length > 0) {
if (len > sys->length)
len = sys->length;
memcpy(buf, sys->offset, len);
sys->offset += len;
sys->length -= len;
return len;
}
struct pollfd ufd[1];
ufd[0].fd = sys->fd;
ufd[0].events = POLLIN;
switch (vlc_poll_i11e(ufd, 1, sys->timeout)) {
case 0:
msg_Err(access, "receive time-out");
return 0;
case -1:
return -1;
}
struct iovec iov[] = {
{ .iov_base = buf, .iov_len = len, },
{ .iov_base = sys->buf, .iov_len = MRU, },
};
struct msghdr msg = {
.msg_iov = iov,
.msg_iovlen = ARRAY_SIZE(iov),
};
ssize_t val = recvmsg(sys->fd, &msg, 0);
if (val <= 0) /* empty (0 bytes) payload does *not* mean EOF here */
return -1;
if (unlikely((size_t)val > len)) {
sys->offset = sys->buf;
sys->length = val - len;
val = len;
}
return val;
}
/*****************************************************************************
* Open: open the socket
*****************************************************************************/
static int Open( vlc_object_t *p_this )
{
2017-07-23 13:43:16 +08:00
stream_t *p_access = (stream_t*)p_this;
2016-06-04 23:46:47 +08:00
access_sys_t *sys;
if( p_access->b_preparsing )
return VLC_EGENERIC;
sys = vlc_obj_malloc( p_this, sizeof( *sys ) );
if( unlikely( sys == NULL ) )
return VLC_ENOMEM;
sys->length = 0;
p_access->p_sys = sys;
p_access->pf_read = Read;
p_access->pf_block = NULL;
p_access->pf_control = Control;
p_access->pf_seek = NULL;
2014-11-15 01:24:05 +08:00
char *psz_name = strdup( p_access->psz_location );
char *psz_parser;
const char *psz_server_addr, *psz_bind_addr = "";
int i_bind_port = 1234, i_server_port = 0;
if( unlikely(psz_name == NULL) )
return VLC_ENOMEM;
2014-11-15 01:24:05 +08:00
/* Parse psz_name syntax :
* [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
2005-08-02 01:54:14 +08:00
psz_parser = strchr( psz_name, '@' );
if( psz_parser != NULL )
{
2005-08-02 01:54:14 +08:00
/* Found bind address and/or bind port */
*psz_parser++ = '\0';
psz_bind_addr = psz_parser;
if( psz_bind_addr[0] == '[' )
2005-08-02 01:54:14 +08:00
/* skips bracket'd IPv6 address */
psz_parser = strchr( psz_parser, ']' );
2005-08-02 01:54:14 +08:00
if( psz_parser != NULL )
{
2005-08-02 01:54:14 +08:00
psz_parser = strchr( psz_parser, ':' );
if( psz_parser != NULL )
{
2005-08-02 01:54:14 +08:00
*psz_parser++ = '\0';
i_bind_port = atoi( psz_parser );
}
}
}
2005-08-02 01:54:14 +08:00
psz_server_addr = psz_name;
psz_parser = ( psz_server_addr[0] == '[' )
? strchr( psz_name, ']' ) /* skips bracket'd IPv6 address */
: psz_name;
2005-08-02 01:54:14 +08:00
if( psz_parser != NULL )
{
2005-08-02 23:23:46 +08:00
psz_parser = strchr( psz_parser, ':' );
2005-08-02 01:54:14 +08:00
if( psz_parser != NULL )
{
2005-08-02 01:54:14 +08:00
*psz_parser++ = '\0';
i_server_port = atoi( psz_parser );
}
}
msg_Dbg( p_access, "opening server=%s:%d local=%s:%d",
psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
sys->fd = net_OpenDgram( p_access, psz_bind_addr, i_bind_port,
psz_server_addr, i_server_port, IPPROTO_UDP );
free( psz_name );
if( sys->fd == -1 )
{
msg_Err( p_access, "cannot open socket" );
return VLC_EGENERIC;
}
sys->timeout = var_InheritInteger( p_access, "udp-timeout");
if( sys->timeout > 0)
sys->timeout *= 1000;
return VLC_SUCCESS;
}
/*****************************************************************************
* Close: free unused data structures
*****************************************************************************/
static void Close( vlc_object_t *p_this )
{
2017-07-23 13:43:16 +08:00
stream_t *p_access = (stream_t*)p_this;
access_sys_t *sys = p_access->p_sys;
net_Close( sys->fd );
}
#define TIMEOUT_TEXT N_("UDP Source timeout (sec)")
vlc_module_begin()
set_shortname(N_("UDP"))
set_description(N_("UDP input"))
set_subcategory(SUBCAT_INPUT_ACCESS)
add_obsolete_integer("udp-buffer") /* since 3.0.0 */
add_integer("udp-timeout", -1, TIMEOUT_TEXT, NULL)
set_capability("access", 0)
add_shortcut("udp", "udpstream", "udp4", "udp6")
set_callbacks(Open, Close)
vlc_module_end()