premiere-libtorrent/include/libtorrent/tracker_manager.hpp

374 lines
9.7 KiB
C++
Raw Normal View History

2004-01-31 11:46:15 +01:00
/*
2014-02-23 20:12:25 +01:00
Copyright (c) 2003-2014, Arvid Norberg
2004-01-31 11:46:15 +01: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.
*/
#ifndef TORRENT_TRACKER_MANAGER_HPP_INCLUDED
#define TORRENT_TRACKER_MANAGER_HPP_INCLUDED
#include <vector>
#include <string>
2014-07-06 21:18:00 +02:00
#include <list>
2004-01-31 11:46:15 +01:00
#include <utility>
#include <ctime>
#ifdef _MSC_VER
#pragma warning(push, 1)
#endif
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
2004-01-31 11:46:15 +01:00
#include <boost/cstdint.hpp>
2004-09-16 03:14:16 +02:00
#include <boost/weak_ptr.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/unordered_map.hpp>
2004-01-31 11:46:15 +01:00
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#include "libtorrent/config.hpp"
2004-01-31 11:46:15 +01:00
#include "libtorrent/socket.hpp"
#include "libtorrent/address.hpp"
2004-01-31 11:46:15 +01:00
#include "libtorrent/peer_id.hpp"
#include "libtorrent/peer.hpp" // peer_entry
#include "libtorrent/deadline_timer.hpp"
2009-11-26 22:05:57 +01:00
#include "libtorrent/size_type.hpp"
#include "libtorrent/union_endpoint.hpp"
#include "libtorrent/udp_socket.hpp" // for udp_socket_observer
#ifdef TORRENT_USE_OPENSSL
#include <boost/asio/ssl/context.hpp>
#endif
2004-01-31 11:46:15 +01:00
namespace libtorrent
{
struct request_callback;
class tracker_manager;
struct timeout_handler;
struct tracker_connection;
class udp_tracker_connection;
class http_tracker_connection;
namespace aux { struct session_impl; }
2004-10-11 23:50:04 +02:00
2004-01-31 11:46:15 +01:00
// returns -1 if gzip header is invalid or the header size in bytes
TORRENT_EXTRA_EXPORT int gzip_header(const char* buf, int size);
2004-01-31 11:46:15 +01:00
struct TORRENT_EXTRA_EXPORT tracker_request
2004-01-31 11:46:15 +01:00
{
2005-03-11 18:21:56 +01:00
tracker_request()
2014-07-06 21:18:00 +02:00
: downloaded(-1)
, uploaded(-1)
, left(-1)
, corrupt(0)
, redundant(0)
, listen_port(0)
2005-03-11 18:21:56 +01:00
, event(none)
2014-07-06 21:18:00 +02:00
, kind(announce_request)
2005-03-11 18:21:56 +01:00
, key(0)
, num_want(0)
, send_stats(true)
, apply_ip_filter(true)
#ifdef TORRENT_USE_OPENSSL
, ssl_ctx(0)
#endif
2005-03-11 18:21:56 +01:00
{}
2004-01-31 11:46:15 +01:00
enum event_t
{
none,
completed,
started,
2010-09-06 06:02:15 +02:00
stopped,
paused
2004-01-31 11:46:15 +01:00
};
2014-07-06 21:18:00 +02:00
enum kind_t
{
announce_request,
scrape_request
};
std::string url;
std::string trackerid;
2004-01-31 11:46:15 +01:00
size_type downloaded;
size_type uploaded;
size_type left;
size_type corrupt;
size_type redundant;
2014-07-06 21:18:00 +02:00
boost::uint16_t listen_port;
// values from event_t
boost::uint8_t event;
// values from kind_t
boost::uint8_t kind;
2013-08-31 23:06:43 +02:00
boost::uint32_t key;
2004-03-21 03:03:37 +01:00
int num_want;
2014-07-06 21:18:00 +02:00
sha1_hash info_hash;
peer_id pid;
address bind_ip;
2014-07-06 21:18:00 +02:00
bool send_stats;
bool apply_ip_filter;
#ifdef TORRENT_USE_OPENSSL
boost::asio::ssl::context* ssl_ctx;
#endif
2004-01-31 11:46:15 +01:00
};
struct tracker_response
{
tracker_response()
: interval(1800)
, min_interval(120)
, complete(-1)
, incomplete(-1)
, downloaders(-1)
, downloaded(-1)
{}
// peers from the tracker, in various forms
std::vector<peer_entry> peers;
std::vector<ipv4_peer_entry> peers4;
#if TORRENT_USE_IPV6
std::vector<ipv6_peer_entry> peers6;
#endif
// our external IP address (if the tracker responded with ti, otherwise
// INADDR_ANY)
address external_ip;
// the tracker id, if it was included in the response, otherwise
// an empty string
std::string trackerid;
// if the tracker returned an error, this is set to that error
std::string failure_reason;
// contains a warning message from the tracker, if included in
// the response
std::string warning_message;
// re-announce interval, in seconds
int interval;
// the lowest force-announce interval
int min_interval;
// the number of seeds in the swarm
int complete;
// the number of downloaders in the swarm
int incomplete;
// if supported by the tracker, the number of actively downloading peers.
// i.e. partial seeds. If not suppored, -1
int downloaders;
// the number of times the torrent has been downloaded
int downloaded;
};
struct TORRENT_EXTRA_EXPORT request_callback
2004-01-31 11:46:15 +01:00
{
friend class tracker_manager;
2014-07-06 21:18:00 +02:00
request_callback() {}
2004-09-16 03:14:16 +02:00
virtual ~request_callback() {}
virtual void tracker_warning(tracker_request const& req
, std::string const& msg) = 0;
2009-11-11 06:22:57 +01:00
virtual void tracker_scrape_response(tracker_request const& /*req*/
2010-09-06 06:02:15 +02:00
, int /*complete*/, int /*incomplete*/, int /*downloads*/
, int /*downloaders*/) {}
2004-01-31 11:46:15 +01:00
virtual void tracker_response(
tracker_request const& req
, address const& tracker_ip
, std::list<address> const& ip_list
, struct tracker_response const& response) = 0;
2004-01-31 11:46:15 +01:00
virtual void tracker_request_error(
tracker_request const& req
, int response_code
2010-02-23 22:53:45 +01:00
, error_code const& ec
, const std::string& msg
, int retry_interval) = 0;
2004-01-31 11:46:15 +01:00
2008-02-17 23:51:03 +01:00
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
2012-09-28 01:04:51 +02:00
virtual void debug_log(const char* fmt, ...) const = 0;
#endif
2004-01-31 11:46:15 +01:00
};
struct TORRENT_EXTRA_EXPORT timeout_handler
: boost::enable_shared_from_this<timeout_handler>
2007-06-10 22:46:09 +02:00
, boost::noncopyable
2004-01-31 11:46:15 +01:00
{
2008-01-08 06:47:43 +01:00
timeout_handler(io_service& str);
void set_timeout(int completion_timeout, int read_timeout);
void restart_read_timeout();
void cancel();
2010-03-02 10:04:27 +01:00
bool cancelled() const { return m_abort; }
2010-11-18 02:06:33 +01:00
virtual void on_timeout(error_code const& ec) = 0;
virtual ~timeout_handler() {}
2013-11-03 00:08:26 +01:00
io_service& get_io_service() { return m_timeout.get_io_service(); }
private:
2008-05-03 18:05:42 +02:00
void timeout_callback(error_code const&);
2014-07-06 21:18:00 +02:00
int m_completion_timeout;
typedef mutex mutex_t;
mutable mutex_t m_mutex;
// used for timeouts
// this is set when the request has been sent
ptime m_start_time;
2014-07-06 21:18:00 +02:00
// this is set every time something is received
ptime m_read_time;
2014-07-06 21:18:00 +02:00
// the asio async operation
deadline_timer m_timeout;
int m_read_timeout;
2007-11-02 01:27:53 +01:00
bool m_abort;
};
// TODO: 2 this class probably doesn't need to have virtual functions.
struct TORRENT_EXTRA_EXPORT tracker_connection
: timeout_handler
{
tracker_connection(tracker_manager& man
2007-11-20 23:46:27 +01:00
, tracker_request const& req
2008-01-08 06:47:43 +01:00
, io_service& ios
, boost::weak_ptr<request_callback> r);
2004-01-31 11:46:15 +01:00
void update_transaction_id(boost::shared_ptr<udp_tracker_connection> c
, boost::uint64_t tid);
2012-10-01 02:13:58 +02:00
boost::shared_ptr<request_callback> requester() const;
2004-01-31 11:46:15 +01:00
virtual ~tracker_connection() {}
tracker_request const& tracker_req() const { return m_req; }
2004-01-31 11:46:15 +01:00
2010-02-23 22:53:45 +01:00
void fail(error_code const& ec, int code = -1, char const* msg = ""
, int interval = 0, int min_interval = 0);
virtual void start() = 0;
virtual void close();
address const& bind_interface() const { return m_req.bind_ip; }
void sent_bytes(int bytes);
void received_bytes(int bytes);
2014-07-07 08:28:48 +02:00
virtual bool on_receive(error_code const&, udp::endpoint const&
, char const* /* buf */, int /* size */) { return false; }
virtual bool on_receive_hostname(error_code const&
, char const* /* hostname */
, char const* /* buf */, int /* size */) { return false; }
2004-01-31 11:46:15 +01:00
boost::shared_ptr<tracker_connection> shared_from_this()
{
return boost::static_pointer_cast<tracker_connection>(
timeout_handler::shared_from_this());
}
2013-11-03 00:08:26 +01:00
2014-07-06 21:18:00 +02:00
private:
const tracker_request m_req;
protected:
2013-11-03 00:08:26 +01:00
void fail_impl(error_code const& ec, int code = -1, std::string msg = std::string()
, int interval = 0, int min_interval = 0);
boost::weak_ptr<request_callback> m_requester;
tracker_manager& m_man;
2004-01-31 11:46:15 +01:00
};
class TORRENT_EXTRA_EXPORT tracker_manager
: public udp_socket_observer
, boost::noncopyable
2004-01-31 11:46:15 +01:00
{
public:
2014-07-06 21:18:00 +02:00
tracker_manager(aux::session_impl& ses)
: m_ses(ses)
2008-09-22 01:25:09 +02:00
, m_abort(false) {}
~tracker_manager();
void queue_request(
2008-01-08 06:47:43 +01:00
io_service& ios
, tracker_request r
, std::string const& auth
2004-09-16 03:14:16 +02:00
, boost::weak_ptr<request_callback> c
= boost::weak_ptr<request_callback>());
void abort_all_requests(bool all = false);
2004-01-31 11:46:15 +01:00
void remove_request(tracker_connection const*);
bool empty() const;
int num_requests() const;
void sent_bytes(int bytes);
void received_bytes(int bytes);
virtual bool incoming_packet(error_code const& e, udp::endpoint const& ep
, char const* buf, int size);
2010-08-03 11:08:37 +02:00
// this is only used for SOCKS packets, since
// they may be addressed to hostname
virtual bool incoming_packet(error_code const& e, char const* hostname
, char const* buf, int size);
void update_transaction_id(
boost::shared_ptr<udp_tracker_connection> c
, boost::uint64_t tid);
2004-01-31 11:46:15 +01:00
private:
typedef mutex mutex_t;
mutable mutex_t m_mutex;
// maps transactionid to the udp_tracker_connection
// TODO: 2 this should be unique_ptr in the future
typedef boost::unordered_map<boost::uint32_t, boost::shared_ptr<udp_tracker_connection> > udp_conns_t;
udp_conns_t m_udp_conns;
typedef std::vector<boost::shared_ptr<http_tracker_connection> > http_conns_t;
http_conns_t m_http_conns;
aux::session_impl& m_ses;
bool m_abort;
2004-01-31 11:46:15 +01:00
};
}
#endif // TORRENT_TRACKER_MANAGER_HPP_INCLUDED
2005-03-19 13:22:40 +01:00