vlc/src/network/tcp.c

546 lines
16 KiB
C
Raw Normal View History

2005-12-05 10:36:39 +01:00
/*****************************************************************************
* tcp.c:
*****************************************************************************
* Copyright (C) 2004-2005 the VideoLAN team
* Copyright (C) 2005-2006 Rémi Denis-Courmont
2005-12-05 10:36:39 +01:00
* $Id$
*
* Authors: Laurent Aimar <fenrir@videolan.org>
* Rémi Denis-Courmont <rem # videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2006-01-13 00:10:04 +01:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
2005-12-05 10:36:39 +01:00
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
2005-12-05 10:36:39 +01:00
#include <errno.h>
2008-01-24 17:08:13 +01:00
#include <assert.h>
2005-12-05 10:36:39 +01:00
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_POLL
# include <poll.h>
#endif
2005-12-05 10:36:39 +01:00
#include <vlc_network.h>
#if defined (WIN32) || defined (UNDER_CE)
# undef EINPROGRESS
# define EINPROGRESS WSAEWOULDBLOCK
# undef EWOULDBLOCK
# define EWOULDBLOCK WSAEWOULDBLOCK
# undef EINTR
# define EINTR WSAEINTR
# undef ETIMEDOUT
# define ETIMEDOUT WSAETIMEDOUT
#endif
2005-12-05 10:36:39 +01:00
#include "libvlc.h" /* vlc_object_waitpipe */
2008-06-08 16:52:43 +02:00
static int SocksNegotiate( vlc_object_t *, int fd, int i_socks_version,
2007-09-16 11:32:30 +02:00
const char *psz_user, const char *psz_passwd );
2005-12-05 10:36:39 +01:00
static int SocksHandshakeTCP( vlc_object_t *,
int fd, int i_socks_version,
2007-09-16 11:32:30 +02:00
const char *psz_user, const char *psz_passwd,
2005-12-05 10:36:39 +01:00
const char *psz_host, int i_port );
extern int net_Socket( vlc_object_t *p_this, int i_family, int i_socktype,
int i_protocol );
/*****************************************************************************
* __net_Connect:
2005-12-05 10:36:39 +01:00
*****************************************************************************
* Open a network connection.
* @return socket handler or -1 on error.
2005-12-05 10:36:39 +01:00
*****************************************************************************/
int __net_Connect( vlc_object_t *p_this, const char *psz_host, int i_port,
int type, int proto )
2005-12-05 10:36:39 +01:00
{
struct addrinfo hints, *res, *ptr;
const char *psz_realhost;
char *psz_socks;
2007-09-05 21:58:01 +02:00
int i_realport, i_val, i_handle = -1;
2005-12-05 10:36:39 +01:00
int evfd = vlc_object_waitpipe (p_this);
if (evfd == -1)
return -1;
2005-12-05 10:36:39 +01:00
memset( &hints, 0, sizeof( hints ) );
hints.ai_socktype = SOCK_STREAM;
psz_socks = var_CreateGetNonEmptyString( p_this, "socks" );
if( psz_socks != NULL )
2005-12-05 10:36:39 +01:00
{
char *psz = strchr( psz_socks, ':' );
if( psz )
*psz++ = '\0';
psz_realhost = psz_socks;
i_realport = ( psz != NULL ) ? atoi( psz ) : 1080;
hints.ai_flags &= ~AI_NUMERICHOST;
2005-12-05 10:36:39 +01:00
2007-09-05 21:58:01 +02:00
msg_Dbg( p_this, "net: connecting to %s port %d (SOCKS) "
"for %s port %d", psz_realhost, i_realport,
psz_host, i_port );
/* We only implement TCP with SOCKS */
switch( type )
{
case 0:
type = SOCK_STREAM;
case SOCK_STREAM:
break;
default:
msg_Err( p_this, "Socket type not supported through SOCKS" );
free( psz_socks );
return -1;
}
switch( proto )
{
case 0:
proto = IPPROTO_TCP;
case IPPROTO_TCP:
break;
default:
msg_Err( p_this, "Transport not supported through SOCKS" );
free( psz_socks );
return -1;
}
2005-12-05 10:36:39 +01:00
}
else
{
psz_realhost = psz_host;
i_realport = i_port;
msg_Dbg( p_this, "net: connecting to %s port %d", psz_realhost,
i_realport );
}
i_val = vlc_getaddrinfo( p_this, psz_realhost, i_realport, &hints, &res );
free( psz_socks );
2005-12-05 10:36:39 +01:00
if( i_val )
{
msg_Err( p_this, "cannot resolve %s port %d : %s", psz_realhost,
i_realport, vlc_gai_strerror( i_val ) );
return -1;
}
for( ptr = res; ptr != NULL; ptr = ptr->ai_next )
2005-12-05 10:36:39 +01:00
{
int fd = net_Socket( p_this, ptr->ai_family, type ?: ptr->ai_socktype,
proto ?: ptr->ai_protocol );
2005-12-05 10:36:39 +01:00
if( fd == -1 )
{
msg_Dbg( p_this, "socket error: %m" );
2005-12-05 10:36:39 +01:00
continue;
}
2005-12-05 10:36:39 +01:00
if( connect( fd, ptr->ai_addr, ptr->ai_addrlen ) )
{
int timeout, val;
2005-12-05 10:36:39 +01:00
if( net_errno != EINPROGRESS && net_errno != EINTR )
2005-12-05 10:36:39 +01:00
{
msg_Err( p_this, "connection failed: %m" );
goto next_ai;
2005-12-05 10:36:39 +01:00
}
msg_Dbg( p_this, "connection: %m" );
2005-12-05 10:36:39 +01:00
timeout = var_CreateGetInteger (p_this, "ipv4-timeout");
if (timeout < 0)
2005-12-05 10:36:39 +01:00
{
msg_Err( p_this, "invalid negative value for ipv4-timeout" );
timeout = 0;
2005-12-05 10:36:39 +01:00
}
struct pollfd ufd[2] = {
{ .fd = fd, .events = POLLOUT },
{ .fd = evfd, .events = POLLIN },
};
do
/* NOTE: timeout screwed up if we catch a signal (EINTR) */
val = poll (ufd, sizeof (ufd) / sizeof (ufd[0]), timeout);
while ((val == -1) && (net_errno == EINTR));
switch (val)
2005-12-05 10:36:39 +01:00
{
case -1: /* error */
msg_Err (p_this, "connection polling error: %m");
goto next_ai;
case 0: /* timeout */
msg_Warn (p_this, "connection timed out");
goto next_ai;
default: /* something happended */
if (ufd[1].revents)
goto next_ai; /* LibVLC object killed */
2005-12-05 10:36:39 +01:00
}
/* There is NO WAY around checking SO_ERROR.
* Don't ifdef it out!!! */
if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &val,
&(socklen_t){ sizeof (val) }) || val)
2005-12-05 10:36:39 +01:00
{
errno = val;
msg_Err (p_this, "connection failed: %m");
goto next_ai;
2005-12-05 10:36:39 +01:00
}
}
msg_Dbg( p_this, "connection succeeded (socket = %d)", fd );
2005-12-05 10:36:39 +01:00
i_handle = fd; /* success! */
break;
next_ai: /* failure */
net_Close( fd );
continue;
2005-12-05 10:36:39 +01:00
}
vlc_freeaddrinfo( res );
if( i_handle == -1 )
return -1;
if( psz_socks != NULL )
2005-12-05 10:36:39 +01:00
{
/* NOTE: psz_socks already free'd! */
2007-09-16 11:32:30 +02:00
char *psz_user = var_CreateGetNonEmptyString( p_this, "socks-user" );
char *psz_pwd = var_CreateGetNonEmptyString( p_this, "socks-pwd" );
2005-12-05 10:36:39 +01:00
if( SocksHandshakeTCP( p_this, i_handle, 5, psz_user, psz_pwd,
psz_host, i_port ) )
{
2007-09-05 21:58:01 +02:00
msg_Err( p_this, "SOCKS handshake failed" );
2005-12-05 10:36:39 +01:00
net_Close( i_handle );
i_handle = -1;
}
free( psz_user );
free( psz_pwd );
}
return i_handle;
}
int net_AcceptSingle (vlc_object_t *obj, int lfd)
{
2008-06-12 19:22:03 +02:00
int fd;
do
fd = accept (lfd, NULL, NULL);
while (fd == -1 && errno == EINTR);
if (fd == -1)
{
if (net_errno != EAGAIN && net_errno != EWOULDBLOCK)
msg_Err (obj, "accept failed (from socket %d): %m", lfd);
return -1;
}
msg_Dbg (obj, "accepted socket %d (from socket %d)", fd, lfd);
net_SetupSocket (fd);
2008-01-28 17:56:48 +01:00
return fd;
}
2005-12-05 10:36:39 +01:00
/*****************************************************************************
* __net_Accept:
*****************************************************************************
* Accept a connection on a set of listening sockets and return it
*****************************************************************************/
2007-09-19 17:49:16 +02:00
int __net_Accept( vlc_object_t *p_this, int *pi_fd, mtime_t i_wait )
2005-12-05 10:36:39 +01:00
{
int timeout = (i_wait < 0) ? -1 : i_wait / 1000;
int evfd = vlc_object_waitpipe (p_this);
2005-12-05 10:36:39 +01:00
assert( pi_fd != NULL );
for (;;)
2005-12-05 10:36:39 +01:00
{
unsigned n = 0;
while (pi_fd[n] != -1)
n++;
struct pollfd ufd[n + 1];
2005-12-05 10:36:39 +01:00
/* Initialize file descriptor set */
for (unsigned i = 0; i <= n; i++)
2005-12-05 10:36:39 +01:00
{
ufd[i].fd = (i < n) ? pi_fd[i] : evfd;
ufd[i].events = POLLIN;
ufd[i].revents = 0;
2005-12-05 10:36:39 +01:00
}
switch (poll (ufd, n + (evfd != -1), timeout))
2005-12-05 10:36:39 +01:00
{
case -1:
2008-06-12 19:22:03 +02:00
if (net_errno == EINTR)
continue;
msg_Err (p_this, "poll error: %m");
return -1;
case 0:
2008-06-12 19:22:03 +02:00
errno = ETIMEDOUT;
return -1;
}
if (ufd[n].revents)
{
errno = EINTR;
break;
2005-12-05 10:36:39 +01:00
}
for (unsigned i = 0; i < n; i++)
2005-12-05 10:36:39 +01:00
{
if (ufd[i].revents == 0)
2005-12-05 10:36:39 +01:00
continue;
int sfd = ufd[i].fd;
int fd = net_AcceptSingle (p_this, sfd);
if (fd == -1)
continue;
/*
* Move listening socket to the end to let the others in the
* set a chance next time.
*/
memmove (pi_fd + i, pi_fd + i + 1, n - (i + 1));
pi_fd[n - 1] = sfd;
return fd;
2005-12-05 10:36:39 +01:00
}
}
return -1;
}
/*****************************************************************************
2008-06-08 16:52:43 +02:00
* SocksNegotiate:
2005-12-05 10:36:39 +01:00
*****************************************************************************
2008-06-08 16:52:43 +02:00
* Negotiate authentication with a SOCKS server.
2005-12-05 10:36:39 +01:00
*****************************************************************************/
2008-06-08 16:52:43 +02:00
static int SocksNegotiate( vlc_object_t *p_obj,
2005-12-05 10:36:39 +01:00
int fd, int i_socks_version,
2007-09-16 11:32:30 +02:00
const char *psz_socks_user,
const char *psz_socks_passwd )
2005-12-05 10:36:39 +01:00
{
uint8_t buffer[128+2*256];
int i_len;
bool b_auth = false;
2005-12-05 10:36:39 +01:00
if( i_socks_version != 5 )
return VLC_SUCCESS;
2008-06-08 16:52:43 +02:00
/* We negotiate authentication */
2005-12-05 10:36:39 +01:00
2007-09-16 11:32:30 +02:00
if( ( psz_socks_user == NULL ) && ( psz_socks_passwd == NULL ) )
b_auth = true;
2005-12-05 10:36:39 +01:00
buffer[0] = i_socks_version; /* SOCKS version */
if( b_auth )
{
buffer[1] = 2; /* Number of methods */
buffer[2] = 0x00; /* - No auth required */
buffer[3] = 0x02; /* - USer/Password */
i_len = 4;
}
else
{
buffer[1] = 1; /* Number of methods */
buffer[2] = 0x00; /* - No auth required */
i_len = 3;
}
if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
return VLC_EGENERIC;
if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
msg_Dbg( p_obj, "socks: v=%d method=%x", buffer[0], buffer[1] );
if( buffer[1] == 0x00 )
{
msg_Dbg( p_obj, "socks: no authentication required" );
}
else if( buffer[1] == 0x02 )
{
int i_len1 = __MIN( strlen(psz_socks_user), 255 );
int i_len2 = __MIN( strlen(psz_socks_passwd), 255 );
msg_Dbg( p_obj, "socks: username/password authentication" );
/* XXX: we don't support user/pwd > 255 (truncated)*/
buffer[0] = i_socks_version; /* Version */
buffer[1] = i_len1; /* User length */
memcpy( &buffer[2], psz_socks_user, i_len1 );
buffer[2+i_len1] = i_len2; /* Password length */
memcpy( &buffer[2+i_len1+1], psz_socks_passwd, i_len2 );
i_len = 3 + i_len1 + i_len2;
if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
return VLC_EGENERIC;
if( net_Read( p_obj, fd, NULL, buffer, 2, true ) != 2 )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
msg_Dbg( p_obj, "socks: v=%d status=%x", buffer[0], buffer[1] );
if( buffer[1] != 0x00 )
{
msg_Err( p_obj, "socks: authentication rejected" );
return VLC_EGENERIC;
}
}
else
{
if( b_auth )
msg_Err( p_obj, "socks: unsupported authentication method %x",
buffer[0] );
else
msg_Err( p_obj, "socks: authentification needed" );
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}
/*****************************************************************************
* SocksHandshakeTCP:
*****************************************************************************
* Open a TCP connection using a SOCKS server and return a handle (RFC 1928)
*****************************************************************************/
static int SocksHandshakeTCP( vlc_object_t *p_obj,
int fd,
int i_socks_version,
2007-09-16 11:32:30 +02:00
const char *psz_user, const char *psz_passwd,
2005-12-05 10:36:39 +01:00
const char *psz_host, int i_port )
{
uint8_t buffer[128+2*256];
if( i_socks_version != 4 && i_socks_version != 5 )
{
msg_Warn( p_obj, "invalid socks protocol version %d", i_socks_version );
i_socks_version = 5;
}
2007-09-10 20:56:52 +02:00
if( i_socks_version == 5 &&
2008-06-08 16:52:43 +02:00
SocksNegotiate( p_obj, fd, i_socks_version,
2007-09-16 11:32:30 +02:00
psz_user, psz_passwd ) )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
if( i_socks_version == 4 )
{
2006-04-11 17:26:28 +02:00
struct addrinfo hints, *p_res;
2005-12-05 10:36:39 +01:00
/* v4 only support ipv4 */
2007-09-16 11:32:30 +02:00
memset (&hints, 0, sizeof (hints));
2005-12-05 10:36:39 +01:00
hints.ai_family = AF_INET;
if( vlc_getaddrinfo( p_obj, psz_host, 0, &hints, &p_res ) )
return VLC_EGENERIC;
buffer[0] = i_socks_version;
buffer[1] = 0x01; /* CONNECT */
SetWBE( &buffer[2], i_port ); /* Port */
memcpy( &buffer[4], /* Address */
&((struct sockaddr_in *)(p_res->ai_addr))->sin_addr, 4 );
vlc_freeaddrinfo( p_res );
buffer[8] = 0; /* Empty user id */
if( net_Write( p_obj, fd, NULL, buffer, 9 ) != 9 )
return VLC_EGENERIC;
if( net_Read( p_obj, fd, NULL, buffer, 8, true ) != 8 )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
msg_Dbg( p_obj, "socks: v=%d cd=%d",
buffer[0], buffer[1] );
if( buffer[1] != 90 )
return VLC_EGENERIC;
}
else if( i_socks_version == 5 )
{
int i_hlen = __MIN(strlen( psz_host ), 255);
int i_len;
buffer[0] = i_socks_version; /* Version */
buffer[1] = 0x01; /* Cmd: connect */
buffer[2] = 0x00; /* Reserved */
buffer[3] = 3; /* ATYP: for now domainname */
buffer[4] = i_hlen;
memcpy( &buffer[5], psz_host, i_hlen );
SetWBE( &buffer[5+i_hlen], i_port );
i_len = 5 + i_hlen + 2;
if( net_Write( p_obj, fd, NULL, buffer, i_len ) != i_len )
return VLC_EGENERIC;
/* Read the header */
if( net_Read( p_obj, fd, NULL, buffer, 5, true ) != 5 )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
msg_Dbg( p_obj, "socks: v=%d rep=%d atyp=%d",
buffer[0], buffer[1], buffer[3] );
if( buffer[1] != 0x00 )
{
msg_Err( p_obj, "socks: CONNECT request failed\n" );
return VLC_EGENERIC;
}
/* Read the remaining bytes */
if( buffer[3] == 0x01 )
i_len = 4-1 + 2;
else if( buffer[3] == 0x03 )
i_len = buffer[4] + 2;
else if( buffer[3] == 0x04 )
i_len = 16-1+2;
2007-09-10 20:56:52 +02:00
else
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
if( net_Read( p_obj, fd, NULL, buffer, i_len, true ) != i_len )
2005-12-05 10:36:39 +01:00
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}
void net_ListenClose( int *pi_fd )
{
if( pi_fd != NULL )
{
int *pi;
for( pi = pi_fd; *pi != -1; pi++ )
net_Close( *pi );
free( pi_fd );
}
}