premiere-libtorrent/src/lsd.cpp

317 lines
7.9 KiB
C++
Raw Normal View History

2007-04-04 21:11:19 +02:00
/*
2014-02-23 20:12:25 +01:00
Copyright (c) 2007-2014, Arvid Norberg
2007-04-04 21:11:19 +02: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.
*/
#include "libtorrent/lsd.hpp"
#include "libtorrent/io.hpp"
#include "libtorrent/http_tracker_connection.hpp"
#include "libtorrent/buffer.hpp"
2012-10-09 06:51:04 +02:00
#include "libtorrent/random.hpp"
#include "libtorrent/http_parser.hpp"
2009-09-20 17:21:31 +02:00
#include "libtorrent/socket_io.hpp" // for print_address
#if defined TORRENT_ASIO_DEBUGGING
#include "libtorrent/debug.hpp"
#endif
2007-04-04 21:11:19 +02:00
#include <boost/bind.hpp>
#include <boost/ref.hpp>
2008-05-20 08:03:46 +02:00
#if BOOST_VERSION < 103500
#include <asio/ip/host_name.hpp>
#include <asio/ip/multicast.hpp>
#else
2008-05-03 18:05:42 +02:00
#include <boost/asio/ip/host_name.hpp>
#include <boost/asio/ip/multicast.hpp>
2008-05-20 08:03:46 +02:00
#endif
2007-04-04 21:11:19 +02:00
#include <cstdlib>
#include <boost/config.hpp>
2015-01-17 23:09:20 +01:00
#include <cstdarg>
2007-04-04 21:11:19 +02:00
using namespace libtorrent;
namespace libtorrent
{
// defined in broadcast_socket.cpp
2008-05-03 18:05:42 +02:00
address guess_local_address(io_service&);
}
2008-11-05 06:39:18 +01:00
static error_code ec;
lsd::lsd(io_service& ios, peer_callback_t const& cb
#if defined TORRENT_LOGGING
, log_callback_t const& log
#endif
)
2007-04-04 21:11:19 +02:00
: m_callback(cb)
, m_socket(udp::endpoint(address_v4::from_string("239.192.152.143", ec), 6771))
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
, m_socket6(udp::endpoint(address_v6::from_string("ff15::efc0:988f", ec), 6771))
#endif
#if defined TORRENT_LOGGING
, m_log_cb(log)
2014-08-27 07:57:37 +02:00
#endif
2007-04-04 21:11:19 +02:00
, m_broadcast_timer(ios)
2012-10-09 06:51:04 +02:00
, m_cookie(random())
2007-04-04 21:11:19 +02:00
, m_disabled(false)
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
, m_disabled6(false)
#endif
{
}
#if defined TORRENT_LOGGING
void lsd::debug_log(char const* fmt, ...) const
{
va_list v;
va_start(v, fmt);
char buf[1024];
vsnprintf(buf, sizeof(buf), fmt, v);
va_end(v);
m_log_cb(buf);
}
#endif
void lsd::start(error_code& ec)
{
m_socket.open(boost::bind(&lsd::on_announce, self(), _1, _2, _3)
, m_broadcast_timer.get_io_service(), ec);
if (ec) return;
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
m_socket6.open(boost::bind(&lsd::on_announce, self(), _1, _2, _3)
, m_broadcast_timer.get_io_service(), ec);
2014-08-27 07:57:37 +02:00
#endif
2007-04-04 21:11:19 +02:00
}
lsd::~lsd() {}
2007-04-04 21:11:19 +02:00
2014-08-27 07:57:37 +02:00
int render_lsd_packet(char* dst, int len, int listen_port
, char const* info_hash_hex, int m_cookie, char const* host)
{
return snprintf(dst, len,
"BT-SEARCH * HTTP/1.1\r\n"
"Host: %s:6771\r\n"
"Port: %d\r\n"
"Infohash: %s\r\n"
"cookie: %x\r\n"
"\r\n\r\n", host, listen_port, info_hash_hex, m_cookie);
}
void lsd::announce(sha1_hash const& ih, int listen_port, bool broadcast)
2007-04-04 21:11:19 +02:00
{
2014-08-27 07:57:37 +02:00
announce_impl(ih, listen_port, broadcast, 0);
}
void lsd::announce_impl(sha1_hash const& ih, int listen_port, bool broadcast
, int retry_count)
{
#if TORRENT_USE_IPV6
if (m_disabled && m_disabled6) return;
#else
2007-04-04 21:11:19 +02:00
if (m_disabled) return;
2014-08-27 07:57:37 +02:00
#endif
2007-04-04 21:11:19 +02:00
2009-04-04 11:52:25 +02:00
char ih_hex[41];
to_hex((char const*)&ih[0], 20, ih_hex);
char msg[200];
2007-04-04 21:11:19 +02:00
#if defined TORRENT_LOGGING
debug_log("==> announce: ih: %s port: %u\n", ih_hex, listen_port);
#endif
2008-05-03 18:05:42 +02:00
error_code ec;
2014-08-27 07:57:37 +02:00
if (!m_disabled)
2007-05-12 20:53:37 +02:00
{
2014-08-27 07:57:37 +02:00
int msg_len = render_lsd_packet(msg, sizeof(msg), listen_port, ih_hex
, m_cookie, "239.192.152.143");
m_socket.send(msg, msg_len, ec, broadcast ? broadcast_socket::broadcast : 0);
if (ec)
{
2014-08-27 07:57:37 +02:00
m_disabled = true;
#if defined TORRENT_LOGGING
debug_log("failed to send message: (%d) %s", ec.value()
, ec.message().c_str());
2007-04-04 21:11:19 +02:00
#endif
2014-08-27 07:57:37 +02:00
}
}
2007-04-04 21:11:19 +02:00
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
if (!m_disabled6)
{
int msg_len = render_lsd_packet(msg, sizeof(msg), listen_port, ih_hex
, m_cookie, "[ff15::efc0:988f]");
m_socket6.send(msg, msg_len, ec, broadcast ? broadcast_socket::broadcast : 0);
if (ec)
{
m_disabled6 = true;
#if defined TORRENT_LOGGING
debug_log("failed to send message6: (%d) %s", ec.value()
, ec.message().c_str());
2014-08-27 07:57:37 +02:00
#endif
}
}
2014-08-27 07:57:37 +02:00
#endif
++retry_count;
if (retry_count >= 3) return;
#if TORRENT_USE_IPV6
if (m_disabled && m_disabled6) return;
#else
if (m_disabled) return;
#endif
#if defined TORRENT_ASIO_DEBUGGING
add_outstanding_async("lsd::resend_announce");
#endif
2014-08-27 07:57:37 +02:00
m_broadcast_timer.expires_from_now(seconds(2 * retry_count), ec);
2009-11-23 00:55:54 +01:00
m_broadcast_timer.async_wait(boost::bind(&lsd::resend_announce, self(), _1
2014-08-27 07:57:37 +02:00
, ih, listen_port, retry_count));
2007-04-04 21:11:19 +02:00
}
2014-08-27 07:57:37 +02:00
void lsd::resend_announce(error_code const& e, sha1_hash const& info_hash
, int listen_port, int retry_count)
2007-04-04 21:11:19 +02:00
{
#if defined TORRENT_ASIO_DEBUGGING
complete_async("lsd::resend_announce");
#endif
2007-04-04 21:11:19 +02:00
if (e) return;
2014-08-27 07:57:37 +02:00
announce_impl(info_hash, listen_port, false, retry_count);
2007-04-04 21:11:19 +02:00
}
void lsd::on_announce(udp::endpoint const& from, char* buffer
2007-04-04 21:11:19 +02:00
, std::size_t bytes_transferred)
{
using namespace libtorrent::detail;
http_parser p;
2007-12-29 19:24:50 +01:00
bool error = false;
p.incoming(buffer::const_interval(buffer, buffer + bytes_transferred)
, error);
2007-12-29 19:24:50 +01:00
if (!p.header_finished() || error)
{
#if defined TORRENT_LOGGING
debug_log("<== announce: incomplete HTTP message\n");
2007-05-17 02:01:51 +02:00
#endif
return;
}
if (p.method() != "bt-search")
2007-04-04 21:11:19 +02:00
{
#if defined TORRENT_LOGGING
debug_log("<== announce: invalid HTTP method: %s\n", p.method().c_str());
2007-04-04 21:11:19 +02:00
#endif
return;
}
std::string const& port_str = p.header("port");
if (port_str.empty())
2007-04-04 21:11:19 +02:00
{
#if defined TORRENT_LOGGING
debug_log("<== announce: invalid BT-SEARCH, missing port\n");
#endif
return;
2007-04-04 21:11:19 +02:00
}
int port = std::atoi(port_str.c_str());
typedef std::multimap<std::string, std::string> headers_t;
headers_t const& headers = p.headers();
2012-10-09 06:51:04 +02:00
headers_t::const_iterator cookie_iter = headers.find("cookie");
if (cookie_iter != headers.end())
{
// we expect it to be hexadecimal
// if it isn't, it's not our cookie anyway
2014-07-05 01:40:31 +02:00
boost::int32_t cookie = strtol(cookie_iter->second.c_str(), NULL, 16);
2012-10-09 06:51:04 +02:00
if (cookie == m_cookie)
{
#if defined TORRENT_LOGGING
debug_log("<== announce: ignoring packet (cookie matched our own): %x == %x\n"
, cookie, m_cookie);
2012-10-09 06:51:04 +02:00
#endif
return;
}
}
std::pair<headers_t::const_iterator, headers_t::const_iterator> ihs
= headers.equal_range("infohash");
for (headers_t::const_iterator i = ihs.first; i != ihs.second; ++i)
{
std::string const& ih_str = i->second;
if (ih_str.size() != 40)
{
#if defined TORRENT_LOGGING
debug_log("<== announce: invalid BT-SEARCH, invalid infohash: %s\n"
, ih_str.c_str());
#endif
continue;
}
sha1_hash ih(0);
from_hex(ih_str.c_str(), 40, (char*)&ih[0]);
if (!ih.is_all_zeros() && port != 0)
{
#if defined TORRENT_LOGGING
debug_log("*** incoming local announce %s:%d ih: %s\n"
, print_address(from.address()).c_str()
, port, ih_str.c_str());
2007-04-04 21:11:19 +02:00
#endif
// we got an announce, pass it on through the callback
TORRENT_TRY {
m_callback(tcp::endpoint(from.address(), port), ih);
} TORRENT_CATCH(std::exception&) {}
}
2007-04-04 21:11:19 +02:00
}
}
void lsd::close()
{
2007-10-26 03:28:42 +02:00
m_socket.close();
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
m_socket6.close();
#endif
2008-05-03 18:05:42 +02:00
error_code ec;
m_broadcast_timer.cancel(ec);
2007-11-18 05:11:47 +01:00
m_disabled = true;
2014-08-27 07:57:37 +02:00
#if TORRENT_USE_IPV6
m_disabled6 = true;
#endif
2007-11-18 05:11:47 +01:00
m_callback.clear();
2007-04-04 21:11:19 +02:00
}