2006-08-01 17:27:08 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2006-2016, Arvid Norberg
|
2006-08-01 17:27:08 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-05-10 20:38:10 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
#include <utility>
|
2016-05-17 15:24:06 +02:00
|
|
|
#include <cinttypes> // for PRId64 et.al.
|
2016-05-25 06:31:52 +02:00
|
|
|
#include <functional>
|
2016-06-20 17:32:06 +02:00
|
|
|
#include <tuple>
|
2015-04-18 04:33:39 +02:00
|
|
|
|
2016-05-23 14:15:39 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-06-04 16:01:43 +02:00
|
|
|
#include "libtorrent/hex.hpp" // to_hex
|
2016-05-23 14:15:39 +02:00
|
|
|
#endif
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
#include "libtorrent/io.hpp"
|
2011-05-23 07:07:52 +02:00
|
|
|
#include "libtorrent/bencode.hpp"
|
2006-08-01 17:27:08 +02:00
|
|
|
#include "libtorrent/hasher.hpp"
|
2009-09-20 02:23:36 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2011-02-28 01:35:58 +01:00
|
|
|
#include "libtorrent/random.hpp"
|
2008-09-20 19:42:25 +02:00
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
2015-04-03 22:15:48 +02:00
|
|
|
#include "libtorrent/alert_types.hpp" // for dht_lookup
|
2015-05-10 20:38:10 +02:00
|
|
|
#include "libtorrent/performance_counters.hpp" // for counters
|
2015-04-03 22:15:48 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
#include "libtorrent/kademlia/node_id.hpp"
|
|
|
|
#include "libtorrent/kademlia/rpc_manager.hpp"
|
|
|
|
#include "libtorrent/kademlia/routing_table.hpp"
|
|
|
|
#include "libtorrent/kademlia/node.hpp"
|
2013-12-27 05:28:25 +01:00
|
|
|
#include "libtorrent/kademlia/dht_observer.hpp"
|
2014-02-17 06:56:49 +01:00
|
|
|
#include "libtorrent/kademlia/direct_request.hpp"
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#include "libtorrent/kademlia/refresh.hpp"
|
2013-12-27 05:28:25 +01:00
|
|
|
#include "libtorrent/kademlia/get_peers.hpp"
|
|
|
|
#include "libtorrent/kademlia/get_item.hpp"
|
2013-10-14 09:43:18 +02:00
|
|
|
|
2016-05-25 06:31:52 +02:00
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
namespace libtorrent { namespace dht
|
|
|
|
{
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
using detail::write_endpoint;
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
namespace {
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
void nop() {}
|
|
|
|
|
2016-02-12 04:56:52 +01:00
|
|
|
node_id calculate_node_id(node_id const& nid, dht_observer* observer, udp protocol)
|
2015-05-09 20:06:02 +02:00
|
|
|
{
|
|
|
|
address external_address;
|
2016-09-11 07:58:48 +02:00
|
|
|
if (observer != nullptr) external_address = observer->external_address(protocol);
|
2016-01-01 15:21:07 +01:00
|
|
|
|
|
|
|
// if we don't have an observer, don't pretend that external_address is valid
|
|
|
|
// generating an ID based on 0.0.0.0 would be terrible. random is better
|
2016-09-11 07:58:48 +02:00
|
|
|
if (observer == nullptr || external_address.is_unspecified())
|
2016-01-01 15:21:07 +01:00
|
|
|
{
|
|
|
|
return generate_random_id();
|
|
|
|
}
|
|
|
|
|
2016-09-11 07:58:48 +02:00
|
|
|
if (nid == node_id::min() || !verify_id(nid, external_address))
|
2015-05-09 20:06:02 +02:00
|
|
|
return generate_id(external_address);
|
2016-01-01 15:21:07 +01:00
|
|
|
|
2015-05-09 20:06:02 +02:00
|
|
|
return nid;
|
|
|
|
}
|
|
|
|
|
2015-04-20 06:52:49 +02:00
|
|
|
} // anonymous namespace
|
|
|
|
|
2016-02-12 04:56:52 +01:00
|
|
|
node::node(udp proto, udp_socket_interface* sock
|
2016-09-11 07:58:48 +02:00
|
|
|
, dht_settings const& settings
|
|
|
|
, node_id const& nid
|
2014-07-06 21:18:00 +02:00
|
|
|
, dht_observer* observer
|
2016-09-09 21:02:20 +02:00
|
|
|
, counters& cnt
|
2015-11-14 06:08:57 +01:00
|
|
|
, std::map<std::string, node*> const& nodes
|
2016-06-04 01:44:16 +02:00
|
|
|
, dht_storage_interface& storage)
|
2006-08-01 17:27:08 +02:00
|
|
|
: m_settings(settings)
|
2016-02-12 04:56:52 +01:00
|
|
|
, m_id(calculate_node_id(nid, observer, proto))
|
|
|
|
, m_table(m_id, proto, 8, settings, observer)
|
2015-09-03 00:09:49 +02:00
|
|
|
, m_rpc(m_id, m_settings, m_table, sock, observer)
|
2015-11-14 06:08:57 +01:00
|
|
|
, m_nodes(nodes)
|
2013-10-14 01:04:40 +02:00
|
|
|
, m_observer(observer)
|
2016-02-12 04:56:52 +01:00
|
|
|
, m_protocol(map_protocol_to_descriptor(proto))
|
2015-03-12 05:34:54 +01:00
|
|
|
, m_last_tracker_tick(aux::time_now())
|
2014-11-01 23:47:56 +01:00
|
|
|
, m_last_self_refresh(min_time())
|
2012-04-30 07:39:35 +02:00
|
|
|
, m_sock(sock)
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_counters(cnt)
|
2016-06-04 01:44:16 +02:00
|
|
|
, m_storage(storage)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2016-08-06 19:18:48 +02:00
|
|
|
m_secret[0] = random(0xffffffff);
|
|
|
|
m_secret[1] = random(0xffffffff);
|
2015-09-08 22:12:54 +02:00
|
|
|
}
|
|
|
|
|
2016-07-10 13:34:45 +02:00
|
|
|
node::~node() = default;
|
2016-01-09 19:28:15 +01:00
|
|
|
|
|
|
|
void node::update_node_id()
|
2015-09-08 22:12:54 +02:00
|
|
|
{
|
2016-01-09 19:28:15 +01:00
|
|
|
// if we don't have an observer, we can't ask for the external IP (and our
|
|
|
|
// current node ID is likely not generated from an external address), so we
|
|
|
|
// can just stop here in that case.
|
|
|
|
if (!m_observer) return;
|
|
|
|
|
|
|
|
// it's possible that our external address hasn't actually changed. If our
|
|
|
|
// current ID is still valid, don't do anything.
|
2016-02-12 04:56:52 +01:00
|
|
|
if (verify_id(m_id, m_observer->external_address(protocol())))
|
2016-01-09 19:28:15 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
|
|
|
if (m_observer) m_observer->log(dht_logger::node
|
|
|
|
, "updating node ID (because external IP address changed)");
|
|
|
|
#endif
|
|
|
|
|
2016-02-12 04:56:52 +01:00
|
|
|
m_id = generate_id(m_observer->external_address(protocol()));
|
2016-01-09 19:28:15 +01:00
|
|
|
|
|
|
|
m_table.update_node_id(m_id);
|
2016-07-25 03:30:36 +02:00
|
|
|
m_rpc.update_node_id(m_id);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 13:04:53 +02:00
|
|
|
bool node::verify_token(string_view token, sha1_hash const& info_hash
|
2015-08-06 08:30:06 +02:00
|
|
|
, udp::endpoint const& addr) const
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2007-05-14 19:49:36 +02:00
|
|
|
if (token.length() != 4)
|
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr)
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
m_observer->log(dht_logger::node, "token of incorrect length: %d"
|
|
|
|
, int(token.length()));
|
|
|
|
}
|
2007-05-14 19:49:36 +02:00
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
hasher h1;
|
2008-10-21 10:45:42 +02:00
|
|
|
error_code ec;
|
2016-07-22 16:29:39 +02:00
|
|
|
std::string const address = addr.address().to_string(ec);
|
2008-10-21 10:45:42 +02:00
|
|
|
if (ec) return false;
|
2016-07-22 16:29:39 +02:00
|
|
|
h1.update(address);
|
2015-08-06 08:30:06 +02:00
|
|
|
h1.update(reinterpret_cast<char const*>(&m_secret[0]), sizeof(m_secret[0]));
|
2016-07-24 00:57:04 +02:00
|
|
|
h1.update(info_hash);
|
2015-05-17 22:59:18 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
sha1_hash h = h1.final();
|
2015-08-06 08:30:06 +02:00
|
|
|
if (std::equal(token.begin(), token.end(), reinterpret_cast<char*>(&h[0])))
|
2006-08-01 17:27:08 +02:00
|
|
|
return true;
|
2015-05-17 22:59:18 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
hasher h2;
|
2016-07-22 16:29:39 +02:00
|
|
|
h2.update(address);
|
2015-08-06 08:30:06 +02:00
|
|
|
h2.update(reinterpret_cast<char const*>(&m_secret[1]), sizeof(m_secret[1]));
|
2016-07-24 00:57:04 +02:00
|
|
|
h2.update(info_hash);
|
2006-08-01 17:27:08 +02:00
|
|
|
h = h2.final();
|
2015-08-06 08:30:06 +02:00
|
|
|
if (std::equal(token.begin(), token.end(), reinterpret_cast<char*>(&h[0])))
|
2006-08-01 17:27:08 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-22 16:29:39 +02:00
|
|
|
std::string node::generate_token(udp::endpoint const& addr
|
2016-07-24 00:57:04 +02:00
|
|
|
, sha1_hash const& info_hash)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
|
|
|
std::string token;
|
|
|
|
token.resize(4);
|
|
|
|
hasher h;
|
2008-10-21 10:45:42 +02:00
|
|
|
error_code ec;
|
2016-07-22 16:29:39 +02:00
|
|
|
std::string const address = addr.address().to_string(ec);
|
2008-10-21 10:45:42 +02:00
|
|
|
TORRENT_ASSERT(!ec);
|
2016-07-22 16:29:39 +02:00
|
|
|
h.update(address);
|
2015-08-06 08:30:06 +02:00
|
|
|
h.update(reinterpret_cast<char*>(&m_secret[0]), sizeof(m_secret[0]));
|
2016-07-24 00:57:04 +02:00
|
|
|
h.update(info_hash);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2016-07-22 16:29:39 +02:00
|
|
|
sha1_hash const hash = h.final();
|
2016-08-30 19:28:46 +02:00
|
|
|
std::copy(hash.begin(), hash.begin() + 4, token.begin());
|
2016-07-22 16:29:39 +02:00
|
|
|
TORRENT_ASSERT(std::equal(token.begin(), token.end(), hash.data()));
|
2008-11-11 18:51:02 +01:00
|
|
|
return token;
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::bootstrap(std::vector<udp::endpoint> const& nodes
|
2009-09-20 02:23:36 +02:00
|
|
|
, find_data::nodes_callback const& f)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2014-11-08 17:58:18 +01:00
|
|
|
node_id target = m_id;
|
|
|
|
make_id_secret(target);
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto r = std::make_shared<dht::bootstrap>(*this, target, f);
|
2015-03-12 05:34:54 +01:00
|
|
|
m_last_self_refresh = aux::time_now();
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2010-02-14 08:46:57 +01:00
|
|
|
int count = 0;
|
|
|
|
#endif
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
for (auto const& n : nodes)
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2010-02-14 08:46:57 +01:00
|
|
|
++count;
|
|
|
|
#endif
|
2016-09-09 01:13:47 +02:00
|
|
|
r->add_entry(node_id(), n, observer::flag_initial);
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
2015-05-17 22:59:18 +02:00
|
|
|
|
2014-11-08 17:58:18 +01:00
|
|
|
// make us start as far away from our node ID as possible
|
|
|
|
r->trim_seed_nodes();
|
|
|
|
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr)
|
2015-05-17 22:59:18 +02:00
|
|
|
m_observer->log(dht_logger::node, "bootstrapping with %d nodes", count);
|
2010-02-14 08:46:57 +01:00
|
|
|
#endif
|
2009-09-20 02:23:36 +02:00
|
|
|
r->start();
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
2010-12-12 04:17:08 +01:00
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
int node::bucket_size(int bucket)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
|
|
|
return m_table.bucket_size(bucket);
|
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::new_write_key()
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
|
|
|
m_secret[1] = m_secret[0];
|
2016-08-06 19:18:48 +02:00
|
|
|
m_secret[0] = random(0xffffffff);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::unreachable(udp::endpoint const& ep)
|
2008-05-08 02:22:17 +02:00
|
|
|
{
|
|
|
|
m_rpc.unreachable(ep);
|
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::incoming(msg const& m)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2009-09-20 02:23:36 +02:00
|
|
|
// is this a reply?
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node y_ent = m.message.dict_find_string("y");
|
|
|
|
if (!y_ent || y_ent.string_length() == 0)
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2014-01-03 09:02:53 +01:00
|
|
|
// don't respond to this obviously broken messages. We don't
|
|
|
|
// want to open up a magnification opportunity
|
|
|
|
// entry e;
|
|
|
|
// incoming_error(e, "missing 'y' entry");
|
2016-01-18 06:07:21 +01:00
|
|
|
// m_sock.send_packet(e, m.addr);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
char y = *(y_ent.string_ptr());
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node ext_ip = m.message.dict_find_string("ip");
|
2013-12-20 05:47:41 +01:00
|
|
|
|
|
|
|
// backwards compatibility
|
2015-03-12 06:20:12 +01:00
|
|
|
if (!ext_ip)
|
2013-12-20 05:47:41 +01:00
|
|
|
{
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node r = m.message.dict_find_dict("r");
|
2013-12-20 05:47:41 +01:00
|
|
|
if (r)
|
2015-03-12 06:20:12 +01:00
|
|
|
ext_ip = r.dict_find_string("ip");
|
2013-12-20 05:47:41 +01:00
|
|
|
}
|
|
|
|
|
2013-10-14 01:04:40 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2015-03-12 06:20:12 +01:00
|
|
|
if (ext_ip && ext_ip.string_length() >= 16)
|
2013-10-14 01:04:40 +02:00
|
|
|
{
|
|
|
|
// this node claims we use the wrong node-ID!
|
|
|
|
address_v6::bytes_type b;
|
2016-09-09 21:02:20 +02:00
|
|
|
std::memcpy(&b[0], ext_ip.string_ptr(), 16);
|
|
|
|
if (m_observer != nullptr)
|
2013-10-14 01:04:40 +02:00
|
|
|
m_observer->set_external_address(address_v6(b)
|
|
|
|
, m.addr.address());
|
2013-10-14 03:03:43 +02:00
|
|
|
} else
|
2013-10-14 01:04:40 +02:00
|
|
|
#endif
|
2015-03-12 06:20:12 +01:00
|
|
|
if (ext_ip && ext_ip.string_length() >= 4)
|
2013-10-14 03:03:43 +02:00
|
|
|
{
|
|
|
|
address_v4::bytes_type b;
|
2016-09-09 21:02:20 +02:00
|
|
|
std::memcpy(&b[0], ext_ip.string_ptr(), 4);
|
|
|
|
if (m_observer != nullptr)
|
2013-10-14 03:03:43 +02:00
|
|
|
m_observer->set_external_address(address_v4(b)
|
|
|
|
, m.addr.address());
|
|
|
|
}
|
2013-10-14 01:04:40 +02:00
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
switch (y)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2009-09-20 02:23:36 +02:00
|
|
|
case 'r':
|
|
|
|
{
|
2010-01-03 12:08:39 +01:00
|
|
|
node_id id;
|
2015-09-03 00:09:49 +02:00
|
|
|
m_rpc.incoming(m, &id);
|
2009-09-20 02:23:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'q':
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(m.message.dict_find_string_value("y") == "q");
|
2015-09-01 23:07:38 +02:00
|
|
|
// When a DHT node enters the read-only state, it no longer
|
|
|
|
// responds to 'query' messages that it receives.
|
|
|
|
if (m_settings.read_only) break;
|
|
|
|
|
2015-11-14 06:08:57 +01:00
|
|
|
if (!native_address(m.addr)) break;
|
|
|
|
|
2016-01-18 08:21:27 +01:00
|
|
|
if (!m_sock->has_quota())
|
|
|
|
{
|
|
|
|
m_counters.inc_stats_counter(counters::dht_messages_in_dropped);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
entry e;
|
|
|
|
incoming_request(m, e);
|
2016-01-18 06:07:21 +01:00
|
|
|
m_sock->send_packet(e, m.addr);
|
2009-09-20 02:23:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'e':
|
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2015-12-01 00:02:00 +01:00
|
|
|
bdecode_node err = m.message.dict_find_list("e");
|
|
|
|
if (err && err.list_size() >= 2
|
|
|
|
&& err.list_at(0).type() == bdecode_node::int_t
|
2016-09-09 21:02:20 +02:00
|
|
|
&& err.list_at(1).type() == bdecode_node::string_t)
|
2015-12-01 00:02:00 +01:00
|
|
|
{
|
|
|
|
m_observer->log(dht_logger::node, "INCOMING ERROR: (%" PRId64 ") %s"
|
|
|
|
, err.list_int_value_at(0)
|
2016-08-13 13:04:53 +02:00
|
|
|
, err.list_string_value_at(1).to_string().c_str());
|
2015-12-01 00:02:00 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_observer->log(dht_logger::node, "INCOMING ERROR (malformed)");
|
|
|
|
}
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
|
|
|
#endif
|
2014-01-03 09:02:53 +01:00
|
|
|
node_id id;
|
2015-09-03 00:09:49 +02:00
|
|
|
m_rpc.incoming(m, &id);
|
2009-09-20 02:23:36 +02:00
|
|
|
break;
|
|
|
|
}
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2016-09-02 22:42:55 +02:00
|
|
|
void announce_fun(std::vector<std::pair<node_entry, std::string>> const& v
|
2016-09-12 15:20:15 +02:00
|
|
|
, node& node, int const listen_port, sha1_hash const& ih, int const flags)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-12 15:20:15 +02:00
|
|
|
auto logger = node.observer();
|
|
|
|
if (logger != nullptr && logger->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
char hex_ih[41];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(ih, hex_ih);
|
2016-09-12 15:20:15 +02:00
|
|
|
logger->log(dht_logger::node, "sending announce_peer [ ih: %s "
|
2015-05-17 22:59:18 +02:00
|
|
|
" p: %d nodes: %d ]", hex_ih, listen_port, int(v.size()));
|
|
|
|
}
|
2008-03-24 03:19:47 +01:00
|
|
|
#endif
|
2009-10-07 22:51:02 +02:00
|
|
|
|
2015-05-17 22:59:18 +02:00
|
|
|
// create a dummy traversal_algorithm
|
2016-09-02 22:42:55 +02:00
|
|
|
auto algo = std::make_shared<traversal_algorithm>(node, node_id());
|
2008-12-23 21:04:12 +01:00
|
|
|
// store on the first k nodes
|
2016-09-02 22:42:55 +02:00
|
|
|
for (auto const& p : v)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-12 15:20:15 +02:00
|
|
|
if (logger != nullptr && logger->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
2016-09-12 15:20:15 +02:00
|
|
|
logger->log(dht_logger::node, "announce-distance: %d"
|
2016-09-02 22:42:55 +02:00
|
|
|
, (160 - distance_exp(ih, p.first.id)));
|
2015-05-17 22:59:18 +02:00
|
|
|
}
|
2008-05-08 03:17:14 +02:00
|
|
|
#endif
|
2008-12-23 21:04:12 +01:00
|
|
|
|
2016-09-03 03:05:11 +02:00
|
|
|
auto o = node.m_rpc.allocate_observer<announce_observer>(algo
|
|
|
|
, p.first.ep(), p.first.id);
|
|
|
|
if (!o) return;
|
2016-06-18 14:31:07 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2008-02-09 22:04:24 +01:00
|
|
|
o->m_in_constructor = false;
|
|
|
|
#endif
|
2009-09-20 02:23:36 +02:00
|
|
|
entry e;
|
|
|
|
e["y"] = "q";
|
|
|
|
e["q"] = "announce_peer";
|
|
|
|
entry& a = e["a"];
|
2016-07-24 00:57:04 +02:00
|
|
|
a["info_hash"] = ih;
|
2009-09-20 02:23:36 +02:00
|
|
|
a["port"] = listen_port;
|
2016-09-02 22:42:55 +02:00
|
|
|
a["token"] = p.second;
|
2015-05-09 21:00:22 +02:00
|
|
|
a["seed"] = (flags & node::flag_seed) ? 1 : 0;
|
|
|
|
if (flags & node::flag_implied_port) a["implied_port"] = 1;
|
2015-01-18 02:06:36 +01:00
|
|
|
node.stats_counters().inc_stats_counter(counters::dht_announce_peer_out);
|
2016-09-02 22:42:55 +02:00
|
|
|
node.m_rpc.invoke(e, p.first.ep(), o);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-12 15:20:15 +02:00
|
|
|
void node::add_router_node(udp::endpoint const& router)
|
2006-09-27 19:20:18 +02:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
m_observer->log(dht_logger::node, "adding router node: %s"
|
|
|
|
, print_endpoint(router).c_str());
|
|
|
|
}
|
2008-03-24 03:19:47 +01:00
|
|
|
#endif
|
2006-09-27 19:20:18 +02:00
|
|
|
m_table.add_router_node(router);
|
|
|
|
}
|
|
|
|
|
2016-09-09 21:02:20 +02:00
|
|
|
void node::add_node(udp::endpoint const& node)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2015-11-14 06:08:57 +01:00
|
|
|
if (!native_address(node)) return;
|
2006-08-01 17:27:08 +02:00
|
|
|
// ping the node, and if we get a reply, it
|
|
|
|
// will be added to the routing table
|
2014-11-02 10:41:29 +01:00
|
|
|
send_single_refresh(node, m_table.num_active_buckets());
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2015-06-23 18:24:30 +02:00
|
|
|
void node::get_peers(sha1_hash const& info_hash
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(std::vector<tcp::endpoint> const&)> dcallback
|
2016-09-12 15:20:15 +02:00
|
|
|
, std::function<void(std::vector<std::pair<node_entry, std::string>> const&)> ncallback
|
2015-06-23 18:24:30 +02:00
|
|
|
, bool noseeds)
|
|
|
|
{
|
|
|
|
// search for nodes with ids close to id or with peers
|
|
|
|
// for info-hash id. then send announce_peer to them.
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
std::shared_ptr<dht::get_peers> ta;
|
2015-06-23 18:24:30 +02:00
|
|
|
if (m_settings.privacy_lookups)
|
|
|
|
{
|
|
|
|
ta.reset(new dht::obfuscated_get_peers(*this, info_hash, dcallback, ncallback, noseeds));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ta.reset(new dht::get_peers(*this, info_hash, dcallback, ncallback, noseeds));
|
|
|
|
}
|
|
|
|
|
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::announce(sha1_hash const& info_hash, int listen_port, int flags
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(std::vector<tcp::endpoint> const&)> f)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
char hex_ih[41];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(info_hash, hex_ih);
|
2015-05-17 22:59:18 +02:00
|
|
|
m_observer->log(dht_logger::node, "announcing [ ih: %s p: %d ]"
|
|
|
|
, hex_ih, listen_port);
|
|
|
|
}
|
2008-03-24 03:19:47 +01:00
|
|
|
#endif
|
2013-09-09 09:08:02 +02:00
|
|
|
|
2015-06-23 18:24:30 +02:00
|
|
|
get_peers(info_hash, f
|
2016-05-25 06:31:52 +02:00
|
|
|
, std::bind(&announce_fun, _1, std::ref(*this)
|
2015-06-23 18:24:30 +02:00
|
|
|
, listen_port, info_hash, flags), flags & node::flag_seed);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2015-10-25 15:55:20 +01:00
|
|
|
void node::direct_request(udp::endpoint ep, entry& e
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(msg const&)> f)
|
2014-02-17 06:56:49 +01:00
|
|
|
{
|
|
|
|
// not really a traversal
|
2016-09-02 22:42:55 +02:00
|
|
|
auto algo = std::make_shared<direct_traversal>(*this, node_id(), f);
|
2014-02-17 06:56:49 +01:00
|
|
|
|
2016-09-03 03:05:11 +02:00
|
|
|
auto o = m_rpc.allocate_observer<direct_observer>(algo, ep, node_id());
|
|
|
|
if (!o) return;
|
2016-06-18 14:31:07 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2014-02-17 06:56:49 +01:00
|
|
|
o->m_in_constructor = false;
|
|
|
|
#endif
|
|
|
|
m_rpc.invoke(e, ep, o);
|
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::get_item(sha1_hash const& target
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(item const&)> f)
|
2013-12-27 05:28:25 +01:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
char hex_target[41];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(target, hex_target);
|
2015-05-17 22:59:18 +02:00
|
|
|
m_observer->log(dht_logger::node, "starting get for [ hash: %s ]"
|
|
|
|
, hex_target);
|
|
|
|
}
|
2013-12-27 05:28:25 +01:00
|
|
|
#endif
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto ta = std::make_shared<dht::get_item>(*this, target
|
|
|
|
, std::bind(f, _1), find_data::nodes_callback());
|
2013-12-27 05:28:25 +01:00
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
void node::get_item(public_key const& pk, std::string const& salt
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(item const&, bool)> f)
|
2014-03-03 00:35:35 +01:00
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
|
|
|
char hex_key[65];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(pk.bytes, hex_key);
|
2015-05-17 22:59:18 +02:00
|
|
|
m_observer->log(dht_logger::node, "starting get for [ key: %s ]", hex_key);
|
|
|
|
}
|
2014-03-03 00:35:35 +01:00
|
|
|
#endif
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto ta = std::make_shared<dht::get_item>(*this, pk, salt, f
|
|
|
|
, find_data::nodes_callback());
|
2015-09-22 20:10:57 +02:00
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
void put(std::vector<std::pair<node_entry, std::string>> const& nodes
|
|
|
|
, std::shared_ptr<put_data> ta)
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
2015-11-22 18:31:10 +01:00
|
|
|
ta->set_targets(nodes);
|
2015-09-22 20:10:57 +02:00
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
2015-11-22 19:00:29 +01:00
|
|
|
void put_data_cb(item i, bool auth
|
2016-09-02 22:42:55 +02:00
|
|
|
, std::shared_ptr<put_data> ta
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(item&)> f)
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
|
|
|
// call data_callback only when we got authoritative data.
|
|
|
|
if (auth)
|
|
|
|
{
|
|
|
|
f(i);
|
|
|
|
ta->set_data(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2016-08-13 03:31:55 +02:00
|
|
|
void node::put_item(sha1_hash const& target, entry const& data, std::function<void(int)> f)
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2016-09-09 21:02:20 +02:00
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
|
|
|
char hex_target[41];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(target, hex_target);
|
2015-09-22 20:10:57 +02:00
|
|
|
m_observer->log(dht_logger::node, "starting get for [ hash: %s ]"
|
|
|
|
, hex_target);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
item i;
|
|
|
|
i.assign(data);
|
2016-09-02 22:42:55 +02:00
|
|
|
auto put_ta = std::make_shared<dht::put_data>(*this, std::bind(f, _2));
|
2015-09-22 20:10:57 +02:00
|
|
|
put_ta->set_data(i);
|
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto ta = std::make_shared<dht::get_item>(*this, target
|
|
|
|
, get_item::data_callback(), std::bind(&put, _1, put_ta));
|
2015-09-22 20:10:57 +02:00
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
void node::put_item(public_key const& pk, std::string const& salt
|
2016-08-13 03:31:55 +02:00
|
|
|
, std::function<void(item const&, int)> f
|
|
|
|
, std::function<void(item&)> data_cb)
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
2016-09-09 21:02:20 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
|
|
|
if (m_observer != nullptr && m_observer->should_log(dht_logger::node))
|
2015-09-22 20:10:57 +02:00
|
|
|
{
|
|
|
|
char hex_key[65];
|
2016-07-29 08:36:15 +02:00
|
|
|
aux::to_hex(pk.bytes, hex_key);
|
2015-09-22 20:10:57 +02:00
|
|
|
m_observer->log(dht_logger::node, "starting get for [ key: %s ]", hex_key);
|
|
|
|
}
|
2016-09-09 21:02:20 +02:00
|
|
|
#endif
|
2015-09-22 20:10:57 +02:00
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto put_ta = std::make_shared<dht::put_data>(*this, f);
|
2015-09-22 20:10:57 +02:00
|
|
|
|
2016-09-02 22:42:55 +02:00
|
|
|
auto ta = std::make_shared<dht::get_item>(*this, pk, salt
|
2016-05-25 06:31:52 +02:00
|
|
|
, std::bind(&put_data_cb, _1, _2, put_ta, data_cb)
|
2016-09-02 22:42:55 +02:00
|
|
|
, std::bind(&put, _1, put_ta));
|
2014-03-03 00:35:35 +01:00
|
|
|
ta->start();
|
|
|
|
}
|
|
|
|
|
2014-11-01 23:47:56 +01:00
|
|
|
struct ping_observer : observer
|
|
|
|
{
|
|
|
|
ping_observer(
|
2016-09-02 22:42:55 +02:00
|
|
|
std::shared_ptr<traversal_algorithm> const& algorithm
|
2014-11-01 23:47:56 +01:00
|
|
|
, udp::endpoint const& ep, node_id const& id)
|
|
|
|
: observer(algorithm, ep, id)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// parses out "nodes"
|
2016-07-10 02:10:38 +02:00
|
|
|
void reply(msg const& m) override
|
2014-11-01 23:47:56 +01:00
|
|
|
{
|
|
|
|
flags |= flag_done;
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node r = m.message.dict_find_dict("r");
|
2014-11-01 23:47:56 +01:00
|
|
|
if (!r)
|
|
|
|
{
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2015-05-22 04:42:26 +02:00
|
|
|
if (get_observer())
|
2015-05-17 22:59:18 +02:00
|
|
|
{
|
2015-05-22 04:42:26 +02:00
|
|
|
get_observer()->log(dht_logger::node
|
2015-05-17 22:59:18 +02:00
|
|
|
, "[%p] missing response dict"
|
2015-08-20 01:33:20 +02:00
|
|
|
, static_cast<void*>(algorithm()));
|
2015-05-17 22:59:18 +02:00
|
|
|
}
|
2014-11-01 23:47:56 +01:00
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// look for nodes
|
2015-11-14 06:08:57 +01:00
|
|
|
#if TORRENT_USE_IPV6
|
2016-02-12 04:56:52 +01:00
|
|
|
udp protocol = algorithm()->get_node().protocol();
|
2015-11-14 06:08:57 +01:00
|
|
|
#endif
|
2016-02-12 04:56:52 +01:00
|
|
|
char const* nodes_key = algorithm()->get_node().protocol_nodes_key();
|
2015-11-14 06:08:57 +01:00
|
|
|
bdecode_node n = r.dict_find_string(nodes_key);
|
2014-11-01 23:47:56 +01:00
|
|
|
if (n)
|
|
|
|
{
|
2015-03-12 06:20:12 +01:00
|
|
|
char const* nodes = n.string_ptr();
|
|
|
|
char const* end = nodes + n.string_length();
|
2014-11-01 23:47:56 +01:00
|
|
|
|
2016-09-01 06:49:21 +02:00
|
|
|
while (end - nodes >= 20 + detail::address_size(protocol) + 2)
|
2014-11-01 23:47:56 +01:00
|
|
|
{
|
|
|
|
node_id id;
|
|
|
|
std::copy(nodes, nodes + 20, id.begin());
|
|
|
|
nodes += 20;
|
2015-11-14 06:08:57 +01:00
|
|
|
udp::endpoint ep;
|
|
|
|
#if TORRENT_USE_IPV6
|
2016-02-12 04:56:52 +01:00
|
|
|
if (protocol == udp::v6())
|
2015-11-14 06:08:57 +01:00
|
|
|
ep = detail::read_v6_endpoint<udp::endpoint>(nodes);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
ep = detail::read_v4_endpoint<udp::endpoint>(nodes);
|
|
|
|
algorithm()->get_node().m_table.heard_about(id, ep);
|
2014-11-01 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::tick()
|
2006-08-06 18:36:00 +02:00
|
|
|
{
|
2014-11-01 23:47:56 +01:00
|
|
|
// every now and then we refresh our own ID, just to keep
|
|
|
|
// expanding the routing table buckets closer to us.
|
2015-09-16 17:40:05 +02:00
|
|
|
// if m_table.depth() < 4, means routing_table doesn't
|
|
|
|
// have enough nodes.
|
2016-09-09 21:02:20 +02:00
|
|
|
time_point const now = aux::time_now();
|
2015-09-16 17:40:05 +02:00
|
|
|
if (m_last_self_refresh + minutes(10) < now && m_table.depth() < 4)
|
2014-11-01 23:47:56 +01:00
|
|
|
{
|
2014-11-08 17:58:18 +01:00
|
|
|
node_id target = m_id;
|
|
|
|
make_id_secret(target);
|
2016-09-09 21:02:20 +02:00
|
|
|
auto const r = std::make_shared<dht::bootstrap>(*this, target, std::bind(&nop));
|
2014-11-01 23:47:56 +01:00
|
|
|
r->start();
|
|
|
|
m_last_self_refresh = now;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-02 10:41:29 +01:00
|
|
|
node_entry const* ne = m_table.next_refresh();
|
2016-06-20 17:32:06 +02:00
|
|
|
if (ne == nullptr) return;
|
2014-11-01 23:47:56 +01:00
|
|
|
|
2014-11-26 03:02:32 +01:00
|
|
|
// this shouldn't happen
|
|
|
|
TORRENT_ASSERT(m_id != ne->id);
|
|
|
|
if (ne->id == m_id) return;
|
|
|
|
|
2016-09-09 21:02:20 +02:00
|
|
|
int const bucket = 159 - distance_exp(m_id, ne->id);
|
2014-11-26 03:02:32 +01:00
|
|
|
TORRENT_ASSERT(bucket < 160);
|
2014-11-02 10:41:29 +01:00
|
|
|
send_single_refresh(ne->ep(), bucket, ne->id);
|
|
|
|
}
|
|
|
|
|
2016-09-09 21:02:20 +02:00
|
|
|
void node::send_single_refresh(udp::endpoint const& ep, int const bucket
|
2014-11-02 10:41:29 +01:00
|
|
|
, node_id const& id)
|
|
|
|
{
|
2014-11-26 03:02:32 +01:00
|
|
|
TORRENT_ASSERT(id != m_id);
|
|
|
|
TORRENT_ASSERT(bucket >= 0);
|
2014-11-26 04:58:55 +01:00
|
|
|
TORRENT_ASSERT(bucket <= 159);
|
2014-11-26 03:02:32 +01:00
|
|
|
|
2014-11-02 10:41:29 +01:00
|
|
|
// generate a random node_id within the given bucket
|
|
|
|
// TODO: 2 it would be nice to have a bias towards node-id prefixes that
|
|
|
|
// are missing in the bucket
|
|
|
|
node_id mask = generate_prefix_mask(bucket + 1);
|
2014-11-08 17:58:18 +01:00
|
|
|
node_id target = generate_secret_id() & ~mask;
|
2014-11-03 07:15:51 +01:00
|
|
|
target |= m_id & mask;
|
2014-11-02 10:41:29 +01:00
|
|
|
|
2015-05-18 01:32:13 +02:00
|
|
|
// create a dummy traversal_algorithm
|
2016-09-09 21:02:20 +02:00
|
|
|
auto const algo = std::make_shared<traversal_algorithm>(*this, node_id());
|
2016-09-03 03:05:11 +02:00
|
|
|
auto o = m_rpc.allocate_observer<ping_observer>(algo, ep, id);
|
|
|
|
if (!o) return;
|
2016-06-18 14:31:07 +02:00
|
|
|
#if TORRENT_USE_ASSERTS
|
2014-11-01 23:47:56 +01:00
|
|
|
o->m_in_constructor = false;
|
|
|
|
#endif
|
|
|
|
entry e;
|
|
|
|
e["y"] = "q";
|
|
|
|
entry& a = e["a"];
|
2014-11-02 10:41:29 +01:00
|
|
|
|
2015-09-11 22:43:21 +02:00
|
|
|
if (m_table.is_full(bucket))
|
|
|
|
{
|
|
|
|
// current bucket is full, just ping it.
|
|
|
|
e["q"] = "ping";
|
|
|
|
m_counters.inc_stats_counter(counters::dht_ping_out);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// use get_peers instead of find_node. We'll get nodes in the response
|
|
|
|
// either way.
|
|
|
|
e["q"] = "get_peers";
|
|
|
|
a["info_hash"] = target.to_string();
|
|
|
|
m_counters.inc_stats_counter(counters::dht_get_peers_out);
|
|
|
|
}
|
|
|
|
|
2014-11-02 10:41:29 +01:00
|
|
|
m_rpc.invoke(e, ep, o);
|
2006-08-06 18:36:00 +02:00
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
time_duration node::connection_timeout()
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
|
|
|
time_duration d = m_rpc.tick();
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now(aux::time_now());
|
2014-07-06 21:18:00 +02:00
|
|
|
if (now - minutes(2) < m_last_tracker_tick) return d;
|
2008-10-21 19:10:11 +02:00
|
|
|
m_last_tracker_tick = now;
|
|
|
|
|
2016-06-04 01:44:16 +02:00
|
|
|
m_storage.tick();
|
2007-01-07 14:55:27 +01:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::status(std::vector<dht_routing_bucket>& table
|
2015-01-17 18:02:58 +01:00
|
|
|
, std::vector<dht_lookup>& requests)
|
|
|
|
{
|
2016-05-01 00:54:23 +02:00
|
|
|
std::lock_guard<std::mutex> l(m_mutex);
|
2015-01-17 18:02:58 +01:00
|
|
|
|
|
|
|
m_table.status(table);
|
|
|
|
|
2016-09-09 21:02:20 +02:00
|
|
|
for (auto const& r : m_running_requests)
|
2015-01-17 18:02:58 +01:00
|
|
|
{
|
|
|
|
requests.push_back(dht_lookup());
|
2015-08-18 13:55:50 +02:00
|
|
|
dht_lookup& lookup = requests.back();
|
2016-09-09 21:02:20 +02:00
|
|
|
r->status(lookup);
|
2015-01-17 18:02:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 17:32:06 +02:00
|
|
|
std::tuple<int, int, int> node::get_stats_counters() const
|
2015-09-17 17:11:46 +02:00
|
|
|
{
|
2016-05-13 03:27:11 +02:00
|
|
|
int nodes, replacements;
|
2016-06-20 17:32:06 +02:00
|
|
|
std::tie(nodes, replacements, std::ignore) = size();
|
|
|
|
return std::make_tuple(nodes, replacements, m_rpc.num_allocated_observers());
|
2015-09-17 17:11:46 +02:00
|
|
|
}
|
|
|
|
|
2015-01-04 22:31:02 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2015-01-17 18:02:58 +01:00
|
|
|
// TODO: 2 use the non deprecated function instead of this one
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::status(session_status& s)
|
2008-09-20 19:42:25 +02:00
|
|
|
{
|
2016-05-01 00:54:23 +02:00
|
|
|
std::lock_guard<std::mutex> l(m_mutex);
|
2009-01-23 11:36:07 +01:00
|
|
|
|
|
|
|
m_table.status(s);
|
2016-06-04 20:04:29 +02:00
|
|
|
s.dht_total_allocations += m_rpc.num_allocated_observers();
|
2008-09-20 19:42:25 +02:00
|
|
|
for (std::set<traversal_algorithm*>::iterator i = m_running_requests.begin()
|
|
|
|
, end(m_running_requests.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
s.active_requests.push_back(dht_lookup());
|
2015-08-18 13:55:50 +02:00
|
|
|
dht_lookup& lookup = s.active_requests.back();
|
|
|
|
(*i)->status(lookup);
|
2008-09-20 19:42:25 +02:00
|
|
|
}
|
|
|
|
}
|
2015-01-04 22:31:02 +01:00
|
|
|
#endif
|
2008-09-20 19:42:25 +02:00
|
|
|
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::lookup_peers(sha1_hash const& info_hash, entry& reply
|
2011-05-23 02:45:36 +02:00
|
|
|
, bool noseed, bool scrape) const
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2015-04-03 22:15:48 +02:00
|
|
|
if (m_observer)
|
|
|
|
m_observer->get_peers(info_hash);
|
2008-09-20 19:42:25 +02:00
|
|
|
|
2016-06-04 01:44:16 +02:00
|
|
|
m_storage.get_peers(info_hash, noseed, scrape, reply);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 21:02:20 +02:00
|
|
|
void write_nodes_entry(entry& r, nodes_t const& nodes)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2016-09-09 21:02:20 +02:00
|
|
|
std::back_insert_iterator<std::string> out(r.string());
|
|
|
|
for (auto const& n : nodes)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2016-09-09 21:02:20 +02:00
|
|
|
std::copy(n.id.begin(), n.id.end(), out);
|
|
|
|
write_endpoint(udp::endpoint(n.addr(), n.port()), out);
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
2009-09-27 19:41:51 +02:00
|
|
|
}
|
2014-10-01 18:21:29 +02:00
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
// build response
|
2015-05-09 21:00:22 +02:00
|
|
|
void node::incoming_request(msg const& m, entry& e)
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
|
|
|
e = entry(entry::dictionary_t);
|
|
|
|
e["y"] = "r";
|
2016-08-13 13:04:53 +02:00
|
|
|
e["t"] = m.message.dict_find_string_value("t").to_string();
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2009-09-27 07:27:43 +02:00
|
|
|
key_desc_t top_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"q", bdecode_node::string_t, 0, 0},
|
|
|
|
{"ro", bdecode_node::int_t, 0, key_desc_t::optional},
|
|
|
|
{"a", bdecode_node::dict_t, 0, key_desc_t::parse_children},
|
|
|
|
{"id", bdecode_node::string_t, 20, key_desc_t::last_child},
|
2009-09-27 07:27:43 +02:00
|
|
|
};
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node top_level[4];
|
2009-09-27 07:27:43 +02:00
|
|
|
char error_string[200];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(m.message, top_desc, top_level, error_string
|
2015-03-12 06:20:12 +01:00
|
|
|
, sizeof(error_string)))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2009-09-27 07:27:43 +02:00
|
|
|
incoming_error(e, error_string);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-14 01:04:40 +02:00
|
|
|
e["ip"] = endpoint_to_bytes(m.addr);
|
2013-10-14 03:03:43 +02:00
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node arg_ent = top_level[2];
|
|
|
|
bool read_only = top_level[1] && top_level[1].int_value() != 0;
|
|
|
|
node_id id(top_level[3].string_ptr());
|
2013-10-14 03:03:43 +02:00
|
|
|
|
2013-10-14 01:04:40 +02:00
|
|
|
// if this nodes ID doesn't match its IP, tell it what
|
|
|
|
// its IP is with an error
|
|
|
|
// don't enforce this yet
|
2013-10-14 03:03:43 +02:00
|
|
|
if (m_settings.enforce_node_id && !verify_id(id, m.addr.address()))
|
2013-10-14 01:04:40 +02:00
|
|
|
{
|
|
|
|
incoming_error(e, "invalid node ID");
|
|
|
|
return;
|
|
|
|
}
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2014-10-12 06:18:34 +02:00
|
|
|
if (!read_only)
|
|
|
|
m_table.heard_about(id, m.addr);
|
2009-09-20 02:23:36 +02:00
|
|
|
|
|
|
|
entry& reply = e["r"];
|
|
|
|
m_rpc.add_our_id(reply);
|
|
|
|
|
2013-09-03 02:45:48 +02:00
|
|
|
// mirror back the other node's external port
|
|
|
|
reply["p"] = m.addr.port();
|
|
|
|
|
2016-08-15 22:17:13 +02:00
|
|
|
string_view query = top_level[0].string_value();
|
2014-02-17 06:56:49 +01:00
|
|
|
|
2016-08-15 22:17:13 +02:00
|
|
|
if (m_observer && m_observer->on_dht_request(query, m, e))
|
2014-02-17 06:56:49 +01:00
|
|
|
return;
|
|
|
|
|
2016-08-15 22:17:13 +02:00
|
|
|
if (query == "ping")
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_ping_in);
|
2009-09-20 02:23:36 +02:00
|
|
|
// we already have 't' and 'id' in the response
|
|
|
|
// no more left to add
|
|
|
|
}
|
2016-08-15 22:17:13 +02:00
|
|
|
else if (query == "get_peers")
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2009-09-27 07:27:43 +02:00
|
|
|
key_desc_t msg_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"info_hash", bdecode_node::string_t, 20, 0},
|
|
|
|
{"noseed", bdecode_node::int_t, 0, key_desc_t::optional},
|
|
|
|
{"scrape", bdecode_node::int_t, 0, key_desc_t::optional},
|
2015-11-14 06:08:57 +01:00
|
|
|
{"want", bdecode_node::list_t, 0, key_desc_t::optional},
|
2009-09-27 07:27:43 +02:00
|
|
|
};
|
|
|
|
|
2015-11-14 06:08:57 +01:00
|
|
|
bdecode_node msg_keys[4];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(arg_ent, msg_desc, msg_keys, error_string
|
2015-01-18 02:06:36 +01:00
|
|
|
, sizeof(error_string)))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_get_peers);
|
2009-09-27 07:27:43 +02:00
|
|
|
incoming_error(e, error_string);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-30 19:28:46 +02:00
|
|
|
sha1_hash const info_hash(msg_keys[0].string_ptr());
|
|
|
|
reply["token"] = generate_token(m.addr, info_hash);
|
2015-12-01 00:02:00 +01:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_get_peers_in);
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
// always return nodes as well as peers
|
2015-11-14 06:08:57 +01:00
|
|
|
write_nodes_entries(info_hash, msg_keys[3], reply);
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2011-05-23 02:45:36 +02:00
|
|
|
bool noseed = false;
|
|
|
|
bool scrape = false;
|
2015-03-12 06:20:12 +01:00
|
|
|
if (msg_keys[1] && msg_keys[1].int_value() != 0) noseed = true;
|
|
|
|
if (msg_keys[2] && msg_keys[2].int_value() != 0) scrape = true;
|
2014-10-12 06:18:34 +02:00
|
|
|
lookup_peers(info_hash, reply, noseed, scrape);
|
2015-05-16 21:29:49 +02:00
|
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
2015-05-17 22:59:18 +02:00
|
|
|
if (reply.find_key("values") && m_observer)
|
2013-01-20 08:54:54 +01:00
|
|
|
{
|
2015-05-10 06:54:02 +02:00
|
|
|
m_observer->log(dht_logger::node, "values: %d"
|
|
|
|
, int(reply["values"].list().size()));
|
2013-01-20 08:54:54 +01:00
|
|
|
}
|
2006-08-01 17:27:08 +02:00
|
|
|
#endif
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
2016-08-15 22:17:13 +02:00
|
|
|
else if (query == "find_node")
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2009-09-27 07:27:43 +02:00
|
|
|
key_desc_t msg_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"target", bdecode_node::string_t, 20, 0},
|
2015-11-14 06:08:57 +01:00
|
|
|
{"want", bdecode_node::list_t, 0, key_desc_t::optional},
|
2009-09-27 07:27:43 +02:00
|
|
|
};
|
|
|
|
|
2015-11-14 06:08:57 +01:00
|
|
|
bdecode_node msg_keys[2];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(arg_ent, msg_desc, msg_keys, error_string, sizeof(error_string)))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2009-09-27 07:27:43 +02:00
|
|
|
incoming_error(e, error_string);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_find_node_in);
|
2015-03-12 06:20:12 +01:00
|
|
|
sha1_hash target(msg_keys[0].string_ptr());
|
2009-09-27 07:27:43 +02:00
|
|
|
|
2015-11-14 06:08:57 +01:00
|
|
|
write_nodes_entries(target, msg_keys[1], reply);
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
2016-08-15 22:17:13 +02:00
|
|
|
else if (query == "announce_peer")
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2009-09-27 07:27:43 +02:00
|
|
|
key_desc_t msg_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"info_hash", bdecode_node::string_t, 20, 0},
|
|
|
|
{"port", bdecode_node::int_t, 0, 0},
|
|
|
|
{"token", bdecode_node::string_t, 0, 0},
|
|
|
|
{"n", bdecode_node::string_t, 0, key_desc_t::optional},
|
|
|
|
{"seed", bdecode_node::int_t, 0, key_desc_t::optional},
|
|
|
|
{"implied_port", bdecode_node::int_t, 0, key_desc_t::optional},
|
2009-09-27 07:27:43 +02:00
|
|
|
};
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node msg_keys[6];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(arg_ent, msg_desc, msg_keys, error_string, sizeof(error_string)))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_announce);
|
2009-09-27 07:27:43 +02:00
|
|
|
incoming_error(e, error_string);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
int port = int(msg_keys[1].int_value());
|
2013-03-25 08:26:39 +01:00
|
|
|
|
|
|
|
// is the announcer asking to ignore the explicit
|
|
|
|
// listen port and instead use the source port of the packet?
|
2015-03-12 06:20:12 +01:00
|
|
|
if (msg_keys[5] && msg_keys[5].int_value() != 0)
|
2013-03-25 08:26:39 +01:00
|
|
|
port = m.addr.port();
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
if (port < 0 || port >= 65536)
|
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_announce);
|
2011-01-19 06:57:44 +01:00
|
|
|
incoming_error(e, "invalid port");
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
sha1_hash info_hash(msg_keys[0].string_ptr());
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2015-04-03 22:15:48 +02:00
|
|
|
if (m_observer)
|
|
|
|
m_observer->announce(info_hash, m.addr.address(), port);
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
if (!verify_token(msg_keys[2].string_value()
|
|
|
|
, sha1_hash(msg_keys[0].string_ptr()), m.addr))
|
2009-09-20 02:23:36 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_announce);
|
2011-01-19 06:57:44 +01:00
|
|
|
incoming_error(e, "invalid token");
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_announce_peer_in);
|
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
// the token was correct. That means this
|
|
|
|
// node is not spoofing its address. So, let
|
|
|
|
// the table get a chance to add it.
|
2012-09-22 20:15:29 +02:00
|
|
|
m_table.node_seen(id, m.addr, 0xffff);
|
2009-09-20 02:23:36 +02:00
|
|
|
|
2015-09-08 22:12:54 +02:00
|
|
|
tcp::endpoint addr = tcp::endpoint(m.addr.address(), port);
|
2016-08-13 13:04:53 +02:00
|
|
|
string_view name = msg_keys[3] ? msg_keys[3].string_value() : string_view();
|
2015-09-08 22:12:54 +02:00
|
|
|
bool seed = msg_keys[4] && msg_keys[4].int_value();
|
2010-11-27 04:09:28 +01:00
|
|
|
|
2016-08-15 22:17:13 +02:00
|
|
|
m_storage.announce_peer(info_hash, addr, name, seed);
|
2009-09-20 02:23:36 +02:00
|
|
|
}
|
2016-08-15 22:17:13 +02:00
|
|
|
else if (query == "put")
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2011-05-25 04:26:07 +02:00
|
|
|
// the first 2 entries are for both mutable and
|
|
|
|
// immutable puts
|
2015-03-14 01:42:27 +01:00
|
|
|
static const key_desc_t msg_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"token", bdecode_node::string_t, 0, 0},
|
|
|
|
{"v", bdecode_node::none_t, 0, 0},
|
|
|
|
{"seq", bdecode_node::int_t, 0, key_desc_t::optional},
|
2011-05-25 04:26:07 +02:00
|
|
|
// public key
|
2016-07-24 00:57:04 +02:00
|
|
|
{"k", bdecode_node::string_t, public_key::len, key_desc_t::optional},
|
|
|
|
{"sig", bdecode_node::string_t, signature::len, key_desc_t::optional},
|
2015-03-12 06:20:12 +01:00
|
|
|
{"cas", bdecode_node::int_t, 0, key_desc_t::optional},
|
|
|
|
{"salt", bdecode_node::string_t, 0, key_desc_t::optional},
|
2011-01-19 06:57:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// attempt to parse the message
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node msg_keys[7];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(arg_ent, msg_desc, msg_keys, error_string, sizeof(error_string)))
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2011-01-19 06:57:44 +01:00
|
|
|
incoming_error(e, error_string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_put_in);
|
|
|
|
|
2011-05-25 04:26:07 +02:00
|
|
|
// is this a mutable put?
|
2011-05-25 04:41:48 +02:00
|
|
|
bool mutable_put = (msg_keys[2] && msg_keys[3] && msg_keys[4]);
|
2011-05-25 04:26:07 +02:00
|
|
|
|
2014-01-03 05:18:46 +01:00
|
|
|
// public key (only set if it's a mutable put)
|
2016-07-24 00:57:04 +02:00
|
|
|
char const* pub_key = nullptr;
|
|
|
|
if (msg_keys[3]) pub_key = msg_keys[3].string_ptr();
|
2014-01-03 05:18:46 +01:00
|
|
|
|
|
|
|
// signature (only set if it's a mutable put)
|
2016-07-24 00:57:04 +02:00
|
|
|
char const* sign = nullptr;
|
|
|
|
if (msg_keys[4]) sign = msg_keys[4].string_ptr();
|
2014-01-03 05:18:46 +01:00
|
|
|
|
2011-05-23 07:07:52 +02:00
|
|
|
// pointer and length to the whole entry
|
2016-07-24 00:57:04 +02:00
|
|
|
span<char const> buf = msg_keys[1].data_section();
|
|
|
|
if (buf.size() > 1000 || buf.size() <= 0)
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2013-09-03 02:45:48 +02:00
|
|
|
incoming_error(e, "message too big", 205);
|
2011-01-19 06:57:44 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
span<char const> salt;
|
2014-01-03 05:18:46 +01:00
|
|
|
if (msg_keys[6])
|
2016-07-24 00:57:04 +02:00
|
|
|
salt = { msg_keys[6].string_ptr(), size_t(msg_keys[6].string_length()) };
|
|
|
|
if (salt.size() > 64)
|
2014-01-03 05:18:46 +01:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2014-01-03 05:18:46 +01:00
|
|
|
incoming_error(e, "salt too big", 207);
|
|
|
|
return;
|
|
|
|
}
|
2011-05-25 04:26:07 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
sha1_hash const target = pub_key
|
|
|
|
? item_target_id(salt, public_key(pub_key))
|
|
|
|
: item_target_id(buf);
|
2014-01-03 05:18:46 +01:00
|
|
|
|
2016-05-17 15:24:06 +02:00
|
|
|
// std::fprintf(stderr, "%s PUT target: %s salt: %s key: %s\n"
|
2011-05-25 04:26:07 +02:00
|
|
|
// , mutable_put ? "mutable":"immutable"
|
2016-07-29 08:36:15 +02:00
|
|
|
// , aux::to_hex(target).c_str()
|
2014-01-03 05:18:46 +01:00
|
|
|
// , salt.second > 0 ? std::string(salt.first, salt.second).c_str() : ""
|
2016-07-29 08:36:15 +02:00
|
|
|
// , pk ? aux::to_hex(pk).c_str() : "");
|
2011-05-23 07:07:52 +02:00
|
|
|
|
|
|
|
// verify the write-token. tokens are only valid to write to
|
|
|
|
// specific target hashes. it must match the one we got a "get" for
|
2016-07-24 00:57:04 +02:00
|
|
|
if (!verify_token(msg_keys[0].string_value(), target, m.addr))
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2011-05-23 07:07:52 +02:00
|
|
|
incoming_error(e, "invalid token");
|
2011-01-19 06:57:44 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-25 04:26:07 +02:00
|
|
|
if (!mutable_put)
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2016-07-24 00:57:04 +02:00
|
|
|
m_storage.put_immutable_item(target, buf, m.addr.address());
|
2011-01-19 06:57:44 +01:00
|
|
|
}
|
2011-05-25 04:26:07 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// mutable put, we must verify the signature
|
2016-07-24 00:57:04 +02:00
|
|
|
sequence_number const seq(msg_keys[2].int_value());
|
|
|
|
public_key const pk(pub_key);
|
|
|
|
signature const sig(sign);
|
2015-09-08 22:12:54 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
if (seq < sequence_number(0))
|
2015-09-08 22:12:54 +02:00
|
|
|
{
|
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
|
|
|
incoming_error(e, "invalid (negative) sequence number");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-18 18:01:20 +02:00
|
|
|
// msg_keys[4] is the signature, msg_keys[3] is the public key
|
2016-07-24 00:57:04 +02:00
|
|
|
if (!verify_mutable_item(buf, salt, seq, pk, sig))
|
2011-05-25 04:26:07 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2013-09-03 02:45:48 +02:00
|
|
|
incoming_error(e, "invalid signature", 206);
|
2011-05-25 04:26:07 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-05-23 07:07:52 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
TORRENT_ASSERT(signature::len == msg_keys[4].string_length());
|
2011-05-25 04:26:07 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
sequence_number item_seq;
|
2016-06-04 01:44:16 +02:00
|
|
|
if (!m_storage.get_mutable_item_seq(target, item_seq))
|
2015-09-08 22:12:54 +02:00
|
|
|
{
|
2016-07-24 00:57:04 +02:00
|
|
|
m_storage.put_mutable_item(target, buf, sig, seq, pk, salt
|
2015-09-08 22:12:54 +02:00
|
|
|
, m.addr.address());
|
2011-05-25 04:26:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-03 02:45:48 +02:00
|
|
|
// this is the "cas" field in the put message
|
2014-08-27 07:57:37 +02:00
|
|
|
// if it was specified, we MUST make sure the current sequence
|
|
|
|
// number matches the expected value before replacing it
|
|
|
|
// this is critical for avoiding race conditions when multiple
|
|
|
|
// writers are accessing the same slot
|
2016-07-24 00:57:04 +02:00
|
|
|
if (msg_keys[5] && item_seq.value != msg_keys[5].int_value())
|
2013-09-03 02:45:48 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2014-08-27 07:57:37 +02:00
|
|
|
incoming_error(e, "CAS mismatch", 301);
|
|
|
|
return;
|
2013-09-03 02:45:48 +02:00
|
|
|
}
|
|
|
|
|
2015-09-08 22:12:54 +02:00
|
|
|
if (item_seq > seq)
|
2011-05-25 04:26:07 +02:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_put);
|
2013-09-03 02:45:48 +02:00
|
|
|
incoming_error(e, "old sequence number", 302);
|
2011-05-25 04:26:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
m_storage.put_mutable_item(target, buf, sig, seq, pk, salt
|
2015-09-08 22:12:54 +02:00
|
|
|
, m.addr.address());
|
2011-05-25 04:26:07 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-23 07:07:52 +02:00
|
|
|
|
2012-09-22 20:15:29 +02:00
|
|
|
m_table.node_seen(id, m.addr, 0xffff);
|
2011-01-19 06:57:44 +01:00
|
|
|
}
|
2016-08-15 22:17:13 +02:00
|
|
|
else if (query == "get")
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
|
|
|
key_desc_t msg_desc[] = {
|
2015-03-12 06:20:12 +01:00
|
|
|
{"seq", bdecode_node::int_t, 0, key_desc_t::optional},
|
|
|
|
{"target", bdecode_node::string_t, 20, 0},
|
2015-11-14 06:08:57 +01:00
|
|
|
{"want", bdecode_node::list_t, 0, key_desc_t::optional},
|
2011-01-19 06:57:44 +01:00
|
|
|
};
|
|
|
|
|
2011-05-23 07:07:52 +02:00
|
|
|
// k is not used for now
|
|
|
|
|
2011-01-19 06:57:44 +01:00
|
|
|
// attempt to parse the message
|
2015-11-14 06:08:57 +01:00
|
|
|
bdecode_node msg_keys[3];
|
2015-12-30 05:27:46 +01:00
|
|
|
if (!verify_message(arg_ent, msg_desc, msg_keys, error_string
|
2015-01-18 02:06:36 +01:00
|
|
|
, sizeof(error_string)))
|
2011-01-19 06:57:44 +01:00
|
|
|
{
|
2015-01-18 02:06:36 +01:00
|
|
|
m_counters.inc_stats_counter(counters::dht_invalid_get);
|
2011-01-19 06:57:44 +01:00
|
|
|
incoming_error(e, error_string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
m_counters.inc_stats_counter(counters::dht_get_in);
|
2015-03-12 06:20:12 +01:00
|
|
|
sha1_hash target(msg_keys[1].string_ptr());
|
2011-01-19 06:57:44 +01:00
|
|
|
|
2016-05-17 15:24:06 +02:00
|
|
|
// std::fprintf(stderr, "%s GET target: %s\n"
|
2011-05-25 04:26:07 +02:00
|
|
|
// , msg_keys[1] ? "mutable":"immutable"
|
2016-07-29 08:36:15 +02:00
|
|
|
// , aux::to_hex(target).c_str());
|
2011-05-25 04:26:07 +02:00
|
|
|
|
2016-07-24 00:57:04 +02:00
|
|
|
reply["token"] = generate_token(m.addr, sha1_hash(msg_keys[1].string_ptr()));
|
2015-08-18 13:55:50 +02:00
|
|
|
|
2011-01-19 06:57:44 +01:00
|
|
|
// always return nodes as well as peers
|
2015-11-14 06:08:57 +01:00
|
|
|
write_nodes_entries(target, msg_keys[2], reply);
|
2011-01-19 06:57:44 +01:00
|
|
|
|
2014-12-25 12:24:02 +01:00
|
|
|
// if the get has a sequence number it must be for a mutable item
|
|
|
|
// so don't bother searching the immutable table
|
|
|
|
if (!msg_keys[0])
|
2011-05-25 04:26:07 +02:00
|
|
|
{
|
2016-06-04 01:44:16 +02:00
|
|
|
if (!m_storage.get_immutable_item(target, reply)) // ok, check for a mutable one
|
2015-09-08 22:12:54 +02:00
|
|
|
{
|
2016-07-24 00:57:04 +02:00
|
|
|
m_storage.get_mutable_item(target, sequence_number(0)
|
|
|
|
, true, reply);
|
2015-09-08 22:12:54 +02:00
|
|
|
}
|
2012-11-16 23:25:39 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-04 01:44:16 +02:00
|
|
|
m_storage.get_mutable_item(target
|
2016-07-24 00:57:04 +02:00
|
|
|
, sequence_number(msg_keys[0].int_value()), false
|
2015-09-08 22:12:54 +02:00
|
|
|
, reply);
|
2009-09-27 05:38:41 +02:00
|
|
|
}
|
|
|
|
}
|
2009-09-20 02:23:36 +02:00
|
|
|
else
|
|
|
|
{
|
2009-09-27 02:40:05 +02:00
|
|
|
// if we don't recognize the message but there's a
|
|
|
|
// 'target' or 'info_hash' in the arguments, treat it
|
|
|
|
// as find_node to be future compatible
|
2015-03-12 06:20:12 +01:00
|
|
|
bdecode_node target_ent = arg_ent.dict_find_string("target");
|
|
|
|
if (!target_ent || target_ent.string_length() != 20)
|
2009-09-27 02:40:05 +02:00
|
|
|
{
|
2015-03-12 06:20:12 +01:00
|
|
|
target_ent = arg_ent.dict_find_string("info_hash");
|
|
|
|
if (!target_ent || target_ent.string_length() != 20)
|
2009-09-27 02:40:05 +02:00
|
|
|
{
|
|
|
|
incoming_error(e, "unknown message");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:20:12 +01:00
|
|
|
sha1_hash target(target_ent.string_ptr());
|
2009-09-27 02:40:05 +02:00
|
|
|
// always return nodes as well as peers
|
2015-11-14 06:08:57 +01:00
|
|
|
write_nodes_entries(target, arg_ent.dict_find_list("want"), reply);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void node::write_nodes_entries(sha1_hash const& info_hash
|
|
|
|
, bdecode_node const& want, entry& r)
|
|
|
|
{
|
|
|
|
// if no wants entry was specified, include a nodes
|
|
|
|
// entry based on the protocol the request came in with
|
|
|
|
if (want.type() != bdecode_node::list_t)
|
|
|
|
{
|
|
|
|
nodes_t n;
|
|
|
|
m_table.find_node(info_hash, n, 0);
|
2016-02-12 04:56:52 +01:00
|
|
|
write_nodes_entry(r[protocol_nodes_key()], n);
|
2009-09-20 02:23:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2015-11-14 06:08:57 +01:00
|
|
|
|
|
|
|
// if there is a wants entry then we may need to reach into
|
|
|
|
// another node's routing table to get nodes of the requested type
|
|
|
|
// we use a map maintained by the owning dht_tracker to find the
|
|
|
|
// node associated with each string in the want list, which may
|
|
|
|
// include this node
|
|
|
|
for (int i = 0; i < want.list_size(); ++i)
|
|
|
|
{
|
|
|
|
bdecode_node wanted = want.list_at(i);
|
|
|
|
if (wanted.type() != bdecode_node::string_t)
|
|
|
|
continue;
|
2016-08-13 13:04:53 +02:00
|
|
|
auto wanted_node = m_nodes.find(wanted.string_value().to_string());
|
|
|
|
if (wanted_node == m_nodes.end()) continue;
|
2015-11-14 06:08:57 +01:00
|
|
|
nodes_t n;
|
|
|
|
wanted_node->second->m_table.find_node(info_hash, n, 0);
|
2016-02-12 04:56:52 +01:00
|
|
|
write_nodes_entry(r[wanted_node->second->protocol_nodes_key()], n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
node::protocol_descriptor const& node::map_protocol_to_descriptor(udp protocol)
|
|
|
|
{
|
|
|
|
static protocol_descriptor descriptors[] =
|
|
|
|
{ {udp::v4(), "n4", "nodes"}
|
|
|
|
, {udp::v6(), "n6", "nodes6"} };
|
|
|
|
|
|
|
|
for (int i = 0; i < sizeof(descriptors) / sizeof(protocol_descriptor); ++i)
|
|
|
|
{
|
|
|
|
if (descriptors[i].protocol == protocol)
|
|
|
|
return descriptors[i];
|
2015-11-14 06:08:57 +01:00
|
|
|
}
|
2016-02-12 04:56:52 +01:00
|
|
|
|
2016-05-02 18:36:21 +02:00
|
|
|
TORRENT_ASSERT_FAIL();
|
2016-02-12 04:56:52 +01:00
|
|
|
throw std::out_of_range("unknown protocol");
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
2015-09-17 17:11:46 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
} } // namespace libtorrent::dht
|