2007-12-09 05:15:24 +01:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2007-2018, Arvid Norberg
|
2007-12-09 05:15:24 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_UDP_SOCKET_HPP_INCLUDED
|
|
|
|
#define TORRENT_UDP_SOCKET_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "libtorrent/socket.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/io_service.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2016-12-05 20:49:45 +01:00
|
|
|
#include "libtorrent/aux_/proxy_settings.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/debug.hpp"
|
2016-07-22 18:31:42 +02:00
|
|
|
#include "libtorrent/span.hpp"
|
2017-07-26 19:38:40 +02:00
|
|
|
#include "libtorrent/flags.hpp"
|
2020-01-06 10:11:21 +01:00
|
|
|
#include "libtorrent/aux_/listen_socket_handle.hpp"
|
2016-12-05 20:49:45 +01:00
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <memory>
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2019-12-22 00:48:05 +01:00
|
|
|
class alert_manager;
|
2016-04-24 21:26:28 +02:00
|
|
|
struct socks5;
|
2012-06-22 06:21:20 +02:00
|
|
|
|
2018-03-22 23:28:55 +01:00
|
|
|
using udp_send_flags_t = flags::bitfield_flag<std::uint8_t, struct udp_send_flags_tag>;
|
2017-07-26 19:38:40 +02:00
|
|
|
|
2016-01-19 07:19:16 +01:00
|
|
|
class TORRENT_EXTRA_EXPORT udp_socket : single_threaded
|
2007-12-09 05:15:24 +01:00
|
|
|
{
|
|
|
|
public:
|
2020-01-06 10:11:21 +01:00
|
|
|
explicit udp_socket(io_service& ios, aux::listen_socket_handle ls);
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2017-07-30 18:13:22 +02:00
|
|
|
static constexpr udp_send_flags_t peer_connection = 0_bit;
|
|
|
|
static constexpr udp_send_flags_t tracker_connection = 1_bit;
|
|
|
|
static constexpr udp_send_flags_t dont_queue = 2_bit;
|
|
|
|
static constexpr udp_send_flags_t dont_fragment = 3_bit;
|
2011-01-24 04:24:28 +01:00
|
|
|
|
2016-02-22 02:00:55 +01:00
|
|
|
bool is_open() const { return m_abort == false; }
|
2019-04-19 20:56:19 +02:00
|
|
|
io_service& get_io_service() { return lt::get_io_service(m_socket); }
|
2016-04-24 21:26:28 +02:00
|
|
|
|
|
|
|
template <typename Handler>
|
2018-11-12 00:14:06 +01:00
|
|
|
void async_read(Handler&& h)
|
2016-04-24 21:26:28 +02:00
|
|
|
{
|
2018-11-12 00:14:06 +01:00
|
|
|
m_socket.async_receive(null_buffers(), std::forward<Handler>(h));
|
2016-04-24 21:26:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Handler>
|
2018-11-12 00:14:06 +01:00
|
|
|
void async_write(Handler&& h)
|
2016-04-24 21:26:28 +02:00
|
|
|
{
|
2018-11-12 00:14:06 +01:00
|
|
|
m_socket.async_send(null_buffers(), std::forward<Handler>(h));
|
2016-04-24 21:26:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct packet
|
|
|
|
{
|
2016-07-22 18:31:42 +02:00
|
|
|
span<char> data;
|
2016-04-24 21:26:28 +02:00
|
|
|
udp::endpoint from;
|
|
|
|
error_code error;
|
|
|
|
};
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2016-07-22 18:31:42 +02:00
|
|
|
int read(span<packet> pkts, error_code& ec);
|
2012-06-22 06:21:20 +02:00
|
|
|
|
2010-08-03 11:08:37 +02:00
|
|
|
// this is only valid when using a socks5 proxy
|
2016-07-22 18:31:42 +02:00
|
|
|
void send_hostname(char const* hostname, int port, span<char const> p
|
2017-07-26 19:38:40 +02:00
|
|
|
, error_code& ec, udp_send_flags_t flags = {});
|
2010-08-03 11:08:37 +02:00
|
|
|
|
2016-07-22 18:31:42 +02:00
|
|
|
void send(udp::endpoint const& ep, span<char const> p
|
2017-07-26 19:38:40 +02:00
|
|
|
, error_code& ec, udp_send_flags_t flags = {});
|
2016-12-10 20:31:09 +01:00
|
|
|
void open(udp const& protocol, error_code& ec);
|
2008-05-03 18:05:42 +02:00
|
|
|
void bind(udp::endpoint const& ep, error_code& ec);
|
2007-12-09 05:15:24 +01:00
|
|
|
void close();
|
|
|
|
int local_port() const { return m_bind_port; }
|
|
|
|
|
2019-12-22 00:48:05 +01:00
|
|
|
void set_proxy_settings(aux::proxy_settings const& ps, alert_manager& alerts);
|
2015-08-25 04:18:10 +02:00
|
|
|
aux::proxy_settings const& get_proxy_settings() { return m_proxy_settings; }
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2008-12-28 02:50:55 +01:00
|
|
|
bool is_closed() const { return m_abort; }
|
2016-04-24 21:26:28 +02:00
|
|
|
udp::endpoint local_endpoint(error_code& ec) const
|
|
|
|
{ return m_socket.local_endpoint(ec); }
|
2016-09-16 14:21:07 +02:00
|
|
|
// best effort, if you want to know the error, use
|
|
|
|
// ``local_endpoint(error_code& ec)``
|
|
|
|
udp::endpoint local_endpoint() const
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
return local_endpoint(ec);
|
|
|
|
}
|
2010-11-29 02:33:05 +01:00
|
|
|
|
2018-03-22 17:01:38 +01:00
|
|
|
using receive_buffer_size = udp::socket::receive_buffer_size;
|
|
|
|
using send_buffer_size = udp::socket::send_buffer_size;
|
2015-07-12 05:01:27 +02:00
|
|
|
|
2013-09-03 10:39:30 +02:00
|
|
|
template <class SocketOption>
|
|
|
|
void get_option(SocketOption const& opt, error_code& ec)
|
|
|
|
{
|
2016-04-24 21:26:28 +02:00
|
|
|
m_socket.get_option(opt, ec);
|
2013-09-03 10:39:30 +02:00
|
|
|
}
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
template <class SocketOption>
|
|
|
|
void set_option(SocketOption const& opt, error_code& ec)
|
|
|
|
{
|
2016-04-24 21:26:28 +02:00
|
|
|
m_socket.set_option(opt, ec);
|
2010-11-29 02:33:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class SocketOption>
|
|
|
|
void get_option(SocketOption& opt, error_code& ec)
|
|
|
|
{
|
2016-04-24 21:26:28 +02:00
|
|
|
m_socket.get_option(opt, ec);
|
2010-11-29 02:33:05 +01:00
|
|
|
}
|
|
|
|
|
2020-04-04 13:52:32 +02:00
|
|
|
bool active_socks5() const;
|
|
|
|
|
2016-02-22 02:00:55 +01:00
|
|
|
private:
|
2010-02-18 05:37:02 +01:00
|
|
|
|
2015-04-01 00:27:32 +02:00
|
|
|
// non-copyable
|
|
|
|
udp_socket(udp_socket const&);
|
|
|
|
udp_socket& operator=(udp_socket const&);
|
|
|
|
|
2017-07-26 19:38:40 +02:00
|
|
|
void wrap(udp::endpoint const& ep, span<char const> p, error_code& ec, udp_send_flags_t flags);
|
|
|
|
void wrap(char const* hostname, int port, span<char const> p, error_code& ec, udp_send_flags_t flags);
|
2016-07-22 18:31:42 +02:00
|
|
|
bool unwrap(udp::endpoint& from, span<char>& buf);
|
2015-11-25 22:36:06 +01:00
|
|
|
|
2016-04-24 21:26:28 +02:00
|
|
|
udp::socket m_socket;
|
2015-11-25 22:36:06 +01:00
|
|
|
|
2016-04-30 19:52:06 +02:00
|
|
|
using receive_buffer = std::array<char, 1500>;
|
|
|
|
std::unique_ptr<receive_buffer> m_buf;
|
2020-01-06 10:11:21 +01:00
|
|
|
aux::listen_socket_handle m_listen_socket;
|
2009-04-04 18:59:53 +02:00
|
|
|
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint16_t m_bind_port;
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2015-08-25 04:18:10 +02:00
|
|
|
aux::proxy_settings m_proxy_settings;
|
2016-04-24 21:26:28 +02:00
|
|
|
|
2016-08-29 14:31:23 +02:00
|
|
|
std::shared_ptr<socks5> m_socks5_connection;
|
2016-04-24 21:26:28 +02:00
|
|
|
|
|
|
|
bool m_abort:1;
|
2012-07-01 20:44:46 +02:00
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2009-04-13 19:52:45 +02:00
|
|
|
bool m_started;
|
2008-09-23 01:43:21 +02:00
|
|
|
int m_magic;
|
|
|
|
#endif
|
2007-12-09 05:15:24 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|