/* Copyright (c) 2006-2012, 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/pch.hpp" #ifdef TORRENT_DHT_VERBOSE_LOGGING #include #endif #include #include #include #include #include "libtorrent/kademlia/node.hpp" #include "libtorrent/kademlia/node_id.hpp" #include "libtorrent/kademlia/traversal_algorithm.hpp" #include "libtorrent/kademlia/dht_tracker.hpp" #include "libtorrent/kademlia/msg.hpp" #include "libtorrent/aux_/session_impl.hpp" #include "libtorrent/socket.hpp" #include "libtorrent/socket_io.hpp" #include "libtorrent/bencode.hpp" #include "libtorrent/io.hpp" #include "libtorrent/version.hpp" #include "libtorrent/escape_string.hpp" using boost::ref; using libtorrent::dht::node_impl; using libtorrent::dht::node_id; using libtorrent::dht::packet_t; using libtorrent::dht::msg; using namespace libtorrent::detail; enum { key_refresh = 5 // generate a new write token key every 5 minutes }; namespace { const int tick_period = 1; // minutes template void read_endpoint_list(libtorrent::entry const* n, std::vector& epl) { using namespace libtorrent; if (n->type() != entry::list_t) return; entry::list_type const& contacts = n->list(); for (entry::list_type::const_iterator i = contacts.begin() , end(contacts.end()); i != end; ++i) { if (i->type() != entry::string_t) return; std::string const& p = i->string(); if (p.size() < 6) continue; std::string::const_iterator in = p.begin(); if (p.size() == 6) epl.push_back(read_v4_endpoint(in)); #if TORRENT_USE_IPV6 else if (p.size() == 18) epl.push_back(read_v6_endpoint(in)); #endif } } } namespace libtorrent { namespace dht { void incoming_error(entry& e, char const* msg); #ifdef TORRENT_DHT_VERBOSE_LOGGING int g_az_message_input = 0; int g_ut_message_input = 0; int g_lt_message_input = 0; int g_mp_message_input = 0; int g_gr_message_input = 0; int g_mo_message_input = 0; int g_unknown_message_input = 0; int g_announces = 0; int g_failed_announces = 0; #endif void intrusive_ptr_add_ref(dht_tracker const* c) { TORRENT_ASSERT(c != 0); TORRENT_ASSERT(c->m_refs >= 0); ++c->m_refs; } void intrusive_ptr_release(dht_tracker const* c) { TORRENT_ASSERT(c != 0); TORRENT_ASSERT(c->m_refs > 0); if (--c->m_refs == 0) delete c; } #ifdef TORRENT_DHT_VERBOSE_LOGGING std::string parse_dht_client(lazy_entry const& e) { lazy_entry const* ver = e.dict_find_string("v"); if (!ver) return "generic"; std::string const& client = ver->string_value(); if (client.size() < 2) { ++g_unknown_message_input; return client; } else if (std::equal(client.begin(), client.begin() + 2, "Az")) { ++g_az_message_input; return "Azureus"; } else if (std::equal(client.begin(), client.begin() + 2, "UT")) { ++g_ut_message_input; return "uTorrent"; } else if (std::equal(client.begin(), client.begin() + 2, "LT")) { ++g_lt_message_input; return "libtorrent"; } else if (std::equal(client.begin(), client.begin() + 2, "MP")) { ++g_mp_message_input; return "MooPolice"; } else if (std::equal(client.begin(), client.begin() + 2, "GR")) { ++g_gr_message_input; return "GetRight"; } else if (std::equal(client.begin(), client.begin() + 2, "MO")) { ++g_mo_message_input; return "Mono Torrent"; } else { ++g_unknown_message_input; return client; } } #endif #ifdef TORRENT_DHT_VERBOSE_LOGGING TORRENT_DEFINE_LOG(dht_tracker) #endif node_id extract_node_id(lazy_entry const* e) { if (e == 0 || e->type() != lazy_entry::dict_t) return (node_id::min)(); lazy_entry const* nid = e->dict_find_string("node-id"); if (nid == 0 || nid->string_length() != 20) return (node_id::min)(); return node_id(node_id(nid->string_ptr())); } node_id extract_node_id(entry const* e) { if (e == 0 || e->type() != entry::dictionary_t) return (node_id::min)(); entry const* nid = e->find_key("node-id"); if (nid == 0 || nid->type() != entry::string_t || nid->string().length() != 20) return (node_id::min)(); return node_id(node_id(nid->string().c_str())); } // class that puts the networking and the kademlia node in a single // unit and connecting them together. dht_tracker::dht_tracker(libtorrent::aux::session_impl& ses, rate_limited_udp_socket& sock , dht_settings const& settings, entry const* state) : m_dht(&ses, this, settings, extract_node_id(state) , ses.external_address().external_address(address_v4()), &ses) , m_sock(sock) , m_last_new_key(time_now() - minutes(key_refresh)) , m_timer(sock.get_io_service()) , m_connection_timer(sock.get_io_service()) , m_refresh_timer(sock.get_io_service()) , m_settings(settings) , m_refresh_bucket(160) , m_abort(false) , m_host_resolver(sock.get_io_service()) , m_sent_bytes(0) , m_received_bytes(0) , m_refs(0) { #ifdef TORRENT_DHT_VERBOSE_LOGGING m_counter = 0; std::fill_n(m_replies_bytes_sent, 5, 0); std::fill_n(m_queries_bytes_received, 5, 0); std::fill_n(m_replies_sent, 5, 0); std::fill_n(m_queries_received, 5, 0); g_announces = 0; g_failed_announces = 0; m_total_message_input = 0; m_total_in_bytes = 0; m_total_out_bytes = 0; m_queries_out_bytes = 0; // turns on and off individual components' logging rpc_log().enable(false); node_log().enable(false); // traversal_log().enable(false); // dht_tracker_log.enable(false); TORRENT_LOG(dht_tracker) << "starting DHT tracker with node id: " << m_dht.nid(); #endif } dht_tracker::~dht_tracker() {} // defined in node.cpp extern void nop(); void dht_tracker::start(entry const& bootstrap) { std::vector initial_nodes; if (bootstrap.type() == entry::dictionary_t) { TORRENT_TRY { if (entry const* nodes = bootstrap.find_key("nodes")) read_endpoint_list(nodes, initial_nodes); } TORRENT_CATCH(std::exception&) {} } error_code ec; m_timer.expires_from_now(seconds(1), ec); m_timer.async_wait(boost::bind(&dht_tracker::tick, self(), _1)); m_connection_timer.expires_from_now(seconds(1), ec); m_connection_timer.async_wait( boost::bind(&dht_tracker::connection_timeout, self(), _1)); m_refresh_timer.expires_from_now(seconds(5), ec); m_refresh_timer.async_wait(boost::bind(&dht_tracker::refresh_timeout, self(), _1)); m_dht.bootstrap(initial_nodes, boost::bind(&libtorrent::dht::nop)); } void dht_tracker::stop() { m_abort = true; error_code ec; m_timer.cancel(ec); m_connection_timer.cancel(ec); m_refresh_timer.cancel(ec); m_host_resolver.cancel(); } void dht_tracker::dht_status(session_status& s) { m_dht.status(s); } void dht_tracker::network_stats(int& sent, int& received) { sent = m_sent_bytes; received = m_received_bytes; m_sent_bytes = 0; m_received_bytes = 0; } void dht_tracker::connection_timeout(error_code const& e) { if (e || m_abort) return; time_duration d = m_dht.connection_timeout(); error_code ec; m_connection_timer.expires_from_now(d, ec); m_connection_timer.async_wait(boost::bind(&dht_tracker::connection_timeout, self(), _1)); } void dht_tracker::refresh_timeout(error_code const& e) { if (e || m_abort) return; m_dht.tick(); error_code ec; m_refresh_timer.expires_from_now(seconds(5), ec); m_refresh_timer.async_wait( boost::bind(&dht_tracker::refresh_timeout, self(), _1)); } void dht_tracker::tick(error_code const& e) { if (e || m_abort) return; error_code ec; m_timer.expires_from_now(minutes(tick_period), ec); m_timer.async_wait(boost::bind(&dht_tracker::tick, self(), _1)); ptime now = time_now(); if (now - m_last_new_key > minutes(key_refresh)) { m_last_new_key = now; m_dht.new_write_key(); #ifdef TORRENT_DHT_VERBOSE_LOGGING TORRENT_LOG(dht_tracker) << " *** new write key"; #endif } #ifdef TORRENT_DHT_VERBOSE_LOGGING static bool first = true; std::ofstream st("dht_routing_table_state.txt", std::ios_base::trunc); m_dht.print_state(st); // count torrents int torrents = m_dht.num_torrents(); // count peers int peers = m_dht.num_peers(); std::ofstream pc("dht_stats.log", first ? std::ios_base::trunc : std::ios_base::app); if (first) { first = false; pc << "\n\n ***** starting log at " << time_now_string() << " *****\n\n" << "minute:active nodes:passive nodes" ":ping replies sent:ping queries recvd" ":ping replies bytes sent:ping queries bytes recvd" ":find_node replies sent:find_node queries recv" ":find_node replies bytes sent:find_node queries bytes recv" ":get_peers replies sent:get_peers queries recvd" ":get_peers replies bytes sent:get_peers queries bytes recv" ":announce_peer replies sent:announce_peer queries recvd" ":announce_peer replies bytes sent:announce_peer queries bytes recv" ":error replies sent:error queries recvd" ":error replies bytes sent:error queries bytes recv" ":num torrents:num peers:announces per min" ":failed announces per min:total msgs per min" ":az msgs per min:ut msgs per min:lt msgs per min:mp msgs per min" ":gr msgs per min:mo msgs per min:bytes in per sec:bytes out per sec" ":queries out bytes per sec\n\n"; } int active; int passive; boost::tie(active, passive) = m_dht.size(); pc << (m_counter * tick_period) << "\t" << active << "\t" << passive; for (int i = 0; i < 5; ++i) pc << "\t" << (m_replies_sent[i] / float(tick_period)) << "\t" << (m_queries_received[i] / float(tick_period)) << "\t" << (m_replies_bytes_sent[i] / float(tick_period*60)) << "\t" << (m_queries_bytes_received[i] / float(tick_period*60)); pc << "\t" << torrents << "\t" << peers << "\t" << g_announces / float(tick_period) << "\t" << g_failed_announces / float(tick_period) << "\t" << (m_total_message_input / float(tick_period)) << "\t" << (g_az_message_input / float(tick_period)) << "\t" << (g_ut_message_input / float(tick_period)) << "\t" << (g_lt_message_input / float(tick_period)) << "\t" << (g_mp_message_input / float(tick_period)) << "\t" << (g_gr_message_input / float(tick_period)) << "\t" << (g_mo_message_input / float(tick_period)) << "\t" << (m_total_in_bytes / float(tick_period*60)) << "\t" << (m_total_out_bytes / float(tick_period*60)) << "\t" << (m_queries_out_bytes / float(tick_period*60)) << std::endl; ++m_counter; std::fill_n(m_replies_bytes_sent, 5, 0); std::fill_n(m_queries_bytes_received, 5, 0); std::fill_n(m_replies_sent, 5, 0); std::fill_n(m_queries_received, 5, 0); g_announces = 0; g_failed_announces = 0; m_total_message_input = 0; g_az_message_input = 0; g_ut_message_input = 0; g_lt_message_input = 0; g_mp_message_input = 0; g_gr_message_input = 0; g_mo_message_input = 0; g_unknown_message_input = 0; m_total_in_bytes = 0; m_total_out_bytes = 0; m_queries_out_bytes = 0; #endif } void dht_tracker::announce(sha1_hash const& ih, int listen_port, bool seed , boost::function const&)> f) { m_dht.announce(ih, listen_port, seed, f); } // translate bittorrent kademlia message into the generice kademlia message // used by the library bool dht_tracker::incoming_packet(error_code const& ec , udp::endpoint const& ep, char const* buf, int size) { if (ec) { if (ec == asio::error::connection_refused || ec == asio::error::connection_reset || ec == asio::error::connection_aborted #ifdef WIN32 || ec == error_code(ERROR_HOST_UNREACHABLE, get_system_category()) || ec == error_code(ERROR_PORT_UNREACHABLE, get_system_category()) || ec == error_code(ERROR_CONNECTION_REFUSED, get_system_category()) || ec == error_code(ERROR_CONNECTION_ABORTED, get_system_category()) #endif ) { m_dht.unreachable(ep); } return false; } if (size <= 20 || *buf != 'd' || buf[size-1] != 'e') return false; // account for IP and UDP overhead m_received_bytes += size + (ep.address().is_v6() ? 48 : 28); node_ban_entry* match = 0; node_ban_entry* min = m_ban_nodes; ptime now = time_now(); for (node_ban_entry* i = m_ban_nodes; i < m_ban_nodes + num_ban_nodes; ++i) { if (i->src == ep.address()) { match = i; break; } if (i->count < min->count) min = i; } if (match) { ++match->count; if (match->count >= 20) { if (now < match->limit) { #ifdef TORRENT_DHT_VERBOSE_LOGGING if (match->count == 20) { TORRENT_LOG(dht_tracker) << " BANNING PEER [ ip: " << ep << " time: " << total_milliseconds((now - match->limit) + seconds(5)) / 1000.f << " count: " << match->count << " ]"; } #endif // we've received 20 messages in less than 5 seconds from // this node. Ignore it until it's silent for 5 minutes match->limit = now + minutes(5); return true; } // we got 50 messages from this peer, but it was in // more than 5 seconds. Reset the counter and the timer match->count = 0; match->limit = now + seconds(5); } } else { min->count = 1; min->limit = now + seconds(5); min->src = ep.address(); } #ifdef TORRENT_DHT_VERBOSE_LOGGING ++m_total_message_input; m_total_in_bytes += size; #endif using libtorrent::entry; using libtorrent::bdecode; TORRENT_ASSERT(size > 0); lazy_entry e; int pos; error_code err; int ret = lazy_bdecode(buf, buf + size, e, err, &pos, 10, 500); if (ret != 0) { #ifdef TORRENT_DHT_VERBOSE_LOGGING TORRENT_LOG(dht_tracker) << "<== " << ep << " ERROR: " << err.message() << " pos: " << pos; #endif return false; } libtorrent::dht::msg m(e, ep); if (e.type() != lazy_entry::dict_t) { #ifdef TORRENT_DHT_VERBOSE_LOGGING TORRENT_LOG(dht_tracker) << "<== " << ep << " ERROR: not a dictionary: " << print_entry(e, true); #endif // it's not a good idea to send invalid messages // especially not in response to an invalid message // entry r; // libtorrent::dht::incoming_error(r, "message is not a dictionary"); // send_packet(r, ep, 0); return false; } #ifdef TORRENT_DHT_VERBOSE_LOGGING parse_dht_client(e); TORRENT_LOG(dht_tracker) << "<== " << ep << " " << print_entry(e, true); #endif m_dht.incoming(m); return true; } void add_node_fun(void* userdata, node_entry const& e) { entry* n = (entry*)userdata; std::string node; std::back_insert_iterator out(node); write_endpoint(e.ep(), out); n->list().push_back(entry(node)); } entry dht_tracker::state() const { entry ret(entry::dictionary_t); { entry nodes(entry::list_t); m_dht.m_table.for_each_node(&add_node_fun, &add_node_fun, &nodes); bucket_t cache; m_dht.replacement_cache(cache); for (bucket_t::iterator i(cache.begin()) , end(cache.end()); i != end; ++i) { std::string node; std::back_insert_iterator out(node); write_endpoint(udp::endpoint(i->addr, i->port), out); nodes.list().push_back(entry(node)); } if (!nodes.list().empty()) ret["nodes"] = nodes; } ret["node-id"] = m_dht.nid().to_string(); return ret; } void dht_tracker::add_node(udp::endpoint node) { m_dht.add_node(node); } void dht_tracker::add_node(std::pair const& node) { char port[7]; snprintf(port, sizeof(port), "%d", node.second); udp::resolver::query q(node.first, port); m_host_resolver.async_resolve(q, boost::bind(&dht_tracker::on_name_lookup, self(), _1, _2)); } void dht_tracker::on_name_lookup(error_code const& e , udp::resolver::iterator host) { if (e || host == udp::resolver::iterator()) return; add_node(host->endpoint()); } void dht_tracker::add_router_node(udp::endpoint const& node) { m_dht.add_router_node(node); } bool dht_tracker::send_packet(libtorrent::entry& e, udp::endpoint const& addr, int send_flags) { using libtorrent::bencode; using libtorrent::entry; static char const version_str[] = {'L', 'T' , LIBTORRENT_VERSION_MAJOR, LIBTORRENT_VERSION_MINOR}; e["v"] = std::string(version_str, version_str + 4); m_send_buf.clear(); bencode(std::back_inserter(m_send_buf), e); error_code ec; #ifdef TORRENT_DHT_VERBOSE_LOGGING std::stringstream log_line; lazy_entry print; int ret = lazy_bdecode(&m_send_buf[0], &m_send_buf[0] + m_send_buf.size(), print, ec); TORRENT_ASSERT(ret == 0); log_line << print_entry(print, true); #endif if (m_sock.send(addr, &m_send_buf[0], (int)m_send_buf.size(), ec, send_flags)) { if (ec) return false; // account for IP and UDP overhead m_sent_bytes += m_send_buf.size() + (addr.address().is_v6() ? 48 : 28); #ifdef TORRENT_DHT_VERBOSE_LOGGING m_total_out_bytes += m_send_buf.size(); if (e["y"].string() == "r") { // TODO: fix this stats logging // ++m_replies_sent[e["r"]]; // m_replies_bytes_sent[e["r"]] += int(m_send_buf.size()); } else if (e["y"].string() == "q") { m_queries_out_bytes += m_send_buf.size(); } TORRENT_LOG(dht_tracker) << "==> " << addr << " " << log_line.str(); #endif return true; } else { #ifdef TORRENT_DHT_VERBOSE_LOGGING TORRENT_LOG(dht_tracker) << "==> " << addr << " DROPPED " << log_line.str(); #endif return false; } } }}