forked from arvidn/libtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
601 lines (521 loc) · 15.4 KB
/
main.cpp
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
/*
Copyright (c) 2005, 2008, 2010, 2012-2020, Arvid Norberg
Copyright (c) 2017, Andrei Kurushin
Copyright (c) 2018, Steven Siloti
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 <iostream>
#include <boost/config.hpp>
#include <fcntl.h>
#include <cstdio>
#include <cstdlib> // for exit()
#include "libtorrent/address.hpp"
#include "libtorrent/socket.hpp"
#include "setup_transfer.hpp" // for unit_test::g_test_failures
#include "test.hpp"
#include "dht_server.hpp" // for stop_dht
#include "peer_server.hpp" // for stop_peer
#include "udp_tracker.hpp" // for stop_udp_tracker
#include <boost/system/system_error.hpp>
#include "libtorrent/assert.hpp"
#include "libtorrent/aux_/path.hpp"
#include "libtorrent/random.hpp"
#include "libtorrent/aux_/escape_string.hpp"
#include <csignal>
#ifdef _WIN32
#include "libtorrent/aux_/windows.hpp" // fot SetErrorMode
#include <io.h> // for _dup and _dup2
#include <process.h> // for _getpid
#include <crtdbg.h>
#define dup _dup
#define dup2 _dup2
#else
#include <unistd.h> // for getpid()
#endif
using namespace lt;
namespace {
// these are global so we can restore them on abnormal exits and print stuff
// out, such as the log
int old_stdout = -1;
int old_stderr = -1;
#ifdef _WIN32
bool redirect_stdout = !IsDebuggerPresent();
#else
bool redirect_stdout = true;
#endif
// sanitizer output will go to stderr and we won't get an opportunity to print
// it, so don't redirect stderr by default
bool redirect_stderr = false;
bool keep_files = false;
// the current tests file descriptor
unit_test::unit_test_t* current_test = nullptr;
void output_test_log_to_terminal()
{
if (current_test == nullptr
|| current_test->output == nullptr)
return;
fflush(stdout);
fflush(stderr);
if (old_stdout != -1)
{
dup2(old_stdout, fileno(stdout));
old_stdout = -1;
}
if (old_stderr != -1)
{
dup2(old_stderr, fileno(stderr));
old_stderr = -1;
}
fseek(current_test->output, 0, SEEK_SET);
std::printf("\x1b[1m[%s]\x1b[0m\n\n", current_test->name);
char buf[4096];
std::size_t size = 0;
do {
size = fread(buf, 1, sizeof(buf), current_test->output);
if (size > 0) fwrite(buf, 1, size, stdout);
} while (size > 0);
}
#ifdef _WIN32
LONG WINAPI seh_exception_handler(LPEXCEPTION_POINTERS p)
{
char stack_text[10000];
#if TORRENT_USE_ASSERTS \
|| defined TORRENT_ASIO_DEBUGGING \
|| defined TORRENT_PROFILE_CALLS \
|| defined TORRENT_DEBUG_BUFFERS
print_backtrace(stack_text, sizeof(stack_text), 30
, p->ContextRecord);
#elif defined __FUNCTION__
strcpy(stack_text, __FUNCTION__);
#else
strcpy(stack_text, "<stack traces disabled>");
#endif
int const code = p->ExceptionRecord->ExceptionCode;
char const* name = "<unknown exception>";
switch (code)
{
#define EXC(x) case x: name = #x; break
EXC(EXCEPTION_ACCESS_VIOLATION);
EXC(EXCEPTION_ARRAY_BOUNDS_EXCEEDED);
EXC(EXCEPTION_BREAKPOINT);
EXC(EXCEPTION_DATATYPE_MISALIGNMENT);
EXC(EXCEPTION_FLT_DENORMAL_OPERAND);
EXC(EXCEPTION_FLT_DIVIDE_BY_ZERO);
EXC(EXCEPTION_FLT_INEXACT_RESULT);
EXC(EXCEPTION_FLT_INVALID_OPERATION);
EXC(EXCEPTION_FLT_OVERFLOW);
EXC(EXCEPTION_FLT_STACK_CHECK);
EXC(EXCEPTION_FLT_UNDERFLOW);
EXC(EXCEPTION_ILLEGAL_INSTRUCTION);
EXC(EXCEPTION_IN_PAGE_ERROR);
EXC(EXCEPTION_INT_DIVIDE_BY_ZERO);
EXC(EXCEPTION_INT_OVERFLOW);
EXC(EXCEPTION_INVALID_DISPOSITION);
EXC(EXCEPTION_NONCONTINUABLE_EXCEPTION);
EXC(EXCEPTION_PRIV_INSTRUCTION);
EXC(EXCEPTION_SINGLE_STEP);
EXC(EXCEPTION_STACK_OVERFLOW);
#undef EXC
};
std::printf("exception: (0x%x) %s caught:\n%s\n"
, code, name, stack_text);
output_test_log_to_terminal();
exit(code);
}
#endif
[[noreturn]] void sig_handler(int sig)
{
char stack_text[10000];
#if TORRENT_USE_ASSERTS \
|| defined TORRENT_ASIO_DEBUGGING \
|| defined TORRENT_PROFILE_CALLS \
|| defined TORRENT_DEBUG_BUFFERS
print_backtrace(stack_text, sizeof(stack_text), 30);
#elif defined __FUNCTION__
strcpy(stack_text, __FUNCTION__);
#else
strcpy(stack_text, "<stack traces disabled>");
#endif
char const* name = "<unknown signal>";
switch (sig)
{
#define SIG(x) case x: name = #x; break
SIG(SIGSEGV);
#ifdef SIGBUS
SIG(SIGBUS);
#endif
SIG(SIGINT);
SIG(SIGTERM);
SIG(SIGILL);
SIG(SIGABRT);
SIG(SIGFPE);
#ifdef SIGSYS
SIG(SIGSYS);
#endif
#undef SIG
}
std::printf("signal: (%d) %s caught:\n%s\n", sig, name, stack_text);
output_test_log_to_terminal();
std::exit(128 + sig);
}
[[noreturn]] void term_handler()
{
char stack_text[10000];
#if TORRENT_USE_ASSERTS \
|| defined TORRENT_ASIO_DEBUGGING \
|| defined TORRENT_PROFILE_CALLS \
|| defined TORRENT_DEBUG_BUFFERS
print_backtrace(stack_text, sizeof(stack_text), 30);
#elif defined __FUNCTION__
strcpy(stack_text, __FUNCTION__);
#else
strcpy(stack_text, "<stack traces disabled>");
#endif
std::printf("\n\nterminate called:\n%s\n\n\n", stack_text);
std::exit(-1);
}
void print_usage(char const* executable)
{
std::printf("%s [options] [tests...]\n"
"\n"
"OPTIONS:\n"
"-h,--help show this help\n"
"-l,--list list the tests available to run\n"
"-k,--keep keep files created by the test\n"
" regardless of whether it passed or not\n"
"-n,--no-redirect don't redirect test output to\n"
" temporary file, but let it go straight\n"
" to stdout\n"
"--stderr-redirect also redirect stderr in addition to stdout\n"
"\n"
"for tests, specify one or more test names as printed\n"
"by -l. If no test is specified, all tests are run\n", executable);
}
void change_directory(std::string const& f, error_code& ec)
{
ec.clear();
native_path_string const n = convert_to_native_path_string(f);
#ifdef TORRENT_WINDOWS
if (SetCurrentDirectoryW(n.c_str()) == 0)
ec.assign(GetLastError(), system_category());
#else
int ret = ::chdir(n.c_str());
if (ret != 0)
ec.assign(errno, system_category());
#endif
}
} // anonymous namespace
struct unit_directory_guard
{
explicit unit_directory_guard(std::string d) : dir(std::move(d)) {}
unit_directory_guard(unit_directory_guard const&) = delete;
unit_directory_guard& operator=(unit_directory_guard const&) = delete;
~unit_directory_guard()
{
if (keep_files) return;
error_code ec;
std::string const parent_dir = parent_path(dir);
// windows will not allow to remove current dir, so let's change it to root
change_directory(parent_dir, ec);
if (ec)
{
TEST_ERROR("Failed to change directory: " + ec.message());
return;
}
remove_all(dir, ec);
#ifdef TORRENT_WINDOWS
if (ec.value() == ERROR_SHARING_VIOLATION)
{
// on windows, files are removed in the background, and we may need
// to wait a little bit
std::this_thread::sleep_for(milliseconds(400));
remove_all(dir, ec);
}
#endif
if (ec) std::cerr << "Failed to remove unit test directory: " << ec.message() << "\n";
}
private:
std::string dir;
};
namespace unit_test {
void EXPORT reset_output()
{
if (current_test == nullptr || current_test->output == nullptr) return;
fflush(stdout);
fflush(stderr);
rewind(current_test->output);
#ifdef TORRENT_WINDOWS
int const r = _chsize(fileno(current_test->output), 0);
#else
int const r = ftruncate(fileno(current_test->output), 0);
#endif
if (r != 0)
{
// this is best effort, it's not the end of the world if we fail
std::cerr << "ftruncate of temporary test output file failed: " << strerror(errno) << "\n";
}
}
}
int EXPORT main(int argc, char const* argv[])
{
char const* executable = argv[0];
// skip executable name
++argv;
--argc;
// pick up options
while (argc > 0 && argv[0][0] == '-')
{
if (argv[0] == "-h"_sv || argv[0] == "--help"_sv)
{
print_usage(executable);
return 0;
}
if (argv[0] == "-l"_sv || argv[0] == "--list"_sv)
{
std::printf("TESTS:\n");
for (int i = 0; i < ::unit_test::g_num_unit_tests; ++i)
{
std::printf(" - %s\n", ::unit_test::g_unit_tests[i].name);
}
return 0;
}
if (argv[0] == "-n"_sv || argv[0] == "--no-redirect"_sv)
{
redirect_stdout = false;
redirect_stderr = false;
}
if (argv[0] == "--stderr-redirect"_sv)
{
redirect_stderr = true;
}
if (argv[0] == "-k"_sv || argv[0] == "--keep"_sv)
{
keep_files = true;
}
++argv;
--argc;
}
std::set<std::string> tests_to_run;
bool filter = false;
for (int i = 0; i < argc; ++i)
{
tests_to_run.insert(argv[i]);
filter = true;
}
#ifdef O_NONBLOCK
// on darwin, stdout is set to non-blocking mode by default
// which sometimes causes tests to fail with EAGAIN just
// by printing logs
int flags = fcntl(fileno(stdout), F_GETFL, 0);
fcntl(fileno(stdout), F_SETFL, flags & ~O_NONBLOCK);
flags = fcntl(fileno(stderr), F_GETFL, 0);
fcntl(fileno(stderr), F_SETFL, flags & ~O_NONBLOCK);
#endif
#ifdef _WIN32
// try to suppress hanging the process by windows displaying
// modal dialogs.
SetErrorMode(SEM_NOALIGNMENTFAULTEXCEPT
| SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);
SetUnhandledExceptionFilter(&seh_exception_handler);
#ifdef _DEBUG
_CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR);
#endif
#endif
std::set_terminate(term_handler);
signal(SIGSEGV, &sig_handler);
#ifdef SIGBUS
signal(SIGBUS, &sig_handler);
#endif
signal(SIGILL, &sig_handler);
signal(SIGINT, &sig_handler);
signal(SIGABRT, &sig_handler);
signal(SIGFPE, &sig_handler);
#ifdef SIGSYS
signal(SIGSYS, &sig_handler);
#endif
int process_id = -1;
#ifdef _WIN32
process_id = _getpid();
#else
process_id = getpid();
#endif
std::string const root_dir = current_working_directory();
std::string const unit_dir_prefix = combine_path(root_dir, "test_tmp_" + std::to_string(process_id) + "_");
std::printf("test: %s\ncwd_prefix = \"%s\"\n", executable, unit_dir_prefix.c_str());
if (unit_test::g_num_unit_tests == 0)
{
std::printf("\x1b[31mTEST_ERROR: no unit tests registered\x1b[0m\n");
return 1;
}
if (redirect_stdout) old_stdout = dup(fileno(stdout));
if (redirect_stderr) old_stderr = dup(fileno(stderr));
int num_run = 0;
for (int i = 0; i < unit_test::g_num_unit_tests; ++i)
{
if (filter && tests_to_run.count(unit_test::g_unit_tests[i].name) == 0)
continue;
std::string const unit_dir = unit_dir_prefix + std::to_string(i);
error_code ec;
create_directory(unit_dir, ec);
if (ec)
{
std::printf("Failed to create unit test directory: %s\n", ec.message().c_str());
output_test_log_to_terminal();
return 1;
}
unit_directory_guard unit_dir_guard{unit_dir};
change_directory(unit_dir, ec);
if (ec)
{
std::printf("Failed to change unit test directory: %s\n", ec.message().c_str());
output_test_log_to_terminal();
return 1;
}
auto& t = ::unit_test::g_unit_tests[i];
if (redirect_stdout || redirect_stderr)
{
// redirect test output to a temporary file
fflush(stdout);
fflush(stderr);
#ifdef TORRENT_MINGW
// mingw has a buggy tmpfile() and tmpname() that needs a . prepended
// to it (or some other directory)
char temp_name[512];
FILE* f = nullptr;
if (tmpnam_s(temp_name + 1, sizeof(temp_name) - 1) == 0)
{
temp_name[0] = '.';
std::printf("using temporary filename %s\n", temp_name);
f = fopen(temp_name, "wb+");
}
else
{
std::printf("failed to generate filename for redirecting "
"output: (%d) %s\n", errno, strerror(errno));
}
#else
FILE* f = tmpfile();
#endif
if (f != nullptr)
{
int ret1 = 0;
if (redirect_stdout) ret1 |= dup2(fileno(f), fileno(stdout));
if (redirect_stderr) ret1 |= dup2(fileno(f), fileno(stderr));
if (ret1 >= 0)
{
t.output = f;
}
else
{
std::printf("failed to redirect output: (%d) %s\n"
, errno, strerror(errno));
}
}
else
{
std::printf("failed to create temporary file for redirecting "
"output: (%d) %s\n", errno, strerror(errno));
}
}
// get proper interleaving of stderr and stdout
setbuf(stdout, nullptr);
setbuf(stderr, nullptr);
::unit_test::g_test_idx = i;
current_test = &t;
std::printf("cwd: %s\n", unit_dir.c_str());
std::printf("test-case: %s\n", t.name);
std::mt19937 rng(0x82daf973);
lt::aux::random_engine() = rng;
std::printf("rnd = %x\n", lt::random(0xffffffff));
#ifndef BOOST_NO_EXCEPTIONS
try
{
#endif
std::srand(unsigned(std::hash<std::string>{}(executable)) + unsigned(i));
lt::aux::random_engine().seed(0x82daf973);
::unit_test::g_test_failures = 0;
(*t.fun)();
#ifndef BOOST_NO_EXCEPTIONS
}
catch (boost::system::system_error const& e)
{
char buf[200];
std::snprintf(buf, sizeof(buf), "TEST_ERROR: Terminated with system_error: (%d) [%s] \"%s\""
, e.code().value()
, e.code().category().name()
, e.code().message().c_str());
unit_test::report_failure(buf, __FILE__, __LINE__);
}
catch (std::exception const& e)
{
char buf[200];
std::snprintf(buf, sizeof(buf), "TEST_ERROR: Terminated with exception: \"%s\"", e.what());
unit_test::report_failure(buf, __FILE__, __LINE__);
}
catch (...)
{
unit_test::report_failure("TEST_ERROR: Terminated with unknown exception", __FILE__, __LINE__);
}
#endif
if (!tests_to_run.empty()) tests_to_run.erase(t.name);
if (::unit_test::g_test_failures > 0)
{
output_test_log_to_terminal();
}
t.num_failures = ::unit_test::g_test_failures;
t.run = true;
++num_run;
if (redirect_stdout && t.output)
fclose(t.output);
}
if (redirect_stdout && old_stdout != -1) dup2(old_stdout, fileno(stdout));
if (redirect_stderr && old_stderr != -1) dup2(old_stderr, fileno(stderr));
if (!tests_to_run.empty())
{
std::printf("\x1b[1mUNKONWN tests:\x1b[0m\n");
for (std::set<std::string>::iterator i = tests_to_run.begin()
, end(tests_to_run.end()); i != end; ++i)
{
std::printf(" %s\n", i->c_str());
}
}
if (num_run == 0)
{
std::printf("\x1b[31mTEST_ERROR: no unit tests run\x1b[0m\n");
output_test_log_to_terminal();
return 1;
}
// just in case of premature exits
// make sure we try to clean up some
stop_udp_tracker();
stop_all_proxies();
stop_web_server();
stop_peer();
stop_dht();
if (redirect_stdout) fflush(stdout);
if (redirect_stderr) fflush(stderr);
return unit_test::print_failures() ? 333 : 0;
}