2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2008-2022 Mnemosyne LLC.
|
2022-02-07 16:25:02 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2021-09-19 20:41:35 +00:00
|
|
|
#include <algorithm>
|
2022-03-16 00:51:36 +00:00
|
|
|
|
2007-07-14 16:29:21 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2010-12-24 08:58:41 +00:00
|
|
|
#include <event2/event.h>
|
2010-05-19 16:17:51 +00:00
|
|
|
|
2022-03-15 14:52:16 +00:00
|
|
|
#include <fmt/core.h>
|
|
|
|
|
2007-07-09 20:10:42 +00:00
|
|
|
#include "transmission.h"
|
2012-02-04 01:28:15 +00:00
|
|
|
#include "natpmp_local.h"
|
2013-01-25 23:34:20 +00:00
|
|
|
#include "log.h"
|
2007-07-09 20:10:42 +00:00
|
|
|
#include "net.h"
|
2007-09-20 16:32:01 +00:00
|
|
|
#include "peer-mgr.h"
|
2008-04-11 17:01:13 +00:00
|
|
|
#include "port-forwarding.h"
|
2009-07-01 14:58:57 +00:00
|
|
|
#include "session.h"
|
2007-12-25 05:37:32 +00:00
|
|
|
#include "torrent.h"
|
2017-06-08 07:24:12 +00:00
|
|
|
#include "tr-assert.h"
|
2007-07-09 20:10:42 +00:00
|
|
|
#include "upnp.h"
|
2007-07-30 18:04:10 +00:00
|
|
|
#include "utils.h"
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_shared
|
2007-01-19 04:42:31 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
bool isEnabled;
|
|
|
|
bool isShuttingDown;
|
|
|
|
bool doPortCheck;
|
2008-04-12 21:47:10 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_port_forwarding natpmpStatus;
|
|
|
|
tr_port_forwarding upnpStatus;
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_upnp* upnp;
|
|
|
|
tr_natpmp* natpmp;
|
|
|
|
tr_session* session;
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
struct event* timer;
|
2007-01-19 04:42:31 +00:00
|
|
|
};
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static char const* getNatStateStr(int state)
|
2007-01-19 04:42:31 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
switch (state)
|
2007-12-08 19:34:15 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
case TR_PORT_MAPPING:
|
|
|
|
return _("Starting");
|
|
|
|
|
|
|
|
case TR_PORT_MAPPED:
|
|
|
|
return _("Forwarded");
|
|
|
|
|
|
|
|
case TR_PORT_UNMAPPING:
|
|
|
|
return _("Stopping");
|
|
|
|
|
|
|
|
case TR_PORT_UNMAPPED:
|
|
|
|
return _("Not forwarded");
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "???";
|
2007-12-08 19:34:15 +00:00
|
|
|
}
|
2007-01-19 04:42:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void natPulse(tr_shared* s, bool do_check)
|
2007-01-19 04:42:31 +00:00
|
|
|
{
|
2022-03-10 05:51:14 +00:00
|
|
|
auto* session = s->session;
|
|
|
|
tr_port const private_peer_port = session->private_peer_port;
|
2017-04-30 16:25:26 +00:00
|
|
|
bool const is_enabled = s->isEnabled && !s->isShuttingDown;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2021-09-15 00:18:09 +00:00
|
|
|
if (s->natpmp == nullptr)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
s->natpmp = tr_natpmpInit();
|
|
|
|
}
|
2009-05-26 20:52:08 +00:00
|
|
|
|
2021-09-15 00:18:09 +00:00
|
|
|
if (s->upnp == nullptr)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
s->upnp = tr_upnpInit();
|
|
|
|
}
|
2010-07-05 21:04:17 +00:00
|
|
|
|
2021-10-22 13:51:36 +00:00
|
|
|
auto const old_status = tr_sharedTraversalStatus(s);
|
2010-07-05 21:04:17 +00:00
|
|
|
|
2021-10-22 13:51:36 +00:00
|
|
|
auto public_peer_port = tr_port{};
|
2022-01-23 05:41:01 +00:00
|
|
|
auto received_private_port = tr_port{};
|
2022-01-22 00:07:24 +00:00
|
|
|
s->natpmpStatus = tr_natpmpPulse(s->natpmp, private_peer_port, is_enabled, &public_peer_port, &received_private_port);
|
2010-07-05 21:04:17 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
if (s->natpmpStatus == TR_PORT_MAPPED)
|
|
|
|
{
|
2022-03-10 05:51:14 +00:00
|
|
|
session->public_peer_port = public_peer_port;
|
|
|
|
session->private_peer_port = received_private_port;
|
2022-03-17 22:39:06 +00:00
|
|
|
tr_logAddInfo(fmt::format(
|
2022-03-22 16:45:56 +00:00
|
|
|
_("Mapped private port {private_port} to public port {public_port}"),
|
2022-04-21 15:58:13 +00:00
|
|
|
fmt::arg("public_port", session->public_peer_port.host()),
|
|
|
|
fmt::arg("private_port", session->private_peer_port.host())));
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2008-04-12 21:47:10 +00:00
|
|
|
|
2022-07-29 13:11:47 +00:00
|
|
|
s->upnpStatus = tr_upnpPulse(s->upnp, private_peer_port, is_enabled, do_check, session->bind_ipv4.readable());
|
2013-01-24 23:59:52 +00:00
|
|
|
|
2021-10-22 13:51:36 +00:00
|
|
|
auto const new_status = tr_sharedTraversalStatus(s);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2021-10-22 13:51:36 +00:00
|
|
|
if (new_status != old_status)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2022-03-17 22:39:06 +00:00
|
|
|
tr_logAddInfo(fmt::format(
|
2022-04-14 04:19:18 +00:00
|
|
|
_("State changed from '{old_state}' to '{state}'"),
|
2022-03-17 22:39:06 +00:00
|
|
|
fmt::arg("old_state", getNatStateStr(old_status)),
|
|
|
|
fmt::arg("state", getNatStateStr(new_status))));
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2007-01-19 04:42:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void set_evtimer_from_status(tr_shared* s)
|
2007-01-19 04:42:31 +00:00
|
|
|
{
|
2017-05-01 15:46:41 +00:00
|
|
|
int sec = 0;
|
|
|
|
int msec = 0;
|
2007-09-21 05:31:29 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
/* when to wake up again */
|
|
|
|
switch (tr_sharedTraversalStatus(s))
|
2008-12-15 00:17:08 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
case TR_PORT_MAPPED:
|
2022-01-22 00:07:24 +00:00
|
|
|
/* if we're mapped, everything is fine... check back at renew_time
|
2013-01-24 23:59:52 +00:00
|
|
|
* to renew the port forwarding if it's expired */
|
|
|
|
s->doPortCheck = true;
|
2022-01-23 17:31:20 +00:00
|
|
|
sec = std::max(0, int(s->natpmp->renew_time - tr_time()));
|
2013-01-24 23:59:52 +00:00
|
|
|
break;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
case TR_PORT_ERROR:
|
2013-01-24 23:59:52 +00:00
|
|
|
/* some kind of an error. wait 60 seconds and retry */
|
|
|
|
sec = 60;
|
|
|
|
break;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
default:
|
2013-01-24 23:59:52 +00:00
|
|
|
/* in progress. pulse frequently. */
|
|
|
|
msec = 333000;
|
|
|
|
break;
|
2007-01-19 04:42:31 +00:00
|
|
|
}
|
|
|
|
|
2021-09-15 00:18:09 +00:00
|
|
|
if (s->timer != nullptr)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2022-04-08 00:20:29 +00:00
|
|
|
tr_timerAdd(*s->timer, sec, msec);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2009-04-22 16:00:45 +00:00
|
|
|
}
|
|
|
|
|
2021-10-24 16:41:54 +00:00
|
|
|
static void onTimer(evutil_socket_t /*fd*/, short /*what*/, void* vshared)
|
2009-10-29 17:25:03 +00:00
|
|
|
{
|
2021-09-12 17:41:49 +00:00
|
|
|
auto* s = static_cast<tr_shared*>(vshared);
|
2009-10-29 17:25:03 +00:00
|
|
|
|
2021-09-15 00:18:09 +00:00
|
|
|
TR_ASSERT(s != nullptr);
|
|
|
|
TR_ASSERT(s->timer != nullptr);
|
2009-10-29 17:25:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
/* do something */
|
|
|
|
natPulse(s, s->doPortCheck);
|
|
|
|
s->doPortCheck = false;
|
2009-10-29 17:25:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
/* set up the timer for the next pulse */
|
|
|
|
set_evtimer_from_status(s);
|
2009-10-29 17:25:03 +00:00
|
|
|
}
|
|
|
|
|
2007-12-08 19:34:15 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_shared* tr_sharedInit(tr_session* session)
|
2007-01-19 04:42:31 +00:00
|
|
|
{
|
2022-01-17 18:39:50 +00:00
|
|
|
auto* const s = tr_new0(tr_shared, 1);
|
2007-12-08 19:34:15 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
s->session = session;
|
|
|
|
s->isEnabled = false;
|
|
|
|
s->upnpStatus = TR_PORT_UNMAPPED;
|
|
|
|
s->natpmpStatus = TR_PORT_UNMAPPED;
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
#if 0
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
if (isEnabled)
|
2009-05-20 17:35:41 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
s->timer = tr_new0(struct event, 1);
|
|
|
|
evtimer_set(s->timer, onTimer, s);
|
|
|
|
tr_timerAdd(s->timer, 0, 333000);
|
2009-05-20 17:35:41 +00:00
|
|
|
}
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2009-10-23 03:41:36 +00:00
|
|
|
#endif
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
return s;
|
2007-12-08 19:34:15 +00:00
|
|
|
}
|
2007-09-20 16:32:01 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void stop_timer(tr_shared* s)
|
2007-12-08 19:34:15 +00:00
|
|
|
{
|
2021-09-15 00:18:09 +00:00
|
|
|
if (s->timer != nullptr)
|
2009-05-14 13:42:29 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
event_free(s->timer);
|
2021-09-15 00:18:09 +00:00
|
|
|
s->timer = nullptr;
|
2009-05-14 13:42:29 +00:00
|
|
|
}
|
2007-01-19 04:42:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void stop_forwarding(tr_shared* s)
|
2007-01-27 21:17:10 +00:00
|
|
|
{
|
2022-03-17 22:39:06 +00:00
|
|
|
tr_logAddTrace("stopped");
|
2017-04-19 12:04:45 +00:00
|
|
|
natPulse(s, false);
|
2010-02-11 14:28:40 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_natpmpClose(s->natpmp);
|
2021-09-15 00:18:09 +00:00
|
|
|
s->natpmp = nullptr;
|
2017-04-19 12:04:45 +00:00
|
|
|
s->natpmpStatus = TR_PORT_UNMAPPED;
|
2010-02-11 14:28:40 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_upnpClose(s->upnp);
|
2021-09-15 00:18:09 +00:00
|
|
|
s->upnp = nullptr;
|
2017-04-19 12:04:45 +00:00
|
|
|
s->upnpStatus = TR_PORT_UNMAPPED;
|
2010-02-11 14:28:40 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
stop_timer(s);
|
2009-05-14 13:42:29 +00:00
|
|
|
}
|
2007-01-27 21:17:10 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sharedClose(tr_session* session)
|
2009-05-14 13:42:29 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_shared* s = session->shared;
|
2007-01-27 21:17:10 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
s->isShuttingDown = true;
|
|
|
|
stop_forwarding(s);
|
2021-09-15 00:18:09 +00:00
|
|
|
s->session->shared = nullptr;
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_free(s);
|
2007-01-27 21:17:10 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static void start_timer(tr_shared* s)
|
2009-05-20 17:35:41 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
s->timer = evtimer_new(s->session->event_base, onTimer, s);
|
|
|
|
set_evtimer_from_status(s);
|
2009-05-20 17:35:41 +00:00
|
|
|
}
|
|
|
|
|
2020-08-27 23:41:26 +00:00
|
|
|
void tr_sharedTraversalEnable(tr_shared* s, bool enable)
|
2007-09-20 16:32:01 +00:00
|
|
|
{
|
2020-08-27 23:41:26 +00:00
|
|
|
if (enable)
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
2020-08-27 23:41:26 +00:00
|
|
|
s->isEnabled = true;
|
2017-04-19 12:04:45 +00:00
|
|
|
start_timer(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-27 23:41:26 +00:00
|
|
|
s->isEnabled = false;
|
2017-04-19 12:04:45 +00:00
|
|
|
stop_forwarding(s);
|
|
|
|
}
|
2007-12-08 19:34:15 +00:00
|
|
|
}
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_sharedPortChanged(tr_session* session)
|
2007-12-08 19:34:15 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_shared* s = session->shared;
|
2009-05-14 13:42:29 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
if (s->isEnabled)
|
2009-05-14 13:42:29 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
stop_timer(s);
|
|
|
|
natPulse(s, false);
|
|
|
|
start_timer(s);
|
2009-05-14 13:42:29 +00:00
|
|
|
}
|
2007-12-08 19:34:15 +00:00
|
|
|
}
|
2007-01-19 04:42:31 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_sharedTraversalIsEnabled(tr_shared const* s)
|
2008-05-12 16:33:17 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
return s->isEnabled;
|
2008-05-12 16:33:17 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
int tr_sharedTraversalStatus(tr_shared const* s)
|
2007-12-08 19:34:15 +00:00
|
|
|
{
|
2021-09-19 20:41:35 +00:00
|
|
|
return std::max(s->natpmpStatus, s->upnpStatus);
|
2007-01-19 04:42:31 +00:00
|
|
|
}
|