2023-11-01 21:11:11 +00:00
|
|
|
// This file Copyright © Mnemosyne LLC.
|
2022-08-08 18:05:39 +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.
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-09-30 13:59:10 +00:00
|
|
|
#ifndef LIBTRANSMISSION_PORT_FORWARDING_MODULE
|
|
|
|
#error only the libtransmission port forwarding module should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2022-04-25 01:49:52 +00:00
|
|
|
#include <ctime> // time_t
|
2022-08-17 16:08:36 +00:00
|
|
|
#include <cstdint>
|
2022-04-25 01:49:52 +00:00
|
|
|
|
2022-01-22 00:07:24 +00:00
|
|
|
#include "natpmp.h"
|
2023-07-08 15:24:03 +00:00
|
|
|
|
|
|
|
#include "libtransmission/transmission.h" // tr_port_forwarding_state
|
|
|
|
|
|
|
|
#include "libtransmission/net.h" // tr_port
|
2022-01-22 00:07:24 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
class tr_natpmp
|
2022-01-22 00:07:24 +00:00
|
|
|
{
|
2022-08-12 00:59:58 +00:00
|
|
|
public:
|
|
|
|
tr_natpmp()
|
|
|
|
{
|
2022-08-27 19:05:21 +00:00
|
|
|
natpmp_.s = static_cast<decltype(natpmp_.s)>(TR_BAD_SOCKET);
|
2022-08-12 00:59:58 +00:00
|
|
|
}
|
2022-01-22 00:07:24 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
~tr_natpmp()
|
|
|
|
{
|
|
|
|
closenatpmp(&natpmp_);
|
|
|
|
}
|
2022-01-22 00:07:24 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
[[nodiscard]] constexpr auto renewTime() const noexcept
|
|
|
|
{
|
|
|
|
return renew_time_;
|
|
|
|
}
|
2022-01-22 00:07:24 +00:00
|
|
|
|
2022-09-30 13:59:10 +00:00
|
|
|
struct PulseResult
|
|
|
|
{
|
|
|
|
tr_port_forwarding_state state = TR_PORT_ERROR;
|
|
|
|
|
2022-11-02 00:32:26 +00:00
|
|
|
tr_port local_port = {};
|
|
|
|
tr_port advertised_port = {};
|
2022-09-30 13:59:10 +00:00
|
|
|
};
|
|
|
|
|
2022-11-02 00:32:26 +00:00
|
|
|
PulseResult pulse(tr_port local_port, bool is_enabled);
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
private:
|
2022-09-30 13:59:10 +00:00
|
|
|
enum class State
|
2022-08-12 00:59:58 +00:00
|
|
|
{
|
2022-09-30 13:59:10 +00:00
|
|
|
Idle,
|
|
|
|
Err,
|
|
|
|
Discover,
|
|
|
|
RecvPub,
|
|
|
|
SendMap,
|
|
|
|
RecvMap,
|
|
|
|
SendUnmap,
|
|
|
|
RecvUnmap
|
2022-08-12 00:59:58 +00:00
|
|
|
};
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
static constexpr auto LifetimeSecs = uint32_t{ 3600 };
|
|
|
|
static constexpr auto CommandWaitSecs = time_t{ 8 };
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
[[nodiscard]] bool canSendCommand() const;
|
2007-12-01 05:11:30 +00:00
|
|
|
|
2022-08-12 00:59:58 +00:00
|
|
|
void setCommandTime();
|
|
|
|
|
2022-08-13 17:11:07 +00:00
|
|
|
natpmp_t natpmp_ = {};
|
2022-08-12 00:59:58 +00:00
|
|
|
|
2022-11-02 00:32:26 +00:00
|
|
|
tr_port local_port_ = {};
|
|
|
|
tr_port advertised_port_ = {};
|
2022-08-12 00:59:58 +00:00
|
|
|
|
|
|
|
time_t renew_time_ = 0;
|
|
|
|
time_t command_time_ = 0;
|
2022-09-30 13:59:10 +00:00
|
|
|
State state_ = State::Discover;
|
2022-08-12 00:59:58 +00:00
|
|
|
|
|
|
|
bool has_discovered_ = false;
|
|
|
|
bool is_mapped_ = false;
|
|
|
|
};
|