2009-01-26 19:15:20 +01:00
|
|
|
/*
|
|
|
|
|
2009-01-27 07:17:55 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-09-16 05:46:36 +02:00
|
|
|
#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"
|
2009-01-27 07:17:55 +01:00
|
|
|
#include "libtorrent/escape_string.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"
|
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
|
|
|
|
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;
|
|
|
|
|
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)
|
2010-11-29 02:33:05 +01:00
|
|
|
, m_v4_buf_size(0)
|
|
|
|
, m_v4_buf(0)
|
2011-01-19 08:16:45 +01:00
|
|
|
, m_reallocate_buffer4(false)
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
, m_ipv6_sock(ios)
|
2010-11-29 02:33:05 +01:00
|
|
|
, m_v6_buf_size(0)
|
|
|
|
, m_v6_buf(0)
|
2011-01-19 08:16:45 +01:00
|
|
|
, m_reallocate_buffer6(false)
|
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_connection_ticket(-1)
|
|
|
|
, m_cc(cc)
|
|
|
|
, 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)
|
2008-12-28 02:50:55 +01:00
|
|
|
, m_abort(false)
|
2011-04-09 19:59:00 +02:00
|
|
|
, m_outstanding_ops(0)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2011-05-08 11:04:59 +02:00
|
|
|
#if defined TORRENT_DEBUG || TORRENT_RELEASE_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;
|
2010-09-25 23:39:27 +02:00
|
|
|
#if defined BOOST_HAS_PTHREADS
|
|
|
|
m_thread = 0;
|
|
|
|
#endif
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
|
|
|
|
2012-02-17 19:23:47 +01:00
|
|
|
m_v4_buf_size = 2000;
|
2010-11-29 02:33:05 +01:00
|
|
|
m_v4_buf = (char*)malloc(m_v4_buf_size);
|
|
|
|
#if TORRENT_USE_IPV6
|
2012-02-17 19:23:47 +01:00
|
|
|
m_v6_buf_size = 2000;
|
2010-11-29 02:33:05 +01:00
|
|
|
m_v6_buf = (char*)malloc(m_v6_buf_size);
|
2008-09-23 01:43:21 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2008-12-28 02:50:55 +01:00
|
|
|
udp_socket::~udp_socket()
|
|
|
|
{
|
2010-11-29 02:33:05 +01:00
|
|
|
free(m_v4_buf);
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
free(m_v6_buf);
|
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);
|
2009-04-13 19:52:45 +02:00
|
|
|
TORRENT_ASSERT(!m_callback || !m_started);
|
2011-05-08 11:04:59 +02:00
|
|
|
#if defined TORRENT_DEBUG || TORRENT_RELEASE_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
|
|
|
}
|
|
|
|
|
2011-05-08 11:04:59 +02:00
|
|
|
#if defined TORRENT_DEBUG || TORRENT_RELEASE_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
|
2008-09-24 19:25:45 +02:00
|
|
|
#define CHECK_MAGIC do {} while (false)
|
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
|
|
|
|
, char const* p, int len, error_code& ec)
|
|
|
|
{
|
|
|
|
CHECK_MAGIC;
|
|
|
|
|
|
|
|
TORRENT_ASSERT(is_open());
|
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
|
|
|
|
if (!is_open()) return;
|
|
|
|
|
|
|
|
if (m_tunnel_packets)
|
|
|
|
{
|
|
|
|
// send udp packets through SOCKS5 server
|
|
|
|
wrap(hostname, port, p, len, ec);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-22 00:07:29 +02:00
|
|
|
// 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);
|
2011-01-24 04:24:28 +01:00
|
|
|
qp.flags = 0;
|
2010-08-03 11:08:37 +02:00
|
|
|
}
|
|
|
|
|
2011-04-09 19:59:00 +02:00
|
|
|
bool udp_socket::maybe_clear_callback()
|
|
|
|
{
|
|
|
|
if (m_outstanding_ops + m_v4_outstanding
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
+ m_v6_outstanding
|
|
|
|
#endif
|
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
// "this" may be destructed in the callback
|
|
|
|
m_callback.clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
TORRENT_ASSERT(is_open());
|
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
|
2009-04-04 18:59:53 +02:00
|
|
|
if (!is_open()) 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)
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
if (ep.address().is_v4() && m_ipv4_sock.is_open())
|
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);
|
2009-04-04 18:59:53 +02:00
|
|
|
#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);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2011-01-19 08:16:45 +01:00
|
|
|
void udp_socket::maybe_realloc_buffers(int which)
|
2010-11-29 02:33:05 +01:00
|
|
|
{
|
2011-01-31 07:31:22 +01:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2011-02-05 22:19:33 +01:00
|
|
|
bool no_mem = false;
|
2011-02-08 18:17:07 +01:00
|
|
|
if (m_reallocate_buffer4 && (which & 1) && m_v4_outstanding == 0)
|
2010-11-29 02:33:05 +01:00
|
|
|
{
|
2011-02-05 22:19:33 +01:00
|
|
|
TORRENT_ASSERT(m_v4_outstanding == 0);
|
|
|
|
void* tmp = realloc(m_v4_buf, m_v4_buf_size);
|
|
|
|
if (tmp != 0) m_v4_buf = (char*)tmp;
|
|
|
|
else no_mem = true;
|
2011-01-19 08:16:45 +01:00
|
|
|
m_reallocate_buffer4 = false;
|
|
|
|
}
|
2010-11-29 02:33:05 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
2011-02-08 18:17:07 +01:00
|
|
|
if (m_reallocate_buffer6 && (which & 2) && m_v6_outstanding == 0)
|
2011-01-19 08:16:45 +01:00
|
|
|
{
|
2011-02-05 22:19:33 +01:00
|
|
|
TORRENT_ASSERT(m_v6_outstanding == 0);
|
|
|
|
void* tmp = realloc(m_v6_buf, m_v6_buf_size);
|
|
|
|
if (tmp != 0) m_v6_buf = (char*)tmp;
|
|
|
|
else no_mem = true;
|
2011-01-19 08:16:45 +01:00
|
|
|
m_reallocate_buffer6 = false;
|
2010-11-29 02:33:05 +01:00
|
|
|
}
|
2011-01-19 08:16:45 +01:00
|
|
|
#endif
|
2011-02-05 22:19:33 +01:00
|
|
|
|
|
|
|
if (no_mem)
|
|
|
|
{
|
|
|
|
free(m_v4_buf);
|
2011-02-21 06:24:41 +01:00
|
|
|
m_v4_buf = 0;
|
2011-02-05 22:19:33 +01:00
|
|
|
m_v4_buf_size = 0;
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
free(m_v6_buf);
|
2011-02-21 06:24:41 +01:00
|
|
|
m_v6_buf = 0;
|
2011-02-05 22:19:33 +01:00
|
|
|
m_v6_buf_size = 0;
|
|
|
|
#endif
|
|
|
|
if (m_callback) m_callback(error::no_memory, m_v4_ep, 0, 0);
|
|
|
|
close();
|
|
|
|
}
|
2010-11-29 02:33:05 +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
|
|
|
{
|
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
|
|
|
|
2011-02-05 22:19:33 +01:00
|
|
|
if (m_abort)
|
2008-09-23 01:43:21 +02:00
|
|
|
{
|
2011-04-09 19:59:00 +02:00
|
|
|
maybe_clear_callback();
|
2008-09-23 01:43:21 +02:00
|
|
|
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)
|
|
|
|
{
|
2011-02-25 18:00:36 +01:00
|
|
|
TORRENT_TRY {
|
2009-04-04 18:59:53 +02:00
|
|
|
|
|
|
|
#if TORRENT_USE_IPV6
|
2011-02-25 18:00:36 +01:00
|
|
|
if (s == &m_ipv6_sock)
|
|
|
|
m_callback(e, m_v6_ep, 0, 0);
|
|
|
|
else
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2011-02-25 18:00:36 +01:00
|
|
|
m_callback(e, m_v4_ep, 0, 0);
|
2009-04-04 18:59:53 +02:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
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-02-17 19:23:47 +01:00
|
|
|
#ifdef WIN32
|
|
|
|
// ERROR_MORE_DATA means the same thing as EMSGSIZE
|
|
|
|
&& e != error_code(ERROR_MORE_DATA, get_system_category())
|
|
|
|
#endif
|
2008-03-25 05:46:18 +01:00
|
|
|
&& e != asio::error::message_size)
|
2008-12-19 07:20:09 +01:00
|
|
|
{
|
2011-04-09 19:59:00 +02:00
|
|
|
maybe_clear_callback();
|
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;
|
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("udp_socket::on_read");
|
|
|
|
#endif
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2011-02-09 08:27:04 +01:00
|
|
|
if (s == &m_ipv6_sock && num_outstanding() == 0)
|
2011-02-05 22:19:33 +01:00
|
|
|
{
|
2011-02-07 02:41:54 +01:00
|
|
|
maybe_realloc_buffers(2);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2011-02-05 22:19:33 +01:00
|
|
|
++m_v6_outstanding;
|
2010-11-29 02:33:05 +01:00
|
|
|
s->async_receive_from(asio::buffer(m_v6_buf, m_v6_buf_size)
|
2008-03-25 05:46:18 +01:00
|
|
|
, m_v6_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
|
2011-02-05 22:19:33 +01:00
|
|
|
}
|
2011-01-31 07:31:22 +01:00
|
|
|
else
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2011-02-07 02:41:54 +01:00
|
|
|
if (m_v4_outstanding == 0)
|
2011-02-05 22:19:33 +01:00
|
|
|
{
|
2011-02-07 02:41:54 +01:00
|
|
|
maybe_realloc_buffers(1);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2011-02-05 22:19:33 +01:00
|
|
|
++m_v4_outstanding;
|
2011-01-31 07:31:22 +01:00
|
|
|
s->async_receive_from(asio::buffer(m_v4_buf, m_v4_buf_size)
|
|
|
|
, m_v4_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
|
2011-02-05 22:19:33 +01:00
|
|
|
}
|
2008-03-25 05:46:18 +01:00
|
|
|
|
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
|
|
|
|
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)
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2011-02-25 18:00:36 +01:00
|
|
|
TORRENT_TRY {
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
if (m_tunnel_packets)
|
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_callback(e, m_v6_ep, m_v6_buf, bytes_transferred);
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
2008-12-28 02:50:55 +01:00
|
|
|
|
|
|
|
if (m_abort) return;
|
|
|
|
|
2011-02-09 08:27:04 +01:00
|
|
|
if (num_outstanding() == 0)
|
2011-02-07 02:41:54 +01:00
|
|
|
{
|
|
|
|
maybe_realloc_buffers(2);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2010-11-29 02:33:05 +01:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
2011-02-07 02:41:54 +01:00
|
|
|
add_outstanding_async("udp_socket::on_read");
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-02-07 02:41:54 +01:00
|
|
|
++m_v6_outstanding;
|
|
|
|
s->async_receive_from(asio::buffer(m_v6_buf, m_v6_buf_size)
|
|
|
|
, m_v6_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
else
|
2011-01-31 07:31:22 +01:00
|
|
|
#endif // TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
2011-01-31 07:31:22 +01:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
TORRENT_TRY {
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
if (m_tunnel_packets)
|
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_callback(e, m_v4_ep, m_v4_buf, bytes_transferred);
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2011-02-25 18:00:36 +01:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
2008-12-28 02:50:55 +01:00
|
|
|
|
|
|
|
if (m_abort) return;
|
|
|
|
|
2011-02-07 02:41:54 +01:00
|
|
|
if (m_v4_outstanding == 0)
|
|
|
|
{
|
|
|
|
maybe_realloc_buffers(1);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2010-11-29 02:33:05 +01:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
2011-02-07 02:41:54 +01:00
|
|
|
add_outstanding_async("udp_socket::on_read");
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-02-07 02:41:54 +01:00
|
|
|
++m_v4_outstanding;
|
|
|
|
s->async_receive_from(asio::buffer(m_v4_buf, m_v4_buf_size)
|
|
|
|
, m_v4_ep, boost::bind(&udp_socket::on_read, this, s, _1, _2));
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
2011-01-31 07:31:22 +01:00
|
|
|
|
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
|
|
|
{
|
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
|
|
|
|
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);
|
|
|
|
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-09 05:15:24 +01:00
|
|
|
if (m_proxy_addr.address().is_v4() && m_ipv4_sock.is_open())
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
m_ipv4_sock.send_to(iovec, m_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
|
|
|
|
m_ipv6_sock.send_to(iovec, m_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;
|
|
|
|
m_callback2(e, hostname.c_str(), p, size - (p - buf));
|
2007-12-09 05:15:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
m_callback(e, sender, p, size - (p - buf));
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
#ifndef BOOST_ASIO_ENABLE_CANCELIO
|
|
|
|
#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();
|
2008-12-28 02:50:55 +01:00
|
|
|
m_abort = true;
|
2010-07-18 04:49:26 +02:00
|
|
|
|
2011-02-06 01:34:52 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
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
|
|
|
if (m_connection_ticket >= 0)
|
|
|
|
{
|
|
|
|
m_cc.done(m_connection_ticket);
|
|
|
|
m_connection_ticket = -1;
|
2011-05-15 00:25:49 +02:00
|
|
|
|
|
|
|
// we just called done, which means on_timeout
|
|
|
|
// won't be called. Decrement the outstanding
|
|
|
|
// ops counter for that
|
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
2008-09-23 01:43:21 +02:00
|
|
|
|
2011-04-09 19:59:00 +02:00
|
|
|
maybe_clear_callback();
|
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());
|
2010-11-29 02:33:05 +01:00
|
|
|
if (s > m_v4_buf_size)
|
|
|
|
{
|
|
|
|
m_v4_buf_size = s;
|
2011-01-19 08:16:45 +01:00
|
|
|
m_reallocate_buffer4 = true;
|
2010-11-29 02:33:05 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
m_v6_buf_size = s;
|
2011-01-19 08:16:45 +01:00
|
|
|
m_reallocate_buffer6 = true;
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
if (m_abort) return;
|
|
|
|
|
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;
|
2011-02-05 22:19:33 +01:00
|
|
|
if (m_v4_outstanding == 0)
|
|
|
|
{
|
2011-02-08 18:17:07 +01:00
|
|
|
maybe_realloc_buffers(1);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
2011-02-05 22:19:33 +01:00
|
|
|
add_outstanding_async("udp_socket::on_read");
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-02-05 22:19:33 +01:00
|
|
|
++m_v4_outstanding;
|
|
|
|
m_ipv4_sock.async_receive_from(asio::buffer(m_v4_buf, m_v4_buf_size)
|
|
|
|
, m_v4_ep, boost::bind(&udp_socket::on_read, this, &m_ipv4_sock
|
|
|
|
, _1, _2));
|
|
|
|
}
|
2008-02-05 07:32:10 +01:00
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2008-02-05 07:32:10 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_ipv6_sock.set_option(v6only(true), ec);
|
|
|
|
if (ec) return;
|
|
|
|
m_ipv6_sock.bind(ep, ec);
|
|
|
|
if (ec) return;
|
2011-02-05 22:19:33 +01:00
|
|
|
if (m_v6_outstanding == 0)
|
|
|
|
{
|
2011-02-08 18:17:07 +01:00
|
|
|
maybe_realloc_buffers(2);
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
2011-02-05 22:19:33 +01:00
|
|
|
add_outstanding_async("udp_socket::on_read");
|
2010-11-28 02:47:30 +01:00
|
|
|
#endif
|
2011-02-05 22:19:33 +01:00
|
|
|
++m_v6_outstanding;
|
|
|
|
m_ipv6_sock.async_receive_from(asio::buffer(m_v6_buf, m_v6_buf_size)
|
|
|
|
, m_v6_ep, boost::bind(&udp_socket::on_read, this, &m_ipv6_sock
|
|
|
|
, _1, _2));
|
|
|
|
}
|
2008-02-05 07:32:10 +01:00
|
|
|
}
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2009-04-13 19:52:45 +02:00
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
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::bind(int port)
|
|
|
|
{
|
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);
|
|
|
|
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);
|
2009-04-04 18:59:53 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2007-12-30 00:47:51 +01:00
|
|
|
if (m_ipv6_sock.is_open()) m_ipv6_sock.close(ec);
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
maybe_realloc_buffers();
|
2011-02-21 06:24:41 +01:00
|
|
|
if (m_abort) return;
|
2010-11-29 02:33:05 +01:00
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
m_ipv4_sock.open(udp::v4(), ec);
|
|
|
|
if (!ec)
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#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);
|
2011-02-05 22:19:33 +01:00
|
|
|
if (m_v4_outstanding == 0)
|
|
|
|
{
|
|
|
|
++m_v4_outstanding;
|
|
|
|
m_ipv4_sock.async_receive_from(asio::buffer(m_v4_buf, m_v4_buf_size)
|
|
|
|
, m_v4_ep, boost::bind(&udp_socket::on_read, this, &m_ipv4_sock
|
|
|
|
, _1, _2));
|
|
|
|
}
|
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
|
|
|
m_ipv6_sock.open(udp::v6(), ec);
|
|
|
|
if (!ec)
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#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);
|
2011-02-05 22:19:33 +01:00
|
|
|
|
|
|
|
if (m_v6_outstanding == 0)
|
|
|
|
{
|
|
|
|
++m_v6_outstanding;
|
|
|
|
m_ipv6_sock.async_receive_from(asio::buffer(m_v6_buf, m_v6_buf_size)
|
|
|
|
, m_v6_ep, boost::bind(&udp_socket::on_read, this, &m_ipv6_sock
|
|
|
|
, _1, _2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // TORRENT_USE_IPV6
|
|
|
|
|
2009-04-13 19:52:45 +02:00
|
|
|
#ifdef TORRENT_DEBUG
|
|
|
|
m_started = true;
|
2009-04-04 18:59:53 +02:00
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
m_bind_port = port;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
if (ps.type == proxy_settings::socks5
|
|
|
|
|| ps.type == proxy_settings::socks5_pw)
|
|
|
|
{
|
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
|
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;
|
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
|
|
|
{
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
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)
|
|
|
|
{
|
2011-02-25 18:00:36 +01:00
|
|
|
TORRENT_TRY {
|
2011-02-09 09:01:53 +01:00
|
|
|
if (m_callback) m_callback(e, udp::endpoint(), 0, 0);
|
2011-02-25 18:00:36 +01:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
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());
|
2010-09-25 23:39:27 +02:00
|
|
|
// on_connect may be called from within this thread
|
2011-05-15 00:25:49 +02:00
|
|
|
// the semantics for on_connect and on_timeout is
|
|
|
|
// a bit complicated. See comments in connection_queue.hpp
|
|
|
|
// for more details. This semantic determines how and
|
|
|
|
// when m_outstanding_ops may be decremented
|
|
|
|
// To simplyfy this, it's probably a good idea to
|
|
|
|
// merge on_connect and on_timeout to a single function
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
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()
|
|
|
|
{
|
2011-05-15 00:25:49 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
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_connection_ticket = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void udp_socket::on_connect(int ticket)
|
|
|
|
{
|
2010-09-25 23:39:27 +02:00
|
|
|
TORRENT_ASSERT(is_single_thread());
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
CHECK_MAGIC;
|
2008-09-19 19:31:16 +02:00
|
|
|
|
2010-07-18 04:49:26 +02:00
|
|
|
if (m_abort) return;
|
2011-02-09 09:01:53 +01:00
|
|
|
if (is_closed()) return;
|
2010-07-18 04:49:26 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#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;
|
2011-05-15 00:25:49 +02:00
|
|
|
// at this point on_timeout may be called before on_connected
|
|
|
|
// so increment the outstanding ops
|
|
|
|
// it may also not be called in case we call
|
|
|
|
// connection_queue::done first, so be sure to
|
|
|
|
// decrement if that happens
|
|
|
|
++m_outstanding_ops;
|
|
|
|
|
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);
|
2011-04-09 19:59:00 +02:00
|
|
|
++m_outstanding_ops;
|
2007-12-09 05:15:24 +01:00
|
|
|
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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_connected");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
2011-02-09 09:01:53 +01:00
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
|
|
|
|
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());
|
2007-12-09 05:15:24 +01:00
|
|
|
m_cc.done(m_connection_ticket);
|
|
|
|
m_connection_ticket = -1;
|
2011-05-15 00:25:49 +02:00
|
|
|
|
|
|
|
// we just called done, which means on_timeout
|
|
|
|
// won't be called. Decrement the outstanding
|
|
|
|
// ops counter for that
|
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-09 09:01:53 +01:00
|
|
|
if (e)
|
|
|
|
{
|
2011-02-25 18:00:36 +01:00
|
|
|
TORRENT_TRY {
|
2011-02-09 09:01:53 +01:00
|
|
|
if (m_callback) m_callback(e, udp::endpoint(), 0, 0);
|
2011-02-25 18:00:36 +01:00
|
|
|
} TORRENT_CATCH (std::exception&) {}
|
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()
|
|
|
|
|| 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
|
|
|
|
}
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
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());
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2011-04-09 19:59:00 +02:00
|
|
|
|
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());
|
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);
|
|
|
|
|
|
|
|
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);
|
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;
|
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
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("udp_socket::on_handshake3");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
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());
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
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());
|
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);
|
|
|
|
|
|
|
|
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
|
|
|
{
|
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;
|
|
|
|
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);
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
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());
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
2011-09-18 01:03:46 +02:00
|
|
|
m_queue.clear();
|
2011-04-09 19:59:00 +02:00
|
|
|
maybe_clear_callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-09-23 01:43:21 +02:00
|
|
|
CHECK_MAGIC;
|
2011-09-18 01:03:46 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
m_queue.clear();
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
m_queue.clear();
|
|
|
|
return;
|
|
|
|
}
|
2007-12-09 05:15:24 +01:00
|
|
|
|
|
|
|
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!");
|
2011-09-18 01:03:46 +02:00
|
|
|
m_queue.clear();
|
|
|
|
return;
|
2007-12-09 05:15:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_tunnel_packets = true;
|
2010-02-18 05:37:02 +01:00
|
|
|
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
|
|
|
|
{
|
2011-01-24 04:24:28 +01:00
|
|
|
udp_socket::send(p.ep, &p.buf[0], p.buf.size(), ec, p.flags);
|
2010-08-03 11:08:37 +02:00
|
|
|
}
|
2010-02-18 05:37:02 +01:00
|
|
|
m_queue.pop_front();
|
|
|
|
}
|
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;
|
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");
|
|
|
|
#endif
|
2011-04-09 19:59:00 +02:00
|
|
|
TORRENT_ASSERT(m_outstanding_ops > 0);
|
|
|
|
--m_outstanding_ops;
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
maybe_clear_callback();
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-11-08 18:40:06 +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)
|
2008-11-08 18:40:06 +01:00
|
|
|
, m_timer(ios)
|
2008-11-09 01:37:03 +01:00
|
|
|
, m_queue_size_limit(200)
|
|
|
|
, m_rate_limit(4000)
|
|
|
|
, m_quota(4000)
|
2008-11-08 18:40:06 +01:00
|
|
|
, m_last_tick(time_now())
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("rate_limited_udp_socket::on_tick");
|
|
|
|
#endif
|
2008-11-08 18:40:06 +01:00
|
|
|
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));
|
2010-09-25 22:07:27 +02:00
|
|
|
TORRENT_ASSERT_VAL(!ec, ec);
|
2008-11-08 18:40:06 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
if (m_quota < len)
|
|
|
|
{
|
2011-01-24 04:24:28 +01:00
|
|
|
if (int(m_queue.size()) >= m_queue_size_limit && (flags & dont_drop) == 0)
|
2008-11-09 01:37:03 +01:00
|
|
|
return false;
|
2008-11-08 18:40:06 +01:00
|
|
|
m_queue.push_back(queued_packet());
|
|
|
|
queued_packet& qp = m_queue.back();
|
|
|
|
qp.ep = ep;
|
2011-01-24 04:24:28 +01:00
|
|
|
qp.flags = flags;
|
2008-11-08 18:40:06 +01:00
|
|
|
qp.buf.insert(qp.buf.begin(), p, p + len);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_quota -= len;
|
2011-01-24 04:24:28 +01:00
|
|
|
udp_socket::send(ep, p, len, ec, flags);
|
2008-11-08 18:40:06 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rate_limited_udp_socket::on_tick(error_code const& e)
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("rate_limited_udp_socket::on_tick");
|
|
|
|
#endif
|
2008-11-08 18:40:06 +01:00
|
|
|
if (e) return;
|
2008-12-28 02:50:55 +01:00
|
|
|
if (is_closed()) return;
|
2008-11-08 18:40:06 +01:00
|
|
|
error_code ec;
|
2010-07-03 04:57:21 +02:00
|
|
|
ptime now = time_now_hires();
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("rate_limited_udp_socket::on_tick");
|
|
|
|
#endif
|
2008-11-08 18:40:06 +01:00
|
|
|
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;
|
2009-11-01 04:18:00 +01:00
|
|
|
if (m_quota < m_rate_limit) m_quota += m_rate_limit * total_milliseconds(delta) / 1000;
|
2008-11-08 18:40:06 +01:00
|
|
|
|
|
|
|
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)
|
2008-11-08 18:40:06 +01:00
|
|
|
{
|
|
|
|
queued_packet const& p = m_queue.front();
|
2011-02-21 06:24:41 +01:00
|
|
|
TORRENT_ASSERT(m_quota >= int(p.buf.size()));
|
2008-11-08 18:40:06 +01:00
|
|
|
m_quota -= p.buf.size();
|
|
|
|
error_code ec;
|
2011-01-24 04:24:28 +01:00
|
|
|
udp_socket::send(p.ep, &p.buf[0], p.buf.size(), ec, p.flags);
|
2008-11-08 18:40:06 +01:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|