2013-06-12 19:03:56 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2013, 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/thread.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/address.hpp"
|
|
|
|
#include "libtorrent/io_service.hpp"
|
|
|
|
#include "libtorrent/error_code.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
2013-06-24 05:34:45 +02:00
|
|
|
#include "dht_server.hpp"
|
2013-06-12 19:03:56 +02:00
|
|
|
|
|
|
|
#include <boost/detail/atomic_count.hpp>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2013-09-09 09:06:12 +02:00
|
|
|
#if defined TORRENT_DEBUG && TORRENT_USE_IOSTREAM
|
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
2013-06-12 19:03:56 +02:00
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
struct dht_server
|
|
|
|
{
|
|
|
|
|
|
|
|
boost::asio::io_service m_ios;
|
|
|
|
boost::detail::atomic_count m_dht_requests;
|
|
|
|
udp::socket m_socket;
|
|
|
|
int m_port;
|
|
|
|
|
|
|
|
boost::shared_ptr<libtorrent::thread> m_thread;
|
|
|
|
|
|
|
|
dht_server()
|
|
|
|
: m_dht_requests(0)
|
|
|
|
, m_socket(m_ios)
|
2014-01-18 07:53:47 +01:00
|
|
|
, m_port(0)
|
2013-06-12 19:03:56 +02:00
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
m_socket.open(udp::v4(), ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error opening listen DHT socket: %s\n", ec.message().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_socket.bind(udp::endpoint(address_v4::any(), 0), ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error binding DHT socket to port 0: %s\n", ec.message().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_port = m_socket.local_endpoint(ec).port();
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error getting local endpoint of DHT socket: %s\n", ec.message().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-30 08:04:16 +02:00
|
|
|
fprintf(stderr, "%s: DHT initialized on port %d\n", time_now_string(), m_port);
|
2013-06-12 19:03:56 +02:00
|
|
|
|
|
|
|
m_thread.reset(new thread(boost::bind(&dht_server::thread_fun, this)));
|
|
|
|
}
|
|
|
|
|
|
|
|
~dht_server()
|
|
|
|
{
|
2013-06-17 07:18:56 +02:00
|
|
|
m_socket.cancel();
|
2013-06-12 19:03:56 +02:00
|
|
|
m_socket.close();
|
|
|
|
if (m_thread) m_thread->join();
|
|
|
|
}
|
|
|
|
|
|
|
|
int port() const { return m_port; }
|
|
|
|
|
|
|
|
int num_hits() const { return m_dht_requests; }
|
|
|
|
|
2013-06-17 07:18:56 +02:00
|
|
|
static void incoming_packet(error_code const& ec, size_t bytes_transferred, size_t *ret, error_code* error, bool* done)
|
|
|
|
{
|
|
|
|
*ret = bytes_transferred;
|
|
|
|
*error = ec;
|
|
|
|
*done = true;
|
|
|
|
}
|
|
|
|
|
2013-06-12 19:03:56 +02:00
|
|
|
void thread_fun()
|
|
|
|
{
|
|
|
|
char buffer[2000];
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
udp::endpoint from;
|
2013-06-17 07:18:56 +02:00
|
|
|
size_t bytes_transferred;
|
|
|
|
bool done = false;
|
|
|
|
m_socket.async_receive_from(
|
|
|
|
asio::buffer(buffer, sizeof(buffer)), from, 0
|
|
|
|
, boost::bind(&incoming_packet, _1, _2, &bytes_transferred, &ec, &done));
|
|
|
|
while (!done)
|
|
|
|
{
|
2013-06-19 21:14:46 +02:00
|
|
|
m_ios.run_one();
|
2013-06-17 07:18:56 +02:00
|
|
|
m_ios.reset();
|
|
|
|
}
|
|
|
|
|
2013-06-13 08:32:13 +02:00
|
|
|
if (ec == boost::asio::error::operation_aborted
|
|
|
|
|| ec == boost::asio::error::bad_descriptor) return;
|
2013-06-12 19:03:56 +02:00
|
|
|
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error receiving on DHT socket: %s\n", ec.message().c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
entry msg = bdecode(buffer, buffer + bytes_transferred);
|
|
|
|
|
|
|
|
#if defined TORRENT_DEBUG && TORRENT_USE_IOSTREAM
|
|
|
|
std::cerr << msg << std::endl;
|
|
|
|
#endif
|
|
|
|
++m_dht_requests;
|
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "failed to decode DHT message: %s\n", e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
boost::shared_ptr<dht_server> g_dht;
|
|
|
|
|
|
|
|
int start_dht()
|
|
|
|
{
|
|
|
|
g_dht.reset(new dht_server);
|
|
|
|
return g_dht->port();
|
|
|
|
}
|
|
|
|
|
|
|
|
// the number of DHT messages received
|
|
|
|
int num_dht_hits()
|
|
|
|
{
|
|
|
|
if (g_dht) return g_dht->num_hits();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void stop_dht()
|
|
|
|
{
|
2013-07-30 08:04:16 +02:00
|
|
|
fprintf(stderr, "%s: stop_dht()\n", time_now_string());
|
2013-06-12 19:03:56 +02:00
|
|
|
g_dht.reset();
|
2013-07-30 08:04:16 +02:00
|
|
|
fprintf(stderr, "%s: stop_dht() done\n", time_now_string());
|
2013-06-12 19:03:56 +02:00
|
|
|
}
|
|
|
|
|