1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
|
/*
Copyright (c) 2006-2022, Arvid Norberg
Copyright (c) 2015-2017, Alden Torres
Copyright (c) 2016, Andrei Kurushin
Copyright (c) 2016-2018, Steven Siloti
Copyright (c) 2017, 2020, AllSeeingEyeTolledEweSew
Copyright (c) 2018, d-komarov
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.
*/
#include <map>
#include <tuple>
#include <functional>
#include "libtorrent/session.hpp"
#include "libtorrent/hasher.hpp"
#include "libtorrent/http_parser.hpp"
#include "libtorrent/assert.hpp"
#include "libtorrent/alert_types.hpp"
#include "libtorrent/create_torrent.hpp"
#include "libtorrent/socket_io.hpp" // print_endpoint
#include "libtorrent/ip_filter.hpp"
#include "libtorrent/session_stats.hpp"
#include "libtorrent/random.hpp"
#include "libtorrent/torrent_info.hpp"
#include "libtorrent/hex.hpp" // to_hex
#include "libtorrent/aux_/vector.hpp"
#include "libtorrent/aux_/path.hpp"
#include "libtorrent/aux_/merkle.hpp"
#include "libtorrent/disk_interface.hpp" // for default_block_size
#include "libtorrent/aux_/ip_helpers.hpp"
#include "test.hpp"
#include "test_utils.hpp"
#include "setup_transfer.hpp"
#ifndef _WIN32
#include <spawn.h>
#include <csignal>
#endif
using namespace lt;
#if defined TORRENT_WINDOWS
#include <conio.h>
#endif
#if defined TORRENT_WINDOWS
#define SEPARATOR "\\"
#else
#define SEPARATOR "/"
#endif
std::shared_ptr<torrent_info> generate_torrent(bool const with_files, bool const with_hashes)
{
if (with_files)
{
error_code ec;
create_directories("test_resume", ec);
std::vector<char> a(128 * 1024 * 8);
std::vector<char> b(128 * 1024);
ofstream("test_resume/tmp1").write(a.data(), std::streamsize(a.size()));
ofstream("test_resume/tmp2").write(b.data(), std::streamsize(b.size()));
ofstream("test_resume/tmp3").write(b.data(), std::streamsize(b.size()));
}
file_storage fs;
fs.add_file("test_resume/tmp1", 128 * 1024 * 8);
fs.add_file("test_resume/tmp2", 128 * 1024);
fs.add_file("test_resume/tmp3", 128 * 1024);
lt::create_torrent t(fs, 128 * 1024);
t.set_comment("test comment");
t.set_creator("libtorrent test");
t.add_tracker("http://torrent_file_tracker.com/announce");
t.add_url_seed("http://torrent_file_url_seed.com/");
TEST_CHECK(t.num_pieces() > 0);
if (with_hashes)
{
lt::set_piece_hashes(t, "."
, [] (lt::piece_index_t) {});
}
else
{
for (auto const i : fs.piece_range())
{
sha1_hash ph;
aux::random_bytes(ph);
t.set_hash(i, ph);
}
for (piece_index_t i : fs.piece_range())
{
sha256_hash ph;
aux::random_bytes(ph);
file_index_t const f(fs.file_index_at_piece(i));
t.set_hash2(f, i - fs.piece_index_at_file(f), ph);
}
}
std::vector<char> buf;
bencode(std::back_inserter(buf), t.generate());
return std::make_shared<torrent_info>(buf, from_span);
}
namespace {
std::uint32_t g_addr = 0x92343023;
address_v6::bytes_type g_addr6
= {0x93, 0x30, 0x2e, 0xf4, 0x1c, 0x01, 0x3d, 0x8a
, 0x35, 0x3d, 0x69, 0x10, 0x55, 0x82, 0x9d, 0x2f};
}
void init_rand_address()
{
g_addr = 0x92343023;
g_addr6 = address_v6::bytes_type{
{0x93, 0x30, 0x2e, 0xf4, 0x1c, 0x01, 0x3d, 0x8a
, 0x35, 0x3d, 0x69, 0x10, 0x55, 0x82, 0x9d, 0x2f}};
}
address rand_v4()
{
address_v4 ret;
do
{
g_addr += 0x3080ca;
ret = address_v4(g_addr);
} while (ret.is_unspecified() || aux::is_local(ret) || ret.is_loopback());
return ret;
}
sha1_hash rand_hash()
{
sha1_hash ret;
aux::random_bytes(ret);
return ret;
}
sha1_hash to_hash(char const* s)
{
sha1_hash ret;
aux::from_hex({s, 40}, ret.data());
return ret;
}
namespace {
void add_mp(span<std::uint8_t> target, span<std::uint8_t const> add)
{
TORRENT_ASSERT(target.size() == add.size());
int carry = 0;
for (int i = int(target.size()) - 1; i >= 0; --i)
{
int const res = carry + int(target[i]) + add[i];
carry = res >> 8;
target[i] = std::uint8_t(res & 255);
}
}
}
address rand_v6()
{
static address_v6::bytes_type const add{
{0x93, 0x30, 0x2e, 0xf4, 0x1c, 0x01, 0x3d, 0x8a
, 0x35, 0x3d, 0x69, 0x10, 0x55, 0x82, 0x9d, 0x23}};
address_v6 ret;
do
{
add_mp(g_addr6, add);
ret = address_v6(g_addr6);
} while (ret.is_unspecified() || aux::is_local(ret) || ret.is_loopback());
return ret;
}
static std::uint16_t g_port = 0;
tcp::endpoint rand_tcp_ep(lt::address(&rand_addr)())
{
// make sure we don't produce the same "random" port twice
g_port = (g_port + 1) % 14038;
return tcp::endpoint(rand_addr(), g_port + 1024);
}
udp::endpoint rand_udp_ep(lt::address(&rand_addr)())
{
g_port = (g_port + 1) % 14037;
return udp::endpoint(rand_addr(), g_port + 1024);
}
bool supports_ipv6()
{
#if defined TORRENT_BUILD_SIMULATOR
return true;
#elif defined TORRENT_WINDOWS
try
{
error_code ec;
make_address("::1", ec);
return !ec;
}
catch (std::exception const&) { return false; }
#else
io_context ios;
tcp::socket test(ios);
error_code ec;
test.open(tcp::v6(), ec);
if (ec) return false;
error_code ignore;
test.bind(tcp::endpoint(make_address_v6("::1", ignore), 0), ec);
return !bool(ec);
#endif
}
std::map<std::string, std::int64_t> get_counters(lt::session& s)
{
using namespace lt;
s.post_session_stats();
std::map<std::string, std::int64_t> ret;
alert const* a = wait_for_alert(s, session_stats_alert::alert_type
, "get_counters()");
TEST_CHECK(a);
if (!a) return ret;
session_stats_alert const* sa = alert_cast<session_stats_alert>(a);
if (!sa) return ret;
static std::vector<stats_metric> metrics = session_stats_metrics();
for (auto const& m : metrics)
ret[m.name] = sa->counters()[m.value_index];
return ret;
}
namespace {
bool should_print(lt::alert* a)
{
#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
&& pla->direction != peer_log_alert::info)
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;
}
}
alert const* wait_for_alert(lt::session& ses, int type, char const* name
, pop_alerts const p, lt::time_duration timeout)
{
// we pop alerts in batches, but we wait for individual messages. This is a
// cache to keep around alerts that came *after* the one we're waiting for.
// To let subsequent calls to this function be able to pick those up, despite
// already being popped off the sessions alert queue.
static std::map<lt::session*, std::vector<alert*>> cache;
auto& alerts = cache[&ses];
time_point const end_time = lt::clock_type::now() + timeout;
while (true)
{
time_point const now = clock_type::now();
if (now > end_time) return nullptr;
alert const* ret = nullptr;
if (alerts.empty())
{
ses.wait_for_alert(end_time - now);
ses.pop_alerts(&alerts);
}
for (auto i = alerts.begin(); i != alerts.end(); ++i)
{
auto a = *i;
if (should_print(a))
{
std::printf("%s: %s: [%s] %s\n", time_now_string().c_str(), name
, a->what(), a->message().c_str());
}
if (a->type() == type)
{
ret = a;
if (p == pop_alerts::pop_all) alerts.clear();
else alerts.erase(alerts.begin(), std::next(i));
return ret;
}
}
alerts.clear();
}
}
int load_file(std::string const& filename, std::vector<char>& v
, lt::error_code& ec, int limit)
{
ec.clear();
FILE* f = fopen(filename.c_str(), "rb");
if (f == nullptr)
{
ec.assign(errno, boost::system::system_category());
return -1;
}
int r = fseek(f, 0, SEEK_END);
if (r != 0)
{
ec.assign(errno, boost::system::system_category());
fclose(f);
return -1;
}
long s = ftell(f);
if (s < 0)
{
ec.assign(errno, boost::system::system_category());
fclose(f);
return -1;
}
if (s > limit)
{
fclose(f);
return -2;
}
r = fseek(f, 0, SEEK_SET);
if (r != 0)
{
ec.assign(errno, boost::system::system_category());
fclose(f);
return -1;
}
v.resize(static_cast<std::size_t>(s));
if (s == 0)
{
fclose(f);
return 0;
}
r = int(fread(&v[0], 1, v.size(), f));
if (r < 0)
{
ec.assign(errno, boost::system::system_category());
fclose(f);
return -1;
}
fclose(f);
if (r != s) return -3;
return 0;
}
bool print_alerts(lt::session& ses, char const* name
, bool allow_no_torrents, bool allow_failed_fastresume
, std::function<bool(lt::alert const*)> predicate, bool no_output)
{
TEST_CHECK(!ses.get_torrents().empty() || allow_no_torrents);
std::vector<alert*> alerts;
ses.pop_alerts(&alerts);
for (auto a : alerts)
{
if (peer_disconnected_alert const* p = alert_cast<peer_disconnected_alert>(a))
{
std::printf("%s: %s: [%s] (%s): %s\n", time_to_string(a->timestamp()).c_str()
, name, a->what()
, print_endpoint(p->endpoint).c_str(), p->message().c_str());
}
else if (a->type() == invalid_request_alert::alert_type)
{
fprintf(stdout, "peer error: %s\n", a->message().c_str());
TEST_CHECK(false);
}
else if (a->type() == fastresume_rejected_alert::alert_type)
{
fprintf(stdout, "resume data error: %s\n", a->message().c_str());
TEST_CHECK(allow_failed_fastresume);
}
else if (should_print(a) && !no_output)
{
std::printf("%s: %s: [%s] %s\n", time_now_string().c_str(), name, a->what(), a->message().c_str());
}
TEST_CHECK(alert_cast<fastresume_rejected_alert>(a) == nullptr || allow_failed_fastresume);
invalid_request_alert const* ira = alert_cast<invalid_request_alert>(a);
if (ira)
{
std::printf("peer error: %s\n", ira->message().c_str());
TEST_CHECK(false);
}
}
return predicate && std::any_of(alerts.begin(), alerts.end(), predicate);
}
void wait_for_listen(lt::session& ses, char const* name)
{
bool listen_done = false;
alert const* a = nullptr;
do
{
listen_done = print_alerts(ses, name, true, true, [](lt::alert const* al)
{ return alert_cast<listen_failed_alert>(al) || alert_cast<listen_succeeded_alert>(al); }
, false);
if (listen_done) break;
a = ses.wait_for_alert(milliseconds(500));
} while (a);
// we din't receive a listen alert!
TEST_CHECK(listen_done);
}
void wait_for_downloading(lt::session& ses, char const* name)
{
time_point start = clock_type::now();
bool downloading_done = false;
alert const* a = nullptr;
do
{
downloading_done = print_alerts(ses, name, true, true
, [](lt::alert const* al)
{
state_changed_alert const* sc = alert_cast<state_changed_alert>(al);
return sc && sc->state == torrent_status::downloading;
}, false);
if (downloading_done) break;
if (clock_type::now() - start > seconds(30)) break;
a = ses.wait_for_alert(seconds(5));
} while (a);
if (!downloading_done)
{
std::printf("%s: did not receive a state_changed_alert indicating "
"the torrent is downloading. waited: %d ms\n"
, name, int(total_milliseconds(clock_type::now() - start)));
}
}
void wait_for_seeding(lt::session& ses, char const* name)
{
time_point start = clock_type::now();
bool seeding = false;
alert const* a = nullptr;
do
{
seeding = print_alerts(ses, name, true, true
, [](lt::alert const* al)
{
state_changed_alert const* sc = alert_cast<state_changed_alert>(al);
return sc && sc->state == torrent_status::seeding;
}, false);
if (seeding) break;
if (clock_type::now() - start > seconds(30)) break;
a = ses.wait_for_alert(seconds(5));
} while (a);
if (!seeding)
{
std::printf("%s: did not receive a state_changed_alert indicating "
"the torrent is seeding. waited: %d ms\n"
, name, int(total_milliseconds(clock_type::now() - start)));
}
}
void print_ses_rate(float const time
, lt::torrent_status const* st1
, lt::torrent_status const* st2
, lt::torrent_status const* st3)
{
if (st1)
{
std::printf("%3.1fs | %dkB/s %dkB/s %d%% %d cc:%d%s", static_cast<double>(time)
, int(st1->download_payload_rate / 1000)
, int(st1->upload_payload_rate / 1000)
, int(st1->progress * 100)
, st1->num_peers
, st1->connect_candidates
, st1->errc ? (" [" + st1->errc.message() + "]").c_str() : "");
}
if (st2)
std::printf(" : %3.1fs | %dkB/s %dkB/s %d%% %d cc:%d%s", static_cast<double>(time)
, int(st2->download_payload_rate / 1000)
, int(st2->upload_payload_rate / 1000)
, int(st2->progress * 100)
, st2->num_peers
, st2->connect_candidates
, st2->errc ? (" [" + st1->errc.message() + "]").c_str() : "");
if (st3)
std::printf(" : %3.1fs | %dkB/s %dkB/s %d%% %d cc:%d%s", static_cast<double>(time)
, int(st3->download_payload_rate / 1000)
, int(st3->upload_payload_rate / 1000)
, int(st3->progress * 100)
, st3->num_peers
, st3->connect_candidates
, st3->errc ? (" [" + st1->errc.message() + "]").c_str() : "");
std::printf("\n");
}
#ifdef _WIN32
using pid_type = DWORD;
#else
using pid_type = pid_t;
#endif
namespace {
// returns 0 on failure, otherwise pid
pid_type async_run(char const* cmdline)
{
#ifdef _WIN32
char buf[2048];
std::snprintf(buf, sizeof(buf), "%s", cmdline);
std::printf("CreateProcess %s\n", buf);
PROCESS_INFORMATION pi;
STARTUPINFOA startup{};
startup.cb = sizeof(startup);
startup.dwFlags = STARTF_USESTDHANDLES;
startup.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
startup.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
startup.hStdError = GetStdHandle(STD_OUTPUT_HANDLE);
int const ret = CreateProcessA(nullptr, buf, nullptr, nullptr, TRUE
, 0, nullptr, nullptr, &startup, &pi);
if (ret == 0)
{
int const error = GetLastError();
std::printf("ERROR: (%d) %s\n", error, error_code(error, system_category()).message().c_str());
return 0;
}
DWORD len = sizeof(buf);
if (QueryFullProcessImageNameA(pi.hProcess, PROCESS_NAME_NATIVE, buf, &len) == 0)
{
int const error = GetLastError();
std::printf("ERROR: QueryFullProcessImageName (%d) %s\n", error
, error_code(error, system_category()).message().c_str());
}
else
{
std::printf("launched: %s\n", buf);
}
return pi.dwProcessId;
#else
pid_type p;
char arg_storage[4096];
char* argp = arg_storage;
std::vector<char*> argv;
argv.push_back(argp);
for (char const* in = cmdline; *in != '\0'; ++in)
{
if (*in != ' ')
{
*argp++ = *in;
continue;
}
*argp++ = '\0';
argv.push_back(argp);
}
*argp = '\0';
argv.push_back(nullptr);
int ret = posix_spawnp(&p, argv[0], nullptr, nullptr, &argv[0], nullptr);
if (ret != 0)
{
std::printf("ERROR (%d) %s\n", errno, strerror(errno));
return 0;
}
return p;
#endif
}
void stop_process(pid_type p)
{
#ifdef _WIN32
HANDLE proc = OpenProcess(PROCESS_TERMINATE | SYNCHRONIZE, FALSE, p);
if (proc == nullptr) return;
TerminateProcess(proc, 138);
WaitForSingleObject(proc, 5000);
CloseHandle(proc);
#else
std::printf("killing pid: %d\n", p);
kill(p, SIGKILL);
#endif
}
} // anonymous namespace
struct proxy_t
{
pid_type pid;
int type;
};
// maps port to proxy type
static std::map<int, proxy_t> running_proxies;
void stop_proxy(int port)
{
auto const it = running_proxies.find(port);
if (it == running_proxies.end()) return;
std::printf("stopping proxy on port %d\n", port);
stop_process(it->second.pid);
running_proxies.erase(it);
}
void stop_all_proxies()
{
std::map<int, proxy_t> proxies = running_proxies;
running_proxies.clear();
for (auto const& i : proxies)
{
stop_process(i.second.pid);
}
}
namespace {
#ifdef TORRENT_BUILD_SIMULATOR
void wait_for_port(int) {}
#else
void wait_for_port(int const port)
{
// wait until the python program is ready to accept connections
int i = 0;
io_context ios;
for (;;)
{
tcp::socket s(ios);
error_code ec;
s.open(tcp::v4(), ec);
if (ec)
{
std::printf("ERROR opening probe socket: (%d) %s\n"
, ec.value(), ec.message().c_str());
return;
}
s.connect(tcp::endpoint(make_address("127.0.0.1")
, std::uint16_t(port)), ec);
if (ec == boost::system::errc::connection_refused)
{
if (i == 100)
{
std::printf("ERROR: somehow the python program still hasn't "
"opened its socket on port %d\n", port);
return;
}
++i;
std::this_thread::sleep_for(lt::milliseconds(500));
continue;
}
if (ec)
{
std::printf("ERROR connecting probe socket: (%d) %s\n"
, ec.value(), ec.message().c_str());
return;
}
return;
}
}
#endif
std::vector<std::string> get_python()
{
std::vector<std::string> ret;
#ifdef _WIN32
char dummy[1];
DWORD const req_size = GetEnvironmentVariable("PYTHON_INTERPRETER", dummy, sizeof(dummy));
if (req_size > 1 && req_size < 4096)
{
std::vector<char> buf(req_size);
DWORD const sz = GetEnvironmentVariable("PYTHON_INTERPRETER", buf.data(), DWORD(buf.size()));
if (size_t(sz) == buf.size() - 1) ret.emplace_back(buf.data(), buf.size());
}
#endif
ret.push_back("python3");
ret.push_back("python");
return ret;
}
int find_available_port()
{
int port = 2000 + (std::int64_t(::getpid()) + ::unit_test::g_test_idx + std::rand()) % 60000;
error_code ec;
io_context ios;
// make sure the port we pick is free
do {
++port;
tcp::socket s(ios);
s.open(tcp::v4(), ec);
if (ec) break;
s.bind(tcp::endpoint(make_address("127.0.0.1")
, std::uint16_t(port)), ec);
} while (ec);
return port;
}
} // anonymous namespace
// returns a port on success and -1 on failure
int start_proxy(int proxy_type)
{
using namespace lt;
std::map<int, proxy_t> :: iterator i = running_proxies.begin();
for (; i != running_proxies.end(); ++i)
{
if (i->second.type == proxy_type) { return i->first; }
}
int const port = find_available_port();
char const* type = "";
char const* auth = "";
char const* cmd = "";
switch (proxy_type)
{
case settings_pack::socks4:
type = "socks4";
auth = " --allow-v4";
cmd = ".." SEPARATOR "socks.py";
break;
case settings_pack::socks5:
type = "socks5";
cmd = ".." SEPARATOR "socks.py";
break;
case settings_pack::socks5_pw:
type = "socks5";
auth = " --username testuser --password testpass";
cmd = ".." SEPARATOR "socks.py";
break;
case settings_pack::http:
type = "http";
cmd = ".." SEPARATOR "http_proxy.py";
break;
case settings_pack::http_pw:
type = "http";
auth = " --basic-auth testuser:testpass";
cmd = ".." SEPARATOR "http_proxy.py";
break;
}
std::vector<std::string> python_exes = get_python();
for (auto const& python_exe : python_exes)
{
char buf[1024];
std::snprintf(buf, sizeof(buf), "%s %s --port %d%s", python_exe.c_str(), cmd, port, auth);
std::printf("%s starting proxy on port %d (%s %s)...\n", time_now_string().c_str(), port, type, auth);
std::printf("%s\n", buf);
pid_type r = async_run(buf);
if (r == 0) continue;
proxy_t t = { r, proxy_type };
running_proxies.insert(std::make_pair(port, t));
std::printf("%s launched\n", time_now_string().c_str());
std::this_thread::sleep_for(lt::milliseconds(500));
wait_for_port(port);
return port;
}
abort();
}
using namespace lt;
std::vector<char> generate_piece(piece_index_t const idx, int const piece_size)
{
using namespace lt;
std::vector<char> ret(static_cast<std::size_t>(piece_size));
std::mt19937 rng(static_cast<std::uint32_t>(static_cast<int>(idx)));
std::uniform_int_distribution<int> rand(-128, 127);
for (char& c : ret)
{
c = static_cast<char>(rand(rng));
}
return ret;
}
lt::file_storage make_file_storage(span<const int> const file_sizes
, int const piece_size, std::string base_name)
{
using namespace lt;
file_storage fs;
for (std::ptrdiff_t i = 0; i != file_sizes.size(); ++i)
{
char filename[200];
std::snprintf(filename, sizeof(filename), "test%d", int(i));
char dirname[200];
std::snprintf(dirname, sizeof(dirname), "%s%d", base_name.c_str()
, int(i) / 5);
std::string full_path = combine_path(dirname, filename);
fs.add_file(full_path, file_sizes[i]);
}
fs.set_piece_length(piece_size);
fs.set_num_pieces(aux::calc_num_pieces(fs));
return fs;
}
std::shared_ptr<lt::torrent_info> make_torrent(span<const int> const file_sizes
, int const piece_size)
{
using namespace lt;
file_storage fs = make_file_storage(file_sizes, piece_size);
return make_torrent(fs);
}
std::shared_ptr<lt::torrent_info> make_torrent(lt::file_storage& fs)
{
lt::create_torrent ct(fs, fs.piece_length());
for (auto const i : fs.piece_range())
{
std::vector<char> piece = generate_piece(i, fs.piece_size(i));
ct.set_hash(i, hasher(piece).final());
aux::vector<sha256_hash> tree(merkle_num_nodes(fs.piece_length() / default_block_size));
int const blocks_per_piece = fs.piece_length() / default_block_size;
for (int j = 0; j < int(piece.size()); j += default_block_size)
{
tree[tree.end_index() - blocks_per_piece + j / default_block_size]
= hasher256(piece.data() + j, std::min(default_block_size, int(piece.size()) - j)).final();
}
merkle_fill_tree(tree, fs.piece_length() / default_block_size);
file_index_t const f(fs.file_index_at_piece(i));
ct.set_hash2(f, i - fs.piece_index_at_file(f), tree[0]);
}
std::vector<char> buf;
bencode(std::back_inserter(buf), ct.generate());
return std::make_shared<torrent_info>(buf, from_span);
}
void create_random_files(std::string const& path, span<const int> file_sizes
, file_storage* fs)
{
error_code ec;
aux::vector<char> random_data(300000);
for (std::ptrdiff_t i = 0; i != file_sizes.size(); ++i)
{
aux::random_bytes(random_data);
char filename[200];
std::snprintf(filename, sizeof(filename), "test%d", int(i));
char dirname[200];
std::snprintf(dirname, sizeof(dirname), "test_dir%d", int(i) / 5);
std::string full_path = combine_path(path, dirname);
lt::create_directories(full_path, ec);
if (ec) std::printf("create_directory(%s) failed: (%d) %s\n"
, full_path.c_str(), ec.value(), ec.message().c_str());
full_path = combine_path(full_path, filename);
std::printf("creating file: %s\n", full_path.c_str());
int to_write = file_sizes[i];
if (fs) fs->add_file(full_path, to_write);
ofstream f(full_path.c_str());
while (to_write > 0)
{
int const s = std::min(to_write, static_cast<int>(random_data.size()));
f.write(random_data.data(), s);
to_write -= s;
}
}
}
std::shared_ptr<torrent_info> create_torrent(std::ostream* file
, char const* name, int piece_size
, int num_pieces, bool add_tracker, lt::create_flags_t const flags
, std::string ssl_certificate)
{
// exercise the path when encountering invalid urls
char const* invalid_tracker_url = "http:";
char const* invalid_tracker_protocol = "foo://non/existent-name.com/announce";
file_storage fs;
int total_size = piece_size * num_pieces;
fs.add_file(name, total_size);
lt::create_torrent t(fs, piece_size, flags);
if (add_tracker)
{
t.add_tracker(invalid_tracker_url);
t.add_tracker(invalid_tracker_protocol);
}
if (!ssl_certificate.empty())
{
std::vector<char> file_buf;
error_code ec;
int res = load_file(ssl_certificate, file_buf, ec);
if (ec || res < 0)
{
std::printf("failed to load SSL certificate: %s\n", ec.message().c_str());
}
else
{
std::string pem;
std::copy(file_buf.begin(), file_buf.end(), std::back_inserter(pem));
t.set_root_cert(pem);
}
}
aux::vector<char> piece(static_cast<std::size_t>(piece_size));
for (int i = 0; i < piece.end_index(); ++i)
piece[i] = (i % 26) + 'A';
if (!(flags & create_torrent::v2_only))
{
// calculate the hash for all pieces
sha1_hash ph = hasher(piece).final();
for (auto const i : fs.piece_range())
t.set_hash(i, ph);
}
if (!(flags & create_torrent::v1_only))
{
int const blocks_in_piece = piece_size / default_block_size;
aux::vector<sha256_hash> v2tree(merkle_num_nodes(merkle_num_leafs(blocks_in_piece)));
for (int i = 0; i < blocks_in_piece; ++i)
{
sha256_hash const block_hash = hasher256(span<char>(piece).subspan(i * default_block_size, default_block_size)).final();
v2tree[v2tree.end_index() - merkle_num_leafs(blocks_in_piece) + i] = block_hash;
}
merkle_fill_tree(v2tree, merkle_num_leafs(blocks_in_piece));
for (piece_index_t i(0); i < t.end_piece(); ++i)
t.set_hash2(file_index_t{ 0 }, i - 0_piece, v2tree[0]);
}
if (file)
{
while (total_size > 0)
{
file->write(piece.data(), std::min(piece.end_index(), total_size));
total_size -= piece.end_index();
}
}
entry tor = t.generate();
std::vector<char> tmp;
bencode(std::back_inserter(tmp), tor);
error_code ec;
return std::make_shared<torrent_info>(tmp, ec, from_span);
}
std::tuple<torrent_handle, torrent_handle, torrent_handle>
setup_transfer(lt::session* ses1, lt::session* ses2, lt::session* ses3
, bool clear_files, bool use_metadata_transfer, bool connect_peers
, std::string suffix, int piece_size
, std::shared_ptr<torrent_info>* torrent, bool super_seeding
, add_torrent_params const* p, bool stop_lsd, bool use_ssl_ports
, std::shared_ptr<torrent_info>* torrent2, create_flags_t const flags)
{
TORRENT_ASSERT(ses1);
TORRENT_ASSERT(ses2);
if (stop_lsd)
{
settings_pack pack;
pack.set_bool(settings_pack::enable_lsd, false);
ses1->apply_settings(pack);
ses2->apply_settings(pack);
if (ses3) ses3->apply_settings(pack);
}
// This has the effect of applying the global
// rule to all peers, regardless of if they're local or not
ip_filter f;
f.add_rule(make_address_v4("0.0.0.0")
, make_address_v4("255.255.255.255")
, 1 << static_cast<std::uint32_t>(lt::session::global_peer_class_id));
ses1->set_peer_class_filter(f);
ses2->set_peer_class_filter(f);
if (ses3) ses3->set_peer_class_filter(f);
settings_pack pack;
if (ses3) pack.set_bool(settings_pack::allow_multiple_connections_per_ip, true);
pack.set_int(settings_pack::mixed_mode_algorithm, settings_pack::prefer_tcp);
pack.set_int(settings_pack::max_failcount, 1);
ses1->apply_settings(pack);
ses2->apply_settings(pack);
if (ses3)
{
ses3->apply_settings(pack);
}
std::shared_ptr<torrent_info> t;
if (torrent == nullptr)
{
error_code ec;
create_directory("tmp1" + suffix, ec);
std::string const file_path = combine_path("tmp1" + suffix, "temporary");
ofstream file(file_path.c_str());
t = ::create_torrent(&file, "temporary", piece_size, 9, false, flags);
file.close();
if (clear_files)
{
remove_all(combine_path("tmp2" + suffix, "temporary"), ec);
remove_all(combine_path("tmp3" + suffix, "temporary"), ec);
}
std::printf("generated torrent: %s %s\n", aux::to_hex(t->info_hashes().v2).c_str(), file_path.c_str());
}
else
{
t = *torrent;
}
// they should not use the same save dir, because the
// file pool will complain if two torrents are trying to
// use the same files
add_torrent_params param;
param.flags &= ~torrent_flags::paused;
param.flags &= ~torrent_flags::auto_managed;
if (p) param = *p;
param.ti = t;
param.save_path = "tmp1" + suffix;
param.flags |= torrent_flags::seed_mode;
error_code ec;
torrent_handle tor1 = ses1->add_torrent(param, ec);
if (ec)
{
std::printf("ses1.add_torrent: %s\n", ec.message().c_str());
return std::make_tuple(torrent_handle(), torrent_handle(), torrent_handle());
}
if (super_seeding)
{
tor1.set_flags(torrent_flags::super_seeding);
}
// the downloader cannot use seed_mode
param.flags &= ~torrent_flags::seed_mode;
TEST_CHECK(!ses1->get_torrents().empty());
torrent_handle tor2;
torrent_handle tor3;
if (ses3)
{
param.ti = t;
param.save_path = "tmp3" + suffix;
tor3 = ses3->add_torrent(param, ec);
TEST_CHECK(!ses3->get_torrents().empty());
}
if (use_metadata_transfer)
{
param.ti.reset();
param.info_hashes = t->info_hashes();
}
else if (torrent2)
{
param.ti = *torrent2;
}
else
{
param.ti = t;
}
param.save_path = "tmp2" + suffix;
tor2 = ses2->add_torrent(param, ec);
TEST_CHECK(!ses2->get_torrents().empty());
TORRENT_ASSERT(ses1->get_torrents().size() == 1);
TORRENT_ASSERT(ses2->get_torrents().size() == 1);
// std::this_thread::sleep_for(lt::milliseconds(100));
if (connect_peers)
{
wait_for_downloading(*ses2, "ses2");
int port = 0;
if (use_ssl_ports)
{
port = ses2->ssl_listen_port();
std::printf("%s: ses2->ssl_listen_port(): %d\n", time_now_string().c_str(), port);
}
if (port == 0)
{
port = ses2->listen_port();
std::printf("%s: ses2->listen_port(): %d\n", time_now_string().c_str(), port);
}
std::printf("%s: ses1: connecting peer port: %d\n"
, time_now_string().c_str(), port);
tor1.connect_peer(tcp::endpoint(make_address("127.0.0.1", ec)
, std::uint16_t(port)));
if (ses3)
{
// give the other peers some time to get an initial
// set of pieces before they start sharing with each-other
wait_for_downloading(*ses3, "ses3");
port = 0;
int port2 = 0;
if (use_ssl_ports)
{
port = ses2->ssl_listen_port();
port2 = ses1->ssl_listen_port();
}
if (port == 0) port = ses2->listen_port();
if (port2 == 0) port2 = ses1->listen_port();
std::printf("ses3: connecting peer port: %d\n", port);
tor3.connect_peer(tcp::endpoint(
make_address("127.0.0.1", ec), std::uint16_t(port)));
std::printf("ses3: connecting peer port: %d\n", port2);
tor3.connect_peer(tcp::endpoint(
make_address("127.0.0.1", ec)
, std::uint16_t(port2)));
}
}
return std::make_tuple(tor1, tor2, tor3);
}
namespace {
pid_type web_server_pid = 0;
}
int start_web_server(bool ssl, bool chunked_encoding, bool keepalive, int min_interval)
{
int const port = find_available_port();
std::vector<std::string> python_exes = get_python();
for (auto const& python_exe : python_exes)
{
char buf[200];
std::snprintf(buf, sizeof(buf), "%s .." SEPARATOR "web_server.py %d %d %d %d %d"
, python_exe.c_str(), port, chunked_encoding, ssl, keepalive, min_interval);
std::printf("%s starting web_server on port %d...\n", time_now_string().c_str(), port);
std::printf("%s\n", buf);
pid_type r = async_run(buf);
if (r == 0) continue;
web_server_pid = r;
std::printf("%s launched\n", time_now_string().c_str());
std::this_thread::sleep_for(lt::milliseconds(1000));
wait_for_port(port);
return port;
}
abort();
}
void stop_web_server()
{
if (web_server_pid == 0) return;
std::printf("stopping web server\n");
stop_process(web_server_pid);
web_server_pid = 0;
}
tcp::endpoint ep(char const* ip, int port)
{
error_code ec;
tcp::endpoint ret(make_address(ip, ec), std::uint16_t(port));
TEST_CHECK(!ec);
return ret;
}
udp::endpoint uep(char const* ip, int port)
{
error_code ec;
udp::endpoint ret(make_address(ip, ec), std::uint16_t(port));
TEST_CHECK(!ec);
return ret;
}
lt::address addr(char const* ip)
{
lt::error_code ec;
auto ret = lt::make_address(ip, ec);
TEST_CHECK(!ec);
return ret;
}
lt::address_v4 addr4(char const* ip)
{
lt::error_code ec;
auto ret = lt::make_address_v4(ip, ec);
TEST_CHECK(!ec);
return ret;
}
lt::address_v6 addr6(char const* ip)
{
lt::error_code ec;
auto ret = lt::make_address_v6(ip, ec);
TEST_CHECK(!ec);
return ret;
}
|