twisterp2pnetworkbittorrentblockchainipv6microbloggingdhtdecentralizedsocial-networktwister-ipv6twister-coretwisterarmyp2p-networktwister-server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
5.6 KiB
172 lines
5.6 KiB
/* |
|
|
|
Copyright (c) 2013-2014, Arvid Norberg |
|
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 |
|
#include "libtorrent/random.hpp" // for random() |
|
#include "libtorrent/time.hpp" // for time_now() |
|
|
|
#include <boost/bind.hpp> |
|
|
|
namespace libtorrent |
|
{ |
|
ip_voter::ip_voter() |
|
: m_total_votes(0) |
|
, m_valid_external(false) |
|
, m_last_rotate(time_now()) |
|
{ |
|
} |
|
|
|
// returns true if our external IP changed |
|
bool ip_voter::maybe_rotate() |
|
{ |
|
ptime now = time_now(); |
|
|
|
// 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 |
|
&& (now - m_last_rotate < minutes(5) || m_total_votes == 0)) |
|
return false; |
|
|
|
// this shouldn't really happen if we have at least one |
|
// vote. |
|
if (m_external_addresses.empty()) return false; |
|
|
|
// rotate |
|
std::vector<external_ip_t>::iterator i = std::max_element( |
|
m_external_addresses.begin(), m_external_addresses.end()); |
|
TORRENT_ASSERT(i != m_external_addresses.end()); |
|
|
|
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; |
|
} |
|
|
|
bool ip_voter::cast_vote(address const& ip |
|
, int source_type, address const& source) |
|
{ |
|
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 |
|
sha1_hash k; |
|
hash_address(source, k); |
|
|
|
// do we already have an entry for this external IP? |
|
std::vector<external_ip_t>::iterator i = std::find_if(m_external_addresses.begin() |
|
, m_external_addresses.end(), boost::bind(&external_ip_t::addr, _1) == ip); |
|
|
|
if (i == m_external_addresses.end()) |
|
{ |
|
// each IP only gets to add a new IP once |
|
if (m_external_address_voters.find(k)) return maybe_rotate(); |
|
|
|
if (m_external_addresses.size() > 40) |
|
{ |
|
if (random() % 100 < 50) |
|
return maybe_rotate(); |
|
|
|
// 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()); |
|
|
|
// erase the first element, since this is the |
|
// oldest entry and the one with lowst number |
|
// of votes. This makes sense because the oldest |
|
// entry has had the longest time to receive more |
|
// votes to be bumped up |
|
m_external_addresses.erase(m_external_addresses.begin()); |
|
} |
|
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 |
|
if (!i->add_vote(k, source_type)) return maybe_rotate(); |
|
++m_total_votes; |
|
|
|
if (m_valid_external) return maybe_rotate(); |
|
|
|
i = std::max_element(m_external_addresses.begin(), m_external_addresses.end()); |
|
TORRENT_ASSERT(i != m_external_addresses.end()); |
|
|
|
if (i->addr == m_external_address) return maybe_rotate(); |
|
|
|
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; |
|
} |
|
|
|
bool external_ip::cast_vote(address const& ip, int source_type, address const& source) |
|
{ |
|
return m_vote_group[ip.is_v6()].cast_vote(ip, source_type, source); |
|
} |
|
|
|
address external_ip::external_address(address const& ip) const |
|
{ |
|
address ext = m_vote_group[ip.is_v6()].external_address(); |
|
#if TORRENT_USE_IPV6 |
|
if (ip.is_v6() && ext == address_v4()) return address_v6(); |
|
#endif |
|
return ext; |
|
} |
|
} |
|
|
|
|