2006-08-01 17:27:08 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2006, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
|
|
|
|
#ifndef TORRENT_DHT_TRACKER
|
|
|
|
#define TORRENT_DHT_TRACKER
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <set>
|
|
|
|
#include <numeric>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <boost/ref.hpp>
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2007-02-25 10:42:43 +01:00
|
|
|
#include <boost/intrusive_ptr.hpp>
|
|
|
|
#include <boost/detail/atomic_count.hpp>
|
2008-03-24 05:38:43 +01:00
|
|
|
#include <boost/thread/mutex.hpp>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#include "libtorrent/kademlia/node.hpp"
|
|
|
|
#include "libtorrent/kademlia/node_id.hpp"
|
|
|
|
#include "libtorrent/kademlia/traversal_algorithm.hpp"
|
|
|
|
#include "libtorrent/session_settings.hpp"
|
2006-09-05 01:22:21 +02:00
|
|
|
#include "libtorrent/session_status.hpp"
|
2007-12-09 05:15:24 +01:00
|
|
|
#include "libtorrent/udp_socket.hpp"
|
2008-05-03 18:05:42 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/deadline_timer.hpp"
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2008-11-11 18:51:02 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
namespace aux { struct session_impl; }
|
|
|
|
struct lazy_entry;
|
|
|
|
}
|
2008-09-20 19:42:25 +02:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
namespace libtorrent { namespace dht
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
|
|
|
TORRENT_DECLARE_LOG(dht_tracker);
|
|
|
|
#endif
|
|
|
|
|
2007-02-25 10:42:43 +01:00
|
|
|
struct dht_tracker;
|
|
|
|
|
|
|
|
TORRENT_EXPORT void intrusive_ptr_add_ref(dht_tracker const*);
|
|
|
|
TORRENT_EXPORT void intrusive_ptr_release(dht_tracker const*);
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
struct dht_tracker
|
|
|
|
{
|
2007-02-25 10:42:43 +01:00
|
|
|
friend void intrusive_ptr_add_ref(dht_tracker const*);
|
|
|
|
friend void intrusive_ptr_release(dht_tracker const*);
|
2009-09-20 02:23:36 +02:00
|
|
|
friend void send_callback(void* userdata, entry const& e, udp::endpoint const& addr, int flags);
|
2008-11-08 18:40:06 +01:00
|
|
|
dht_tracker(libtorrent::aux::session_impl& ses, rate_limited_udp_socket& sock
|
2008-11-11 09:33:34 +01:00
|
|
|
, dht_settings const& settings, entry const* state = 0);
|
2008-09-02 08:37:40 +02:00
|
|
|
|
|
|
|
void start(entry const& bootstrap);
|
2007-02-25 10:42:43 +01:00
|
|
|
void stop();
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
void add_node(udp::endpoint node);
|
|
|
|
void add_node(std::pair<std::string, int> const& node);
|
2006-09-27 19:20:18 +02:00
|
|
|
void add_router_node(std::pair<std::string, int> const& node);
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
entry state() const;
|
|
|
|
|
|
|
|
void announce(sha1_hash const& ih, int listen_port
|
2008-12-23 21:04:12 +01:00
|
|
|
, boost::function<void(std::vector<tcp::endpoint> const&)> f);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2006-09-05 01:22:21 +02:00
|
|
|
void dht_status(session_status& s);
|
2008-11-02 11:01:04 +01:00
|
|
|
void network_stats(int& sent, int& received);
|
2006-09-05 01:22:21 +02:00
|
|
|
|
2007-12-09 05:15:24 +01:00
|
|
|
// translate bittorrent kademlia message into the generic kademlia message
|
|
|
|
// used by the library
|
|
|
|
void on_receive(udp::endpoint const& ep, char const* pkt, int size);
|
2008-05-08 02:22:17 +02:00
|
|
|
void on_unreachable(udp::endpoint const& ep);
|
2007-12-09 05:15:24 +01:00
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
private:
|
2007-02-25 10:42:43 +01:00
|
|
|
|
|
|
|
boost::intrusive_ptr<dht_tracker> self()
|
|
|
|
{ return boost::intrusive_ptr<dht_tracker>(this); }
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_name_lookup(error_code const& e
|
2006-08-01 17:27:08 +02:00
|
|
|
, udp::resolver::iterator host);
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_router_name_lookup(error_code const& e
|
2006-09-27 19:20:18 +02:00
|
|
|
, udp::resolver::iterator host);
|
2008-05-03 18:05:42 +02:00
|
|
|
void connection_timeout(error_code const& e);
|
|
|
|
void refresh_timeout(error_code const& e);
|
|
|
|
void tick(error_code const& e);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2009-09-20 02:23:36 +02:00
|
|
|
void on_bootstrap(std::vector<std::pair<node_entry, std::string> > const&);
|
|
|
|
void send_packet(libtorrent::entry const& e, udp::endpoint const& addr, int send_flags);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
node_impl m_dht;
|
2008-09-20 19:42:25 +02:00
|
|
|
libtorrent::aux::session_impl& m_ses;
|
2008-11-08 18:40:06 +01:00
|
|
|
rate_limited_udp_socket& m_sock;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
std::vector<char> m_send_buf;
|
|
|
|
|
2007-05-14 19:49:36 +02:00
|
|
|
ptime m_last_new_key;
|
2006-08-01 17:27:08 +02:00
|
|
|
deadline_timer m_timer;
|
2006-08-06 18:36:00 +02:00
|
|
|
deadline_timer m_connection_timer;
|
|
|
|
deadline_timer m_refresh_timer;
|
2006-08-01 17:27:08 +02:00
|
|
|
dht_settings const& m_settings;
|
|
|
|
int m_refresh_bucket;
|
|
|
|
|
2008-03-24 05:38:43 +01:00
|
|
|
// The mutex is used to abort the dht node
|
|
|
|
// it's only used to set m_abort to true
|
|
|
|
typedef boost::mutex mutex_t;
|
|
|
|
mutable mutex_t m_mutex;
|
|
|
|
bool m_abort;
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
// used to resolve hostnames for nodes
|
|
|
|
udp::resolver m_host_resolver;
|
2007-12-04 03:53:10 +01:00
|
|
|
|
2008-11-02 11:01:04 +01:00
|
|
|
// sent and received bytes since queried last time
|
|
|
|
int m_sent_bytes;
|
|
|
|
int m_received_bytes;
|
|
|
|
|
2007-12-04 03:53:10 +01:00
|
|
|
// used to ignore abusive dht nodes
|
|
|
|
struct node_ban_entry
|
|
|
|
{
|
|
|
|
node_ban_entry(): count(0) {}
|
2009-05-13 23:07:51 +02:00
|
|
|
address src;
|
2007-12-04 03:53:10 +01:00
|
|
|
ptime limit;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum { num_ban_nodes = 20 };
|
|
|
|
|
|
|
|
node_ban_entry m_ban_nodes[num_ban_nodes];
|
|
|
|
|
2007-02-25 10:42:43 +01:00
|
|
|
// reference counter for intrusive_ptr
|
|
|
|
mutable boost::detail::atomic_count m_refs;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
|
|
|
int m_replies_sent[5];
|
|
|
|
int m_queries_received[5];
|
|
|
|
int m_replies_bytes_sent[5];
|
|
|
|
int m_queries_bytes_received[5];
|
|
|
|
int m_counter;
|
|
|
|
|
|
|
|
int m_total_message_input;
|
2006-08-06 18:36:00 +02:00
|
|
|
int m_total_in_bytes;
|
|
|
|
int m_total_out_bytes;
|
|
|
|
|
|
|
|
int m_queries_out_bytes;
|
2006-08-01 17:27:08 +02:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|