2013-01-02 00:12:16 +01:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2013-2016, Arvid Norberg
|
2013-01-02 00:12:16 +01: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/ip_voter.hpp"
|
|
|
|
#include "libtorrent/broadcast_socket.hpp" // for is_any() etc.
|
|
|
|
#include "libtorrent/socket_io.hpp" // for hash_address
|
2013-01-02 00:43:52 +01:00
|
|
|
#include "libtorrent/random.hpp" // for random()
|
2015-03-12 05:34:54 +01:00
|
|
|
#include "libtorrent/aux_/time.hpp" // for aux::time_now()
|
2013-01-02 00:12:16 +01:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2014-03-03 10:49:58 +01:00
|
|
|
ip_voter::ip_voter()
|
|
|
|
: m_total_votes(0)
|
|
|
|
, m_valid_external(false)
|
2015-03-12 05:34:54 +01:00
|
|
|
, m_last_rotate(aux::time_now())
|
2014-03-03 10:49:58 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns true if our external IP changed
|
|
|
|
bool ip_voter::maybe_rotate()
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now();
|
2014-03-03 10:49:58 +01:00
|
|
|
|
|
|
|
// if we have more than or equal to 50 votes,
|
|
|
|
// we rotate. Also, if it's been more than 5 minutes
|
|
|
|
// and we have at least one vote, we also rotate.
|
|
|
|
// this is the inverse condition, since this is the case
|
|
|
|
// were we exit, without rotating
|
|
|
|
if (m_total_votes < 50
|
2015-05-08 06:28:24 +02:00
|
|
|
&& (now - m_last_rotate < minutes(5) || m_total_votes == 0)
|
|
|
|
&& m_valid_external)
|
2014-03-03 10:49:58 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// this shouldn't really happen if we have at least one
|
|
|
|
// vote.
|
|
|
|
if (m_external_addresses.empty()) return false;
|
|
|
|
|
2015-05-08 06:28:24 +02:00
|
|
|
// if there's just one vote, go with that
|
|
|
|
std::vector<external_ip_t>::iterator i;
|
|
|
|
if (m_external_addresses.size() == 1)
|
|
|
|
{
|
|
|
|
// avoid flapping. We need more votes to change our mind on the
|
|
|
|
// external IP
|
|
|
|
if (m_external_addresses[0].num_votes < 2) return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// find the top two votes.
|
|
|
|
std::partial_sort(m_external_addresses.begin()
|
|
|
|
, m_external_addresses.begin() + 2, m_external_addresses.end());
|
|
|
|
|
|
|
|
// if we don't have enough of a majority voting for the winning
|
|
|
|
// IP, don't rotate. This avoids flapping
|
|
|
|
if (m_external_addresses[0].num_votes * 2 / 3 <= m_external_addresses[1].num_votes)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
i = m_external_addresses.begin();
|
2014-03-03 10:49:58 +01:00
|
|
|
|
|
|
|
bool ret = m_external_address != i->addr;
|
|
|
|
m_external_address = i->addr;
|
|
|
|
|
|
|
|
m_external_address_voters.clear();
|
|
|
|
m_total_votes = 0;
|
|
|
|
m_external_addresses.clear();
|
|
|
|
m_last_rotate = now;
|
|
|
|
m_valid_external = true;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:12:16 +01:00
|
|
|
bool ip_voter::cast_vote(address const& ip
|
2016-09-16 03:13:43 +02:00
|
|
|
, int const source_type, address const& source)
|
2013-01-02 00:12:16 +01:00
|
|
|
{
|
|
|
|
if (is_any(ip)) return false;
|
|
|
|
if (is_local(ip)) return false;
|
|
|
|
if (is_loopback(ip)) return false;
|
|
|
|
|
|
|
|
// don't trust source that aren't connected to us
|
|
|
|
// on a different address family than the external
|
|
|
|
// IP they claim we have
|
|
|
|
if (ip.is_v4() != source.is_v4()) return false;
|
|
|
|
|
|
|
|
// this is the key to use for the bloom filters
|
|
|
|
// it represents the identity of the voter
|
2016-09-16 03:13:43 +02:00
|
|
|
sha1_hash const k = hash_address(source);
|
2013-01-02 00:12:16 +01:00
|
|
|
|
|
|
|
// do we already have an entry for this external IP?
|
|
|
|
std::vector<external_ip_t>::iterator i = std::find_if(m_external_addresses.begin()
|
2016-05-25 06:31:52 +02:00
|
|
|
, m_external_addresses.end(), [&ip] (external_ip_t const& e) { return e.addr == ip; });
|
2013-01-02 00:12:16 +01:00
|
|
|
|
|
|
|
if (i == m_external_addresses.end())
|
|
|
|
{
|
|
|
|
// each IP only gets to add a new IP once
|
2014-03-03 10:49:58 +01:00
|
|
|
if (m_external_address_voters.find(k)) return maybe_rotate();
|
2016-05-25 06:31:52 +02:00
|
|
|
|
2013-01-02 00:12:16 +01:00
|
|
|
if (m_external_addresses.size() > 40)
|
|
|
|
{
|
2016-08-06 19:18:48 +02:00
|
|
|
if (random(1)) return maybe_rotate();
|
2013-01-02 00:12:16 +01:00
|
|
|
|
|
|
|
// use stable sort here to maintain the fifo-order
|
|
|
|
// of the entries with the same number of votes
|
|
|
|
// this will sort in ascending order, i.e. the lowest
|
|
|
|
// votes first. Also, the oldest are first, so this
|
|
|
|
// is a sort of weighted LRU.
|
|
|
|
std::stable_sort(m_external_addresses.begin(), m_external_addresses.end());
|
|
|
|
|
2015-05-08 06:28:24 +02:00
|
|
|
// erase the last element, since it is one of the
|
|
|
|
// ones with the fewest votes
|
|
|
|
m_external_addresses.erase(m_external_addresses.end() - 1);
|
2013-01-02 00:12:16 +01:00
|
|
|
}
|
|
|
|
m_external_addresses.push_back(external_ip_t());
|
|
|
|
i = m_external_addresses.end() - 1;
|
|
|
|
i->addr = ip;
|
|
|
|
}
|
|
|
|
// add one more vote to this external IP
|
2014-03-03 10:49:58 +01:00
|
|
|
if (!i->add_vote(k, source_type)) return maybe_rotate();
|
|
|
|
++m_total_votes;
|
2016-05-25 06:31:52 +02:00
|
|
|
|
2014-03-03 10:49:58 +01:00
|
|
|
if (m_valid_external) return maybe_rotate();
|
|
|
|
|
2015-05-08 06:28:24 +02:00
|
|
|
i = std::min_element(m_external_addresses.begin(), m_external_addresses.end());
|
2013-01-02 00:12:16 +01:00
|
|
|
TORRENT_ASSERT(i != m_external_addresses.end());
|
|
|
|
|
2014-03-03 10:49:58 +01:00
|
|
|
if (i->addr == m_external_address) return maybe_rotate();
|
2013-01-02 00:12:16 +01:00
|
|
|
|
2016-09-16 03:13:43 +02:00
|
|
|
if (m_external_address != address())
|
2015-05-08 06:28:24 +02:00
|
|
|
{
|
|
|
|
// we have a temporary external address. As soon as we have
|
|
|
|
// more than 25 votes, consider deciding which one to settle for
|
|
|
|
return (m_total_votes >= 25) ? maybe_rotate() : false;
|
|
|
|
}
|
|
|
|
|
2013-01-02 00:12:16 +01:00
|
|
|
m_external_address = i->addr;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ip_voter::external_ip_t::add_vote(sha1_hash const& k, int type)
|
|
|
|
{
|
|
|
|
sources |= type;
|
|
|
|
if (voters.find(k)) return false;
|
|
|
|
voters.set(k);
|
|
|
|
++num_votes;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-12-04 21:58:51 +01:00
|
|
|
external_ip::external_ip(address const& local4, address const& global4
|
|
|
|
, address const& local6, address const& global6)
|
|
|
|
: m_addresses{{global4, ensure_v6(global6)}, {local4, ensure_v6(local6)}}
|
2013-01-02 00:12:16 +01:00
|
|
|
{
|
2016-12-04 21:58:51 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
TORRENT_ASSERT(m_addresses[0][1].is_v6());
|
|
|
|
TORRENT_ASSERT(m_addresses[1][1].is_v6());
|
|
|
|
#endif
|
|
|
|
TORRENT_ASSERT(m_addresses[0][0].is_v4());
|
|
|
|
TORRENT_ASSERT(m_addresses[1][0].is_v4());
|
2013-01-02 00:12:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
address external_ip::external_address(address const& ip) const
|
|
|
|
{
|
2016-12-04 21:58:51 +01:00
|
|
|
address ext = m_addresses[is_local(ip)][ip.is_v6()];
|
2013-06-16 02:59:29 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2013-01-02 08:48:09 +01:00
|
|
|
if (ip.is_v6() && ext == address_v4()) return address_v6();
|
2013-06-16 02:59:29 +02:00
|
|
|
#endif
|
2013-01-02 08:48:09 +01:00
|
|
|
return ext;
|
2013-01-02 00:12:16 +01:00
|
|
|
}
|
|
|
|
}
|