Files

428 lines
12 KiB
C++

/*
Copyright (c) 2015-2017, 2019-2022, Arvid Norberg
Copyright (c) 2015, Steven Siloti
Copyright (c) 2016, 2021, Alden Torres
All rights reserved.
You may use, distribute and modify this code under the terms of the BSD license,
see LICENSE file.
*/
#include "libtorrent/session.hpp"
#include "libtorrent/io_context.hpp"
#include "libtorrent/aux_/deadline_timer.hpp"
#include "libtorrent/address.hpp"
#include "libtorrent/add_torrent_params.hpp"
#include "libtorrent/time.hpp"
#include "libtorrent/settings_pack.hpp"
#include "libtorrent/ip_filter.hpp"
#include "libtorrent/alert_types.hpp"
#include "libtorrent/aux_/path.hpp"
#include "libtorrent/aux_/random.hpp"
#include "disk_io.hpp"
#include <fstream>
#include "settings.hpp"
#include "setup_swarm.hpp"
#include "setup_transfer.hpp" // for create_torrent, addr
#include "utils.hpp"
#include "simulator/queue.hpp"
using namespace sim;
#define DEBUG_SWARM 0
#if DEBUG_SWARM
#include <cstdio>
#include "libtorrent/aux_/file_pointer.hpp"
#endif
constexpr swarm_test_t swarm_test::download;
constexpr swarm_test_t swarm_test::upload;
constexpr swarm_test_t swarm_test::no_auto_stop;
constexpr swarm_test_t swarm_test::large_torrent;
constexpr swarm_test_t swarm_test::real_disk;
namespace {
int transfer_rate(lt::address ip)
{
// in order to get a heterogeneous network, the last digit in the IP
// address determines the latency to that node as well as upload and
// download rates.
int last_digit;
if (ip.is_v4())
last_digit = ip.to_v4().to_bytes()[3];
else
last_digit = ip.to_v6().to_bytes()[15];
return (last_digit + 4) * 5;
}
} // anonymous namespace
using duration = sim::chrono::high_resolution_clock::duration;
using sim::chrono::milliseconds;
dsl_config::dsl_config(int kb_per_second, int send_queue_size, chrono::milliseconds latency)
: m_rate(kb_per_second)
, m_queue_size(send_queue_size)
, m_latency(latency)
{
if (m_latency == lt::milliseconds(0))
m_latency = lt::milliseconds(kb_per_second / 2);
}
sim::route dsl_config::incoming_route(asio::ip::address ip)
{
int const rate = m_rate > 0 ? m_rate : transfer_rate(ip);
int const queue_size = m_queue_size > 0 ? m_queue_size : 200000;
auto it = m_incoming.find(ip);
if (it != m_incoming.end()) return sim::route().append(it->second);
it = m_incoming.insert(it, std::make_pair(ip, std::make_shared<queue>(
m_sim->get_io_context()
, rate * 1000
, lt::duration_cast<duration>(m_latency)
, queue_size, "DSL modem in")));
return sim::route().append(it->second);
}
sim::route dsl_config::outgoing_route(asio::ip::address ip)
{
int const rate = m_rate > 0 ? m_rate : transfer_rate(ip);
int const queue_size = m_queue_size > 0 ? m_queue_size : 200000;
auto it = m_outgoing.find(ip);
if (it != m_outgoing.end()) return sim::route().append(it->second);
it = m_outgoing.insert(it, std::make_pair(ip, std::make_shared<queue>(
m_sim->get_io_context(), rate * 1000
, lt::duration_cast<duration>(m_latency)
, queue_size, "DSL modem out")));
return sim::route().append(it->second);
}
namespace {
bool should_print(lt::alert* a)
{
using namespace lt;
#ifndef TORRENT_DISABLE_LOGGING
if (auto pla = alert_cast<peer_log_alert>(a))
{
if (pla->direction != peer_log_alert::incoming_message
&& pla->direction != peer_log_alert::outgoing_message)
return false;
}
#endif
if (alert_cast<session_stats_alert>(a)
|| alert_cast<piece_finished_alert>(a)
|| alert_cast<block_finished_alert>(a)
|| alert_cast<block_downloading_alert>(a))
{
return false;
}
return true;
}
}
void setup_swarm(int num_nodes
, swarm_test_t type
, std::function<void(lt::settings_pack&)> new_session
, std::function<void(lt::add_torrent_params&)> add_torrent
, std::function<void(lt::alert const*, lt::session&)> on_alert
, std::function<bool(int, lt::session&)> terminate)
{
dsl_config network_cfg;
sim::simulation sim{network_cfg};
setup_swarm(num_nodes, type, sim, new_session
, add_torrent, on_alert, terminate);
}
void setup_swarm(int num_nodes
, swarm_test_t type
, sim::simulation& sim
, std::function<void(lt::settings_pack&)> new_session
, std::function<void(lt::add_torrent_params&)> add_torrent
, std::function<void(lt::alert const*, lt::session&)> on_alert
, std::function<bool(int, lt::session&)> terminate)
{
lt::settings_pack pack = settings();
lt::add_torrent_params p;
p.flags &= ~lt::torrent_flags::paused;
p.flags &= ~lt::torrent_flags::auto_managed;
setup_swarm(num_nodes, type, sim, pack, p, new_session
, add_torrent, on_alert, terminate);
}
void setup_swarm(int num_nodes
, swarm_test_t type
, sim::simulation& sim
, lt::settings_pack const& default_settings
, lt::add_torrent_params const& default_add_torrent
, std::function<void(lt::settings_pack&)> new_session
, std::function<void(lt::add_torrent_params&)> add_torrent
, std::function<void(lt::alert const*, lt::session&)> on_alert
, std::function<bool(int, lt::session&)> terminate)
{
setup_swarm(num_nodes, type, sim
, default_settings
, default_add_torrent
, [](lt::session&) {}
, new_session
, add_torrent
, on_alert
, terminate);
}
void setup_swarm(int num_nodes
, swarm_test_t const type
, sim::simulation& sim
, lt::settings_pack const& default_settings
, lt::add_torrent_params const& default_add_torrent
, std::function<void(lt::session&)> init_session
, std::function<void(lt::settings_pack&)> new_session
, std::function<void(lt::add_torrent_params&)> add_torrent
, std::function<void(lt::alert const*, lt::session&)> on_alert
, std::function<bool(int, lt::session&)> terminate)
{
asio::io_context ios(sim);
lt::time_point start_time(lt::clock_type::now());
std::vector<std::shared_ptr<lt::session>> nodes;
std::vector<std::shared_ptr<sim::asio::io_context>> io_context;
std::vector<lt::session_proxy> zombies;
lt::aux::deadline_timer timer(ios);
lt::error_code ec;
int const swarm_id = unit_test::test_counter();
std::string path = save_path(swarm_id, 0);
lt::add_torrent_params atp;
if (type & swarm_test::real_disk)
{
lt::create_directory(path, ec);
if (ec) std::printf("failed to create directory: \"%s\": %s\n"
, path.c_str(), ec.message().c_str());
std::ofstream file(lt::combine_path(path, "temporary").c_str());
atp = ::create_torrent(&file, "temporary", 0x4000, (type & swarm_test::large_torrent) ? 50 : 9, false);
}
else
{
atp = ::create_test_torrent(0x4000, (type & swarm_test::large_torrent) ? 50 : 9, {});
}
if (bool(type & swarm_test::download) && bool(type & swarm_test::upload))
{
TEST_ERROR("can only use one of upload or download test type");
}
// session 0 is the one we're testing. The others provide the scaffolding
// it's either a downloader or a seed
for (int i = 0; i < num_nodes; ++i)
{
// create a new io_context
std::vector<asio::ip::address> ips;
char ep[30];
std::snprintf(ep, sizeof(ep), "50.0.%d.%d", (i + 1) >> 8, (i + 1) & 0xff);
ips.push_back(addr(ep));
std::snprintf(ep, sizeof(ep), "2000::%X%X", (i + 1) >> 8, (i + 1) & 0xff);
ips.push_back(addr(ep));
io_context.push_back(std::make_shared<sim::asio::io_context>(sim, ips));
lt::session_params params;
params.settings = default_settings;
// make sure the sessions have different peer ids
lt::peer_id pid;
lt::aux::random_bytes(pid);
params.settings.set_str(lt::settings_pack::peer_fingerprint, pid.to_string());
if (!(type & swarm_test::real_disk))
{
if (type & swarm_test::download)
{
// in download tests, session 0 is a downloader and every other session
// is a seed. save path 0 is where the files are, so that's for seeds
params.disk_io_constructor = test_disk().set_seed(i > 0);
}
else
{
// in seed tests, session 0 is a seed and every other session
// a downloader. save path 0 is where the files are, so that's for seeds
params.disk_io_constructor = test_disk().set_seed(i == 0);
}
}
if (i == 0) new_session(params.settings);
std::shared_ptr<lt::session> ses =
std::make_shared<lt::session>(params, *io_context.back());
init_session(*ses);
nodes.push_back(ses);
if (i > 0)
{
// the other sessions should not talk to each other
lt::ip_filter filter;
filter.add_rule(addr("0.0.0.0"), addr("255.255.255.255"), lt::ip_filter::blocked);
filter.add_rule(addr("50.0.0.1"), addr("50.0.0.1"), 0);
ses->set_ip_filter(filter);
}
lt::add_torrent_params p = default_add_torrent;
if (type & swarm_test::real_disk)
{
if (type & swarm_test::download)
{
// in download tests, session 0 is a downloader and every other session
// is a seed. save path 0 is where the files are, so that's for seeds
p.save_path = save_path(swarm_id, i > 0 ? 0 : 1);
}
else
{
// in seed tests, session 0 is a seed and every other session
// a downloader. save path 0 is where the files are, so that's for seeds
p.save_path = save_path(swarm_id, i);
}
}
else
{
p.save_path = ".";
}
p.ti = atp.ti;
p.merkle_trees = atp.merkle_trees;
p.merkle_tree_mask = atp.merkle_tree_mask;
p.verified_leaf_hashes = atp.verified_leaf_hashes;
if (i == 0) add_torrent(p);
ses->async_add_torrent(p);
ses->set_alert_notify([&, i]() {
// this function is called inside libtorrent and we cannot perform work
// immediately in it. We have to notify the outside to pull all the alerts
post(*io_context[i], [&,i]()
{
lt::session* ses = nodes[i].get();
// when shutting down, we may have destructed the session
if (ses == nullptr) return;
std::vector<lt::alert*> alerts;
ses->pop_alerts(&alerts);
// to debug the sessions not under test, comment out the following
// line
#if DEBUG_SWARM == 0
if (i != 0) return;
#else
char path[200];
lt::error_code ignore;
lt::create_directory("logs", ignore);
std::snprintf(path, sizeof(path), "logs/node-%d.log", i);
lt::aux::file_pointer log_output(::fopen(path, "a"));
#endif
for (lt::alert* a : alerts)
{
// only print alerts from the session under test
lt::time_duration d = a->timestamp() - start_time;
std::uint32_t const millis = std::uint32_t(
lt::duration_cast<lt::milliseconds>(d).count());
#if DEBUG_SWARM != 0
std::fprintf(log_output.file(),
"%4u.%03u: %-25s %s\n"
, millis / 1000, millis % 1000
, a->what()
, a->message().c_str());
// the behavior of the test itself should not be affected by
// whether we're printing logs for all nodes
if (i != 0) continue;
#endif
// when debugging, we print *all* alerts to the log
if (should_print(a))
{
std::printf(
"%4u.%03u: %-25s %s\n"
, millis / 1000, millis % 1000
, a->what()
, a->message().c_str());
}
// if a torrent was added save the torrent handle
if (lt::add_torrent_alert* at = lt::alert_cast<lt::add_torrent_alert>(a))
{
lt::torrent_handle h = at->handle;
// now, connect this torrent to all the others in the swarm
// start at 1 to avoid self-connects
for (int k = 1; k < num_nodes; ++k)
{
// TODO: the pattern of creating an address from a format
// string and an integer is common. It should probably be
// factored out into its own function
char ep[30];
std::snprintf(ep, sizeof(ep), "50.0.%d.%d", (k + 1) >> 8, (k + 1) & 0xff);
h.connect_peer(lt::tcp::endpoint(addr(ep), 6881));
}
}
on_alert(a, *ses);
}
});
});
}
int tick = 0;
std::function<void(lt::error_code const&)> on_tick
= [&](lt::error_code const& ec)
{
if (ec) return;
bool shut_down = terminate(tick, *nodes[0]);
if ((type & swarm_test::upload) && !bool(type & swarm_test::no_auto_stop))
{
shut_down |= std::all_of(nodes.begin() + 1, nodes.end()
, [](std::shared_ptr<lt::session> const& s)
{ return is_seed(*s); }) && num_nodes > 1;
if (tick > 88 * (num_nodes - 1) && !shut_down && num_nodes > 1)
{
TEST_ERROR("seeding failed!");
shut_down = true;
}
}
if (shut_down)
{
std::printf("TERMINATING\n");
// terminate simulation
for (int i = 0; i < int(nodes.size()); ++i)
{
zombies.push_back(nodes[i]->abort());
nodes[i].reset();
}
return;
}
++tick;
timer.expires_after(lt::seconds(1));
timer.async_wait(on_tick);
};
timer.expires_after(lt::seconds(1));
timer.async_wait(on_tick);
sim.run();
}