premiere-libtorrent/src/udp_socket.cpp

971 lines
23 KiB
C++
Raw Normal View History

2009-01-26 19:15:20 +01:00
/*
Copyright (c) 2007, Arvid Norberg
2009-01-26 19:15:20 +01:00
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "libtorrent/config.hpp"
#include "libtorrent/socket.hpp"
2007-12-09 05:15:24 +01:00
#include "libtorrent/udp_socket.hpp"
#include "libtorrent/connection_queue.hpp"
#include "libtorrent/escape_string.hpp"
#include "libtorrent/socket_io.hpp"
#include "libtorrent/error.hpp"
2007-12-09 05:15:24 +01:00
#include <stdlib.h>
#include <boost/bind.hpp>
#include <boost/array.hpp>
2008-05-20 08:03:46 +02:00
#if BOOST_VERSION < 103500
#include <asio/read.hpp>
#else
2008-05-03 18:05:42 +02:00
#include <boost/asio/read.hpp>
2008-05-20 08:03:46 +02:00
#endif
2007-12-09 05:15:24 +01:00
#if defined TORRENT_ASIO_DEBUGGING
#include "libtorrent/debug.hpp"
#endif
2007-12-09 05:15:24 +01:00
using namespace libtorrent;
2010-08-03 11:08:37 +02:00
udp_socket::udp_socket(asio::io_service& ios
, udp_socket::callback_t const& c
, udp_socket::callback2_t const& c2
2007-12-09 05:15:24 +01:00
, connection_queue& cc)
: m_callback(c)
2010-08-03 11:08:37 +02:00
, m_callback2(c2)
2007-12-09 05:15:24 +01:00
, m_ipv4_sock(ios)
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
, m_ipv6_sock(ios)
#endif
2007-12-09 05:15:24 +01:00
, m_bind_port(0)
, m_outstanding(0)
2007-12-09 05:15:24 +01:00
, m_socks5_sock(ios)
, m_connection_ticket(-1)
, m_cc(cc)
, m_resolver(ios)
, m_queue_packets(false)
2007-12-09 05:15:24 +01:00
, m_tunnel_packets(false)
2008-12-28 02:50:55 +01:00
, m_abort(false)
2007-12-09 05:15:24 +01:00
{
#ifdef TORRENT_DEBUG
m_magic = 0x1337;
2009-04-13 19:52:45 +02:00
m_started = false;
2010-02-21 21:15:07 +01:00
m_outstanding_when_aborted = -1;
2010-09-25 23:39:27 +02:00
#if defined BOOST_HAS_PTHREADS
m_thread = 0;
#endif
#endif
2007-12-09 05:15:24 +01:00
}
2008-12-28 02:50:55 +01:00
udp_socket::~udp_socket()
{
#ifdef TORRENT_DEBUG
TORRENT_ASSERT(m_magic == 0x1337);
2009-04-13 19:52:45 +02:00
TORRENT_ASSERT(!m_callback || !m_started);
TORRENT_ASSERT_VAL(m_outstanding == 0, m_outstanding);
2008-12-28 02:50:55 +01:00
m_magic = 0;
#endif
}
#ifdef TORRENT_DEBUG
#define CHECK_MAGIC check_magic_ cm_(m_magic)
struct check_magic_
{
check_magic_(int& m_): m(m_) { TORRENT_ASSERT(m == 0x1337); }
~check_magic_() { TORRENT_ASSERT(m == 0x1337); }
int& m;
};
#else
2008-09-24 19:25:45 +02:00
#define CHECK_MAGIC do {} while (false)
#endif
2010-08-03 11:08:37 +02:00
void udp_socket::send_hostname(char const* hostname, int port
, char const* p, int len, error_code& ec)
{
CHECK_MAGIC;
TORRENT_ASSERT(is_open());
// if the sockets are closed, the udp_socket is closing too
if (!is_open()) return;
if (m_tunnel_packets)
{
// send udp packets through SOCKS5 server
wrap(hostname, port, p, len, ec);
return;
}
// this function is only supported when we're using a proxy
2010-08-03 11:08:37 +02:00
TORRENT_ASSERT(m_queue_packets);
if (!m_queue_packets) return;
m_queue.push_back(queued_packet());
queued_packet& qp = m_queue.back();
qp.ep.port(port);
qp.hostname = strdup(hostname);
qp.buf.insert(qp.buf.begin(), p, p + len);
}
2008-05-03 18:05:42 +02:00
void udp_socket::send(udp::endpoint const& ep, char const* p, int len, error_code& ec)
2007-12-09 05:15:24 +01:00
{
CHECK_MAGIC;
2010-02-06 09:14:18 +01:00
TORRENT_ASSERT(is_open());
2008-12-19 07:20:09 +01:00
// if the sockets are closed, the udp_socket is closing too
if (!is_open()) return;
2008-12-19 07:20:09 +01:00
2007-12-09 05:15:24 +01:00
if (m_tunnel_packets)
{
// send udp packets through SOCKS5 server
wrap(ep, p, len, ec);
2007-12-09 05:15:24 +01:00
return;
}
if (m_queue_packets)
{
m_queue.push_back(queued_packet());
queued_packet& qp = m_queue.back();
qp.ep = ep;
2010-08-03 11:08:37 +02:00
qp.hostname = 0;
qp.buf.insert(qp.buf.begin(), p, p + len);
return;
}
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
if (ep.address().is_v4() && m_ipv4_sock.is_open())
#endif
2007-12-09 05:15:24 +01:00
m_ipv4_sock.send_to(asio::buffer(p, len), ep, 0, ec);
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
else
m_ipv6_sock.send_to(asio::buffer(p, len), ep, 0, ec);
#endif
2007-12-09 05:15:24 +01:00
}
2008-05-03 18:05:42 +02:00
void udp_socket::on_read(udp::socket* s, error_code const& e, std::size_t bytes_transferred)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_read");
#endif
TORRENT_ASSERT(m_magic == 0x1337);
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
TORRENT_ASSERT(m_outstanding > 0);
--m_outstanding;
2009-06-01 01:48:24 +02:00
if (e == asio::error::operation_aborted || m_abort)
{
if (m_outstanding == 0)
{
// "this" may be destructed in the callback
callback_t tmp = m_callback;
m_callback.clear();
}
return;
}
CHECK_MAGIC;
2008-03-29 05:38:00 +01:00
if (!m_callback) return;
2008-03-25 05:46:18 +01:00
if (e)
{
#ifndef BOOST_NO_EXCEPTIONS
try {
#endif
#if TORRENT_USE_IPV6
2008-03-25 05:46:18 +01:00
if (s == &m_ipv4_sock)
#endif
m_callback(e, m_v4_ep, 0, 0);
#if TORRENT_USE_IPV6
2008-03-25 05:46:18 +01:00
else
m_callback(e, m_v6_ep, 0, 0);
#endif
2008-03-25 05:46:18 +01:00
#ifndef BOOST_NO_EXCEPTIONS
} catch(std::exception&) {}
#endif
// don't stop listening on recoverable errors
if (e != asio::error::host_unreachable
&& e != asio::error::fault
&& e != asio::error::connection_reset
&& e != asio::error::connection_refused
&& e != asio::error::connection_aborted
&& e != asio::error::message_size)
2008-12-19 07:20:09 +01:00
{
if (m_outstanding == 0)
{
// "this" may be destructed in the callback
callback_t tmp = m_callback;
m_callback.clear();
}
2008-03-25 05:46:18 +01:00
return;
2008-12-19 07:20:09 +01:00
}
2008-03-25 05:46:18 +01:00
2008-12-28 02:50:55 +01:00
if (m_abort) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
#if TORRENT_USE_IPV6
2008-03-25 05:46:18 +01:00
if (s == &m_ipv4_sock)
#endif
2008-03-25 05:46:18 +01:00
s->async_receive_from(asio::buffer(m_v4_buf, sizeof(m_v4_buf))
, m_v4_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
#if TORRENT_USE_IPV6
2008-03-25 05:46:18 +01:00
else
s->async_receive_from(asio::buffer(m_v6_buf, sizeof(m_v6_buf))
, m_v6_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
#endif
2008-03-25 05:46:18 +01:00
2008-09-26 19:42:39 +02:00
++m_outstanding;
2009-04-13 19:52:45 +02:00
#ifdef TORRENT_DEBUG
2010-02-21 21:15:07 +01:00
m_started = true;
2009-04-13 19:52:45 +02:00
#endif
2008-03-25 05:46:18 +01:00
return;
}
2007-12-09 05:15:24 +01:00
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
if (s == &m_ipv4_sock)
#endif
2007-12-09 05:15:24 +01:00
{
2007-12-09 05:15:24 +01:00
#ifndef BOOST_NO_EXCEPTIONS
try {
#endif
if (m_tunnel_packets)
2008-12-12 10:20:27 +01:00
{
// if the source IP doesn't match the proxy's, ignore the packet
if (m_v4_ep == m_proxy_addr)
unwrap(e, m_v4_buf, bytes_transferred);
2008-12-12 10:20:27 +01:00
}
2007-12-09 05:15:24 +01:00
else
2008-12-12 10:20:27 +01:00
{
m_callback(e, m_v4_ep, m_v4_buf, bytes_transferred);
2008-12-12 10:20:27 +01:00
}
2007-12-09 05:15:24 +01:00
#ifndef BOOST_NO_EXCEPTIONS
} catch(std::exception&) {}
#endif
2008-12-28 02:50:55 +01:00
if (m_abort) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
2007-12-09 05:15:24 +01:00
s->async_receive_from(asio::buffer(m_v4_buf, sizeof(m_v4_buf))
, m_v4_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
}
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
else
{
#ifndef BOOST_NO_EXCEPTIONS
try {
#endif
if (m_tunnel_packets)
2008-12-12 10:20:27 +01:00
{
// if the source IP doesn't match the proxy's, ignore the packet
if (m_v6_ep == m_proxy_addr)
unwrap(e, m_v6_buf, bytes_transferred);
2008-12-12 10:20:27 +01:00
}
2007-12-09 05:15:24 +01:00
else
2008-12-12 10:20:27 +01:00
{
m_callback(e, m_v6_ep, m_v6_buf, bytes_transferred);
2008-12-12 10:20:27 +01:00
}
2007-12-09 05:15:24 +01:00
#ifndef BOOST_NO_EXCEPTIONS
} catch(std::exception&) {}
#endif
2008-12-28 02:50:55 +01:00
if (m_abort) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
2007-12-09 05:15:24 +01:00
s->async_receive_from(asio::buffer(m_v6_buf, sizeof(m_v6_buf))
, m_v6_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
}
#endif
++m_outstanding;
2009-04-13 19:52:45 +02:00
#ifdef TORRENT_DEBUG
m_started = true;
#endif
2007-12-09 05:15:24 +01:00
}
2008-05-03 18:05:42 +02:00
void udp_socket::wrap(udp::endpoint const& ep, char const* p, int len, error_code& ec)
2007-12-09 05:15:24 +01:00
{
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
using namespace libtorrent::detail;
char header[20];
char* h = header;
write_uint16(0, h); // reserved
write_uint8(0, h); // fragment
write_uint8(ep.address().is_v4()?1:4, h); // atyp
2010-08-03 11:08:37 +02:00
write_endpoint(ep, h);
boost::array<asio::const_buffer, 2> iovec;
iovec[0] = asio::const_buffer(header, h - header);
iovec[1] = asio::const_buffer(p, len);
#if TORRENT_USE_IPV6
if (m_proxy_addr.address().is_v4() && m_ipv4_sock.is_open())
#endif
m_ipv4_sock.send_to(iovec, m_proxy_addr, 0, ec);
#if TORRENT_USE_IPV6
else
m_ipv6_sock.send_to(iovec, m_proxy_addr, 0, ec);
#endif
}
void udp_socket::wrap(char const* hostname, int port, char const* p, int len, error_code& ec)
{
CHECK_MAGIC;
using namespace libtorrent::detail;
char header[270];
char* h = header;
write_uint16(0, h); // reserved
write_uint8(0, h); // fragment
write_uint8(3, h); // atyp
int hostlen = (std::min)(strlen(hostname), size_t(255));
write_uint8(hostlen, h); // hostname len
memcpy(h, hostname, hostlen);
h += hostlen;
write_uint16(port, h);
2007-12-09 05:15:24 +01:00
boost::array<asio::const_buffer, 2> iovec;
iovec[0] = asio::const_buffer(header, h - header);
iovec[1] = asio::const_buffer(p, len);
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
if (m_proxy_addr.address().is_v4() && m_ipv4_sock.is_open())
#endif
2007-12-09 05:15:24 +01:00
m_ipv4_sock.send_to(iovec, m_proxy_addr, 0, ec);
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
else
m_ipv6_sock.send_to(iovec, m_proxy_addr, 0, ec);
#endif
2007-12-09 05:15:24 +01:00
}
// unwrap the UDP packet from the SOCKS5 header
2008-05-03 18:05:42 +02:00
void udp_socket::unwrap(error_code const& e, char const* buf, int size)
2007-12-09 05:15:24 +01:00
{
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
using namespace libtorrent::detail;
// the minimum socks5 header size
if (size <= 10) return;
char const* p = buf;
p += 2; // reserved
int frag = read_uint8(p);
// fragmentation is not supported
if (frag != 0) return;
udp::endpoint sender;
int atyp = read_uint8(p);
if (atyp == 1)
{
// IPv4
2008-03-28 23:50:41 +01:00
sender = read_v4_endpoint<udp::endpoint>(p);
2007-12-09 05:15:24 +01:00
}
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
else if (atyp == 4)
{
// IPv6
2008-03-28 23:50:41 +01:00
sender = read_v6_endpoint<udp::endpoint>(p);
2007-12-09 05:15:24 +01:00
}
#endif
2007-12-09 05:15:24 +01:00
else
{
2010-08-03 11:08:37 +02:00
int len = read_uint8(p);
if (len > (buf + size) - p) return;
std::string hostname(p, p + len);
p += len;
m_callback2(e, hostname.c_str(), p, size - (p - buf));
2007-12-09 05:15:24 +01:00
return;
}
m_callback(e, sender, p, size - (p - buf));
2007-12-09 05:15:24 +01:00
}
void udp_socket::close()
{
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
TORRENT_ASSERT(m_magic == 0x1337);
2008-05-03 18:05:42 +02:00
error_code ec;
// if we close the socket here, we can't shut down
// utp connections or NAT-PMP. We need to cancel the
// outstanding operations
m_ipv4_sock.cancel(ec);
if (ec == error::operation_not_supported)
m_ipv4_sock.close(ec);
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
#if TORRENT_USE_IPV6
m_ipv6_sock.cancel(ec);
if (ec == error::operation_not_supported)
m_ipv6_sock.close(ec);
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
#endif
m_socks5_sock.cancel(ec);
if (ec == error::operation_not_supported)
m_socks5_sock.close(ec);
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
m_resolver.cancel();
2008-12-28 02:50:55 +01:00
m_abort = true;
2007-12-09 05:15:24 +01:00
if (m_connection_ticket >= 0)
{
m_cc.done(m_connection_ticket);
m_connection_ticket = -1;
}
if (m_outstanding == 0)
{
// "this" may be destructed in the callback
callback_t tmp = m_callback;
m_callback.clear();
}
2007-12-09 05:15:24 +01:00
}
2008-05-03 18:05:42 +02:00
void udp_socket::bind(udp::endpoint const& ep, error_code& ec)
{
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2010-02-21 21:15:07 +01:00
TORRENT_ASSERT(m_abort == false);
if (m_abort) return;
if (m_ipv4_sock.is_open()) m_ipv4_sock.close(ec);
#if TORRENT_USE_IPV6
if (m_ipv6_sock.is_open()) m_ipv6_sock.close(ec);
#endif
if (ep.address().is_v4())
{
m_ipv4_sock.open(udp::v4(), ec);
if (ec) return;
m_ipv4_sock.bind(ep, ec);
if (ec) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
m_ipv4_sock.async_receive_from(asio::buffer(m_v4_buf, sizeof(m_v4_buf))
, m_v4_ep, boost::bind(&udp_socket::on_read, this, &m_ipv4_sock, _1, _2));
2010-02-21 21:15:07 +01:00
++m_outstanding;
}
#if TORRENT_USE_IPV6
else
{
m_ipv6_sock.set_option(v6only(true), ec);
if (ec) return;
m_ipv6_sock.bind(ep, ec);
if (ec) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
m_ipv6_sock.async_receive_from(asio::buffer(m_v6_buf, sizeof(m_v6_buf))
, m_v6_ep, boost::bind(&udp_socket::on_read, this, &m_ipv6_sock, _1, _2));
2010-02-21 21:15:07 +01:00
++m_outstanding;
}
#endif
2009-04-13 19:52:45 +02:00
#ifdef TORRENT_DEBUG
m_started = true;
#endif
m_bind_port = ep.port();
}
2007-12-09 05:15:24 +01:00
void udp_socket::bind(int port)
{
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2010-02-21 21:15:07 +01:00
TORRENT_ASSERT(m_abort == false);
if (m_abort) return;
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-09 05:15:24 +01:00
2007-12-30 00:47:51 +01:00
if (m_ipv4_sock.is_open()) m_ipv4_sock.close(ec);
#if TORRENT_USE_IPV6
2007-12-30 00:47:51 +01:00
if (m_ipv6_sock.is_open()) m_ipv6_sock.close(ec);
#endif
2007-12-09 05:15:24 +01:00
m_ipv4_sock.open(udp::v4(), ec);
if (!ec)
{
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
2007-12-09 05:15:24 +01:00
m_ipv4_sock.bind(udp::endpoint(address_v4::any(), port), ec);
m_ipv4_sock.async_receive_from(asio::buffer(m_v4_buf, sizeof(m_v4_buf))
, m_v4_ep, boost::bind(&udp_socket::on_read, this, &m_ipv4_sock, _1, _2));
++m_outstanding;
2009-04-13 19:52:45 +02:00
#ifdef TORRENT_DEBUG
m_started = true;
#endif
2007-12-09 05:15:24 +01:00
}
#if TORRENT_USE_IPV6
2007-12-09 05:15:24 +01:00
m_ipv6_sock.open(udp::v6(), ec);
if (!ec)
{
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_read");
#endif
2007-12-09 05:15:24 +01:00
m_ipv6_sock.set_option(v6only(true), ec);
m_ipv6_sock.bind(udp::endpoint(address_v6::any(), port), ec);
m_ipv6_sock.async_receive_from(asio::buffer(m_v6_buf, sizeof(m_v6_buf))
, m_v6_ep, boost::bind(&udp_socket::on_read, this, &m_ipv6_sock, _1, _2));
++m_outstanding;
2009-04-13 19:52:45 +02:00
#ifdef TORRENT_DEBUG
m_started = true;
#endif
2007-12-09 05:15:24 +01:00
}
#endif
2007-12-09 05:15:24 +01:00
m_bind_port = port;
}
void udp_socket::set_proxy_settings(proxy_settings const& ps)
{
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-30 00:47:51 +01:00
m_socks5_sock.close(ec);
2007-12-09 05:15:24 +01:00
m_tunnel_packets = false;
m_proxy_settings = ps;
if (m_abort) return;
2007-12-09 05:15:24 +01:00
if (ps.type == proxy_settings::socks5
|| ps.type == proxy_settings::socks5_pw)
{
m_queue_packets = true;
2007-12-09 05:15:24 +01:00
// connect to socks5 server and open up the UDP tunnel
tcp::resolver::query q(ps.hostname, to_string(ps.port).elems);
2007-12-09 05:15:24 +01:00
m_resolver.async_resolve(q, boost::bind(
&udp_socket::on_name_lookup, this, _1, _2));
}
}
2008-05-03 18:05:42 +02:00
void udp_socket::on_name_lookup(error_code const& e, tcp::resolver::iterator i)
2007-12-09 05:15:24 +01:00
{
if (e) return;
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2007-12-09 05:15:24 +01:00
m_proxy_addr.address(i->endpoint().address());
m_proxy_addr.port(i->endpoint().port());
2010-09-25 23:39:27 +02:00
// on_connect may be called from within this thread
2007-12-09 05:15:24 +01:00
m_cc.enqueue(boost::bind(&udp_socket::on_connect, this, _1)
, boost::bind(&udp_socket::on_timeout, this), seconds(10));
}
void udp_socket::on_timeout()
{
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-30 00:47:51 +01:00
m_socks5_sock.close(ec);
2007-12-09 05:15:24 +01:00
m_connection_ticket = -1;
}
void udp_socket::on_connect(int ticket)
{
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
if (m_abort) return;
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_connected");
#endif
2007-12-09 05:15:24 +01:00
m_connection_ticket = ticket;
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-09 05:15:24 +01:00
m_socks5_sock.open(m_proxy_addr.address().is_v4()?tcp::v4():tcp::v6(), ec);
m_socks5_sock.async_connect(tcp::endpoint(m_proxy_addr.address(), m_proxy_addr.port())
, boost::bind(&udp_socket::on_connected, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::on_connected(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_connected");
#endif
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2007-12-09 05:15:24 +01:00
m_cc.done(m_connection_ticket);
m_connection_ticket = -1;
if (e) return;
using namespace libtorrent::detail;
// send SOCKS5 authentication methods
char* p = &m_tmp_buf[0];
write_uint8(5, p); // SOCKS VERSION 5
if (m_proxy_settings.username.empty()
|| m_proxy_settings.type == proxy_settings::socks5)
{
write_uint8(1, p); // 1 authentication method (no auth)
write_uint8(0, p); // no authentication
}
else
{
write_uint8(2, p); // 2 authentication methods
write_uint8(0, p); // no authentication
write_uint8(2, p); // username/password
}
TORRENT_ASSERT_VAL(p - m_tmp_buf < sizeof(m_tmp_buf), (p - m_tmp_buf));
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_handshake1");
#endif
2007-12-09 05:15:24 +01:00
asio::async_write(m_socks5_sock, asio::buffer(m_tmp_buf, p - m_tmp_buf)
, boost::bind(&udp_socket::handshake1, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::handshake1(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_handshake1");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_handshake2");
#endif
2007-12-09 05:15:24 +01:00
asio::async_read(m_socks5_sock, asio::buffer(m_tmp_buf, 2)
, boost::bind(&udp_socket::handshake2, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::handshake2(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_handshake2");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
using namespace libtorrent::detail;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2007-12-09 05:15:24 +01:00
char* p = &m_tmp_buf[0];
int version = read_uint8(p);
int method = read_uint8(p);
if (version < 5) return;
if (method == 0)
{
2010-09-25 23:39:27 +02:00
socks_forward_udp(/*l*/);
2007-12-09 05:15:24 +01:00
}
else if (method == 2)
{
if (m_proxy_settings.username.empty())
{
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-30 00:47:51 +01:00
m_socks5_sock.close(ec);
2007-12-09 05:15:24 +01:00
return;
}
// start sub-negotiation
char* p = &m_tmp_buf[0];
write_uint8(1, p);
write_uint8(m_proxy_settings.username.size(), p);
write_string(m_proxy_settings.username, p);
write_uint8(m_proxy_settings.password.size(), p);
write_string(m_proxy_settings.password, p);
TORRENT_ASSERT_VAL(p - m_tmp_buf < sizeof(m_tmp_buf), (p - m_tmp_buf));
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_handshake3");
#endif
2007-12-09 05:15:24 +01:00
asio::async_write(m_socks5_sock, asio::buffer(m_tmp_buf, p - m_tmp_buf)
, boost::bind(&udp_socket::handshake3, this, _1));
}
else
{
2008-05-03 18:05:42 +02:00
error_code ec;
2007-12-30 00:47:51 +01:00
m_socks5_sock.close(ec);
2007-12-09 05:15:24 +01:00
return;
}
}
2008-05-03 18:05:42 +02:00
void udp_socket::handshake3(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_handshake3");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::on_handshake4");
#endif
2007-12-09 05:15:24 +01:00
asio::async_read(m_socks5_sock, asio::buffer(m_tmp_buf, 2)
, boost::bind(&udp_socket::handshake4, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::handshake4(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::on_handshake4");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2007-12-09 05:15:24 +01:00
using namespace libtorrent::detail;
char* p = &m_tmp_buf[0];
int version = read_uint8(p);
int status = read_uint8(p);
if (version != 1) return;
if (status != 0) return;
2010-09-25 23:39:27 +02:00
socks_forward_udp(/*l*/);
2007-12-09 05:15:24 +01:00
}
2010-09-25 23:39:27 +02:00
void udp_socket::socks_forward_udp()
2007-12-09 05:15:24 +01:00
{
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
using namespace libtorrent::detail;
// send SOCKS5 UDP command
char* p = &m_tmp_buf[0];
write_uint8(5, p); // SOCKS VERSION 5
write_uint8(3, p); // UDP ASSOCIATE command
write_uint8(0, p); // reserved
2010-08-03 11:08:37 +02:00
error_code ec;
tcp::endpoint local = m_socks5_sock.local_endpoint(ec);
write_uint8(local.address().is_v4() ? 1 : 4, p); // ATYP IPv4
detail::write_address(local.address(), p);
int port = 0;
#if TORRENT_USE_IPV6
if (local.address().is_v4())
#endif
port = m_ipv4_sock.local_endpoint(ec).port();
#if TORRENT_USE_IPV6
else
port = m_ipv6_sock.local_endpoint(ec).port();
#endif
detail::write_uint16(port , p);
TORRENT_ASSERT_VAL(p - m_tmp_buf < sizeof(m_tmp_buf), (p - m_tmp_buf));
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::connect1");
#endif
2007-12-09 05:15:24 +01:00
asio::async_write(m_socks5_sock, asio::buffer(m_tmp_buf, p - m_tmp_buf)
, boost::bind(&udp_socket::connect1, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::connect1(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::connect1");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::connect2");
#endif
2007-12-09 05:15:24 +01:00
asio::async_read(m_socks5_sock, asio::buffer(m_tmp_buf, 10)
, boost::bind(&udp_socket::connect2, this, _1));
}
2008-05-03 18:05:42 +02:00
void udp_socket::connect2(error_code const& e)
2007-12-09 05:15:24 +01:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::connect2");
#endif
CHECK_MAGIC;
2007-12-09 05:15:24 +01:00
if (e) return;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
2007-12-09 05:15:24 +01:00
using namespace libtorrent::detail;
char* p = &m_tmp_buf[0];
int version = read_uint8(p); // VERSION
int status = read_uint8(p); // STATUS
read_uint8(p); // RESERVED
int atyp = read_uint8(p); // address type
if (version != 5) return;
if (status != 0) return;
if (atyp == 1)
{
m_proxy_addr.address(address_v4(read_uint32(p)));
m_proxy_addr.port(read_uint16(p));
}
else
{
// in this case we need to read more data from the socket
TORRENT_ASSERT(false && "not implemented yet!");
}
m_tunnel_packets = true;
m_queue_packets = false;
// forward all packets that were put in the queue
while (!m_queue.empty())
{
queued_packet const& p = m_queue.front();
error_code ec;
2010-08-03 11:08:37 +02:00
if (p.hostname)
{
udp_socket::send_hostname(p.hostname, p.ep.port(), &p.buf[0], p.buf.size(), ec);
free(p.hostname);
}
else
{
udp_socket::send(p.ep, &p.buf[0], p.buf.size(), ec);
}
m_queue.pop_front();
}
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("udp_socket::hung_up");
#endif
asio::async_read(m_socks5_sock, asio::buffer(m_tmp_buf, 10)
, boost::bind(&udp_socket::hung_up, this, _1));
}
void udp_socket::hung_up(error_code const& e)
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("udp_socket::hung_up");
#endif
CHECK_MAGIC;
2010-09-25 23:39:27 +02:00
TORRENT_ASSERT(is_single_thread());
if (e == asio::error::operation_aborted || m_abort) return;
// the socks connection was closed, re-open it
set_proxy_settings(m_proxy_settings);
2007-12-09 05:15:24 +01:00
}
rate_limited_udp_socket::rate_limited_udp_socket(io_service& ios
2010-08-03 11:08:37 +02:00
, callback_t const& c
, callback2_t const& c2
, connection_queue& cc)
: udp_socket(ios, c, c2, cc)
, m_timer(ios)
2008-11-09 01:37:03 +01:00
, m_queue_size_limit(200)
, m_rate_limit(4000)
, m_quota(4000)
, m_last_tick(time_now())
{
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("rate_limited_udp_socket::on_tick");
#endif
error_code ec;
m_timer.expires_from_now(seconds(1), ec);
m_timer.async_wait(boost::bind(&rate_limited_udp_socket::on_tick, this, _1));
TORRENT_ASSERT_VAL(!ec, ec);
}
2008-11-09 01:37:03 +01:00
bool rate_limited_udp_socket::send(udp::endpoint const& ep, char const* p, int len, error_code& ec, int flags)
{
if (m_quota < len)
{
2008-11-09 01:37:03 +01:00
// bit 1 of flags means "don't drop"
if (int(m_queue.size()) >= m_queue_size_limit && (flags & 1) == 0)
return false;
m_queue.push_back(queued_packet());
queued_packet& qp = m_queue.back();
qp.ep = ep;
qp.buf.insert(qp.buf.begin(), p, p + len);
return true;
}
m_quota -= len;
2008-11-09 01:37:03 +01:00
udp_socket::send(ep, p, len, ec);
return true;
}
void rate_limited_udp_socket::on_tick(error_code const& e)
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("rate_limited_udp_socket::on_tick");
#endif
if (e) return;
2008-12-28 02:50:55 +01:00
if (is_closed()) return;
error_code ec;
ptime now = time_now_hires();
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("rate_limited_udp_socket::on_tick");
#endif
m_timer.expires_at(now + seconds(1), ec);
m_timer.async_wait(boost::bind(&rate_limited_udp_socket::on_tick, this, _1));
time_duration delta = now - m_last_tick;
m_last_tick = now;
if (m_quota < m_rate_limit) m_quota += m_rate_limit * total_milliseconds(delta) / 1000;
if (m_queue.empty()) return;
2010-07-28 20:43:56 +02:00
while (!m_queue.empty() && int(m_queue.front().buf.size()) <= m_quota)
{
queued_packet const& p = m_queue.front();
2010-07-28 20:43:56 +02:00
TORRENT_ASSERT(m_quota >= p.buf.size());
m_quota -= p.buf.size();
error_code ec;
2008-11-09 01:37:03 +01:00
udp_socket::send(p.ep, &p.buf[0], p.buf.size(), ec);
m_queue.pop_front();
}
}
2008-11-08 22:44:24 +01:00
void rate_limited_udp_socket::close()
{
2008-11-24 20:19:27 +01:00
error_code ec;
m_timer.cancel(ec);
2008-11-08 22:44:24 +01:00
udp_socket::close();
}