/* Copyright (c) 2006-2016, Arvid Norberg & Daniel Wallin 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 #include #include #include #include #ifndef TORRENT_DISABLE_LOGGING #include // to_hex #endif namespace libtorrent { namespace dht { using detail::read_endpoint_list; using detail::read_v4_endpoint; void get_peers_observer::reply(msg const& m) { bdecode_node r = m.message.dict_find_dict("r"); if (!r) { #ifndef TORRENT_DISABLE_LOGGING get_observer()->log(dht_logger::traversal, "[%p] missing response dict" , static_cast(algorithm())); #endif timeout(); return; } // look for peers bdecode_node n = r.dict_find_list("values"); if (n) { std::vector peer_list; if (n.list_size() == 1 && n.list_at(0).type() == bdecode_node::string_t && m.addr.protocol() == udp::v4()) { // assume it's mainline format char const* peers = n.list_at(0).string_ptr(); char const* end = peers + n.list_at(0).string_length(); #ifndef TORRENT_DISABLE_LOGGING bdecode_node const id = r.dict_find_string("id"); if (id && id.string_length() == 20) { get_observer()->log(dht_logger::traversal, "[%p] PEERS " "invoke-count: %d branch-factor: %d addr: %s id: %s distance: %d p: %d" , static_cast(algorithm()) , algorithm()->invoke_count() , algorithm()->branch_factor() , print_endpoint(m.addr).c_str() , aux::to_hex({id.string_ptr(), size_t(id.string_length())}).c_str() , distance_exp(algorithm()->target(), node_id(id.string_ptr())) , int((end - peers) / 6)); } #endif while (end - peers >= 6) peer_list.push_back(read_v4_endpoint(peers)); } else { // assume it's uTorrent/libtorrent format read_endpoint_list(n, peer_list); #ifndef TORRENT_DISABLE_LOGGING bdecode_node const id = r.dict_find_string("id"); if (id && id.string_length() == 20) { get_observer()->log(dht_logger::traversal, "[%p] PEERS " "invoke-count: %d branch-factor: %d addr: %s id: %s distance: %d p: %d" , static_cast(algorithm()) , algorithm()->invoke_count() , algorithm()->branch_factor() , print_endpoint(m.addr).c_str() , aux::to_hex({id.string_ptr(), size_t(id.string_length())}).c_str() , distance_exp(algorithm()->target(), node_id(id.string_ptr())) , int(n.list_size())); } #endif } static_cast(algorithm())->got_peers(peer_list); } find_data_observer::reply(m); } void get_peers::got_peers(std::vector const& peers) { if (m_data_callback) m_data_callback(peers); } get_peers::get_peers( node& dht_node , node_id target , data_callback const& dcallback , nodes_callback const& ncallback , bool noseeds) : find_data(dht_node, target, ncallback) , m_data_callback(dcallback) , m_noseeds(noseeds) { } char const* get_peers::name() const { return "get_peers"; } bool get_peers::invoke(observer_ptr o) { if (m_done) { m_invoke_count = -1; return false; } entry e; e["y"] = "q"; entry& a = e["a"]; e["q"] = "get_peers"; a["info_hash"] = m_target.to_string(); if (m_noseeds) a["noseed"] = 1; if (m_node.observer()) { m_node.observer()->outgoing_get_peers(m_target, m_target, o->target_ep()); } m_node.stats_counters().inc_stats_counter(counters::dht_get_peers_out); return m_node.m_rpc.invoke(e, o->target_ep(), o); } observer_ptr get_peers::new_observer(void* ptr , udp::endpoint const& ep, node_id const& id) { observer_ptr o(new (ptr) get_peers_observer(self(), ep, id)); #if TORRENT_USE_ASSERTS o->m_in_constructor = false; #endif return o; } obfuscated_get_peers::obfuscated_get_peers( node& dht_node , node_id info_hash , data_callback const& dcallback , nodes_callback const& ncallback , bool noseeds) : get_peers(dht_node, info_hash, dcallback, ncallback, noseeds) , m_obfuscated(true) { } char const* obfuscated_get_peers::name() const { return !m_obfuscated ? get_peers::name() : "get_peers [obfuscated]"; } observer_ptr obfuscated_get_peers::new_observer(void* ptr , udp::endpoint const& ep, node_id const& id) { if (m_obfuscated) { observer_ptr o(new (ptr) obfuscated_get_peers_observer(self(), ep, id)); #if TORRENT_USE_ASSERTS o->m_in_constructor = false; #endif return o; } else { observer_ptr o(new (ptr) get_peers_observer(self(), ep, id)); #if TORRENT_USE_ASSERTS o->m_in_constructor = false; #endif return o; } } bool obfuscated_get_peers::invoke(observer_ptr o) { if (!m_obfuscated) return get_peers::invoke(o); const node_id id = o->id(); const int shared_prefix = 160 - distance_exp(id, m_target); // when we get close to the target zone in the DHT // start using the correct info-hash, in order to // start receiving peers if (shared_prefix > m_node.m_table.depth() - 4) { m_obfuscated = false; // clear the queried bits on all successful nodes in // our node-list for this traversal algorithm, to // allow the get_peers traversal to regress in case // nodes further down end up being dead for (auto const& node : m_results) { // don't re-request from nodes that didn't respond if (node->flags & observer::flag_failed) continue; // don't interrupt with queries that are already in-flight if ((node->flags & observer::flag_alive) == 0) continue; node->flags &= ~(observer::flag_queried | observer::flag_alive); } return get_peers::invoke(o); } entry e; e["y"] = "q"; e["q"] = "get_peers"; entry& a = e["a"]; // This logic will obfuscate the target info-hash // we're looking up, in order to preserve more privacy // on the DHT. This is done by only including enough // bits in the info-hash for the node we're querying to // give a good answer, but not more. // now, obfuscate the bits past shared_prefix + 3 node_id mask = generate_prefix_mask(shared_prefix + 3); node_id obfuscated_target = generate_random_id() & ~mask; obfuscated_target |= m_target & mask; a["info_hash"] = obfuscated_target.to_string(); if (m_node.observer()) { m_node.observer()->outgoing_get_peers(m_target, obfuscated_target , o->target_ep()); } m_node.stats_counters().inc_stats_counter(counters::dht_get_peers_out); return m_node.m_rpc.invoke(e, o->target_ep(), o); } void obfuscated_get_peers::done() { if (!m_obfuscated) return get_peers::done(); // oops, we failed to switch over to the non-obfuscated // mode early enough. do it now auto ta = std::make_shared(m_node, m_target , m_data_callback, m_nodes_callback, m_noseeds); // don't call these when the obfuscated_get_peers // is done, we're passing them on to be called when // ta completes. m_data_callback = nullptr; m_nodes_callback = nullptr; #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal, "[%p] obfuscated get_peers " "phase 1 done, spawning get_peers [ %p ]" , static_cast(this) , static_cast(ta.get())); #endif int num_added = 0; for (std::vector::iterator i = m_results.begin() , end(m_results.end()); i != end && num_added < 16; ++i) { observer_ptr o = *i; // only add nodes whose node ID we know and that // we know are alive if (o->flags & observer::flag_no_id) continue; if ((o->flags & observer::flag_alive) == 0) continue; ta->add_entry(o->id(), o->target_ep(), observer::flag_initial); ++num_added; } ta->start(); get_peers::done(); } void obfuscated_get_peers_observer::reply(msg const& m) { bdecode_node r = m.message.dict_find_dict("r"); if (!r) { #ifndef TORRENT_DISABLE_LOGGING get_observer()->log(dht_logger::traversal, "[%p] missing response dict" , static_cast(algorithm())); #endif timeout(); return; } bdecode_node id = r.dict_find_string("id"); if (!id || id.string_length() != 20) { #ifndef TORRENT_DISABLE_LOGGING get_observer()->log(dht_logger::traversal, "[%p] invalid id in response" , static_cast(algorithm())); #endif timeout(); return; } traversal_observer::reply(m); done(); } } } // namespace libtorrent::dht