mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-07-26 14:01:13 -04:00
150 lines
4.1 KiB
C++
150 lines
4.1 KiB
C++
/*
|
|
|
|
Copyright (c) 2008-2009, 2012, 2016-2017, 2019-2021, Arvid Norberg
|
|
Copyright (c) 2016, 2018, 2021, Alden Torres
|
|
All rights reserved.
|
|
|
|
You may use, distribute and modify this code under the terms of the BSD license,
|
|
see LICENSE file.
|
|
*/
|
|
|
|
#include "libtorrent/natpmp.hpp"
|
|
#include "libtorrent/socket.hpp"
|
|
#include "libtorrent/aux_/socket_io.hpp"
|
|
#include "libtorrent/aux_/numeric_cast.hpp"
|
|
#include "libtorrent/aux_/ip_helpers.hpp"
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
using namespace lt;
|
|
|
|
namespace
|
|
{
|
|
struct natpmp_callback : aux::portmap_callback
|
|
{
|
|
virtual ~natpmp_callback() = default;
|
|
|
|
void on_port_mapping(port_mapping_t const mapping
|
|
, address const& ip, int port
|
|
, portmap_protocol const protocol, error_code const& err
|
|
, portmap_transport, aux::listen_socket_handle const&) override
|
|
{
|
|
std::cout
|
|
<< "mapping: " << mapping
|
|
<< ", port: " << port
|
|
<< ", protocol: " << static_cast<int>(protocol)
|
|
<< ", external-IP: " << aux::print_address(ip)
|
|
<< ", error: \"" << err.message() << "\"\n";
|
|
}
|
|
#ifndef TORRENT_DISABLE_LOGGING
|
|
virtual bool should_log_portmap(portmap_transport) const override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
virtual void log_portmap(portmap_transport, char const* msg, aux::listen_socket_handle const&) const override
|
|
{
|
|
std::cout << msg << std::endl;
|
|
}
|
|
#endif
|
|
};
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
io_context ios;
|
|
|
|
if (argc < 3 || argc > 4)
|
|
{
|
|
std::cout << "usage: test_natpmp tcp-port udp-port [interface]" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
error_code ec;
|
|
std::vector<aux::ip_route> const routes = aux::enum_routes(ios, ec);
|
|
if (ec)
|
|
{
|
|
std::cerr << "failed to enumerate routes: " << ec.message() << '\n';
|
|
return -1;
|
|
}
|
|
std::vector<aux::ip_interface> const ifs = aux::enum_net_interfaces(ios, ec);
|
|
if (ec)
|
|
{
|
|
std::cerr << "failed to enumerate network interfaces: " << ec.message() << '\n';
|
|
return -1;
|
|
}
|
|
auto const iface = [&]
|
|
{
|
|
if (argc > 3)
|
|
return std::find_if(ifs.begin(), ifs.end(), [&](aux::ip_interface const& ipf)
|
|
{ return ipf.name == string_view(argv[3]); });
|
|
else
|
|
return std::find_if(ifs.begin(), ifs.end(), [&](aux::ip_interface const& face)
|
|
{
|
|
if (!face.interface_address.is_v4()) return false;
|
|
if (face.interface_address.is_loopback()) return false;
|
|
auto const route = std::find_if(routes.begin(), routes.end(), [&](aux::ip_route const& r)
|
|
{ return r.destination.is_unspecified() && string_view(face.name) == r.name; });
|
|
if (route == routes.end()) return false;
|
|
return true;
|
|
});
|
|
}();
|
|
|
|
if (iface == ifs.end())
|
|
{
|
|
if (argc < 4)
|
|
{
|
|
std::cerr << "could not find an IPv4 interface to run NAT-PMP test over!\n";
|
|
}
|
|
else
|
|
{
|
|
std::cerr << "could not find interface: \"" << argv[3] << "\"\navailable ones are:\n";
|
|
for (auto const& ipf : ifs)
|
|
{
|
|
std::cerr << ipf.name << '\n';
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
std::optional<address> const gateway = aux::get_gateway(*iface, routes);
|
|
|
|
aux::session_settings settings;
|
|
natpmp_callback cb;
|
|
auto natpmp_handler = std::make_shared<natpmp>(ios, settings, cb, aux::listen_socket_handle{});
|
|
natpmp_handler->start(*iface, gateway);
|
|
|
|
aux::deadline_timer timer(ios);
|
|
|
|
auto const tcp_map = natpmp_handler->add_mapping(portmap_protocol::tcp
|
|
, atoi(argv[1]), tcp::endpoint({}, aux::numeric_cast<std::uint16_t>(atoi(argv[1]))), iface->name);
|
|
natpmp_handler->add_mapping(portmap_protocol::udp, atoi(argv[2])
|
|
, tcp::endpoint({}, aux::numeric_cast<std::uint16_t>(atoi(argv[2]))), iface->name);
|
|
|
|
timer.expires_after(seconds(2));
|
|
timer.async_wait([&] (error_code const&) { ios.io_context::stop(); });
|
|
std::cout << "attempting to map ports TCP: " << argv[1]
|
|
<< " UDP: " << argv[2]
|
|
<< " on interface: " << iface->name << std::endl;
|
|
|
|
ios.restart();
|
|
ios.run();
|
|
timer.expires_after(seconds(2));
|
|
timer.async_wait([&] (error_code const&) { ios.io_context::stop(); });
|
|
if (tcp_map >= port_mapping_t{0})
|
|
{
|
|
std::cout << "removing mapping " << tcp_map << std::endl;
|
|
natpmp_handler->delete_mapping(tcp_map);
|
|
}
|
|
|
|
ios.restart();
|
|
ios.run();
|
|
natpmp_handler->close();
|
|
|
|
ios.restart();
|
|
ios.run();
|
|
std::cout << "closing" << std::endl;
|
|
}
|