Files
libtorrent/test/test_transfer.cpp
T
2026-06-13 11:33:29 +02:00

482 lines
13 KiB
C++

/*
Copyright (c) 2008-2010, 2012-2022, Arvid Norberg
Copyright (c) 2016, 2018, 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/session_settings.hpp"
#include "libtorrent/session_params.hpp"
#include "libtorrent/alert_types.hpp"
#include "libtorrent/time.hpp"
#include "libtorrent/aux_/path.hpp"
#include "libtorrent/torrent_info.hpp"
#include "test.hpp"
#include "disk_io_test.hpp"
#include "setup_transfer.hpp"
#include "settings.hpp" // for settings()
#include "test_utils.hpp"
#include <tuple>
#include <functional>
#include <fstream>
#include <iostream>
using namespace lt;
using std::ignore;
namespace {
int peer_disconnects = 0;
int read_piece_alerts = 0;
bool on_alert(alert const* a)
{
auto const* const pd = alert_cast<peer_disconnected_alert>(a);
if (pd && pd->error != make_error_code(errors::self_connection))
++peer_disconnects;
else if (alert_cast<peer_error_alert>(a))
++peer_disconnects;
else if (auto rp = alert_cast<read_piece_alert>(a))
{
++read_piece_alerts;
TEST_CHECK(!rp->error);
}
return false;
}
struct transfer_tag;
using transfer_flags_t = lt::flags::bitfield_flag<std::uint8_t, transfer_tag>;
constexpr transfer_flags_t disable_v1_hashes = 0_bit;
constexpr transfer_flags_t delete_files = 2_bit;
constexpr transfer_flags_t move_storage = 3_bit;
constexpr transfer_flags_t piece_deadline = 4_bit;
constexpr transfer_flags_t large_piece_size = 5_bit;
// bad_v1_hashes: create a hybrid torrent with wrong v1 SHA1 hashes but correct
// v2 SHA256 hashes.
constexpr transfer_flags_t bad_v1_hashes = 6_bit;
// expect_inconsistent_error: expect a torrent_error_alert with
// torrent_inconsistent_hashes instead of the torrent completing as a seed.
constexpr transfer_flags_t expect_inconsistent_error = 7_bit;
void test_transfer(int const proxy_type, settings_pack const& sett
, transfer_flags_t flags = {}
, storage_mode_t const storage_mode = storage_mode_sparse
, disk_io_constructor_type disk_io = default_disk_io_constructor)
{
char const* test_name[] = {"no", "SOCKS4", "SOCKS5", "SOCKS5 password", "HTTP", "HTTP password"};
std::printf("::group::%s-%s\n", test_name[proxy_type], (flags & move_storage) ? "move" : "nomove");
std::printf("\n\n ==== TESTING %s proxy ==== move-storage: %s\n\n\n"
, test_name[proxy_type]
, (flags & move_storage) ? "true": "false"
);
// in case the previous run was terminated
error_code ec;
remove_all("tmp1_transfer", ec);
remove_all("tmp2_transfer", ec);
remove_all("tmp1_transfer_moved", ec);
remove_all("tmp2_transfer_moved", ec);
// these are declared before the session objects
// so that they are destructed last. This enables
// the sessions to destruct in parallel
session_proxy p1;
session_proxy p2;
settings_pack pack = settings();
pack.set_str(settings_pack::listen_interfaces, test_listen_interface());
pack.set_bool(settings_pack::enable_upnp, false);
pack.set_bool(settings_pack::enable_natpmp, false);
pack.set_bool(settings_pack::enable_lsd, false);
pack.set_bool(settings_pack::enable_dht, false);
#if TORRENT_ABI_VERSION == 1
pack.set_bool(settings_pack::rate_limit_utp, true);
#endif
lt::session_params sp(pack);
sp.disk_io_constructor = disk_io;
lt::session ses1(sp);
pack.set_str(settings_pack::listen_interfaces, test_listen_interface());
sp.settings = pack;
lt::session ses2(sp);
int proxy_port = 0;
if (proxy_type)
{
proxy_port = start_proxy(proxy_type);
settings_pack pack_p;
pack_p.set_str(settings_pack::proxy_username, "testuser");
pack_p.set_str(settings_pack::proxy_password, "testpass");
pack_p.set_int(settings_pack::proxy_type, proxy_type);
pack_p.set_int(settings_pack::proxy_port, proxy_port);
// test resetting the proxy in quick succession.
// specifically the udp_socket connecting to a new
// socks5 proxy while having one connection attempt
// in progress.
pack_p.set_str(settings_pack::proxy_hostname, "5.6.7.8");
ses1.apply_settings(pack_p);
pack_p.set_str(settings_pack::proxy_hostname, "127.0.0.1");
ses1.apply_settings(pack_p);
}
pack = sett;
// we need a short reconnect time since we
// finish the torrent and then restart it
// immediately to complete the second half.
// using a reconnect time > 0 will just add
// to the time it will take to complete the test
pack.set_int(settings_pack::min_reconnect_time, 0);
pack.set_int(settings_pack::stop_tracker_timeout, 1);
pack.set_bool(settings_pack::announce_to_all_trackers, true);
pack.set_bool(settings_pack::announce_to_all_tiers, true);
// make sure we announce to both http and udp trackers
pack.set_bool(settings_pack::prefer_udp_trackers, false);
pack.set_bool(settings_pack::enable_outgoing_utp, false);
pack.set_bool(settings_pack::enable_incoming_utp, false);
pack.set_bool(settings_pack::enable_lsd, false);
pack.set_bool(settings_pack::enable_natpmp, false);
pack.set_bool(settings_pack::enable_upnp, false);
pack.set_bool(settings_pack::enable_dht, false);
pack.set_int(settings_pack::out_enc_policy, settings_pack::pe_disabled);
pack.set_int(settings_pack::in_enc_policy, settings_pack::pe_disabled);
pack.set_bool(settings_pack::allow_multiple_connections_per_ip, false);
// TODO: these settings_pack tests belong in their own test
pack.set_int(settings_pack::unchoke_slots_limit, 0);
ses1.apply_settings(pack);
TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == 0);
pack.set_int(settings_pack::unchoke_slots_limit, -1);
ses1.apply_settings(pack);
TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == -1);
pack.set_int(settings_pack::unchoke_slots_limit, 8);
ses1.apply_settings(pack);
TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == 8);
ses2.apply_settings(pack);
torrent_handle tor1;
torrent_handle tor2;
int piece_size = 32 * 1024;
int timeout = 10;
if (flags & large_piece_size)
{
piece_size = 1024 * 1024;
timeout = 90;
}
create_directory("tmp1_transfer", ec);
std::ofstream file("tmp1_transfer/temporary");
add_torrent_params atp = ::create_torrent(&file, "temporary", piece_size, 13, false
, {}, "", bool(flags & bad_v1_hashes));
file.close();
if (flags & disable_v1_hashes)
atp.flags |= torrent_flags::disable_v1_hashes;
// The seeder needs disable_v1_hashes when v1 hashes are corrupted: even in
// seed_mode it can exit and recheck, and without the flag it would get
// torrent_inconsistent_hashes before the downloader can detect the inconsistency.
torrent_flags_t const seeder_extra = (flags & bad_v1_hashes)
? torrent_flags::disable_v1_hashes : torrent_flags_t{};
TEST_CHECK(exists(combine_path("tmp1_transfer", "temporary")));
atp.storage_mode = storage_mode;
atp.flags &= ~torrent_flags::paused;
atp.flags &= ~torrent_flags::auto_managed;
wait_for_listen(ses1, "ses1");
wait_for_listen(ses2, "ses2");
peer_disconnects = 0;
read_piece_alerts = 0;
bool got_inconsistent_error = false;
// test using piece sizes smaller than 16kB
std::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, nullptr
, true, false, true, "_transfer", 1024 * 1024, &atp, false
, true, false, nullptr, {}, seeder_extra);
int num_pieces = tor2.torrent_file()->num_pieces();
std::vector<int> priorities(std::size_t(num_pieces), 1);
if (flags & piece_deadline)
{
int deadline = 1;
for (auto const p : atp.ti->piece_range())
{
++deadline;
tor2.set_piece_deadline(p, deadline, lt::torrent_handle::alert_when_available);
}
}
auto const start_time = lt::clock_type::now();
static char const* state_str[] =
{"checking (q)", "checking", "dl metadata"
, "downloading", "finished", "seeding", "allocating", "checking (r)"};
for (int i = 0; i < 30000; ++i)
{
if (lt::clock_type::now() - start_time > seconds(timeout))
{
std::cout << "timeout\n";
break;
}
// sleep a bit
ses2.wait_for_alert(lt::milliseconds(100));
torrent_status const st1 = tor1.status();
torrent_status const st2 = tor2.status();
print_alerts(ses1, "ses1", true, true, &on_alert);
print_alerts(ses2, "ses2", true, true, [&](alert const* a) {
if (auto const* te = alert_cast<torrent_error_alert>(a))
if (te->error == errors::torrent_inconsistent_hashes)
got_inconsistent_error = true;
return on_alert(a);
});
if (i % 10 == 0)
{
print_ses_rate(start_time, &st1, &st2);
}
std::cout << "st1-progress: " << (st1.progress * 100.f) << "% state: " << state_str[st1.state] << "\n";
std::cout << "st2-progress: " << (st2.progress * 100.f) << "% state: " << state_str[st2.state] << "\n";
if ((flags & move_storage) && st2.progress > 0.1f)
{
flags &= ~move_storage;
tor1.move_storage("tmp1_transfer_moved");
tor2.move_storage("tmp2_transfer_moved");
std::cout << "moving storage" << std::endl;
}
if ((flags & delete_files) && st2.progress > 0.1f)
{
ses1.remove_torrent(tor1, session::delete_files);
std::cout << "deleting files" << std::endl;
std::this_thread::sleep_for(lt::seconds(1));
break;
}
// wait 10 loops before we restart the torrent. This lets
// us catch all events that failed (and would put the torrent
// back into upload mode) before we restart it.
if (st2.is_seeding) break;
if ((flags & expect_inconsistent_error) && got_inconsistent_error) break;
if (!(flags & expect_inconsistent_error))
{
TEST_CHECK(st1.state == torrent_status::seeding
|| st1.state == torrent_status::checking_files
|| st1.state == torrent_status::checking_resume_data);
TEST_CHECK(st2.state == torrent_status::downloading
|| st2.state == torrent_status::checking_resume_data);
}
if (peer_disconnects >= 2) break;
std::this_thread::sleep_for(lt::milliseconds(500));
}
if (flags & piece_deadline)
{
TEST_CHECK(read_piece_alerts > 0);
}
if (flags & expect_inconsistent_error)
{
TEST_CHECK(got_inconsistent_error);
TEST_CHECK(!tor2.status().is_seeding);
}
else if (!(flags & delete_files))
{
TEST_CHECK(tor2.status().is_seeding);
}
// this allows shutting down the sessions in parallel
p1 = ses1.abort();
p2 = ses2.abort();
if (proxy_type) stop_proxy(proxy_port);
std::printf("::endgroup::");
}
void cleanup()
{
error_code ec;
remove_all("tmp1_transfer", ec);
remove_all("tmp2_transfer", ec);
remove_all("tmp1_transfer_moved", ec);
remove_all("tmp2_transfer_moved", ec);
}
} // anonymous namespace
#if TORRENT_ABI_VERSION == 1
TORRENT_TEST(no_contiguous_buffers)
{
using namespace lt;
// test no contiguous_recv_buffers
settings_pack p = settings();
p.set_bool(settings_pack::contiguous_recv_buffer, false);
test_transfer(0, p);
cleanup();
}
#endif
// test with all kinds of proxies
TORRENT_TEST(socks5_pw)
{
using namespace lt;
test_transfer(settings_pack::socks5_pw, settings_pack());
cleanup();
}
TORRENT_TEST(http)
{
using namespace lt;
test_transfer(settings_pack::http, settings_pack());
cleanup();
}
TORRENT_TEST(http_pw)
{
using namespace lt;
test_transfer(settings_pack::http_pw, settings_pack());
cleanup();
}
/*
TORRENT_TEST(i2p)
{
using namespace lt;
test_transfer(settings_pack::i2p_proxy, settings_pack());
cleanup();
}
*/
TORRENT_TEST_DISK_IO(move_storage)
{
using namespace lt;
test_transfer(0, settings_pack(), move_storage, storage_mode_sparse, disk_io);
cleanup();
}
TORRENT_TEST(piece_deadline)
{
using namespace lt;
test_transfer(0, settings_pack(), piece_deadline);
cleanup();
}
TORRENT_TEST_DISK_IO(delete_files)
{
using namespace lt;
settings_pack p = settings_pack();
p.set_int(settings_pack::aio_threads, 10);
test_transfer(0, p, delete_files, storage_mode_sparse, disk_io);
cleanup();
}
TORRENT_TEST(allow_fast)
{
using namespace lt;
// test allowed fast
settings_pack p = settings();
p.set_int(settings_pack::allowed_fast_set_size, 2000);
test_transfer(0, p);
cleanup();
}
TORRENT_TEST_DISK_IO(large_pieces)
{
using namespace lt;
std::printf("large pieces\n");
test_transfer(0, settings_pack(), large_piece_size, storage_mode_sparse, disk_io);
cleanup();
}
TORRENT_TEST_DISK_IO(allocate)
{
using namespace lt;
// test storage_mode_allocate
std::printf("full allocation mode\n");
test_transfer(0, settings_pack(), {}, storage_mode_allocate, disk_io);
cleanup();
}
TORRENT_TEST(suggest)
{
using namespace lt;
settings_pack p = settings();
p.set_int(settings_pack::suggest_mode, settings_pack::suggest_read_cache);
test_transfer(0, p);
cleanup();
}
TORRENT_TEST_DISK_IO(disable_os_cache)
{
using namespace lt;
settings_pack p = settings();
p.set_int(settings_pack::disk_io_write_mode, settings_pack::disable_os_cache);
test_transfer(0, p, {}, storage_mode_allocate, disk_io);
cleanup();
}
TORRENT_TEST_DISK_IO(write_through)
{
using namespace lt;
settings_pack p = settings();
p.set_int(settings_pack::disk_io_write_mode, settings_pack::write_through);
test_transfer(0, p, {}, storage_mode_allocate, disk_io);
cleanup();
}
// bad v1 hashes + disable_v1_hashes -> transfer completes (v1 validation is skipped)
TORRENT_TEST(corrupt_v1_hashes_disable_v1_hashes)
{
test_transfer(0, {}, bad_v1_hashes | disable_v1_hashes);
cleanup();
}
// bad v1 hashes -> torrent_error_alert with torrent_inconsistent_hashes
TORRENT_TEST(corrupt_v1_hashes)
{
test_transfer(0, {}, bad_v1_hashes | expect_inconsistent_error);
cleanup();
}