/* 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 #include #include namespace libtorrent { namespace dht { using detail::read_endpoint_list; using detail::read_v4_endpoint; #if TORRENT_USE_IPV6 using detail::read_v6_endpoint; #endif void find_data_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; } bdecode_node token = r.dict_find_string("token"); if (token) { static_cast(algorithm())->got_write_token( node_id(id.string_ptr()), token.string_value()); } traversal_observer::reply(m); done(); } find_data::find_data( node& dht_node , node_id target , nodes_callback const& ncallback) : traversal_algorithm(dht_node, target) , m_nodes_callback(ncallback) , m_done(false) { } void find_data::start() { // if the user didn't add seed-nodes manually, grab k (bucket size) // nodes from routing table. if (m_results.empty()) { std::vector nodes; m_node.m_table.find_node(m_target, nodes, routing_table::include_failed); for (std::vector::iterator i = nodes.begin() , end(nodes.end()); i != end; ++i) { add_entry(i->id, i->ep(), observer::flag_initial); } } traversal_algorithm::start(); } void find_data::got_write_token(node_id const& n, std::string const& write_token) { #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal , "[%p] adding write token '%s' under id '%s'" , static_cast(this), to_hex(write_token).c_str() , to_hex(n.to_string()).c_str()); #endif m_write_tokens[n] = write_token; } observer_ptr find_data::new_observer(void* ptr , udp::endpoint const& ep, node_id const& id) { observer_ptr o(new (ptr) find_data_observer(this, ep, id)); #if defined TORRENT_DEBUG || defined TORRENT_RELEASE_ASSERTS o->m_in_constructor = false; #endif return o; } char const* find_data::name() const { return "find_data"; } void find_data::done() { m_done = true; #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal, "[%p] %s DONE" , static_cast(this), name()); #endif std::vector > results; int num_results = m_node.m_table.bucket_size(); for (std::vector::iterator i = m_results.begin() , end(m_results.end()); i != end && num_results > 0; ++i) { observer_ptr const& o = *i; if ((o->flags & observer::flag_alive) == 0) { #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal, "[%p] not alive: %s" , static_cast(this), print_endpoint(o->target_ep()).c_str()); #endif continue; } std::map::iterator j = m_write_tokens.find(o->id()); if (j == m_write_tokens.end()) { #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal, "[%p] no write token: %s" , static_cast(this), print_endpoint(o->target_ep()).c_str()); #endif continue; } results.push_back(std::make_pair(node_entry(o->id(), o->target_ep()), j->second)); #ifndef TORRENT_DISABLE_LOGGING get_node().observer()->log(dht_logger::traversal, "[%p] %s" , static_cast(this), print_endpoint(o->target_ep()).c_str()); #endif --num_results; } if (m_nodes_callback) m_nodes_callback(results); traversal_algorithm::done(); } } } // namespace libtorrent::dht