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
|
/*
Copyright (c) 2015-2017, 2019-2020, Arvid Norberg
Copyright (c) 2016, Steven Siloti
Copyright (c) 2018, Alden Torres
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 "libtorrent/ip_voter.hpp"
#include "libtorrent/address.hpp"
#include "libtorrent/socket.hpp"
#include "libtorrent/random.hpp"
#include "libtorrent/socket_io.hpp"
#include "libtorrent/aux_/session_interface.hpp"
#include "setup_transfer.hpp" // for rand_v4, supports_ipv6
using namespace lt;
namespace {
bool cast_vote(ip_voter& ipv, address ext_ip, address voter)
{
bool new_ip = ipv.cast_vote(ext_ip, aux::session_interface::source_dht, voter);
std::printf("%15s -> %-15s\n"
, print_address(voter).c_str()
, print_address(ext_ip).c_str());
if (new_ip)
{
std::printf(" \x1b[1mnew external IP: %s\x1b[0m\n"
, print_address(ipv.external_address()).c_str());
}
return new_ip;
}
} // anonymous namespace
// test the case where every time we get a new IP. Make sure
// we don't flap
TORRENT_TEST(test_random)
{
init_rand_address();
ip_voter ipv;
address_v4 addr1(make_address_v4("51.41.61.132"));
bool new_ip = cast_vote(ipv, addr1, rand_v4());
TEST_CHECK(new_ip);
TEST_CHECK(ipv.external_address() == addr1);
for (int i = 0; i < 1000; ++i)
{
new_ip = cast_vote(ipv, rand_v4(), rand_v4());
TEST_CHECK(!new_ip);
}
TEST_CHECK(ipv.external_address() == addr1);
}
TORRENT_TEST(two_ips)
{
init_rand_address();
ip_voter ipv;
address_v4 addr1(make_address_v4("51.1.1.1"));
address_v4 addr2(make_address_v4("53.3.3.3"));
// addr1 is the first address we see, which is the one we pick. Even though
// we'll have as many votes for addr2, we shouldn't flap, since addr2 never
// gets an overwhelming majority.
bool new_ip = cast_vote(ipv, addr1, rand_v4());
TEST_CHECK(new_ip);
for (int i = 0; i < 1000; ++i)
{
new_ip = cast_vote(ipv, addr2, rand_v4());
TEST_CHECK(!new_ip);
new_ip = cast_vote(ipv, rand_v4(), rand_v4());
TEST_CHECK(!new_ip);
new_ip = cast_vote(ipv, addr1, rand_v4());
TEST_CHECK(!new_ip);
TEST_CHECK(ipv.external_address() == addr1);
}
}
TORRENT_TEST(one_ip)
{
init_rand_address();
ip_voter ipv;
address_v4 start_addr(make_address_v4("93.12.63.174"));
address_v4 addr1(make_address_v4("51.1.1.1"));
address_v4 addr2(make_address_v4("53.3.3.3"));
bool new_ip = cast_vote(ipv, start_addr, rand_v4());
TEST_CHECK(new_ip);
TEST_CHECK(ipv.external_address() != addr1);
TEST_CHECK(ipv.external_address() == start_addr);
for (int i = 0; i < 30; ++i)
{
new_ip = cast_vote(ipv, addr2, rand_v4());
if (new_ip) break;
new_ip = cast_vote(ipv, rand_v4(), rand_v4());
if (new_ip) break;
new_ip = cast_vote(ipv, addr1, rand_v4());
if (new_ip) break;
new_ip = cast_vote(ipv, addr1, rand_v4());
if (new_ip) break;
}
TEST_CHECK(ipv.external_address() == addr1);
for (int i = 0; i < 500; ++i)
{
new_ip = cast_vote(ipv, addr2, rand_v4());
TEST_CHECK(!new_ip);
new_ip = cast_vote(ipv, rand_v4(), rand_v4());
TEST_CHECK(!new_ip);
new_ip = cast_vote(ipv, addr1, rand_v4());
TEST_CHECK(!new_ip);
new_ip = cast_vote(ipv, addr1, rand_v4());
TEST_CHECK(!new_ip);
}
TEST_CHECK(ipv.external_address() == addr1);
}
TORRENT_TEST(ip_voter_1)
{
init_rand_address();
// test external ip voting
ip_voter ipv1;
// test a single malicious node
// adds 50 legitimate responses from different peers
// and 50 malicious responses from the same peer
error_code ec;
address real_external = make_address_v4("5.5.5.5", ec);
TEST_CHECK(!ec);
address malicious = make_address_v4("4.4.4.4", ec);
TEST_CHECK(!ec);
for (int i = 0; i < 50; ++i)
{
ipv1.cast_vote(real_external, aux::session_interface::source_dht, rand_v4());
ipv1.cast_vote(rand_v4(), aux::session_interface::source_dht, malicious);
}
TEST_CHECK(ipv1.external_address() == real_external);
}
TORRENT_TEST(ip_voter_2)
{
init_rand_address();
ip_voter ipv2,ipv6;
// test a single malicious node
// adds 50 legitimate responses from different peers
// and 50 consistent malicious responses from the same peer
error_code ec;
address malicious = make_address_v4("4.4.4.4", ec);
TEST_CHECK(!ec);
address real_external1 = make_address_v4("5.5.5.5", ec);
TEST_CHECK(!ec);
address malicious_external = make_address_v4("3.3.3.3", ec);
TEST_CHECK(!ec);
address malicious2;
address real_external2;
address malicious_external2;
if (supports_ipv6())
{
malicious2 = make_address_v6("2f90::", ec);
TEST_CHECK(!ec);
real_external2 = make_address_v6("2f80::", ec);
TEST_CHECK(!ec);
malicious_external2 = make_address_v6("2f70::", ec);
TEST_CHECK(!ec);
}
for (int i = 0; i < 50; ++i)
{
ipv2.cast_vote(real_external1, aux::session_interface::source_dht, rand_v4());
ipv2.cast_vote(malicious_external, aux::session_interface::source_dht, malicious);
if (supports_ipv6())
{
ipv6.cast_vote(real_external2, aux::session_interface::source_dht, rand_v6());
ipv6.cast_vote(malicious_external2, aux::session_interface::source_dht, malicious2);
}
}
TEST_CHECK(ipv2.external_address() == real_external1);
if (supports_ipv6())
TEST_CHECK(ipv6.external_address() == real_external2);
}
|