2014-07-06 21:18:00 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2012-2018, Arvid Norberg
|
2014-07-06 21:18:00 +02:00
|
|
|
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 "libtorrent/torrent_peer.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
|
|
|
#include "libtorrent/string_util.hpp"
|
|
|
|
#include "libtorrent/peer_connection.hpp"
|
|
|
|
#include "libtorrent/crc32c.hpp"
|
|
|
|
#include "libtorrent/ip_voter.hpp"
|
2018-01-31 15:23:30 +01:00
|
|
|
#include "libtorrent/io.hpp" // for write_uint16
|
2015-10-03 21:13:45 +02:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2015-04-20 02:01:27 +02:00
|
|
|
namespace {
|
|
|
|
|
2016-06-18 20:01:38 +02:00
|
|
|
void apply_mask(std::uint8_t* b, std::uint8_t const* mask, int size)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2015-04-20 02:01:27 +02:00
|
|
|
for (int i = 0; i < size; ++i)
|
|
|
|
{
|
|
|
|
*b &= *mask;
|
|
|
|
++b;
|
|
|
|
++mask;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1. if the IP addresses are identical, hash the ports in 16 bit network-order
|
|
|
|
// binary representation, ordered lowest first.
|
|
|
|
// 2. if the IPs are in the same /24, hash the IPs ordered, lowest first.
|
|
|
|
// 3. if the IPs are in the ame /16, mask the IPs by 0xffffff55, hash them
|
|
|
|
// ordered, lowest first.
|
|
|
|
// 4. if IPs are not in the same /16, mask the IPs by 0xffff5555, hash them
|
|
|
|
// ordered, lowest first.
|
|
|
|
//
|
|
|
|
// * for IPv6 peers, just use the first 64 bits and widen the masks.
|
|
|
|
// like this: 0xffff5555 -> 0xffffffff55555555
|
|
|
|
// the lower 64 bits are always unmasked
|
|
|
|
//
|
|
|
|
// * for IPv6 addresses, compare /32 and /48 instead of /16 and /24
|
2016-10-22 17:47:24 +02:00
|
|
|
//
|
2014-07-06 21:18:00 +02:00
|
|
|
// * the two IP addresses that are used to calculate the rank must
|
|
|
|
// always be of the same address family
|
|
|
|
//
|
|
|
|
// * all IP addresses are in network byte order when hashed
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint32_t peer_priority(tcp::endpoint e1, tcp::endpoint e2)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2018-04-01 13:48:17 +02:00
|
|
|
TORRENT_ASSERT(is_v4(e1) == is_v4(e2));
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
using std::swap;
|
|
|
|
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint32_t ret;
|
2014-07-06 21:18:00 +02:00
|
|
|
if (e1.address() == e2.address())
|
|
|
|
{
|
|
|
|
if (e1.port() > e2.port())
|
|
|
|
swap(e1, e2);
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint32_t p;
|
2018-01-31 15:23:30 +01:00
|
|
|
auto ptr = reinterpret_cast<char*>(&p);
|
|
|
|
detail::write_uint16(e1.port(), ptr);
|
|
|
|
detail::write_uint16(e2.port(), ptr);
|
2014-07-06 21:18:00 +02:00
|
|
|
ret = crc32c_32(p);
|
|
|
|
}
|
2018-04-01 13:48:17 +02:00
|
|
|
else if (is_v6(e1))
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2016-06-18 20:01:38 +02:00
|
|
|
static const std::uint8_t v6mask[][8] = {
|
2014-07-06 21:18:00 +02:00
|
|
|
{ 0xff, 0xff, 0xff, 0xff, 0x55, 0x55, 0x55, 0x55 },
|
|
|
|
{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x55 },
|
|
|
|
{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }
|
|
|
|
};
|
|
|
|
|
|
|
|
if (e1 > e2) swap(e1, e2);
|
|
|
|
address_v6::bytes_type b1 = e1.address().to_v6().to_bytes();
|
|
|
|
address_v6::bytes_type b2 = e2.address().to_v6().to_bytes();
|
2016-08-21 01:46:55 +02:00
|
|
|
int const mask = std::memcmp(b1.data(), b2.data(), 4) ? 0
|
|
|
|
: std::memcmp(b1.data(), b2.data(), 6) ? 1 : 2;
|
|
|
|
apply_mask(b1.data(), v6mask[mask], 8);
|
|
|
|
apply_mask(b2.data(), v6mask[mask], 8);
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint64_t addrbuf[4];
|
2016-08-21 01:46:55 +02:00
|
|
|
memcpy(&addrbuf[0], b1.data(), 16);
|
|
|
|
memcpy(&addrbuf[2], b2.data(), 16);
|
2014-07-06 21:18:00 +02:00
|
|
|
ret = crc32c(addrbuf, 4);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-18 20:01:38 +02:00
|
|
|
static const std::uint8_t v4mask[][4] = {
|
2014-07-06 21:18:00 +02:00
|
|
|
{ 0xff, 0xff, 0x55, 0x55 },
|
|
|
|
{ 0xff, 0xff, 0xff, 0x55 },
|
|
|
|
{ 0xff, 0xff, 0xff, 0xff }
|
|
|
|
};
|
|
|
|
|
|
|
|
if (e1 > e2) swap(e1, e2);
|
|
|
|
address_v4::bytes_type b1 = e1.address().to_v4().to_bytes();
|
|
|
|
address_v4::bytes_type b2 = e2.address().to_v4().to_bytes();
|
|
|
|
int mask = memcmp(&b1[0], &b2[0], 2) ? 0
|
|
|
|
: memcmp(&b1[0], &b2[0], 3) ? 1 : 2;
|
|
|
|
apply_mask(&b1[0], v4mask[mask], 4);
|
|
|
|
apply_mask(&b2[0], v4mask[mask], 4);
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint64_t addrbuf;
|
2014-07-06 21:18:00 +02:00
|
|
|
memcpy(&addrbuf, &b1[0], 4);
|
|
|
|
memcpy(reinterpret_cast<char*>(&addrbuf) + 4, &b2[0], 4);
|
|
|
|
ret = crc32c(&addrbuf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-07-16 20:26:00 +02:00
|
|
|
torrent_peer::torrent_peer(std::uint16_t port_, bool conn
|
|
|
|
, peer_source_flags_t const src)
|
2014-07-06 21:18:00 +02:00
|
|
|
: prev_amount_upload(0)
|
|
|
|
, prev_amount_download(0)
|
2016-07-09 22:26:26 +02:00
|
|
|
, connection(nullptr)
|
2014-07-06 21:18:00 +02:00
|
|
|
, peer_rank(0)
|
|
|
|
, last_optimistically_unchoked(0)
|
|
|
|
, last_connected(0)
|
2015-08-02 21:55:05 +02:00
|
|
|
, port(port_)
|
2014-07-06 21:18:00 +02:00
|
|
|
, hashfails(0)
|
|
|
|
, failcount(0)
|
|
|
|
, connectable(conn)
|
|
|
|
, optimistically_unchoked(false)
|
|
|
|
, seed(false)
|
|
|
|
, fast_reconnects(0)
|
|
|
|
, trust_points(0)
|
2017-07-16 20:26:00 +02:00
|
|
|
, source(static_cast<std::uint8_t>(src))
|
2018-07-29 00:22:10 +02:00
|
|
|
#if !defined TORRENT_DISABLE_ENCRYPTION
|
2014-07-06 21:18:00 +02:00
|
|
|
// assume no support in order to
|
2016-04-04 04:30:56 +02:00
|
|
|
// prefer opening non-encrypted
|
2014-07-06 21:18:00 +02:00
|
|
|
// connections. If it fails, we'll
|
|
|
|
// retry with encryption
|
|
|
|
, pe_support(false)
|
|
|
|
#endif
|
|
|
|
, is_v6_addr(false)
|
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
, is_i2p_addr(false)
|
|
|
|
#endif
|
|
|
|
, on_parole(false)
|
|
|
|
, banned(false)
|
|
|
|
, supports_utp(true) // assume peers support utp
|
|
|
|
, confirmed_supports_utp(false)
|
|
|
|
, supports_holepunch(false)
|
|
|
|
, web_seed(false)
|
2017-02-21 16:12:18 +01:00
|
|
|
{}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2016-06-18 20:01:38 +02:00
|
|
|
std::uint32_t torrent_peer::rank(external_ip const& external, int external_port) const
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2017-11-08 11:44:56 +01:00
|
|
|
TORRENT_ASSERT(in_use);
|
2014-07-06 21:18:00 +02:00
|
|
|
//TODO: how do we deal with our external address changing?
|
|
|
|
if (peer_rank == 0)
|
|
|
|
peer_rank = peer_priority(
|
2016-11-21 16:08:26 +01:00
|
|
|
tcp::endpoint(external.external_address(this->address()), std::uint16_t(external_port))
|
2014-07-06 21:18:00 +02:00
|
|
|
, tcp::endpoint(this->address(), this->port));
|
|
|
|
return peer_rank;
|
|
|
|
}
|
|
|
|
|
2015-07-12 20:08:04 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
|
|
|
std::string torrent_peer::to_string() const
|
|
|
|
{
|
2017-11-08 11:44:56 +01:00
|
|
|
TORRENT_ASSERT(in_use);
|
2015-07-12 20:08:04 +02:00
|
|
|
#if TORRENT_USE_I2P
|
2017-08-25 09:42:46 +02:00
|
|
|
if (is_i2p_addr) return dest().to_string();
|
2015-07-12 20:08:04 +02:00
|
|
|
#endif // TORRENT_USE_I2P
|
|
|
|
error_code ec;
|
|
|
|
return address().to_string(ec);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-02-21 16:12:18 +01:00
|
|
|
std::int64_t torrent_peer::total_download() const
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2017-11-08 11:44:56 +01:00
|
|
|
TORRENT_ASSERT(in_use);
|
2016-07-09 22:26:26 +02:00
|
|
|
if (connection != nullptr)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(prev_amount_download == 0);
|
|
|
|
return connection->statistics().total_payload_download();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-21 16:12:18 +01:00
|
|
|
return std::int64_t(prev_amount_download) << 10;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-21 16:12:18 +01:00
|
|
|
std::int64_t torrent_peer::total_upload() const
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2017-11-08 11:44:56 +01:00
|
|
|
TORRENT_ASSERT(in_use);
|
2016-07-09 22:26:26 +02:00
|
|
|
if (connection != nullptr)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
TORRENT_ASSERT(prev_amount_upload == 0);
|
|
|
|
return connection->statistics().total_payload_upload();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-21 16:12:18 +01:00
|
|
|
return std::int64_t(prev_amount_upload) << 10;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-16 20:26:00 +02:00
|
|
|
ipv4_peer::ipv4_peer(tcp::endpoint const& ep, bool c
|
|
|
|
, peer_source_flags_t const src)
|
2014-07-06 21:18:00 +02:00
|
|
|
: torrent_peer(ep.port(), c, src)
|
|
|
|
, addr(ep.address().to_v4())
|
|
|
|
{
|
|
|
|
is_v6_addr = false;
|
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
is_i2p_addr = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-07-10 13:34:45 +02:00
|
|
|
ipv4_peer::ipv4_peer(ipv4_peer const&) = default;
|
2017-03-18 20:53:07 +01:00
|
|
|
ipv4_peer& ipv4_peer::operator=(ipv4_peer const& p) = default;
|
2015-08-19 01:39:01 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_I2P
|
2019-04-09 23:56:31 +02:00
|
|
|
i2p_peer::i2p_peer(string_view dest, bool connectable_
|
2017-07-16 20:26:00 +02:00
|
|
|
, peer_source_flags_t const src)
|
2019-04-09 23:56:31 +02:00
|
|
|
: torrent_peer(0, connectable_, src)
|
2017-08-25 09:42:46 +02:00
|
|
|
, destination(dest)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
is_v6_addr = false;
|
|
|
|
is_i2p_addr = true;
|
|
|
|
}
|
|
|
|
#endif // TORRENT_USE_I2P
|
|
|
|
|
2017-07-16 20:26:00 +02:00
|
|
|
ipv6_peer::ipv6_peer(tcp::endpoint const& ep, bool c
|
|
|
|
, peer_source_flags_t const src)
|
2014-07-06 21:18:00 +02:00
|
|
|
: torrent_peer(ep.port(), c, src)
|
|
|
|
, addr(ep.address().to_v6().to_bytes())
|
|
|
|
{
|
|
|
|
is_v6_addr = true;
|
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
is_i2p_addr = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-03-18 20:53:07 +01:00
|
|
|
ipv6_peer::ipv6_peer(ipv6_peer const&) = default;
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_I2P
|
2017-08-25 09:42:46 +02:00
|
|
|
string_view torrent_peer::dest() const
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
if (is_i2p_addr)
|
2017-08-25 09:42:46 +02:00
|
|
|
return *static_cast<i2p_peer const*>(this)->destination;
|
2014-07-06 21:18:00 +02:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
#endif
|
2016-01-23 19:37:50 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
libtorrent::address torrent_peer::address() const
|
|
|
|
{
|
|
|
|
if (is_v6_addr)
|
|
|
|
return libtorrent::address_v6(
|
|
|
|
static_cast<ipv6_peer const*>(this)->addr);
|
|
|
|
else
|
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
if (is_i2p_addr) return libtorrent::address();
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
return static_cast<ipv4_peer const*>(this)->addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|