forked from arvidn/libtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_create_torrent.cpp
555 lines (460 loc) · 16.4 KB
/
test_create_torrent.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
/*
Copyright (c) 2016, Alden Torres
Copyright (c) 2016-2020, Arvid Norberg
Copyright (c) 2016, Pavel Pimenov
Copyright (c) 2017-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 "test.hpp"
#include "test_utils.hpp"
#include "setup_transfer.hpp"
#include "libtorrent/torrent_info.hpp"
#include "libtorrent/create_torrent.hpp"
#include "libtorrent/bencode.hpp"
#include "libtorrent/announce_entry.hpp"
#include "libtorrent/aux_/escape_string.hpp" // for convert_path_to_posix
#include "libtorrent/announce_entry.hpp"
#include "libtorrent/units.hpp"
#include <cstring>
#include <iostream>
#include <fstream>
#include <string>
using namespace std::literals::string_literals;
// make sure creating a torrent from an existing handle preserves the
// info-dictionary verbatim, so as to not alter the info-hash
TORRENT_TEST(create_verbatim_torrent)
{
char const test_torrent[] = "d4:infod4:name6:foobar6:lengthi12345e"
"12:piece lengthi65536e6:pieces20:ababababababababababee";
lt::torrent_info info(test_torrent, lt::from_span);
info.add_tracker("http://test.com");
info.add_tracker("http://test.com");
TEST_EQUAL(info.trackers().size(), 1);
lt::create_torrent t(info);
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
// now, make sure the info dictionary was unchanged
buffer.push_back('\0');
char const* dest_info = std::strstr(&buffer[0], "4:info");
TEST_CHECK(dest_info != nullptr);
// +1 and -2 here is to strip the outermost dictionary from the source
// torrent, since create_torrent may have added items next to the info dict
TEST_CHECK(memcmp(dest_info, test_torrent + 1, sizeof(test_torrent)-3) == 0);
}
TORRENT_TEST(auto_piece_size)
{
std::int64_t const kiB = 1024;
std::int64_t const MiB = 1024 * 1024;
std::int64_t const GiB = 1024 * 1024 * 1024;
std::array<std::pair<std::int64_t, std::int64_t>, 11> samples{{
{100LL, 16 * kiB},
{3 * MiB, 32 * kiB},
{11 * MiB, 64 * kiB},
{43 * MiB, 128 * kiB},
{172 * MiB, 256 * kiB},
{688 * MiB, 512 * kiB},
{3 * GiB, 1 * MiB},
{11 * GiB, 2 * MiB},
{44 * GiB, 4 * MiB},
{176 * GiB, 8 * MiB},
{704 * GiB, 16 * MiB},
}};
for (auto const& t : samples)
{
lt::file_storage fs;
fs.add_file("a", t.first);
lt::create_torrent ct(fs, 0);
TEST_CHECK(ct.piece_length() == static_cast<int>(t.second));
}
}
namespace {
int test_piece_size(int const piece_size, lt::create_flags_t const f = {})
{
std::int64_t const MiB = 1024 * 1024;
lt::file_storage fs;
fs.add_file("a", 100 * MiB);
lt::create_torrent ct(fs, piece_size, f);
return ct.piece_length();
}
}
TORRENT_TEST(piece_size_restriction_16kB)
{
TEST_EQUAL(test_piece_size(15000), 16 * 1024);
TEST_EQUAL(test_piece_size(500), 16 * 1024);
TEST_THROW(test_piece_size(15000, lt::create_torrent::v1_only));
TEST_THROW(test_piece_size(8000, lt::create_torrent::v1_only));
TEST_EQUAL(test_piece_size(8192, lt::create_torrent::v1_only), 8192);
}
TORRENT_TEST(piece_size_quanta)
{
TEST_EQUAL(test_piece_size(32 * 1024), 32 * 1024);
TEST_EQUAL(test_piece_size(32 * 1024, lt::create_torrent::v1_only), 32 * 1024);
TEST_THROW(test_piece_size(48 * 1024));
TEST_EQUAL(test_piece_size(48 * 1024, lt::create_torrent::v1_only), 48 * 1024);
TEST_THROW(test_piece_size(47 * 1024, lt::create_torrent::v1_only));
TEST_THROW(test_piece_size(47 * 1024));
}
TORRENT_TEST(create_torrent_round_trip)
{
char const test_torrent[] = "d8:announce26:udp://testurl.com/announce7:comment22:this is a test comment13:creation datei1337e4:infod6:lengthi12345e4:name6:foobar12:piece lengthi65536e6:pieces20:ababababababababababee";
lt::torrent_info info1(test_torrent, lt::from_span);
TEST_EQUAL(info1.comment(), "this is a test comment");
TEST_EQUAL(info1.trackers().size(), 1);
TEST_EQUAL(info1.trackers().front().url, "udp://testurl.com/announce");
lt::create_torrent t(info1);
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
lt::torrent_info info2(buffer, lt::from_span);
TEST_EQUAL(info2.comment(), "this is a test comment");
TEST_EQUAL(info2.trackers().size(), 1);
TEST_EQUAL(info2.trackers().front().url, "udp://testurl.com/announce");
TEST_CHECK(info1.info_hashes() == info2.info_hashes());
TEST_CHECK(info2.hash_for_piece(0_piece) == info1.hash_for_piece(0_piece));
}
namespace {
void test_round_trip_torrent(std::string const& name)
{
std::string const root_dir = lt::parent_path(lt::current_working_directory());
std::string const filename = lt::combine_path(lt::combine_path(root_dir, "test_torrents"), name);
std::vector<char> v2_buffer;
lt::error_code ec;
int const ret = load_file(filename, v2_buffer, ec);
TEST_CHECK(ret == 0);
TEST_CHECK(!ec);
lt::bdecode_node in_torrent = lt::bdecode(v2_buffer);
lt::torrent_info info1(v2_buffer, lt::from_span);
lt::create_torrent t(info1);
std::vector<char> out_buffer;
lt::entry e = t.generate();
lt::bencode(std::back_inserter(out_buffer), e);
lt::bdecode_node out_torrent = lt::bdecode(out_buffer);
TEST_CHECK(out_torrent.dict_find("info").data_section()
== in_torrent.dict_find("info").data_section());
auto in_piece_layers = in_torrent.dict_find("piece layers").data_section();
auto out_piece_layers = out_torrent.dict_find("piece layers").data_section();
TEST_CHECK(out_piece_layers == in_piece_layers);
}
}
TORRENT_TEST(create_torrent_round_trip_v2)
{
test_round_trip_torrent("v2_only.torrent");
}
TORRENT_TEST(create_torrent_round_trip_hybrid)
{
test_round_trip_torrent("v2_hybrid.torrent");
}
TORRENT_TEST(create_torrent_round_trip_empty_file)
{
test_round_trip_torrent("v2_empty_file.torrent");
}
// check that attempting to create a torrent containing both
// a file and directory with the same name is not allowed
TORRENT_TEST(v2_path_conflict)
{
lt::file_storage fs;
for (int i = 0; i < 2; ++i)
{
switch (i)
{
case 0:
fs.add_file("test/A/tmp", 0x4000);
fs.add_file("test/a", 0x4000);
fs.add_file("test/A", 0x4000);
fs.add_file("test/filler", 0x4000);
break;
case 1:
fs.add_file("test/long/path/name/that/collides", 0x4000);
fs.add_file("test/long/path", 0x4000);
fs.add_file("test/filler-1", 0x4000);
fs.add_file("test/filler-2", 0x4000);
break;
}
lt::create_torrent t(fs, 0x4000);
lt::sha256_hash const dummy("01234567890123456789012345678901");
lt::piece_index_t::diff_type zero(0);
t.set_hash2(0_file, zero, dummy);
t.set_hash2(1_file, zero, dummy);
t.set_hash2(2_file, zero, dummy);
t.set_hash2(3_file, zero, dummy);
TEST_THROW(t.generate());
}
}
TORRENT_TEST(v2_only)
{
lt::file_storage fs;
fs.add_file("test/A", 0x8002);
fs.add_file("test/B", 0x4002);
lt::create_torrent t(fs, 0x4000, lt::create_torrent::v2_only);
using p = lt::piece_index_t::diff_type;
t.set_hash2(0_file, p(0), lt::sha256_hash::max());
t.set_hash2(0_file, p(1), lt::sha256_hash::max());
t.set_hash2(0_file, p(2), lt::sha256_hash::max());
// file 1 is a pad file
t.set_hash2(2_file, p(0), lt::sha256_hash::max());
t.set_hash2(2_file, p(1), lt::sha256_hash::max());
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
lt::torrent_info info(buffer, lt::from_span);
TEST_CHECK(info.info_hashes().has_v2());
TEST_CHECK(!info.info_hashes().has_v1());
TEST_EQUAL(info.files().file_name(0_file), "A");
TEST_CHECK(info.files().pad_file_at(1_file));
TEST_EQUAL(info.files().file_name(2_file), "B");
TEST_EQUAL(info.name(), "test");
lt::create_torrent t2(info);
std::vector<char> buffer2;
lt::bencode(std::back_inserter(buffer2), t2.generate());
TEST_CHECK(buffer == buffer2);
}
TORRENT_TEST(v2_only_set_hash)
{
lt::file_storage fs;
fs.add_file("test/A", 0x8002);
lt::create_torrent t(fs, 0x4000, lt::create_torrent::v2_only);
TEST_THROW(t.set_hash(0_piece, lt::sha1_hash::max()));
}
namespace {
void check(int ret)
{
if (ret == 0) return;
lt::error_code ec(errno, lt::generic_category());
std::cerr << "call failed: " << ec.message() << '\n';
throw std::runtime_error(ec.message());
}
}
#if TORRENT_HAS_SYMLINK
TORRENT_TEST(create_torrent_symlink)
{
lt::error_code ec;
lt::create_directories("test-torrent/a/b/c", ec);
lt::create_directories("test-torrent/d/", ec);
std::ofstream f1("test-torrent/a/b/c/file-1");
check(::truncate("test-torrent/a/b/c/file-1", 1000));
std::ofstream f2("test-torrent/d/file-2");
check(::truncate("test-torrent/d/file-2", 1000));
check(::symlink("../a/b/c/file-1", "test-torrent/d/test-link-1"));
check(::symlink("a/b/c/file-1", "test-torrent/test-link-2"));
check(::symlink("a/b/c/file-1", "test-torrent/a/b/c/test-link-3"));
check(::symlink("../../../d/file-2", "test-torrent/a/b/c/test-link-4"));
lt::file_storage fs;
lt::add_files(fs, "test-torrent"
, [](std::string n){ std::cout << n << '\n'; return true; }, lt::create_torrent::symlinks);
lt::create_torrent t(fs, 16 * 1024, lt::create_torrent::symlinks);
lt::set_piece_hashes(t, ".", [] (lt::piece_index_t) {});
std::vector<char> torrent;
lt::bencode(back_inserter(torrent), t.generate());
lt::torrent_info ti(torrent, lt::from_span);
int found = 0;
for (auto i : ti.files().file_range())
{
auto const filename = ti.files().file_path(i);
if (filename == "test-torrent/d/test-link-1"
|| filename == "test-torrent/test-link-2"
|| filename == "test-torrent/a/b/c/test-link-3")
{
TEST_EQUAL(ti.files().symlink(i), "test-torrent/a/b/c/file-1");
++found;
}
else if (filename == "test-torrent/a/b/c/test-link-4")
{
TEST_EQUAL(ti.files().symlink(i), "test-torrent/d/file-2");
++found;
}
}
TEST_EQUAL(found, 4);
}
#endif
#ifndef TORRENT_WINDOWS
TORRENT_TEST(v2_attributes)
{
std::ofstream f1("file-1");
check(::truncate("file-1", 1000));
check(::chmod("file-1", S_IWUSR | S_IRUSR | S_IXUSR));
lt::file_storage fs;
lt::add_files(fs, "file-1", [](std::string){ return true; }, {});
lt::create_torrent t(fs, 16 * 1024, {});
lt::set_piece_hashes(t, ".", [] (lt::piece_index_t) {});
lt::entry e = t.generate();
std::cout << e.to_string() << '\n';
TEST_EQUAL(e["info"]["attr"].string(), "x");
TEST_EQUAL(e["info"]["file tree"]["file-1"][""]["attr"].string(), "x");
}
#endif
TORRENT_TEST(v1_only_set_hash2)
{
lt::file_storage fs;
fs.add_file("test/A", 0x8002);
lt::create_torrent t(fs, 0x4000, lt::create_torrent::v1_only);
using p = lt::piece_index_t::diff_type;
TEST_THROW(t.set_hash2(0_file, p(0), lt::sha256_hash::max()));
}
// if we don't specify a v2-only flag, but only set v2 hashes, the created
// torrent is implicitly v2-only
TORRENT_TEST(implicit_v2_only)
{
lt::file_storage fs;
fs.add_file("test/A", 0x8002);
fs.add_file("test/B", 0x4002);
lt::create_torrent t(fs, 0x4000);
using p = lt::piece_index_t::diff_type;
t.set_hash2(0_file, p(0), lt::sha256_hash::max());
t.set_hash2(0_file, p(1), lt::sha256_hash::max());
t.set_hash2(0_file, p(2), lt::sha256_hash::max());
// file 1 is a pad file
t.set_hash2(2_file, p(0), lt::sha256_hash::max());
t.set_hash2(2_file, p(1), lt::sha256_hash::max());
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
lt::torrent_info info(buffer, lt::from_span);
TEST_CHECK(info.info_hashes().has_v2());
TEST_CHECK(!info.info_hashes().has_v1());
TEST_EQUAL(info.files().file_name(0_file), "A");
TEST_EQUAL(info.files().pad_file_at(1_file), true);
TEST_EQUAL(info.files().file_name(2_file), "B");
TEST_EQUAL(info.name(), "test");
}
// if we don't specify a v1-only flag, but only set v1 hashes, the created
// torrent is implicitly v1-only
TORRENT_TEST(implicit_v1_only)
{
lt::file_storage fs;
fs.add_file("test/A", 0x8002);
fs.add_file("test/B", 0x4002);
lt::create_torrent t(fs, 0x4000);
for (lt::piece_index_t i : fs.piece_range())
t.set_hash(i, lt::sha1_hash::max());
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
lt::torrent_info info(buffer, lt::from_span);
TEST_CHECK(!info.info_hashes().has_v2());
TEST_CHECK(info.info_hashes().has_v1());
TEST_EQUAL(info.files().file_name(0_file), "A");
TEST_EQUAL(info.files().pad_file_at(1_file), true);
TEST_EQUAL(info.files().file_name(2_file), "B");
TEST_EQUAL(info.name(), "test");
}
namespace {
template <typename Fun>
lt::torrent_info test_field(Fun f)
{
lt::file_storage fs;
fs.add_file("A", 0x4000);
lt::create_torrent t(fs, 0x4000);
for (lt::piece_index_t i : fs.piece_range())
t.set_hash(i, lt::sha1_hash::max());
f(t);
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
return lt::torrent_info(buffer, lt::from_span);
}
}
TORRENT_TEST(no_creation_date)
{
auto info = test_field([](lt::create_torrent& t){
t.set_creation_date(0);
});
TEST_EQUAL(info.creation_date(), 0);
}
TORRENT_TEST(creation_date)
{
auto info = test_field([](lt::create_torrent& t){
t.set_creation_date(1337);
});
TEST_EQUAL(info.creation_date(), 1337);
}
TORRENT_TEST(comment)
{
auto info = test_field([](lt::create_torrent& t){
t.set_comment("foobar");
});
TEST_EQUAL(info.comment(), "foobar");
}
TORRENT_TEST(creator)
{
auto info = test_field([](lt::create_torrent& t){
t.set_creator("foobar");
});
TEST_EQUAL(info.creator(), "foobar");
}
TORRENT_TEST(dht_nodes)
{
auto info = test_field([](lt::create_torrent& t){
t.add_node({"foobar"s, 1337});
});
using nodes = std::vector<std::pair<std::string, int>>;
TEST_CHECK((info.nodes() == nodes{{"foobar", 1337}}));
}
TORRENT_TEST(ssl_cert)
{
auto info = test_field([](lt::create_torrent& t){
t.set_root_cert("foobar");
});
TEST_EQUAL(info.ssl_cert(), "foobar");
}
TORRENT_TEST(priv)
{
auto info = test_field([](lt::create_torrent& t){
t.set_priv(true);
});
TEST_CHECK(info.priv());
}
TORRENT_TEST(piece_layer)
{
lt::file_storage fs;
fs.add_file("test/large", 0x8000);
fs.add_file("test/small-1", 0x4000);
fs.add_file("test/small-2", 0x3fff);
lt::create_torrent t(fs, 0x4000);
using p = lt::piece_index_t::diff_type;
t.set_hash2(0_file, p(0), lt::sha256_hash::max());
t.set_hash2(0_file, p(1), lt::sha256_hash::max());
t.set_hash2(1_file, p(0), lt::sha256_hash::max());
t.set_hash2(2_file, p(0), lt::sha256_hash::max());
std::vector<char> buffer;
lt::bencode(std::back_inserter(buffer), t.generate());
lt::torrent_info info(buffer, lt::from_span);
TEST_CHECK(info.piece_layer(0_file).size() == lt::sha256_hash::size() * 2);
TEST_CHECK(info.piece_layer(1_file).size() == lt::sha256_hash::size());
TEST_CHECK(info.piece_layer(2_file).size() == lt::sha256_hash::size());
}
TORRENT_TEST(pieces_root_empty_file)
{
lt::file_storage fs;
fs.add_file("test/1-empty", 0);
fs.add_file("test/2-small", 0x3fff);
fs.add_file("test/3-empty", 0);
lt::create_torrent t(fs, 0x4000);
using p = lt::piece_index_t::diff_type;
t.set_hash2(1_file, p(0), lt::sha256_hash::max());
std::vector<char> buffer;
lt::entry e = t.generate();
TEST_CHECK(!e["info"]["files tree"]["test"]["1-empty"].find_key("pieces root"));
TEST_CHECK(!e["info"]["files tree"]["test"]["2-small"].find_key("pieces root"));
TEST_CHECK(!e["info"]["files tree"]["test"]["3-small"].find_key("pieces root"));
lt::bencode(std::back_inserter(buffer), e);
lt::torrent_info info(buffer, lt::from_span);
TEST_CHECK(info.files().root(0_file).is_all_zeros());
TEST_CHECK(!info.files().root(1_file).is_all_zeros());
}