File: test_privacy.cpp

package info (click to toggle)
libtorrent-rasterbar 2.0.11-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 18,304 kB
  • sloc: cpp: 190,670; python: 7,142; makefile: 1,374; ansic: 574; sh: 317; xml: 104
file content (341 lines) | stat: -rw-r--r-- 10,442 bytes parent folder | download | duplicates (2)
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
/*

Copyright (c) 2013-2020, 2022, Arvid Norberg
Copyright (c) 2016, 2018, Alden Torres
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 "test.hpp"
#include "setup_transfer.hpp"
#include "dht_server.hpp"
#include "peer_server.hpp"
#include "udp_tracker.hpp"
#include "test_utils.hpp"
#include "settings.hpp"

#include "libtorrent/alert.hpp"
#include "libtorrent/random.hpp"
#include "libtorrent/alert_types.hpp"
#include "libtorrent/torrent_info.hpp"
#include "libtorrent/aux_/path.hpp"
#include "libtorrent/flags.hpp"
#include "libtorrent/session_params.hpp"

#include <fstream>

using namespace lt;

namespace {

char const* proxy_name[] = {
	"none",
	"socks4",
	"socks5",
	"socks5_pw",
	"http",
	"http_pw",
	"i2p_proxy"
};

using flags_t = flags::bitfield_flag<std::uint32_t, struct test_proxy_tag>;

constexpr flags_t expect_http_connection = 1_bit;
constexpr flags_t expect_udp_connection = 2_bit;
//constexpr flags_t expect_http_reject = 3_bit;
//constexpr flags_t expect_udp_reject = 4_bit;
constexpr flags_t expect_dht_msg = 5_bit;
constexpr flags_t expect_peer_connection = 6_bit;

constexpr flags_t dont_proxy_peers = 10_bit;
constexpr flags_t dont_proxy_trackers = 11_bit;

session_proxy test_proxy(settings_pack::proxy_type_t proxy_type, flags_t flags)
{
#ifdef TORRENT_DISABLE_DHT
	// if DHT is disabled, we won't get any requests to it
	flags &= ~expect_dht_msg;
#endif
	std::printf("\n=== TEST == proxy: %s \n\n", proxy_name[proxy_type]);
	int const http_port = start_web_server();
	int const udp_port = start_udp_tracker();
	int const dht_port = start_dht();
	int const peer_port = start_peer();

	int const prev_udp_announces = num_udp_announces();

	settings_pack sett = settings();
	sett.set_int(settings_pack::stop_tracker_timeout, 2);
	sett.set_int(settings_pack::tracker_completion_timeout, 2);
	sett.set_int(settings_pack::tracker_receive_timeout, 2);
	sett.set_bool(settings_pack::announce_to_all_trackers, true);
	sett.set_bool(settings_pack::announce_to_all_tiers, true);
	sett.set_bool(settings_pack::enable_upnp, false);
	sett.set_bool(settings_pack::enable_natpmp, false);
	sett.set_bool(settings_pack::enable_lsd, false);
	sett.set_bool(settings_pack::enable_dht, true);

	// since multiple sessions may exist simultaneously (because of the
	// pipelining of the tests) they actually need to use different ports
	static int listen_port = 10000 + int(lt::random(50000));
	char iface[200];
	std::snprintf(iface, sizeof(iface), "127.0.0.1:%d", listen_port);
	listen_port += lt::random(10) + 1;
	sett.set_str(settings_pack::listen_interfaces, iface);

	// if we don't do this, the peer connection test
	// will be delayed by several seconds, by first
	// trying uTP
	sett.set_bool(settings_pack::enable_outgoing_utp, false);

	// in non-anonymous mode we circumvent/ignore the proxy if it fails
	// whereas in anonymous mode, we just fail
	sett.set_str(settings_pack::proxy_hostname, "non-existing.com");
	sett.set_int(settings_pack::proxy_type, proxy_type);
	sett.set_bool(settings_pack::proxy_peer_connections, !(flags & dont_proxy_peers));
	sett.set_bool(settings_pack::proxy_tracker_connections, !(flags & dont_proxy_trackers));
	sett.set_int(settings_pack::proxy_port, 4444);

	auto s = std::make_unique<lt::session>(sett);

	error_code ec;
	remove_all("tmp1_privacy", ec);
	create_directory("tmp1_privacy", ec);
	std::ofstream file(combine_path("tmp1_privacy", "temporary").c_str());
	std::shared_ptr<torrent_info> t = ::create_torrent(&file, "temporary", 16 * 1024, 13, false);
	file.close();

	add_torrent_params addp;
	char http_tracker_url[200];
	std::snprintf(http_tracker_url, sizeof(http_tracker_url)
		, "http://127.0.0.1:%d/announce", http_port);
	addp.trackers.push_back(http_tracker_url);
	addp.tracker_tiers.push_back(0);
	std::printf("http tracker: %s\n", http_tracker_url);

	char udp_tracker_url[200];
	std::snprintf(udp_tracker_url, sizeof(udp_tracker_url)
		, "udp://127.0.0.1:%d/announce", udp_port);
	addp.trackers.push_back(udp_tracker_url);
	addp.tracker_tiers.push_back(1);
	std::printf("udp tracker: %s\n", udp_tracker_url);

	addp.flags &= ~torrent_flags::paused;
	addp.flags &= ~torrent_flags::auto_managed;

	// we don't want to waste time checking the torrent, just go straight into
	// seeding it, announcing to trackers and connecting to peers
	addp.flags |= torrent_flags::seed_mode;

	addp.ti = t;
	addp.save_path = "tmp1_privacy";
	addp.dht_nodes.push_back(std::pair<std::string, int>("127.0.0.1", dht_port));
	torrent_handle h = s->add_torrent(addp);

	std::printf("connect_peer: 127.0.0.1:%d\n", peer_port);
	h.connect_peer({make_address_v4("127.0.0.1"), std::uint16_t(peer_port)});

	std::vector<std::string> accepted_trackers;

	int const timeout = 30;
	std::size_t const expected_trackers
		= ((flags & expect_http_connection) ? 2 : 0)
		+ ((flags & expect_udp_connection) ? 2 : 0);

	for (int i = 0; i < timeout; ++i)
	{
		print_alerts(*s, "s", false, false
			, [&](lt::alert const* a)
			{
				if (auto const* ta = alert_cast<tracker_reply_alert>(a))
				{
					std::printf("accepted tracker: %s\n", ta->tracker_url());
					accepted_trackers.push_back(ta->tracker_url());
				}
				return false;
			});
		std::this_thread::sleep_for(lt::milliseconds(100));

		if (num_udp_announces() >= prev_udp_announces + 1
			&& num_peer_hits() > 0
			&& accepted_trackers.size() >= expected_trackers)
		{
			break;
		}
	}

	// we should have announced to the tracker by now
	TEST_EQUAL(num_udp_announces(), prev_udp_announces
		+ ((flags & expect_udp_connection) ? 2 : 0));

	if (flags & expect_dht_msg)
	{
		TEST_CHECK(num_dht_hits() > 0);
	}
	else
	{
		TEST_EQUAL(num_dht_hits(), 0);
	}

	if (flags & expect_peer_connection)
	{
		TEST_CHECK(num_peer_hits() > 0);
	}
	else
	{
		TEST_EQUAL(num_peer_hits(), 0);
	}

	if (flags & expect_http_connection)
	{
		std::printf("expecting: %s\n", http_tracker_url);
		TEST_CHECK(std::find(accepted_trackers.begin(), accepted_trackers.end()
			, http_tracker_url) != accepted_trackers.end());
	}
	else
	{
		std::printf("NOT expecting: %s\n", http_tracker_url);
		TEST_CHECK(std::find(accepted_trackers.begin(), accepted_trackers.end()
			, http_tracker_url) == accepted_trackers.end());
	}

	if (flags & expect_udp_connection)
	{
		std::printf("expecting: %s\n", udp_tracker_url);
		TEST_CHECK(std::find(accepted_trackers.begin(), accepted_trackers.end()
			, udp_tracker_url) != accepted_trackers.end());
	}
	else
	{
		std::printf("NOT expecting: %s\n", udp_tracker_url);
		TEST_CHECK(std::find(accepted_trackers.begin(), accepted_trackers.end()
			, udp_tracker_url) == accepted_trackers.end());
	}

	std::printf("%s: ~session\n", time_now_string().c_str());
	session_proxy pr = s->abort();
	s.reset();

	stop_peer();
	stop_dht();
	stop_udp_tracker();
	stop_web_server();
	return pr;
}

} // anonymous namespace

// not using anonymous mode
// UDP fails open if we can't connect to the proxy
// or if the proxy doesn't support UDP

TORRENT_TEST(no_proxy)
{
	test_proxy(settings_pack::none, expect_udp_connection
		| expect_http_connection | expect_dht_msg | expect_peer_connection);
}

// since we don't actually have a proxy in this test, make sure libtorrent
// doesn't send any outgoing packets to either tracker or the peer
TORRENT_TEST(socks4)
{
	test_proxy(settings_pack::socks4, {});
}

TORRENT_TEST(socks5)
{
	test_proxy(settings_pack::socks5, {});
}

TORRENT_TEST(socks5_pw)
{
	test_proxy(settings_pack::socks5_pw, {});
}

TORRENT_TEST(http)
{
	test_proxy(settings_pack::http, {});
}

TORRENT_TEST(http_pw)
{
	test_proxy(settings_pack::http_pw, {});
}

// if we configure trackers to not be proxied, they should be let through
TORRENT_TEST(socks4_tracker)
{
	test_proxy(settings_pack::socks4, dont_proxy_trackers | expect_http_connection | expect_udp_connection);
}

TORRENT_TEST(socks5_tracker)
{
	test_proxy(settings_pack::socks5, dont_proxy_trackers | expect_http_connection | expect_udp_connection);
}

TORRENT_TEST(socks5_pw_tracker)
{
	test_proxy(settings_pack::socks5_pw, dont_proxy_trackers | expect_http_connection | expect_udp_connection);
}

TORRENT_TEST(http_tracker)
{
	test_proxy(settings_pack::http, dont_proxy_trackers | expect_http_connection | expect_udp_connection);
}

TORRENT_TEST(http_pw_tracker)
{
	test_proxy(settings_pack::http_pw, dont_proxy_trackers | expect_http_connection | expect_udp_connection);
}

// if we configure peers to not be proxied, they should be let through
TORRENT_TEST(socks4_peer)
{
	test_proxy(settings_pack::socks4, dont_proxy_peers | expect_peer_connection);
}

TORRENT_TEST(socks5_peer)
{
	test_proxy(settings_pack::socks5, dont_proxy_peers | expect_peer_connection);
}

TORRENT_TEST(socks5_pw_peer)
{
	test_proxy(settings_pack::socks5_pw, dont_proxy_peers | expect_peer_connection);
}

TORRENT_TEST(http_peer)
{
	test_proxy(settings_pack::http, dont_proxy_peers | expect_peer_connection);
}

TORRENT_TEST(http_pw_peer)
{
	test_proxy(settings_pack::http_pw, dont_proxy_peers | expect_peer_connection);
}