Files
libtorrent/simulation/test_dht_rate_limit.cpp
2022-06-23 08:07:28 +02:00

251 lines
8.1 KiB
C++

/*
Copyright (c) 2016-2017, 2020, Alden Torres
Copyright (c) 2016-2019, 2021-2022, Arvid Norberg
Copyright (c) 2016-2017, 2019, Steven Siloti
All rights reserved.
You may use, distribute and modify this code under the terms of the BSD license,
see LICENSE file.
*/
#include "test.hpp"
#include "simulator/simulator.hpp"
#include "libtorrent/aux_/listen_socket_handle.hpp"
#include "libtorrent/aux_/session_impl.hpp"
#include "libtorrent/aux_/udp_socket.hpp"
#include "libtorrent/kademlia/dht_tracker.hpp"
#include "libtorrent/kademlia/dht_state.hpp"
#include "libtorrent/performance_counters.hpp"
#include "libtorrent/entry.hpp"
#include "libtorrent/span.hpp"
#include "libtorrent/kademlia/dht_observer.hpp"
#include <functional>
#include <cstdarg>
#include <cmath>
using namespace lt;
using namespace sim;
using namespace std::placeholders;
#if !defined TORRENT_DISABLE_DHT
struct obs : dht::dht_observer
{
void set_external_address(lt::aux::listen_socket_handle const&, address const& /* addr */
, address const& /* source */) override
{}
int get_listen_port(lt::aux::transport, lt::aux::listen_socket_handle const& s) const override
{ return s.get()->udp_external_port(); }
void get_peers(sha1_hash const&) override {}
void outgoing_get_peers(sha1_hash const& /* target */
, sha1_hash const& /* sent_target */, udp::endpoint const& /* ep */) override {}
void announce(sha1_hash const& /* ih */
, address const& /* addr */, int /* port */) override {}
bool on_dht_request(string_view /* query */
, dht::msg const& /* request */, entry& /* response */) override
{ return false; }
#ifndef TORRENT_DISABLE_LOGGING
bool should_log(module_t) const override { return true; }
void log(dht_logger::module_t, char const* fmt, ...) override
{
va_list v;
va_start(v, fmt);
vprintf(fmt, v);
va_end(v);
puts("\n");
}
void log_packet(message_direction_t /* dir */
, span<char const> /* pkt */
, udp::endpoint const& /* node */) override {}
#endif
};
void send_packet(lt::aux::udp_socket& sock, lt::aux::listen_socket_handle const&, udp::endpoint const& ep
, span<char const> p, error_code& ec, lt::aux::udp_send_flags_t const flags)
{
sock.send(ep, p, ec, flags);
}
#endif // #if !defined TORRENT_DISABLE_DHT
TORRENT_TEST(dht_rate_limit)
{
#if !defined TORRENT_DISABLE_DHT
default_config cfg;
simulation sim(cfg);
asio::io_context dht_ios(sim, make_address_v4("40.30.20.10"));
// receiver (the DHT under test)
lt::aux::udp_socket sock(dht_ios, lt::aux::listen_socket_handle{});
obs o;
auto ls = std::make_shared<lt::aux::listen_socket_t>();
ls->external_address.cast_vote(make_address_v4("40.30.20.10")
, lt::aux::session_interface::source_dht, lt::address());
ls->local_endpoint = tcp::endpoint(make_address_v4("40.30.20.10"), 8888);
error_code ec;
sock.bind(udp::endpoint(make_address_v4("40.30.20.10"), 8888), ec);
lt::aux::session_settings sett;
sett.set_int(settings_pack::dht_block_ratelimit, 100000); // disable the DOS blocker
sett.set_bool(settings_pack::dht_ignore_dark_internet, false);
sett.set_int(settings_pack::dht_upload_rate_limit, 400);
float const target_upload_rate = 400;
int const num_packets = 2000;
counters cnt;
dht::dht_state state;
std::unique_ptr<lt::dht::dht_storage_interface> dht_storage(dht::dht_default_storage_constructor(sett));
auto dht = std::make_shared<lt::dht::dht_tracker>(
&o, dht_ios, std::bind(&send_packet, std::ref(sock), _1, _2, _3, _4, _5)
, sett, cnt, *dht_storage, std::move(state));
dht->new_socket(ls);
bool stop = false;
std::function<void(error_code const&)> on_read
= [&](error_code const& ec)
{
if (ec) return;
lt::aux::udp_socket::packet p;
error_code err;
int const num = int(sock.read(lt::span<lt::aux::udp_socket::packet>(&p, 1), err));
if (num) dht->incoming_packet(ls, p.from, p.data);
if (stop || err) return;
sock.async_read(on_read);
};
sock.async_read(on_read);
// sender
int num_packets_sent = 0;
asio::io_context sender_ios(sim, make_address_v4("10.20.30.40"));
udp::socket sender_sock(sender_ios);
sender_sock.open(udp::v4());
sender_sock.bind(udp::endpoint(address_v4(), 4444));
sender_sock.non_blocking(true);
asio::high_resolution_timer timer(sender_ios);
std::function<void(error_code const&)> sender_tick = [&](error_code const&)
{
if (num_packets_sent == num_packets)
{
// we're done. shut down (a second from now, to let the dust settle)
timer.expires_after(chrono::seconds(1));
timer.async_wait([&](error_code const&)
{
dht->stop();
stop = true;
sender_sock.close();
sock.close();
});
return;
}
char const packet[] = "d1:ad2:id20:ababababababababababe1:y1:q1:q4:pinge";
sender_sock.send_to(asio::buffer(packet, sizeof(packet)-1)
, udp::endpoint(make_address_v4("40.30.20.10"), 8888));
++num_packets_sent;
timer.expires_after(chrono::milliseconds(10));
timer.async_wait(sender_tick);
};
timer.expires_after(chrono::milliseconds(10));
timer.async_wait(sender_tick);
udp::endpoint from;
int num_bytes_received = 0;
int num_packets_received = 0;
char buffer[1500];
std::function<void(error_code const&, std::size_t)> on_receive
= [&](error_code const& ec, std::size_t const bytes)
{
if (ec) return;
num_bytes_received += int(bytes);
++num_packets_received;
sender_sock.async_receive_from(asio::buffer(buffer, sizeof(buffer))
, from, on_receive);
};
sender_sock.async_receive_from(asio::buffer(buffer, sizeof(buffer))
, from, on_receive);
// run simulation
lt::clock_type::time_point start = lt::clock_type::now();
sim.run();
lt::clock_type::time_point end = lt::clock_type::now();
// subtract one target_upload_rate here, since we initialize the quota to one
// full second worth of bandwidth
float const average_upload_rate = (num_bytes_received - target_upload_rate)
/ (duration_cast<chrono::milliseconds>(end - start).count() * 0.001f);
std::printf("send %d packets. received %d packets (%d bytes). average rate: %f (target: %f)\n"
, num_packets_sent, num_packets_received, num_bytes_received
, average_upload_rate, target_upload_rate);
// the actual upload rate should be within 5% of the target
TEST_CHECK(std::abs(average_upload_rate - target_upload_rate) < target_upload_rate * 0.05);
TEST_EQUAL(cnt[counters::dht_messages_in], num_packets);
// the number of dropped packets + the number of received pings, should equal
// exactly the number of packets we sent
TEST_EQUAL(cnt[counters::dht_messages_in_dropped]
+ cnt[counters::dht_ping_in], num_packets);
#endif // #if !defined TORRENT_DISABLE_DHT
}
// TODO: put test here to take advantage of existing code, refactor
TORRENT_TEST(dht_delete_socket)
{
#ifndef TORRENT_DISABLE_DHT
sim::default_config cfg;
sim::simulation sim(cfg);
sim::asio::io_context dht_ios(sim, lt::make_address_v4("40.30.20.10"));
lt::aux::udp_socket sock(dht_ios, lt::aux::listen_socket_handle{});
error_code ec;
sock.bind(udp::endpoint(make_address_v4("40.30.20.10"), 8888), ec);
obs o;
auto ls = std::make_shared<lt::aux::listen_socket_t>();
ls->external_address.cast_vote(make_address_v4("40.30.20.10")
, lt::aux::session_interface::source_dht, lt::address());
ls->local_endpoint = tcp::endpoint(make_address_v4("40.30.20.10"), 8888);
lt::aux::session_settings sett;
counters cnt;
dht::dht_state state;
std::unique_ptr<lt::dht::dht_storage_interface> dht_storage(dht::dht_default_storage_constructor(sett));
auto dht = std::make_shared<lt::dht::dht_tracker>(
&o, dht_ios, std::bind(&send_packet, std::ref(sock), _1, _2, _3, _4, _5)
, sett, cnt, *dht_storage, std::move(state));
dht->start([](std::vector<std::pair<dht::node_entry, std::string>> const&){});
dht->new_socket(ls);
// schedule the removal of the socket at exactly 2 second,
// this simulates the fact that the internal scheduled call
// to connection_timeout will be executed right after leaving
// the state of cancellable
asio::high_resolution_timer t1(dht_ios);
t1.expires_after(chrono::seconds(2));
t1.async_wait([&](error_code const&)
{
dht->delete_socket(ls);
});
// stop the DHT
asio::high_resolution_timer t2(dht_ios);
t2.expires_after(chrono::seconds(3));
t2.async_wait([&](error_code const&) { dht->stop(); });
sim.run();
#endif // TORRENT_DISABLE_DHT
}