premiere-libtorrent/test/udp_tracker.cpp

242 lines
6.8 KiB
C++
Raw Normal View History

2014-02-23 02:32:55 +01:00
/*
Copyright (c) 2014, 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/bencode.hpp"
#include "libtorrent/entry.hpp"
#include "libtorrent/address.hpp"
#include "libtorrent/io_service.hpp"
#include "libtorrent/error_code.hpp"
#include "libtorrent/socket.hpp"
#include "libtorrent/socket_io.hpp"
#include "libtorrent/io.hpp"
#include "libtorrent/aux_/time.hpp"
2014-02-23 02:32:55 +01:00
#include "udp_tracker.hpp"
#include "test_utils.hpp"
2014-02-23 02:32:55 +01:00
#include <boost/detail/atomic_count.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
2014-02-23 02:32:55 +01:00
#include <functional>
#include <thread>
2014-02-23 02:32:55 +01:00
using namespace libtorrent;
using namespace std::placeholders;
2014-02-23 02:32:55 +01:00
struct udp_tracker
{
libtorrent::io_service m_ios;
2014-02-23 02:32:55 +01:00
boost::detail::atomic_count m_udp_announces;
udp::socket m_socket;
int m_port;
bool m_abort;
2014-02-23 02:32:55 +01:00
boost::shared_ptr<std::thread> m_thread;
2014-02-23 02:32:55 +01:00
void on_udp_receive(error_code const& ec, size_t bytes_transferred, udp::endpoint* from, char* buffer, int size)
{
if (ec)
{
std::fprintf(stderr, "%s: UDP tracker, read failed: %s\n", time_now_string(), ec.message().c_str());
2014-02-23 02:32:55 +01:00
return;
}
if (bytes_transferred < 16)
{
std::fprintf(stderr, "%s: UDP message too short (from: %s)\n", time_now_string(), print_endpoint(*from).c_str());
2014-02-23 02:32:55 +01:00
return;
}
if (m_abort)
{
return;
}
std::fprintf(stderr, "%s: UDP message %d bytes\n", time_now_string(), int(bytes_transferred));
2014-02-23 02:32:55 +01:00
char* ptr = buffer;
detail::read_uint64(ptr);
boost::uint32_t const action = detail::read_uint32(ptr);
boost::uint32_t const transaction_id = detail::read_uint32(ptr);
2014-02-23 02:32:55 +01:00
error_code e;
switch (action)
{
case 0: // connect
std::fprintf(stderr, "%s: UDP connect from %s\n", time_now_string()
, print_endpoint(*from).c_str());
2014-02-23 02:32:55 +01:00
ptr = buffer;
detail::write_uint32(0, ptr); // action = connect
detail::write_uint32(transaction_id, ptr); // transaction_id
detail::write_uint64(10, ptr); // connection_id
m_socket.send_to(boost::asio::buffer(buffer, 16), *from, 0, e);
if (e) std::fprintf(stderr, "%s: UDP send_to failed. ERROR: %s\n"
, time_now_string(), e.message().c_str());
else std::fprintf(stderr, "%s: UDP sent response to: %s\n"
, time_now_string(), print_endpoint(*from).c_str());
2014-02-23 02:32:55 +01:00
break;
case 1: // announce
++m_udp_announces;
std::fprintf(stderr, "%s: UDP announce [%d]\n", time_now_string()
, int(m_udp_announces));
2014-02-23 02:32:55 +01:00
ptr = buffer;
detail::write_uint32(1, ptr); // action = announce
detail::write_uint32(transaction_id, ptr); // transaction_id
detail::write_uint32(1800, ptr); // interval
detail::write_uint32(1, ptr); // incomplete
detail::write_uint32(1, ptr); // complete
// 0 peers
m_socket.send_to(boost::asio::buffer(buffer, 20), *from, 0, e);
if (e) std::fprintf(stderr, "%s: UDP send_to failed. ERROR: %s\n"
, time_now_string(), e.message().c_str());
else std::fprintf(stderr, "%s: UDP sent response to: %s\n"
, time_now_string(), print_endpoint(*from).c_str());
2014-02-23 02:32:55 +01:00
break;
case 2:
// ignore scrapes
std::fprintf(stderr, "%s: UDP scrape (ignored)\n", time_now_string());
2014-02-23 02:32:55 +01:00
break;
default:
std::fprintf(stderr, "%s: UDP unknown message: %d\n", time_now_string()
, action);
2014-02-23 02:32:55 +01:00
break;
}
m_socket.async_receive_from(
boost::asio::buffer(buffer, size), *from, 0
, std::bind(&udp_tracker::on_udp_receive, this, _1, _2, from, buffer, size));
2014-02-23 02:32:55 +01:00
}
udp_tracker()
: m_udp_announces(0)
, m_socket(m_ios)
, m_port(0)
, m_abort(false)
2014-02-23 02:32:55 +01:00
{
error_code ec;
m_socket.open(udp::v4(), ec);
if (ec)
{
std::fprintf(stderr, "UDP Error opening listen UDP tracker socket: %s\n", ec.message().c_str());
2014-02-23 02:32:55 +01:00
return;
}
m_socket.bind(udp::endpoint(address_v4::any(), 0), ec);
if (ec)
{
std::fprintf(stderr, "UDP Error binding UDP tracker socket to port 0: %s\n", ec.message().c_str());
2014-02-23 02:32:55 +01:00
return;
}
m_port = m_socket.local_endpoint(ec).port();
if (ec)
{
std::fprintf(stderr, "UDP Error getting local endpoint of UDP tracker socket: %s\n", ec.message().c_str());
2014-02-23 02:32:55 +01:00
return;
}
std::fprintf(stderr, "%s: UDP tracker initialized on port %d\n", time_now_string(), m_port);
2014-02-23 02:32:55 +01:00
m_thread = boost::make_shared<std::thread>(&udp_tracker::thread_fun, this);
2014-02-23 02:32:55 +01:00
}
void stop()
2014-02-23 02:32:55 +01:00
{
m_abort = true;
2014-02-23 02:32:55 +01:00
m_socket.cancel();
m_socket.close();
}
~udp_tracker()
{
m_ios.post(std::bind(&udp_tracker::stop, this));
2014-02-23 02:32:55 +01:00
if (m_thread) m_thread->join();
}
int port() const { return m_port; }
int num_hits() const { return m_udp_announces; }
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;
}
void thread_fun()
{
char buffer[2000];
2015-06-03 04:37:59 +02:00
2014-02-23 02:32:55 +01:00
error_code ec;
udp::endpoint from;
m_socket.async_receive_from(
boost::asio::buffer(buffer, int(sizeof(buffer))), from, 0
, std::bind(&udp_tracker::on_udp_receive, this, _1, _2, &from, &buffer[0], int(sizeof(buffer))));
2014-02-23 02:32:55 +01:00
m_ios.run(ec);
if (ec)
{
std::fprintf(stderr, "UDP Error running UDP tracker service: %s\n", ec.message().c_str());
2014-02-23 02:32:55 +01:00
return;
}
std::fprintf(stderr, "UDP exiting UDP tracker thread\n");
2014-02-23 02:32:55 +01:00
}
};
boost::shared_ptr<udp_tracker> g_udp_tracker;
int start_udp_tracker()
{
g_udp_tracker.reset(new udp_tracker);
return g_udp_tracker->port();
}
// the number of UDP tracker announces received
int num_udp_announces()
{
if (g_udp_tracker) return g_udp_tracker->num_hits();
return 0;
}
void stop_udp_tracker()
{
g_udp_tracker.reset();
}