2009-01-26 19:15:20 +01:00
|
|
|
/*
|
|
|
|
|
2014-02-23 20:12:25 +01:00
|
|
|
Copyright (c) 2007-2014, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2014-01-08 06:45:13 +01:00
|
|
|
#include "libtorrent/assert.hpp" // for print_backtrace
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2007-12-09 05:15:24 +01:00
|
|
|
#include "libtorrent/udp_socket.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/socket_io.hpp"
|
2010-09-25 22:07:27 +02:00
|
|
|
#include "libtorrent/error.hpp"
|
2012-08-26 17:26:17 +02:00
|
|
|
#include "libtorrent/string_util.hpp" // for allocate_string_copy
|
2013-09-25 08:50:08 +02:00
|
|
|
#include "libtorrent/broadcast_socket.hpp" // for is_any
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/settings_pack.hpp"
|
2015-03-12 05:34:54 +01:00
|
|
|
#include "libtorrent/aux_/time.hpp" // for aux::time_now()
|
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <boost/array.hpp>
|
2013-11-18 00:06:51 +01:00
|
|
|
#include <boost/system/system_error.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
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
#include "libtorrent/debug.hpp"
|
|
|
|
#endif
|
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
using namespace libtorrent;
|
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
udp_socket::udp_socket(asio::io_service& ios)
|
2012-06-30 17:30:38 +02:00
|
|
|
: m_observers_locked(false)
|
|
|
|
, m_ipv4_sock(ios)
|
2014-10-03 22:56:57 +02:00
|
|
|
, m_timer(ios)
|
2012-06-21 17:05:57 +02:00
|
|
|
, m_buf_size(0)
|
2012-10-18 09:34:39 +02:00
|
|
|
, m_new_buf_size(0)
|
2012-06-21 17:05:57 +02:00
|
|
|
, m_buf(0)
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
, m_ipv6_sock(ios)
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
, m_bind_port(0)
|
2011-02-05 22:19:33 +01:00
|
|
|
, m_v4_outstanding(0)
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
, m_v6_outstanding(0)
|
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
, m_socks5_sock(ios)
|
|
|
|
, m_resolver(ios)
|
2010-02-18 05:37:02 +01:00
|
|
|
, m_queue_packets(false)
|
2007-12-09 05:15:24 +01:00
|
|
|
, m_tunnel_packets(false)
|
2013-02-19 07:48:53 +01:00
|
|
|
, m_force_proxy(false)
|
2008-12-28 02:50:55 +01:00
|
|
|
, m_abort(false)
|
2011-04-09 19:59:00 +02:00
|
|
|
, m_outstanding_ops(0)
|
2012-07-01 20:44:46 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
, m_v6_write_subscribed(false)
|
|
|
|
#endif
|
|
|
|
, m_v4_write_subscribed(false)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2008-09-23 01:43:21 +02:00
|
|
|
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;
|
2012-10-21 05:56:22 +02:00
|
|
|
m_outstanding_connect = 0;
|
|
|
|
m_outstanding_timeout = 0;
|
|
|
|
m_outstanding_resolve = 0;
|
|
|
|
m_outstanding_socks = 0;
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
|
|
|
|
2014-05-10 08:37:31 +02:00
|
|
|
m_buf_size = 2048;
|
2012-10-18 09:34:39 +02:00
|
|
|
m_new_buf_size = m_buf_size;
|
2012-06-21 17:05:57 +02:00
|
|
|
m_buf = (char*)malloc(m_buf_size);
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2008-12-28 02:50:55 +01:00
|
|
|
udp_socket::~udp_socket()
|
|
|
|
{
|
2012-06-21 17:05:57 +02:00
|
|
|
free(m_buf);
|
2010-11-29 02:33:05 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
2011-02-05 22:19:33 +01:00
|
|
|
TORRENT_ASSERT_VAL(m_v6_outstanding == 0, m_v6_outstanding);
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
2011-02-05 22:19:33 +01:00
|
|
|
TORRENT_ASSERT_VAL(m_v4_outstanding == 0, m_v4_outstanding);
|
2008-12-28 02:50:55 +01:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2012-06-25 05:31:11 +02:00
|
|
|
TORRENT_ASSERT(m_observers_locked == false);
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2008-12-28 02:50:55 +01:00
|
|
|
m_magic = 0;
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == 0);
|
2008-12-28 02:50:55 +01:00
|
|
|
}
|
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2008-09-23 01:43:21 +02:00
|
|
|
#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
|
2015-04-27 04:21:12 +02:00
|
|
|
#define CHECK_MAGIC do {} TORRENT_WHILE_0
|
2008-09-23 01:43:21 +02:00
|
|
|
#endif
|
|
|
|
|
2010-08-03 11:08:37 +02:00
|
|
|
void udp_socket::send_hostname(char const* hostname, int port
|
2013-11-20 02:19:42 +01:00
|
|
|
, char const* p, int len, error_code& ec, int flags)
|
2010-08-03 11:08:37 +02:00
|
|
|
{
|
|
|
|
CHECK_MAGIC;
|
|
|
|
|
2011-01-31 07:31:22 +01:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2010-08-03 11:08:37 +02:00
|
|
|
|
|
|
|
// if the sockets are closed, the udp_socket is closing too
|
2013-06-04 02:35:42 +02:00
|
|
|
if (!is_open())
|
|
|
|
{
|
2013-09-09 09:06:12 +02:00
|
|
|
ec = error_code(boost::system::errc::bad_file_descriptor, generic_category());
|
2013-06-04 02:35:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2010-08-03 11:08:37 +02:00
|
|
|
|
|
|
|
if (m_tunnel_packets)
|
|
|
|
{
|
|
|
|
// send udp packets through SOCKS5 server
|
|
|
|
wrap(hostname, port, p, len, ec);
|
2015-01-14 02:59:23 +01:00
|
|
|
return;
|
2010-08-03 11:08:37 +02:00
|
|
|
}
|
|
|
|
|
2010-08-22 00:07:29 +02:00
|
|
|
// this function is only supported when we're using a proxy
|
2013-10-20 23:08:59 +02:00
|
|
|
if (!m_queue_packets && !m_force_proxy)
|
2013-06-12 09:57:13 +02:00
|
|
|
{
|
|
|
|
address target = address::from_string(hostname, ec);
|
|
|
|
if (!ec) send(udp::endpoint(target, port), p, len, ec, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-20 02:19:42 +01:00
|
|
|
if (m_queue.size() > 1000 || (flags & dont_queue)) return;
|
2010-08-03 11:08:37 +02:00
|
|
|
|
|
|
|
m_queue.push_back(queued_packet());
|
|
|
|
queued_packet& qp = m_queue.back();
|
|
|
|
qp.ep.port(port);
|
2013-11-20 02:19:42 +01:00
|
|
|
|
|
|
|
address target = address::from_string(hostname, ec);
|
|
|
|
if (ec) qp.ep.address(target);
|
|
|
|
else qp.hostname = allocate_string_copy(hostname);
|
2010-08-03 11:08:37 +02:00
|
|
|
qp.buf.insert(qp.buf.begin(), p, p + len);
|
2011-01-24 04:24:28 +01:00
|
|
|
qp.flags = 0;
|
2010-08-03 11:08:37 +02:00
|
|
|
}
|
|
|
|
|
2011-01-24 04:24:28 +01:00
|
|
|
void udp_socket::send(udp::endpoint const& ep, char const* p, int len
|
|
|
|
, error_code& ec, int flags)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2010-02-06 09:14:18 +01:00
|
|
|
|
2011-01-31 07:31:22 +01:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2010-02-06 09:14:18 +01:00
|
|
|
|
2008-12-19 07:20:09 +01:00
|
|
|
// if the sockets are closed, the udp_socket is closing too
|
2013-06-04 02:35:42 +02:00
|
|
|
if (!is_open())
|
|
|
|
{
|
2013-09-09 09:06:12 +02:00
|
|
|
ec = error_code(boost::system::errc::bad_file_descriptor, generic_category());
|
2013-06-04 02:35:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-12-19 07:20:09 +01:00
|
|
|
|
2011-01-24 04:24:28 +01:00
|
|
|
if (!(flags & peer_connection) || m_proxy_settings.proxy_peer_connections)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2011-01-24 04:24:28 +01:00
|
|
|
if (m_tunnel_packets)
|
|
|
|
{
|
|
|
|
// send udp packets through SOCKS5 server
|
|
|
|
wrap(ep, p, len, ec);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2011-01-24 04:24:28 +01:00
|
|
|
if (m_queue_packets)
|
|
|
|
{
|
2013-11-20 02:19:42 +01:00
|
|
|
if (m_queue.size() > 1000 || (flags & dont_queue)) return;
|
2013-06-12 09:57:13 +02:00
|
|
|
|
2011-01-24 04:24:28 +01:00
|
|
|
m_queue.push_back(queued_packet());
|
|
|
|
queued_packet& qp = m_queue.back();
|
|
|
|
qp.ep = ep;
|
|
|
|
qp.hostname = 0;
|
|
|
|
qp.flags = flags;
|
|
|
|
qp.buf.insert(qp.buf.begin(), p, p + len);
|
|
|
|
return;
|
|
|
|
}
|
2010-02-18 05:37:02 +01:00
|
|
|
}
|
2013-06-12 09:57:13 +02:00
|
|
|
|
|
|
|
if (m_force_proxy) return;
|
2010-02-18 05:37:02 +01:00
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2012-07-01 20:44:46 +02:00
|
|
|
if (ep.address().is_v6() && m_ipv6_sock.is_open())
|
|
|
|
m_ipv6_sock.send_to(asio::buffer(p, len), ep, 0, ec);
|
|
|
|
else
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
m_ipv4_sock.send_to(asio::buffer(p, len), ep, 0, ec);
|
2012-07-01 20:44:46 +02:00
|
|
|
|
2012-11-20 03:08:12 +01:00
|
|
|
if (ec == error::would_block || ec == error::try_again)
|
2012-07-01 20:44:46 +02:00
|
|
|
{
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2012-07-01 20:44:46 +02:00
|
|
|
if (ep.address().is_v6() && m_ipv6_sock.is_open())
|
|
|
|
{
|
|
|
|
if (!m_v6_write_subscribed)
|
|
|
|
{
|
|
|
|
m_ipv6_sock.async_send(asio::null_buffers()
|
|
|
|
, boost::bind(&udp_socket::on_writable, this, _1, &m_ipv6_sock));
|
|
|
|
m_v6_write_subscribed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (!m_v4_write_subscribed)
|
|
|
|
{
|
|
|
|
m_ipv4_sock.async_send(asio::null_buffers()
|
|
|
|
, boost::bind(&udp_socket::on_writable, this, _1, &m_ipv4_sock));
|
|
|
|
m_v4_write_subscribed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::on_writable(error_code const& ec, udp::socket* s)
|
|
|
|
{
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
if (s == &m_ipv6_sock)
|
|
|
|
m_v6_write_subscribed = false;
|
2007-12-09 05:15:24 +01:00
|
|
|
else
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2012-07-01 20:44:46 +02:00
|
|
|
m_v4_write_subscribed = false;
|
|
|
|
|
2015-05-18 03:30:32 +02:00
|
|
|
if (ec == asio::error::operation_aborted) return;
|
|
|
|
|
2012-07-01 20:44:46 +02:00
|
|
|
call_writable_handler();
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
// called whenever the socket is readable
|
2012-07-15 04:16:02 +02:00
|
|
|
void udp_socket::on_read(error_code const& ec, udp::socket* s)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_read");
|
|
|
|
#endif
|
2011-02-09 09:01:53 +01:00
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2011-02-05 22:19:33 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
if (s == &m_ipv6_sock)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_v6_outstanding > 0);
|
|
|
|
--m_v6_outstanding;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_v4_outstanding > 0);
|
|
|
|
--m_v4_outstanding;
|
|
|
|
}
|
2008-09-23 01:43:21 +02:00
|
|
|
|
2012-07-15 04:16:02 +02:00
|
|
|
if (ec == asio::error::operation_aborted) return;
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
|
|
|
|
CHECK_MAGIC;
|
2008-03-29 05:38:00 +01:00
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
udp::endpoint ep;
|
|
|
|
size_t bytes_transferred = s->receive_from(asio::buffer(m_buf, m_buf_size), ep, 0, ec);
|
2014-05-11 01:44:57 +02:00
|
|
|
|
|
|
|
// TODO: it would be nice to detect this on posix systems also
|
|
|
|
#ifdef TORRENT_WINDOWS
|
2014-07-06 21:18:00 +02:00
|
|
|
if ((ec == error_code(ERROR_MORE_DATA, system_category())
|
|
|
|
|| ec == error_code(WSAEMSGSIZE, system_category()))
|
2014-05-11 01:44:57 +02:00
|
|
|
&& m_buf_size < 65536)
|
|
|
|
{
|
|
|
|
// if this function fails to allocate memory, m_buf_size
|
|
|
|
// is set to 0. In that case, don't issue the async_read().
|
|
|
|
set_buf_size(m_buf_size * 2);
|
|
|
|
if (m_buf_size == 0) return;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-20 03:08:12 +01:00
|
|
|
if (ec == asio::error::would_block || ec == asio::error::try_again) break;
|
2015-05-18 07:04:55 +02:00
|
|
|
on_read_impl(ep, ec, bytes_transferred);
|
2012-06-21 17:05:57 +02:00
|
|
|
}
|
2012-06-22 06:21:20 +02:00
|
|
|
call_drained_handler();
|
2012-06-21 17:05:57 +02:00
|
|
|
setup_read(s);
|
|
|
|
}
|
|
|
|
|
2012-06-22 06:21:20 +02:00
|
|
|
void udp_socket::call_handler(error_code const& ec, udp::endpoint const& ep, char const* buf, int size)
|
|
|
|
{
|
2012-06-25 05:31:11 +02:00
|
|
|
m_observers_locked = true;
|
2012-06-30 17:30:38 +02:00
|
|
|
for (std::vector<udp_socket_observer*>::iterator i = m_observers.begin();
|
|
|
|
i != m_observers.end();)
|
2012-06-22 06:21:20 +02:00
|
|
|
{
|
2012-06-30 17:30:38 +02:00
|
|
|
bool ret = false;
|
2012-06-22 06:21:20 +02:00
|
|
|
TORRENT_TRY {
|
2012-06-30 17:30:38 +02:00
|
|
|
ret = (*i)->incoming_packet(ec, ep, buf, size);
|
2012-06-22 06:21:20 +02:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
2012-06-30 17:30:38 +02:00
|
|
|
if (*i == NULL) i = m_observers.erase(i);
|
|
|
|
else ++i;
|
|
|
|
if (ret) break;
|
|
|
|
}
|
|
|
|
if (!m_added_observers.empty())
|
|
|
|
{
|
|
|
|
m_observers.insert(m_observers.end(), m_added_observers.begin(), m_added_observers.end());
|
|
|
|
m_added_observers.clear();
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
2012-06-25 05:31:11 +02:00
|
|
|
m_observers_locked = false;
|
2012-10-18 09:34:39 +02:00
|
|
|
if (m_new_buf_size != m_buf_size)
|
|
|
|
set_buf_size(m_new_buf_size);
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::call_handler(error_code const& ec, const char* host, char const* buf, int size)
|
|
|
|
{
|
2012-06-25 05:31:11 +02:00
|
|
|
m_observers_locked = true;
|
2012-06-30 17:30:38 +02:00
|
|
|
for (std::vector<udp_socket_observer*>::iterator i = m_observers.begin();
|
|
|
|
i != m_observers.end();)
|
2012-06-22 06:21:20 +02:00
|
|
|
{
|
2012-06-30 17:30:38 +02:00
|
|
|
bool ret = false;
|
2012-06-22 06:21:20 +02:00
|
|
|
TORRENT_TRY {
|
2012-06-30 17:30:38 +02:00
|
|
|
ret = (*i)->incoming_packet(ec, host, buf, size);
|
2012-06-22 06:21:20 +02:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
2012-06-30 17:30:38 +02:00
|
|
|
if (*i == NULL) i = m_observers.erase(i);
|
|
|
|
else ++i;
|
|
|
|
if (ret) break;
|
|
|
|
}
|
|
|
|
if (!m_added_observers.empty())
|
|
|
|
{
|
|
|
|
m_observers.insert(m_observers.end(), m_added_observers.begin(), m_added_observers.end());
|
|
|
|
m_added_observers.clear();
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
2012-06-25 05:31:11 +02:00
|
|
|
m_observers_locked = false;
|
2012-10-18 09:34:39 +02:00
|
|
|
if (m_new_buf_size != m_buf_size)
|
|
|
|
set_buf_size(m_new_buf_size);
|
2012-06-25 05:31:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::call_drained_handler()
|
|
|
|
{
|
|
|
|
m_observers_locked = true;
|
2012-06-30 17:30:38 +02:00
|
|
|
for (std::vector<udp_socket_observer*>::iterator i = m_observers.begin();
|
|
|
|
i != m_observers.end();)
|
2012-06-25 05:31:11 +02:00
|
|
|
{
|
|
|
|
TORRENT_TRY {
|
2012-06-30 17:30:38 +02:00
|
|
|
(*i)->socket_drained();
|
2012-06-25 05:31:11 +02:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
2012-06-30 17:30:38 +02:00
|
|
|
if (*i == NULL) i = m_observers.erase(i);
|
|
|
|
else ++i;
|
2012-07-01 20:44:46 +02:00
|
|
|
}
|
|
|
|
if (!m_added_observers.empty())
|
|
|
|
{
|
|
|
|
m_observers.insert(m_observers.end(), m_added_observers.begin(), m_added_observers.end());
|
|
|
|
m_added_observers.clear();
|
|
|
|
}
|
|
|
|
m_observers_locked = false;
|
2012-10-18 09:34:39 +02:00
|
|
|
if (m_new_buf_size != m_buf_size)
|
|
|
|
set_buf_size(m_new_buf_size);
|
2012-07-01 20:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::call_writable_handler()
|
|
|
|
{
|
|
|
|
m_observers_locked = true;
|
|
|
|
for (std::vector<udp_socket_observer*>::iterator i = m_observers.begin();
|
|
|
|
i != m_observers.end();)
|
|
|
|
{
|
|
|
|
TORRENT_TRY {
|
|
|
|
(*i)->writable();
|
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
|
|
|
if (*i == NULL) i = m_observers.erase(i);
|
|
|
|
else ++i;
|
2012-06-30 17:30:38 +02:00
|
|
|
}
|
|
|
|
if (!m_added_observers.empty())
|
|
|
|
{
|
|
|
|
m_observers.insert(m_observers.end(), m_added_observers.begin(), m_added_observers.end());
|
|
|
|
m_added_observers.clear();
|
2012-06-25 05:31:11 +02:00
|
|
|
}
|
|
|
|
m_observers_locked = false;
|
2012-10-18 09:34:39 +02:00
|
|
|
if (m_new_buf_size != m_buf_size)
|
|
|
|
set_buf_size(m_new_buf_size);
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::subscribe(udp_socket_observer* o)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(std::find(m_observers.begin(), m_observers.end(), o) == m_observers.end());
|
2012-06-30 17:30:38 +02:00
|
|
|
if (m_observers_locked)
|
|
|
|
m_added_observers.push_back(o);
|
|
|
|
else
|
|
|
|
m_observers.push_back(o);
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::unsubscribe(udp_socket_observer* o)
|
|
|
|
{
|
|
|
|
std::vector<udp_socket_observer*>::iterator i = std::find(m_observers.begin(), m_observers.end(), o);
|
|
|
|
if (i == m_observers.end()) return;
|
2012-06-30 17:30:38 +02:00
|
|
|
if (m_observers_locked)
|
|
|
|
*i = NULL;
|
|
|
|
else
|
|
|
|
m_observers.erase(i);
|
2012-06-22 06:21:20 +02:00
|
|
|
}
|
|
|
|
|
2015-05-18 07:04:55 +02:00
|
|
|
void udp_socket::on_read_impl(udp::endpoint const& ep
|
2012-06-21 17:05:57 +02:00
|
|
|
, error_code const& e, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
|
|
|
TORRENT_ASSERT(is_single_thread());
|
|
|
|
|
2008-03-25 05:46:18 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(e, ep, 0, 0);
|
2010-11-29 02:33:05 +01:00
|
|
|
|
2008-03-25 05:46:18 +01:00
|
|
|
// 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
|
2011-02-06 01:34:52 +01:00
|
|
|
&& e != asio::error::operation_aborted
|
2012-09-27 19:39:41 +02:00
|
|
|
&& e != asio::error::network_reset
|
|
|
|
&& e != asio::error::network_unreachable
|
2012-02-17 19:23:47 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
// ERROR_MORE_DATA means the same thing as EMSGSIZE
|
2014-07-06 21:18:00 +02:00
|
|
|
&& e != error_code(ERROR_MORE_DATA, system_category())
|
|
|
|
&& e != error_code(ERROR_HOST_UNREACHABLE, system_category())
|
|
|
|
&& e != error_code(ERROR_PORT_UNREACHABLE, system_category())
|
|
|
|
&& e != error_code(ERROR_RETRY, system_category())
|
|
|
|
&& e != error_code(ERROR_NETWORK_UNREACHABLE, system_category())
|
|
|
|
&& e != error_code(ERROR_CONNECTION_REFUSED, system_category())
|
|
|
|
&& e != error_code(ERROR_CONNECTION_ABORTED, system_category())
|
2012-02-17 19:23:47 +01:00
|
|
|
#endif
|
2008-03-25 05:46:18 +01:00
|
|
|
&& e != asio::error::message_size)
|
2008-12-19 07:20:09 +01:00
|
|
|
{
|
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;
|
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TORRENT_TRY {
|
|
|
|
|
|
|
|
if (m_tunnel_packets)
|
2011-02-05 22:19:33 +01:00
|
|
|
{
|
2012-06-21 17:05:57 +02:00
|
|
|
// if the source IP doesn't match the proxy's, ignore the packet
|
2013-05-24 08:28:46 +02:00
|
|
|
if (ep == m_udp_proxy_addr)
|
2012-06-21 17:05:57 +02:00
|
|
|
unwrap(e, m_buf, bytes_transferred);
|
2011-02-05 22:19:33 +01:00
|
|
|
}
|
2013-02-19 07:48:53 +01:00
|
|
|
else if (!m_force_proxy) // block incoming packets that aren't coming via the proxy
|
2011-02-05 22:19:33 +01:00
|
|
|
{
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(e, ep, m_buf, bytes_transferred);
|
2011-02-05 22:19:33 +01:00
|
|
|
}
|
2008-03-25 05:46:18 +01:00
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::setup_read(udp::socket* s)
|
|
|
|
{
|
|
|
|
if (m_abort) return;
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2011-01-31 07:31:22 +01:00
|
|
|
if (s == &m_ipv6_sock)
|
2012-06-21 17:05:57 +02:00
|
|
|
++m_v6_outstanding;
|
2007-12-09 05:15:24 +01:00
|
|
|
else
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2012-06-21 17:05:57 +02:00
|
|
|
++m_v4_outstanding;
|
2011-01-31 07:31:22 +01:00
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_read");
|
2009-04-13 19:52:45 +02:00
|
|
|
#endif
|
2014-05-11 01:44:57 +02:00
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
udp::endpoint ep;
|
2013-11-18 00:06:51 +01:00
|
|
|
TORRENT_TRY
|
|
|
|
{
|
|
|
|
s->async_receive_from(asio::null_buffers()
|
|
|
|
, ep, boost::bind(&udp_socket::on_read, this, _1, s));
|
|
|
|
}
|
|
|
|
TORRENT_CATCH(boost::system::system_error& e)
|
|
|
|
{
|
2014-08-16 09:46:06 +02:00
|
|
|
#ifdef BOOST_NO_EXCEPTIONS
|
|
|
|
// dummy
|
|
|
|
error_code ec;
|
|
|
|
boost::system::system_error e(ec);
|
|
|
|
#endif
|
2013-11-18 00:06:51 +01:00
|
|
|
get_io_service().post(boost::bind(&udp_socket::on_read
|
|
|
|
, this, e.code(), s));
|
|
|
|
}
|
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
|
|
|
{
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2007-12-09 05:15:24 +01:00
|
|
|
using namespace libtorrent::detail;
|
|
|
|
|
2011-04-10 04:29:35 +02:00
|
|
|
char header[25];
|
2007-12-09 05:15:24 +01:00
|
|
|
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
|
2013-05-24 08:28:46 +02:00
|
|
|
if (m_udp_proxy_addr.address().is_v4() && m_ipv4_sock.is_open())
|
2010-08-03 11:08:37 +02:00
|
|
|
#endif
|
2013-05-24 08:28:46 +02:00
|
|
|
m_ipv4_sock.send_to(iovec, m_udp_proxy_addr, 0, ec);
|
2010-08-03 11:08:37 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
else
|
2013-05-24 08:28:46 +02:00
|
|
|
m_ipv6_sock.send_to(iovec, m_udp_proxy_addr, 0, ec);
|
2010-08-03 11:08:37 +02:00
|
|
|
#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);
|
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2013-05-24 08:28:46 +02:00
|
|
|
if (m_udp_proxy_addr.address().is_v4() && m_ipv4_sock.is_open())
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2013-05-24 08:28:46 +02:00
|
|
|
m_ipv4_sock.send_to(iovec, m_udp_proxy_addr, 0, ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
else
|
2013-05-24 08:28:46 +02:00
|
|
|
m_ipv6_sock.send_to(iovec, m_udp_proxy_addr, 0, ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#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
|
|
|
{
|
2008-09-23 01:43:21 +02: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
|
|
|
}
|
2009-04-04 18:59:53 +02: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
|
|
|
}
|
2009-04-04 18:59:53 +02: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;
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(e, hostname.c_str(), p, size - (p - buf));
|
2007-12-09 05:15:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(e, sender, p, size - (p - buf));
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 09:27:22 +01:00
|
|
|
#if !defined BOOST_ASIO_ENABLE_CANCELIO && defined TORRENT_WINDOWS
|
2010-11-29 02:33:05 +01:00
|
|
|
#error BOOST_ASIO_ENABLE_CANCELIO needs to be defined when building libtorrent to enable cancel() in asio on windows
|
|
|
|
#endif
|
|
|
|
|
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());
|
2008-09-23 01:43:21 +02:00
|
|
|
TORRENT_ASSERT(m_magic == 0x1337);
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2010-09-25 22:07:27 +02:00
|
|
|
// if we close the socket here, we can't shut down
|
|
|
|
// utp connections or NAT-PMP. We need to cancel the
|
|
|
|
// outstanding operations
|
2010-07-18 04:49:26 +02:00
|
|
|
m_ipv4_sock.cancel(ec);
|
2010-11-22 01:54:39 +01:00
|
|
|
if (ec == error::operation_not_supported)
|
|
|
|
m_ipv4_sock.close(ec);
|
2010-09-25 22:07:27 +02:00
|
|
|
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2010-07-18 04:49:26 +02:00
|
|
|
m_ipv6_sock.cancel(ec);
|
2010-11-22 01:54:39 +01:00
|
|
|
if (ec == error::operation_not_supported)
|
|
|
|
m_ipv6_sock.close(ec);
|
2010-09-25 22:07:27 +02:00
|
|
|
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2010-07-18 04:49:26 +02:00
|
|
|
m_socks5_sock.cancel(ec);
|
2010-11-22 01:54:39 +01:00
|
|
|
if (ec == error::operation_not_supported)
|
|
|
|
m_socks5_sock.close(ec);
|
2010-09-25 22:07:27 +02:00
|
|
|
TORRENT_ASSERT_VAL(!ec || ec == error::bad_descriptor, ec);
|
2008-12-20 19:27:09 +01:00
|
|
|
m_resolver.cancel();
|
2014-10-03 22:56:57 +02:00
|
|
|
m_timer.cancel();
|
2008-12-28 02:50:55 +01:00
|
|
|
m_abort = true;
|
2010-07-18 04:49:26 +02:00
|
|
|
|
2014-01-19 21:19:15 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2011-02-09 08:27:04 +01:00
|
|
|
m_outstanding_when_aborted = num_outstanding();
|
2011-02-06 01:34:52 +01:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
void udp_socket::set_buf_size(int s)
|
|
|
|
{
|
2011-01-31 07:31:22 +01:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2012-10-18 09:34:39 +02:00
|
|
|
|
|
|
|
if (m_observers_locked)
|
|
|
|
{
|
|
|
|
// we can't actually reallocate the buffer while
|
|
|
|
// it's being used by the observers, we have to
|
|
|
|
// do that once we're done iterating over them
|
|
|
|
m_new_buf_size = s;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s == m_buf_size) return;
|
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
bool no_mem = false;
|
|
|
|
void* tmp = realloc(m_buf, s);
|
|
|
|
if (tmp != 0)
|
2010-11-29 02:33:05 +01:00
|
|
|
{
|
2012-06-21 17:05:57 +02:00
|
|
|
m_buf = (char*)tmp;
|
|
|
|
m_buf_size = s;
|
2012-10-18 09:34:39 +02:00
|
|
|
m_new_buf_size = s;
|
2012-06-21 17:05:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
no_mem = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (no_mem)
|
|
|
|
{
|
|
|
|
free(m_buf);
|
|
|
|
m_buf = 0;
|
|
|
|
m_buf_size = 0;
|
2012-10-18 09:34:39 +02:00
|
|
|
m_new_buf_size = 0;
|
2012-06-21 17:05:57 +02:00
|
|
|
udp::endpoint ep;
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(error::no_memory, ep, 0, 0);
|
2012-06-21 17:05:57 +02:00
|
|
|
close();
|
2010-11-29 02:33:05 +01:00
|
|
|
}
|
2014-05-11 01:44:57 +02:00
|
|
|
|
2014-10-12 06:18:34 +02:00
|
|
|
int size = m_buf_size;
|
|
|
|
|
|
|
|
// don't shrink the size of the receive buffer
|
|
|
|
error_code ec;
|
|
|
|
boost::asio::socket_base::receive_buffer_size recv_size;
|
|
|
|
m_ipv4_sock.get_option(recv_size, ec);
|
|
|
|
if (!ec) size = (std::max)(recv_size.value(), size);
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
m_ipv6_sock.get_option(recv_size, ec);
|
|
|
|
if (!ec) size = (std::max)(recv_size.value(), size);
|
|
|
|
#endif
|
|
|
|
|
2014-06-19 05:26:29 +02:00
|
|
|
error_code ignore_errors;
|
2014-05-11 01:44:57 +02:00
|
|
|
// set the internal buffer sizes as well
|
2014-10-12 06:18:34 +02:00
|
|
|
m_ipv4_sock.set_option(boost::asio::socket_base::receive_buffer_size(size)
|
2014-06-19 05:26:29 +02:00
|
|
|
, ignore_errors);
|
2014-05-11 01:44:57 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2014-10-12 06:18:34 +02:00
|
|
|
m_ipv6_sock.set_option(boost::asio::socket_base::receive_buffer_size(size)
|
2014-06-19 05:26:29 +02:00
|
|
|
, ignore_errors);
|
2014-05-11 01:44:57 +02:00
|
|
|
#endif
|
2010-11-29 02:33:05 +01:00
|
|
|
}
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void udp_socket::bind(udp::endpoint const& ep, error_code& ec)
|
2008-02-05 07:32:10 +01:00
|
|
|
{
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-02-21 21:15:07 +01:00
|
|
|
TORRENT_ASSERT(m_abort == false);
|
2013-06-04 02:35:42 +02:00
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
ec = boost::asio::error::operation_aborted;
|
|
|
|
return;
|
|
|
|
}
|
2010-02-21 21:15:07 +01:00
|
|
|
|
2008-02-05 07:32:10 +01:00
|
|
|
if (m_ipv4_sock.is_open()) m_ipv4_sock.close(ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2008-02-05 07:32:10 +01:00
|
|
|
if (m_ipv6_sock.is_open()) m_ipv6_sock.close(ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2008-02-05 07:32:10 +01:00
|
|
|
|
|
|
|
if (ep.address().is_v4())
|
|
|
|
{
|
|
|
|
m_ipv4_sock.open(udp::v4(), ec);
|
|
|
|
if (ec) return;
|
|
|
|
m_ipv4_sock.bind(ep, ec);
|
|
|
|
if (ec) return;
|
2012-06-21 17:05:57 +02:00
|
|
|
udp::socket::non_blocking_io ioc(true);
|
|
|
|
m_ipv4_sock.io_control(ioc, ec);
|
|
|
|
if (ec) return;
|
2012-07-23 07:36:35 +02:00
|
|
|
setup_read(&m_ipv4_sock);
|
2008-02-05 07:32:10 +01:00
|
|
|
}
|
2013-09-25 08:50:08 +02:00
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2013-10-08 07:11:29 +02:00
|
|
|
if (supports_ipv6() && (ep.address().is_v6() || is_any(ep.address())))
|
2008-02-05 07:32:10 +01:00
|
|
|
{
|
2013-09-25 08:50:08 +02:00
|
|
|
udp::endpoint ep6 = ep;
|
|
|
|
if (is_any(ep.address())) ep6.address(address_v6::any());
|
|
|
|
m_ipv6_sock.open(udp::v6(), ec);
|
|
|
|
if (ec) return;
|
2012-11-19 05:58:46 +01:00
|
|
|
#ifdef IPV6_V6ONLY
|
2008-02-05 07:32:10 +01:00
|
|
|
m_ipv6_sock.set_option(v6only(true), ec);
|
2013-10-08 11:30:33 +02:00
|
|
|
ec.clear();
|
2012-11-19 05:58:46 +01:00
|
|
|
#endif
|
2013-09-25 08:50:08 +02:00
|
|
|
m_ipv6_sock.bind(ep6, ec);
|
2008-02-05 07:32:10 +01:00
|
|
|
if (ec) return;
|
2012-06-21 17:05:57 +02:00
|
|
|
udp::socket::non_blocking_io ioc(true);
|
|
|
|
m_ipv6_sock.io_control(ioc, ec);
|
|
|
|
if (ec) return;
|
2012-07-23 07:36:35 +02:00
|
|
|
setup_read(&m_ipv6_sock);
|
2008-02-05 07:32:10 +01:00
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2014-01-19 21:19:15 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2009-04-13 19:52:45 +02:00
|
|
|
m_started = true;
|
|
|
|
#endif
|
2008-02-05 07:32:10 +01:00
|
|
|
m_bind_port = ep.port();
|
|
|
|
}
|
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
void udp_socket::set_proxy_settings(proxy_settings const& ps)
|
|
|
|
{
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
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;
|
|
|
|
|
2010-07-18 04:49:26 +02:00
|
|
|
if (m_abort) return;
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ps.type == settings_pack::socks5
|
|
|
|
|| ps.type == settings_pack::socks5_pw)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2010-02-18 05:37:02 +01:00
|
|
|
m_queue_packets = true;
|
2007-12-09 05:15:24 +01:00
|
|
|
// connect to socks5 server and open up the UDP tunnel
|
2014-12-17 03:44:27 +01:00
|
|
|
|
|
|
|
// TODO: use the system resolver_interface here
|
2009-01-27 07:17:55 +01:00
|
|
|
tcp::resolver::query q(ps.hostname, to_string(ps.port).elems);
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_resolve;
|
2015-01-05 13:15:16 +01:00
|
|
|
#endif
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_name_lookup");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
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
|
|
|
{
|
2015-01-05 13:15:16 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_name_lookup");
|
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_resolve > 0);
|
|
|
|
--m_outstanding_resolve;
|
|
|
|
#endif
|
|
|
|
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2011-04-09 19:59:00 +02:00
|
|
|
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2011-04-09 19:59:00 +02:00
|
|
|
if (e == asio::error::operation_aborted) return;
|
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2011-02-09 09:01:53 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2013-10-20 23:08:59 +02:00
|
|
|
if (m_force_proxy)
|
|
|
|
{
|
|
|
|
call_handler(e, udp::endpoint(), 0, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if we can't connect to the proxy, and
|
|
|
|
// we're not in privacy mode, try to just
|
|
|
|
// not use a proxy
|
|
|
|
m_proxy_settings = proxy_settings();
|
|
|
|
m_tunnel_packets = false;
|
|
|
|
}
|
2013-06-12 09:57:13 +02:00
|
|
|
|
|
|
|
drain_queue();
|
2011-02-09 09:01:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
m_proxy_addr.address(i->endpoint().address());
|
|
|
|
m_proxy_addr.port(i->endpoint().port());
|
2012-10-21 05:56:22 +02:00
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_connected");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
error_code ec;
|
|
|
|
m_socks5_sock.open(m_proxy_addr.address().is_v4()?tcp::v4():tcp::v6(), ec);
|
|
|
|
|
|
|
|
// enable keepalives
|
|
|
|
m_socks5_sock.set_option(boost::asio::socket_base::keep_alive(true), ec);
|
|
|
|
|
|
|
|
++m_outstanding_ops;
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
++m_outstanding_connect;
|
|
|
|
#endif
|
|
|
|
m_socks5_sock.async_connect(tcp::endpoint(m_proxy_addr.address(), m_proxy_addr.port())
|
|
|
|
, boost::bind(&udp_socket::on_connected, this, _1));
|
|
|
|
|
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_timeout;
|
|
|
|
#endif
|
2014-10-03 22:56:57 +02:00
|
|
|
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_connect_timeout");
|
|
|
|
#endif
|
|
|
|
m_timer.expires_from_now(seconds(10));
|
|
|
|
m_timer.async_wait(boost::bind(&udp_socket::on_connect_timeout
|
|
|
|
, this, _1));
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
void udp_socket::on_connect_timeout(error_code const& ec)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2015-01-05 13:22:31 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_connect_timeout");
|
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_timeout > 0);
|
|
|
|
--m_outstanding_timeout;
|
|
|
|
#endif
|
2011-05-15 00:25:49 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2014-10-03 22:56:57 +02:00
|
|
|
|
|
|
|
if (ec == boost::asio::error::operation_aborted) return;
|
|
|
|
|
2013-06-12 09:57:13 +02:00
|
|
|
m_queue_packets = false;
|
|
|
|
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2013-06-12 09:57:13 +02:00
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
error_code ignore;
|
|
|
|
m_socks5_sock.close(ignore);
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
void udp_socket::on_connected(error_code const& e)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
2014-10-03 22:56:57 +02:00
|
|
|
complete_async("udp_socket::on_connected");
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2014-09-28 22:02:43 +02:00
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_connect > 0);
|
|
|
|
--m_outstanding_connect;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
m_timer.cancel();
|
2014-06-30 10:41:33 +02:00
|
|
|
|
|
|
|
if (e == asio::error::operation_aborted) return;
|
|
|
|
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2011-05-15 00:25:49 +02:00
|
|
|
|
2011-02-09 09:01:53 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2012-06-22 06:21:20 +02:00
|
|
|
call_handler(e, udp::endpoint(), 0, 0);
|
2011-02-09 09:01:53 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
|
|
|
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()
|
2014-07-06 21:18:00 +02:00
|
|
|
|| m_proxy_settings.type == settings_pack::socks5)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
|
|
|
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
|
|
|
|
}
|
2011-02-21 06:24:41 +01:00
|
|
|
TORRENT_ASSERT_VAL(p - m_tmp_buf < int(sizeof(m_tmp_buf)), (p - m_tmp_buf));
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_handshake1");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_handshake1");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2013-06-12 09:57:13 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_handshake2");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_handshake2");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2011-04-09 19:59:00 +02:00
|
|
|
|
2013-06-12 09:57:13 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
|
|
|
using namespace libtorrent::detail;
|
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
char* p = &m_tmp_buf[0];
|
|
|
|
int version = read_uint8(p);
|
|
|
|
int method = read_uint8(p);
|
|
|
|
|
2013-06-12 09:57:13 +02:00
|
|
|
if (version < 5)
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
m_socks5_sock.close(ec);
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
|
|
|
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);
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
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);
|
2011-02-21 06:24:41 +01:00
|
|
|
TORRENT_ASSERT_VAL(p - m_tmp_buf < int(sizeof(m_tmp_buf)), (p - m_tmp_buf));
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_handshake3");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
|
{
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_handshake3");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2013-06-12 09:57:13 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_handshake4");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_handshake4");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2013-06-12 09:57:13 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
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);
|
|
|
|
|
2013-06-12 09:57:13 +02:00
|
|
|
if (version != 1 || status != 0)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
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
|
|
|
{
|
2008-09-23 01:43:21 +02: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;
|
2013-05-24 08:28:46 +02:00
|
|
|
write_uint8(1, p); // ATYP = IPv4
|
|
|
|
write_uint32(0, p); // 0.0.0.0
|
|
|
|
write_uint16(0, p); // :0
|
2011-02-21 06:24:41 +01:00
|
|
|
TORRENT_ASSERT_VAL(p - m_tmp_buf < int(sizeof(m_tmp_buf)), (p - m_tmp_buf));
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::connect1");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::connect1");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2013-06-12 09:57:13 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
drain_queue();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::connect2");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::connect2");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
|
|
|
|
2011-04-09 19:59:00 +02:00
|
|
|
if (m_abort)
|
|
|
|
{
|
2011-09-18 01:03:46 +02:00
|
|
|
m_queue.clear();
|
2011-04-09 19:59:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2011-09-18 01:03:46 +02:00
|
|
|
if (e)
|
|
|
|
{
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
2011-09-18 01:03:46 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2008-09-19 19:31:16 +02:00
|
|
|
|
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
|
2011-02-21 06:24:41 +01:00
|
|
|
++p; // RESERVED
|
2007-12-09 05:15:24 +01:00
|
|
|
int atyp = read_uint8(p); // address type
|
|
|
|
|
2011-09-18 01:03:46 +02:00
|
|
|
if (version != 5 || status != 0)
|
|
|
|
{
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
2011-09-18 01:03:46 +02:00
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
|
|
|
if (atyp == 1)
|
|
|
|
{
|
2013-05-24 08:28:46 +02:00
|
|
|
m_udp_proxy_addr.address(address_v4(read_uint32(p)));
|
|
|
|
m_udp_proxy_addr.port(read_uint16(p));
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// in this case we need to read more data from the socket
|
|
|
|
TORRENT_ASSERT(false && "not implemented yet!");
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
2011-09-18 01:03:46 +02:00
|
|
|
return;
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_tunnel_packets = true;
|
2013-06-12 09:57:13 +02:00
|
|
|
drain_queue();
|
2010-07-25 03:31:15 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::hung_up");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
++m_outstanding_socks;
|
|
|
|
#endif
|
2010-07-25 03:31:15 +02:00
|
|
|
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)
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::hung_up");
|
2012-10-21 05:56:22 +02:00
|
|
|
#endif
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_socks > 0);
|
|
|
|
--m_outstanding_socks;
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
2012-10-21 05:56:22 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops == m_outstanding_connect
|
|
|
|
+ m_outstanding_timeout
|
|
|
|
+ m_outstanding_resolve
|
|
|
|
+ m_outstanding_socks);
|
2012-06-22 06:21:20 +02:00
|
|
|
if (m_abort) return;
|
2010-07-25 03:31:15 +02:00
|
|
|
CHECK_MAGIC;
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2010-07-25 03:31:15 +02:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-06-12 09:57:13 +02:00
|
|
|
void udp_socket::drain_queue()
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
if (p.hostname)
|
|
|
|
{
|
2013-11-20 02:19:42 +01:00
|
|
|
udp_socket::send_hostname(p.hostname, p.ep.port(), &p.buf[0]
|
|
|
|
, p.buf.size(), ec, p.flags | dont_queue);
|
2013-06-12 09:57:13 +02:00
|
|
|
free(p.hostname);
|
|
|
|
}
|
2013-10-20 23:08:59 +02:00
|
|
|
else
|
2013-06-12 09:57:13 +02:00
|
|
|
{
|
2013-11-20 02:19:42 +01:00
|
|
|
udp_socket::send(p.ep, &p.buf[0], p.buf.size(), ec, p.flags | dont_queue);
|
2013-06-12 09:57:13 +02:00
|
|
|
}
|
|
|
|
m_queue.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-03 22:56:57 +02:00
|
|
|
rate_limited_udp_socket::rate_limited_udp_socket(io_service& ios)
|
|
|
|
: udp_socket(ios)
|
2013-01-12 07:15:45 +01:00
|
|
|
, m_rate_limit(8000)
|
|
|
|
, m_quota(8000)
|
2015-03-12 05:34:54 +01:00
|
|
|
, m_last_tick(aux::time_now())
|
2008-11-08 18:40:06 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
bool rate_limited_udp_socket::has_quota()
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = clock_type::now();
|
2014-07-06 21:18:00 +02:00
|
|
|
time_duration delta = now - m_last_tick;
|
|
|
|
m_last_tick = now;
|
|
|
|
// add any new quota we've accrued since last time
|
|
|
|
m_quota += boost::uint64_t(m_rate_limit) * total_microseconds(delta) / 1000000;
|
|
|
|
return m_quota > 0;
|
|
|
|
}
|
|
|
|
|
2011-01-24 04:24:28 +01:00
|
|
|
bool rate_limited_udp_socket::send(udp::endpoint const& ep, char const* p
|
|
|
|
, int len, error_code& ec, int flags)
|
2008-11-08 18:40:06 +01:00
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = clock_type::now();
|
2008-11-08 18:40:06 +01:00
|
|
|
time_duration delta = now - m_last_tick;
|
|
|
|
m_last_tick = now;
|
|
|
|
|
2013-01-12 07:15:45 +01:00
|
|
|
// add any new quota we've accrued since last time
|
|
|
|
m_quota += boost::uint64_t(m_rate_limit) * total_microseconds(delta) / 1000000;
|
2008-11-08 18:40:06 +01:00
|
|
|
|
2013-01-12 07:15:45 +01:00
|
|
|
// allow 3 seconds worth of burst
|
|
|
|
if (m_quota > 3 * m_rate_limit) m_quota = 3 * m_rate_limit;
|
2008-11-08 18:40:06 +01:00
|
|
|
|
2013-01-12 07:15:45 +01:00
|
|
|
// if there's no quota, and it's OK to drop, just
|
|
|
|
// drop the packet
|
2014-07-06 21:18:00 +02:00
|
|
|
if (m_quota < 0 && (flags & dont_drop) == 0) return false;
|
2013-01-12 07:15:45 +01:00
|
|
|
|
|
|
|
m_quota -= len;
|
|
|
|
if (m_quota < 0) m_quota = 0;
|
|
|
|
udp_socket::send(ep, p, len, ec, flags);
|
|
|
|
return true;
|
2008-11-08 22:44:24 +01:00
|
|
|
}
|
|
|
|
|