2007-03-16 06:29:23 +01:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2007-2016, Arvid Norberg
|
2007-03-16 06:29:23 +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.
|
|
|
|
|
|
|
|
*/
|
2012-09-24 18:13:57 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2015-08-20 01:33:20 +02:00
|
|
|
|
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
|
|
|
|
2012-09-24 18:13:57 +02:00
|
|
|
#if defined TORRENT_OS2
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
2007-03-16 06:29:23 +01:00
|
|
|
|
2008-05-20 18:43:09 +02:00
|
|
|
#include <boost/version.hpp>
|
2007-03-15 23:03:56 +01:00
|
|
|
#include <boost/bind.hpp>
|
2008-05-20 18:43:09 +02:00
|
|
|
|
2015-08-20 01:33:20 +02:00
|
|
|
#include "libtorrent/aux_/disable_warnings_pop.hpp"
|
|
|
|
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/natpmp.hpp"
|
|
|
|
#include "libtorrent/io.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
2007-10-01 19:21:19 +02:00
|
|
|
#include "libtorrent/enum_net.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/socket_io.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/io_service.hpp"
|
2015-03-12 05:34:54 +01:00
|
|
|
#include "libtorrent/aux_/time.hpp"
|
2015-03-15 00:10:20 +01:00
|
|
|
#include "libtorrent/aux_/escape_string.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
|
2009-11-27 08:08:47 +01:00
|
|
|
#include <boost/asio/ip/host_name.hpp>
|
|
|
|
|
2010-09-30 08:33:42 +02:00
|
|
|
//#define NATPMP_LOG
|
|
|
|
|
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
#include "libtorrent/debug.hpp"
|
|
|
|
#endif
|
|
|
|
|
2007-03-15 23:03:56 +01:00
|
|
|
using namespace libtorrent;
|
|
|
|
|
2015-01-06 09:08:49 +01:00
|
|
|
natpmp::natpmp(io_service& ios
|
2009-06-12 18:40:38 +02:00
|
|
|
, portmap_callback_t const& cb, log_callback_t const& lcb)
|
2007-03-15 23:03:56 +01:00
|
|
|
: m_callback(cb)
|
2009-06-12 18:40:38 +02:00
|
|
|
, m_log_callback(lcb)
|
2007-03-15 23:03:56 +01:00
|
|
|
, m_currently_mapping(-1)
|
|
|
|
, m_retry_count(0)
|
|
|
|
, m_socket(ios)
|
|
|
|
, m_send_timer(ios)
|
|
|
|
, m_refresh_timer(ios)
|
2008-04-06 21:17:58 +02:00
|
|
|
, m_next_refresh(-1)
|
2007-03-15 23:03:56 +01:00
|
|
|
, m_disabled(false)
|
2008-12-19 20:27:58 +01:00
|
|
|
, m_abort(false)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2010-12-24 04:30:52 +01:00
|
|
|
// unfortunately async operations rely on the storage
|
|
|
|
// for this array not to be reallocated, by passing
|
|
|
|
// around pointers to its elements. so reserve size for now
|
|
|
|
m_mappings.reserve(10);
|
2007-03-16 22:04:58 +01:00
|
|
|
}
|
|
|
|
|
2015-01-06 09:08:49 +01:00
|
|
|
void natpmp::start()
|
2007-03-16 22:04:58 +01:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2008-04-06 21:17:58 +02:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2015-08-09 21:01:01 +02:00
|
|
|
address gateway = get_default_gateway(m_socket.get_io_service(), ec);
|
2008-01-11 10:38:05 +01:00
|
|
|
if (ec)
|
2007-03-16 06:29:23 +01:00
|
|
|
{
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
2013-01-19 07:39:32 +01:00
|
|
|
snprintf(msg, sizeof(msg), "failed to find default route: %s"
|
|
|
|
, convert_from_native(ec.message()).c_str());
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
|
|
|
disable(ec, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
return;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2007-03-16 22:04:58 +01:00
|
|
|
m_disabled = false;
|
|
|
|
|
2008-01-11 10:38:05 +01:00
|
|
|
udp::endpoint nat_endpoint(gateway, 5351);
|
2007-03-16 22:04:58 +01:00
|
|
|
if (nat_endpoint == m_nat_endpoint) return;
|
|
|
|
m_nat_endpoint = nat_endpoint;
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
|
|
|
snprintf(msg, sizeof(msg), "found router at: %s"
|
|
|
|
, print_address(m_nat_endpoint.address()).c_str());
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2007-12-29 08:26:36 +01:00
|
|
|
m_socket.open(udp::v4(), ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
disable(ec, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_socket.bind(udp::endpoint(address_v4::any(), 0), ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
disable(ec, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-05-16 23:36:27 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("natpmp::on_reply");
|
|
|
|
#endif
|
2015-06-06 07:22:53 +02:00
|
|
|
m_socket.async_receive_from(boost::asio::buffer(&m_response_buffer, 16)
|
2010-04-30 21:08:16 +02:00
|
|
|
, m_remote, boost::bind(&natpmp::on_reply, self(), _1, _2));
|
2010-12-05 21:40:28 +01:00
|
|
|
send_get_ip_address_request(l);
|
2008-08-20 10:34:32 +02:00
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
2007-03-16 22:04:58 +01:00
|
|
|
{
|
2008-04-06 21:17:58 +02:00
|
|
|
if (i->protocol != none
|
|
|
|
|| i->action != mapping_t::action_none)
|
2007-03-16 22:04:58 +01:00
|
|
|
continue;
|
2008-04-06 21:17:58 +02:00
|
|
|
i->action = mapping_t::action_add;
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(i - m_mappings.begin(), l);
|
2007-03-16 22:04:58 +01:00
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2007-12-29 08:26:36 +01:00
|
|
|
|
2010-12-05 21:40:28 +01:00
|
|
|
void natpmp::send_get_ip_address_request(mutex::scoped_lock& l)
|
|
|
|
{
|
|
|
|
using namespace libtorrent::detail;
|
|
|
|
|
|
|
|
char buf[2];
|
|
|
|
char* out = buf;
|
|
|
|
write_uint8(0, out); // NAT-PMP version
|
|
|
|
write_uint8(0, out); // public IP address request opcode
|
|
|
|
log("==> get public IP address", l);
|
|
|
|
|
|
|
|
error_code ec;
|
2015-06-06 07:22:53 +02:00
|
|
|
m_socket.send_to(boost::asio::buffer(buf, sizeof(buf)), m_nat_endpoint, 0, ec);
|
2010-12-05 21:40:28 +01:00
|
|
|
}
|
|
|
|
|
2008-11-16 03:11:04 +01:00
|
|
|
bool natpmp::get_mapping(int index, int& local_port, int& external_port, int& protocol) const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2009-06-13 10:04:53 +02:00
|
|
|
|
2008-11-16 03:11:04 +01:00
|
|
|
TORRENT_ASSERT(index < int(m_mappings.size()) && index >= 0);
|
|
|
|
if (index >= int(m_mappings.size()) || index < 0) return false;
|
|
|
|
mapping_t const& m = m_mappings[index];
|
|
|
|
if (m.protocol == none) return false;
|
|
|
|
local_port = m.local_port;
|
|
|
|
external_port = m.external_port;
|
|
|
|
protocol = m.protocol;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::log(char const* msg, mutex::scoped_lock& l)
|
2008-10-22 09:06:58 +02:00
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
l.unlock();
|
2009-06-12 18:40:38 +02:00
|
|
|
m_log_callback(msg);
|
2009-06-13 10:04:53 +02:00
|
|
|
l.lock();
|
2008-10-22 09:06:58 +02:00
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::disable(error_code const& ec, mutex::scoped_lock& l)
|
2007-04-14 17:51:36 +02:00
|
|
|
{
|
|
|
|
m_disabled = true;
|
2008-04-06 21:17:58 +02:00
|
|
|
|
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->protocol == none) continue;
|
2016-02-22 01:16:00 +01:00
|
|
|
int const proto = i->protocol;
|
2008-04-06 21:17:58 +02:00
|
|
|
i->protocol = none;
|
2009-06-13 10:04:53 +02:00
|
|
|
int index = i - m_mappings.begin();
|
|
|
|
l.unlock();
|
2016-02-22 01:16:00 +01:00
|
|
|
m_callback(index, address(), 0, proto, ec);
|
2009-06-13 10:04:53 +02:00
|
|
|
l.lock();
|
2008-04-06 21:17:58 +02:00
|
|
|
}
|
2009-09-22 06:01:01 +02:00
|
|
|
close_impl(l);
|
2008-04-06 21:17:58 +02:00
|
|
|
}
|
2008-11-16 03:11:04 +01:00
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
void natpmp::delete_mapping(int index)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2009-06-13 10:04:53 +02:00
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
TORRENT_ASSERT(index < int(m_mappings.size()) && index >= 0);
|
|
|
|
if (index >= int(m_mappings.size()) || index < 0) return;
|
|
|
|
mapping_t& m = m_mappings[index];
|
|
|
|
|
|
|
|
if (m.protocol == none) return;
|
2008-11-16 03:11:04 +01:00
|
|
|
if (!m.map_sent)
|
|
|
|
{
|
|
|
|
m.action = mapping_t::action_none;
|
|
|
|
m.protocol = none;
|
|
|
|
return;
|
|
|
|
}
|
2008-04-06 21:17:58 +02:00
|
|
|
|
|
|
|
m.action = mapping_t::action_delete;
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(index, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
int natpmp::add_mapping(protocol_type p, int external_port, int local_port)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2008-04-06 21:17:58 +02:00
|
|
|
|
|
|
|
if (m_disabled) return -1;
|
|
|
|
|
|
|
|
std::vector<mapping_t>::iterator i = std::find_if(m_mappings.begin()
|
|
|
|
, m_mappings.end(), boost::bind(&mapping_t::protocol, _1) == int(none));
|
|
|
|
if (i == m_mappings.end())
|
|
|
|
{
|
|
|
|
m_mappings.push_back(mapping_t());
|
|
|
|
i = m_mappings.end() - 1;
|
|
|
|
}
|
|
|
|
i->protocol = p;
|
|
|
|
i->external_port = external_port;
|
|
|
|
i->local_port = local_port;
|
|
|
|
i->action = mapping_t::action_add;
|
|
|
|
|
|
|
|
int mapping_index = i - m_mappings.begin();
|
|
|
|
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now();
|
2010-09-30 08:33:42 +02:00
|
|
|
for (std::vector<mapping_t>::iterator m = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); m != end; ++m)
|
|
|
|
{
|
2014-05-01 05:54:47 +02:00
|
|
|
std::cout << " ADD MAPPING: " << mapping_index << " [ "
|
2010-09-30 08:33:42 +02:00
|
|
|
"proto: " << (i->protocol == none ? "none" : i->protocol == tcp ? "tcp" : "udp")
|
|
|
|
<< " port: " << i->external_port
|
|
|
|
<< " local-port: " << i->local_port
|
|
|
|
<< " action: " << (i->action == mapping_t::action_none ? "none" : i->action == mapping_t::action_add ? "add" : "delete")
|
|
|
|
<< " ttl: " << total_seconds(i->expires - now)
|
|
|
|
<< " ]" << std::endl;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(mapping_index, l);
|
2008-04-06 21:17:58 +02:00
|
|
|
return mapping_index;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::try_next_mapping(int i, mutex::scoped_lock& l)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now();
|
2008-08-11 17:28:27 +02:00
|
|
|
for (std::vector<mapping_t>::iterator m = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); m != end; ++m)
|
2008-04-06 21:17:58 +02:00
|
|
|
{
|
2014-05-01 05:54:47 +02:00
|
|
|
std::cout << " " << (m - m_mappings.begin()) << " [ "
|
2008-08-11 17:28:27 +02:00
|
|
|
"proto: " << (m->protocol == none ? "none" : m->protocol == tcp ? "tcp" : "udp")
|
|
|
|
<< " port: " << m->external_port
|
|
|
|
<< " local-port: " << m->local_port
|
|
|
|
<< " action: " << (m->action == mapping_t::action_none ? "none" : m->action == mapping_t::action_add ? "add" : "delete")
|
|
|
|
<< " ttl: " << total_seconds(m->expires - now)
|
2008-04-06 21:17:58 +02:00
|
|
|
<< " ]" << std::endl;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (i < int(m_mappings.size()) - 1)
|
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(i + 1, l);
|
2008-04-06 21:17:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<mapping_t>::iterator m = std::find_if(
|
|
|
|
m_mappings.begin(), m_mappings.end()
|
|
|
|
, boost::bind(&mapping_t::action, _1) != int(mapping_t::action_none));
|
|
|
|
|
|
|
|
if (m == m_mappings.end())
|
|
|
|
{
|
|
|
|
if (m_abort)
|
|
|
|
{
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2008-04-06 21:17:58 +02:00
|
|
|
m_send_timer.cancel(ec);
|
|
|
|
m_socket.close(ec);
|
|
|
|
}
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << " done" << (m_abort?" shutting down":"") << std::endl;
|
|
|
|
#endif
|
2008-04-06 21:17:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << " updating " << (m - m_mappings.begin()) << std::endl;
|
|
|
|
#endif
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(m - m_mappings.begin(), l);
|
2008-04-06 21:17:58 +02:00
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::update_mapping(int i, mutex::scoped_lock& l)
|
2008-04-06 21:17:58 +02:00
|
|
|
{
|
2011-02-15 11:05:25 +01:00
|
|
|
if (i == int(m_mappings.size()))
|
2008-09-24 04:20:13 +02:00
|
|
|
{
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
m_send_timer.cancel(ec);
|
|
|
|
m_socket.close(ec);
|
|
|
|
}
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << " done" << (m_abort?" shutting down":"") << std::endl;
|
|
|
|
#endif
|
2008-09-24 04:20:13 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
natpmp::mapping_t& m = m_mappings[i];
|
|
|
|
if (m.action == mapping_t::action_none
|
|
|
|
|| m.protocol == none)
|
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
try_next_mapping(i, l);
|
2008-04-06 21:17:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
|
|
|
|
if (m_currently_mapping == -1)
|
|
|
|
{
|
|
|
|
// the socket is not currently in use
|
|
|
|
// send out a mapping request
|
|
|
|
m_retry_count = 0;
|
2009-06-13 10:04:53 +02:00
|
|
|
send_map_request(i, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::send_map_request(int i, mutex::scoped_lock& l)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
|
|
|
using namespace libtorrent::detail;
|
|
|
|
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_currently_mapping == -1
|
2007-03-15 23:03:56 +01:00
|
|
|
|| m_currently_mapping == i);
|
|
|
|
m_currently_mapping = i;
|
2008-04-06 21:17:58 +02:00
|
|
|
mapping_t& m = m_mappings[i];
|
|
|
|
TORRENT_ASSERT(m.action != mapping_t::action_none);
|
2007-03-15 23:03:56 +01:00
|
|
|
char buf[12];
|
|
|
|
char* out = buf;
|
|
|
|
write_uint8(0, out); // NAT-PMP version
|
|
|
|
write_uint8(m.protocol, out); // map "protocol"
|
|
|
|
write_uint16(0, out); // reserved
|
|
|
|
write_uint16(m.local_port, out); // private port
|
|
|
|
write_uint16(m.external_port, out); // requested public port
|
2008-04-06 21:17:58 +02:00
|
|
|
int ttl = m.action == mapping_t::action_add ? 3600 : 0;
|
2007-03-15 23:03:56 +01:00
|
|
|
write_uint32(ttl, out); // port mapping lifetime
|
|
|
|
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
2010-09-30 08:33:42 +02:00
|
|
|
snprintf(msg, sizeof(msg), "==> port map [ mapping: %d action: %s"
|
2009-04-13 06:22:03 +02:00
|
|
|
" proto: %s local: %u external: %u ttl: %u ]"
|
2010-09-30 08:33:42 +02:00
|
|
|
, i, m.action == mapping_t::action_add ? "add" : "delete"
|
2009-04-13 06:22:03 +02:00
|
|
|
, m.protocol == udp ? "udp" : "tcp"
|
|
|
|
, m.local_port, m.external_port, ttl);
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2015-06-06 07:22:53 +02:00
|
|
|
m_socket.send_to(boost::asio::buffer(buf, sizeof(buf)), m_nat_endpoint, 0, ec);
|
2008-11-16 03:11:04 +01:00
|
|
|
m.map_sent = true;
|
2010-09-30 08:33:42 +02:00
|
|
|
m.outstanding_request = true;
|
2008-12-07 21:25:04 +01:00
|
|
|
if (m_abort)
|
|
|
|
{
|
2008-12-19 20:27:58 +01:00
|
|
|
// when we're shutting down, ignore the
|
|
|
|
// responses and just remove all mappings
|
|
|
|
// immediately
|
|
|
|
m_currently_mapping = -1;
|
|
|
|
m.action = mapping_t::action_none;
|
2009-06-13 10:04:53 +02:00
|
|
|
try_next_mapping(i, l);
|
2008-12-07 21:25:04 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("natpmp::resend_request");
|
|
|
|
#endif
|
2008-12-19 20:27:58 +01:00
|
|
|
// linear back-off instead of exponential
|
2008-12-07 21:25:04 +01:00
|
|
|
++m_retry_count;
|
|
|
|
m_send_timer.expires_from_now(milliseconds(250 * m_retry_count), ec);
|
2010-04-30 21:08:16 +02:00
|
|
|
m_send_timer.async_wait(boost::bind(&natpmp::resend_request, self(), i, _1));
|
2008-12-07 21:25:04 +01:00
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void natpmp::resend_request(int i, error_code const& e)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("natpmp::resend_request");
|
|
|
|
#endif
|
2007-03-15 23:03:56 +01:00
|
|
|
if (e) return;
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2007-04-04 10:56:58 +02:00
|
|
|
if (m_currently_mapping != i) return;
|
2008-08-20 10:34:32 +02:00
|
|
|
|
|
|
|
// if we're shutting down, don't retry, just move on
|
|
|
|
// to the next mapping
|
|
|
|
if (m_retry_count >= 9 || m_abort)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2008-04-06 21:17:58 +02:00
|
|
|
m_currently_mapping = -1;
|
|
|
|
m_mappings[i].action = mapping_t::action_none;
|
2007-03-15 23:03:56 +01:00
|
|
|
// try again in two hours
|
2015-03-12 05:34:54 +01:00
|
|
|
m_mappings[i].expires = aux::time_now() + hours(2);
|
2009-06-13 10:04:53 +02:00
|
|
|
try_next_mapping(i, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2009-06-13 10:04:53 +02:00
|
|
|
send_map_request(i, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void natpmp::on_reply(error_code const& e
|
2007-03-15 23:03:56 +01:00
|
|
|
, std::size_t bytes_transferred)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2009-06-13 10:04:53 +02:00
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("natpmp::on_reply");
|
|
|
|
#endif
|
|
|
|
|
2007-03-15 23:03:56 +01:00
|
|
|
using namespace libtorrent::detail;
|
2008-08-20 10:34:32 +02:00
|
|
|
if (e)
|
|
|
|
{
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
2013-01-19 07:39:32 +01:00
|
|
|
snprintf(msg, sizeof(msg), "error on receiving reply: %s"
|
|
|
|
, convert_from_native(e.message()).c_str());
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2008-08-20 10:34:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("natpmp::on_reply");
|
|
|
|
#endif
|
2010-12-12 19:16:35 +01:00
|
|
|
// make a copy of the response packet buffer
|
|
|
|
// to avoid overwriting it in the next receive call
|
|
|
|
char msg_buf[16];
|
|
|
|
memcpy(msg_buf, m_response_buffer, bytes_transferred);
|
|
|
|
|
2015-06-06 07:22:53 +02:00
|
|
|
m_socket.async_receive_from(boost::asio::buffer(&m_response_buffer, 16)
|
2010-04-30 21:08:16 +02:00
|
|
|
, m_remote, boost::bind(&natpmp::on_reply, self(), _1, _2));
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-12-02 09:20:29 +01:00
|
|
|
// simulate packet loss
|
|
|
|
/*
|
2011-02-26 08:55:51 +01:00
|
|
|
if ((random() % 2) == 0)
|
2008-12-02 09:20:29 +01:00
|
|
|
{
|
2009-06-13 10:04:53 +02:00
|
|
|
log(" simulating drop", l);
|
2008-12-02 09:20:29 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
*/
|
2007-12-29 08:26:36 +01:00
|
|
|
if (m_remote != m_nat_endpoint)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
|
|
|
snprintf(msg, sizeof(msg), "received packet from wrong IP: %s"
|
|
|
|
, print_endpoint(m_remote).c_str());
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2007-12-29 08:26:36 +01:00
|
|
|
m_send_timer.cancel(ec);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2010-12-05 21:40:28 +01:00
|
|
|
if (bytes_transferred < 12)
|
|
|
|
{
|
|
|
|
char msg[200];
|
2010-12-12 20:40:11 +01:00
|
|
|
snprintf(msg, sizeof(msg), "received packet of invalid size: %d", int(bytes_transferred));
|
2010-12-05 21:40:28 +01:00
|
|
|
log(msg, l);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-12 19:16:35 +01:00
|
|
|
char* in = msg_buf;
|
2007-12-29 08:26:36 +01:00
|
|
|
int version = read_uint8(in);
|
|
|
|
int cmd = read_uint8(in);
|
|
|
|
int result = read_uint16(in);
|
|
|
|
int time = read_uint32(in);
|
2010-12-05 21:40:28 +01:00
|
|
|
|
2010-12-12 19:16:35 +01:00
|
|
|
if (cmd == 128)
|
2010-12-05 21:40:28 +01:00
|
|
|
{
|
|
|
|
// public IP request response
|
2010-12-12 19:16:35 +01:00
|
|
|
m_external_ip = read_v4_address(in);
|
2010-12-05 21:40:28 +01:00
|
|
|
|
|
|
|
char msg[200];
|
|
|
|
snprintf(msg, sizeof(msg), "<== public IP address [ %s ]", print_address(m_external_ip).c_str());
|
|
|
|
log(msg, l);
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytes_transferred < 16)
|
|
|
|
{
|
|
|
|
char msg[200];
|
2010-12-12 20:40:11 +01:00
|
|
|
snprintf(msg, sizeof(msg), "received packet of invalid size: %d", int(bytes_transferred));
|
2010-12-05 21:40:28 +01:00
|
|
|
log(msg, l);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-29 08:26:36 +01:00
|
|
|
int private_port = read_uint16(in);
|
|
|
|
int public_port = read_uint16(in);
|
|
|
|
int lifetime = read_uint32(in);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2007-12-29 08:26:36 +01:00
|
|
|
(void)time; // to remove warning
|
2007-03-27 09:04:31 +02:00
|
|
|
|
2008-12-02 09:20:29 +01:00
|
|
|
int protocol = (cmd - 128 == 1)?udp:tcp;
|
|
|
|
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
|
|
|
int num_chars = snprintf(msg, sizeof(msg), "<== port map ["
|
|
|
|
" protocol: %s local: %u external: %u ttl: %u ]"
|
|
|
|
, (cmd - 128 == 1 ? "udp" : "tcp")
|
|
|
|
, private_port, public_port, lifetime);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2007-12-29 08:26:36 +01:00
|
|
|
if (version != 0)
|
|
|
|
{
|
2009-04-13 06:22:03 +02:00
|
|
|
snprintf(msg + num_chars, sizeof(msg) - num_chars, "unexpected version: %u"
|
|
|
|
, version);
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-12-02 09:20:29 +01:00
|
|
|
mapping_t* m = 0;
|
|
|
|
int index = -1;
|
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
2007-12-29 08:26:36 +01:00
|
|
|
{
|
2008-12-02 09:20:29 +01:00
|
|
|
if (private_port != i->local_port) continue;
|
|
|
|
if (protocol != i->protocol) continue;
|
|
|
|
if (!i->map_sent) continue;
|
2010-09-30 08:33:42 +02:00
|
|
|
if (!i->outstanding_request) continue;
|
2008-12-02 09:20:29 +01:00
|
|
|
m = &*i;
|
|
|
|
index = i - m_mappings.begin();
|
|
|
|
break;
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2008-12-02 09:20:29 +01:00
|
|
|
if (m == 0)
|
2007-12-29 08:26:36 +01:00
|
|
|
{
|
2009-04-13 06:22:03 +02:00
|
|
|
snprintf(msg + num_chars, sizeof(msg) - num_chars, " not found in map table");
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2008-12-02 09:20:29 +01:00
|
|
|
return;
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
2010-09-30 08:33:42 +02:00
|
|
|
m->outstanding_request = false;
|
|
|
|
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
|
2007-12-29 08:26:36 +01:00
|
|
|
if (public_port == 0 || lifetime == 0)
|
|
|
|
{
|
|
|
|
// this means the mapping was
|
|
|
|
// successfully closed
|
2008-12-02 09:20:29 +01:00
|
|
|
m->protocol = none;
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-12 05:34:54 +01:00
|
|
|
m->expires = aux::time_now() + seconds(int(lifetime * 0.7f));
|
2008-12-02 09:20:29 +01:00
|
|
|
m->external_port = public_port;
|
2007-12-29 08:26:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (result != 0)
|
|
|
|
{
|
2009-06-12 18:40:38 +02:00
|
|
|
int errors[] =
|
2007-03-17 00:28:26 +01:00
|
|
|
{
|
2009-06-12 18:40:38 +02:00
|
|
|
errors::unsupported_protocol_version,
|
|
|
|
errors::natpmp_not_authorized,
|
|
|
|
errors::network_failure,
|
|
|
|
errors::no_resources,
|
|
|
|
errors::unsupported_opcode,
|
2009-04-13 06:22:03 +02:00
|
|
|
};
|
2009-06-12 18:40:38 +02:00
|
|
|
int ev = errors::no_error;
|
|
|
|
if (result >= 1 && result <= 5) ev = errors[result - 1];
|
2009-04-13 06:22:03 +02:00
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
m->expires = aux::time_now() + hours(2);
|
2016-02-22 01:16:00 +01:00
|
|
|
int const proto = m->protocol;
|
2009-06-13 10:04:53 +02:00
|
|
|
l.unlock();
|
2016-02-22 01:16:00 +01:00
|
|
|
m_callback(index, address(), 0, proto
|
|
|
|
, error_code(ev, get_libtorrent_category()));
|
2009-06-13 10:04:53 +02:00
|
|
|
l.lock();
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2008-12-02 09:20:29 +01:00
|
|
|
else if (m->action == mapping_t::action_add)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2016-02-22 01:16:00 +01:00
|
|
|
int const proto = m->protocol;
|
2009-06-13 10:04:53 +02:00
|
|
|
l.unlock();
|
2016-02-22 01:16:00 +01:00
|
|
|
m_callback(index, m_external_ip, m->external_port, proto
|
|
|
|
, error_code(errors::no_error, get_libtorrent_category()));
|
2009-06-13 10:04:53 +02:00
|
|
|
l.lock();
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2007-12-29 08:26:36 +01:00
|
|
|
|
2009-11-28 04:15:06 +01:00
|
|
|
if (m_abort) return;
|
|
|
|
|
2007-03-15 23:03:56 +01:00
|
|
|
m_currently_mapping = -1;
|
2008-12-02 09:20:29 +01:00
|
|
|
m->action = mapping_t::action_none;
|
2007-12-29 08:26:36 +01:00
|
|
|
m_send_timer.cancel(ec);
|
2010-06-18 06:43:20 +02:00
|
|
|
update_expiration_timer(l);
|
2009-06-13 10:04:53 +02:00
|
|
|
try_next_mapping(index, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2010-06-18 06:43:20 +02:00
|
|
|
void natpmp::update_expiration_timer(mutex::scoped_lock& l)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2008-04-06 21:17:58 +02:00
|
|
|
if (m_abort) return;
|
|
|
|
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now() + milliseconds(100);
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << time_now_string() << " update_expiration_timer " << std::endl;
|
2008-04-06 21:17:58 +02:00
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
|
|
|
{
|
2010-09-30 08:33:42 +02:00
|
|
|
std::cout << " " << (i - m_mappings.begin()) << " [ "
|
2008-04-06 21:17:58 +02:00
|
|
|
"proto: " << (i->protocol == none ? "none" : i->protocol == tcp ? "tcp" : "udp")
|
|
|
|
<< " port: " << i->external_port
|
|
|
|
<< " local-port: " << i->local_port
|
|
|
|
<< " action: " << (i->action == mapping_t::action_none ? "none" : i->action == mapping_t::action_add ? "add" : "delete")
|
|
|
|
<< " ttl: " << total_seconds(i->expires - now)
|
|
|
|
<< " ]" << std::endl;
|
|
|
|
}
|
|
|
|
#endif
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point min_expire = now + seconds(3600);
|
2007-03-15 23:03:56 +01:00
|
|
|
int min_index = -1;
|
2008-04-06 21:17:58 +02:00
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->protocol == none
|
|
|
|
|| i->action != mapping_t::action_none) continue;
|
2010-06-18 06:43:20 +02:00
|
|
|
int index = i - m_mappings.begin();
|
|
|
|
if (i->expires < now)
|
|
|
|
{
|
|
|
|
char msg[200];
|
|
|
|
snprintf(msg, sizeof(msg), "mapping %u expired", index);
|
|
|
|
log(msg, l);
|
|
|
|
i->action = mapping_t::action_add;
|
|
|
|
if (m_next_refresh == index) m_next_refresh = -1;
|
|
|
|
update_mapping(index, l);
|
|
|
|
}
|
|
|
|
else if (i->expires < min_expire)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2008-04-06 21:17:58 +02:00
|
|
|
min_expire = i->expires;
|
2010-06-18 06:43:20 +02:00
|
|
|
min_index = index;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2008-04-06 21:17:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// this is already the mapping we're waiting for
|
|
|
|
if (m_next_refresh == min_index) return;
|
2007-03-15 23:03:56 +01:00
|
|
|
|
|
|
|
if (min_index >= 0)
|
|
|
|
{
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << time_now_string() << " next expiration ["
|
2008-04-06 21:17:58 +02:00
|
|
|
" i: " << min_index
|
2015-03-12 05:34:54 +01:00
|
|
|
<< " ttl: " << total_seconds(min_expire - aux::time_now())
|
2008-04-06 21:17:58 +02:00
|
|
|
<< " ]" << std::endl;
|
|
|
|
#endif
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2008-04-06 21:17:58 +02:00
|
|
|
if (m_next_refresh >= 0) m_refresh_timer.cancel(ec);
|
2010-11-28 02:47:30 +01:00
|
|
|
|
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
add_outstanding_async("natpmp::mapping_expired");
|
|
|
|
#endif
|
2007-12-29 08:26:36 +01:00
|
|
|
m_refresh_timer.expires_from_now(min_expire - now, ec);
|
2010-04-30 21:08:16 +02:00
|
|
|
m_refresh_timer.async_wait(boost::bind(&natpmp::mapping_expired, self(), _1, min_index));
|
2008-04-06 21:17:58 +02:00
|
|
|
m_next_refresh = min_index;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void natpmp::mapping_expired(error_code const& e, int i)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2010-11-28 02:47:30 +01:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
complete_async("natpmp::mapping_expired");
|
|
|
|
#endif
|
2007-03-15 23:03:56 +01:00
|
|
|
if (e) return;
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2009-04-13 06:22:03 +02:00
|
|
|
char msg[200];
|
|
|
|
snprintf(msg, sizeof(msg), "mapping %u expired", i);
|
2009-06-13 10:04:53 +02:00
|
|
|
log(msg, l);
|
2008-04-06 21:17:58 +02:00
|
|
|
m_mappings[i].action = mapping_t::action_add;
|
|
|
|
if (m_next_refresh == i) m_next_refresh = -1;
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(i, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void natpmp::close()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_mutex);
|
2009-09-22 06:01:01 +02:00
|
|
|
close_impl(l);
|
|
|
|
}
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
void natpmp::close_impl(mutex::scoped_lock& l)
|
2009-09-22 06:01:01 +02:00
|
|
|
{
|
2008-04-06 21:17:58 +02:00
|
|
|
m_abort = true;
|
2009-06-13 10:04:53 +02:00
|
|
|
log("closing", l);
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << time_now_string() << " close" << std::endl;
|
2015-03-12 05:34:54 +01:00
|
|
|
time_point now = aux::time_now();
|
2008-04-06 21:17:58 +02:00
|
|
|
#endif
|
2007-03-15 23:03:56 +01:00
|
|
|
if (m_disabled) return;
|
2008-04-06 21:17:58 +02:00
|
|
|
for (std::vector<mapping_t>::iterator i = m_mappings.begin()
|
|
|
|
, end(m_mappings.end()); i != end; ++i)
|
2007-03-15 23:03:56 +01:00
|
|
|
{
|
2010-09-30 08:33:42 +02:00
|
|
|
#ifdef NATPMP_LOG
|
|
|
|
std::cout << " " << (i - m_mappings.begin()) << " [ "
|
2008-04-06 21:17:58 +02:00
|
|
|
"proto: " << (i->protocol == none ? "none" : i->protocol == tcp ? "tcp" : "udp")
|
|
|
|
<< " port: " << i->external_port
|
|
|
|
<< " local-port: " << i->local_port
|
|
|
|
<< " action: " << (i->action == mapping_t::action_none ? "none" : i->action == mapping_t::action_add ? "add" : "delete")
|
|
|
|
<< " ttl: " << total_seconds(i->expires - now)
|
|
|
|
<< " ]" << std::endl;
|
|
|
|
#endif
|
|
|
|
if (i->protocol == none) continue;
|
|
|
|
i->action = mapping_t::action_delete;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2008-11-16 03:11:04 +01:00
|
|
|
error_code ec;
|
2007-12-29 08:26:36 +01:00
|
|
|
m_refresh_timer.cancel(ec);
|
2009-12-07 05:40:36 +01:00
|
|
|
m_currently_mapping = -1;
|
2009-06-13 10:04:53 +02:00
|
|
|
update_mapping(0, l);
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|