Files
transmission/libtransmission/rpc-server.h
Charles Kerr 140958a8a1 refactor: no macros in transmission.h (#8099)
* refactor: replace TR_RPC_SESSION_ID_HEADER macro with TrRpcSessionIdHeader constant

refactor: replace TR_RPC_RPC_VERSION_HEADER macro with TrRpcVersionHeader constant

* refactor: remove macro TR_DEFAULT_RPC_PORT_STR

* refactor: remove macro TR_DEFAULT_PEER_PORT_STR

* refactor: remove macro TR_DEFAULT_PEER_LIMIT_GLOBAL_STR

* refactor: remove macro TR_DEFAULT_PEER_LIMIT_TORRENT_STR

* refactor: remove macro TR_DEFAULT_PEER_SOCKET_TOS_STR

* refactor: replace DEFAULT_BLOCKLIST_FILENAME macro with TrDefaultBlocklistFilename constant

* refactor: rename TrHttpServerDefaultBasePath to TrDefaultHttpServerBasePath for consistency with other defaults

* refactor: group constants together near the top of transmission.h

* refactor: hardcode string lengths to avoid FTBFS on older C++17 compilers

* refactor: move macros to the tr_getopt clients

* refactor: explicitly specify the parameter index to avoid passing in TrRpcSessionIdHeader twice

* refactor: add an error message to new static_asserts
2026-01-14 07:52:57 -06:00

213 lines
6.2 KiB
C++

// This file Copyright © Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#ifndef __TRANSMISSION__
#error only libtransmission should #include this header.
#endif
#include <array>
#include <cstddef> // size_t
#include <memory>
#include <string>
#include <string_view>
#include <vector>
#include "libtransmission/transmission.h"
#include "libtransmission/net.h"
#include "libtransmission/quark.h"
#include "libtransmission/serializer.h"
#include "libtransmission/utils-ev.h"
class tr_rpc_address;
struct tr_session;
struct tr_variant;
struct libdeflate_compressor;
namespace libtransmission
{
class Timer;
}
class tr_rpc_server
{
public:
class Settings final
{
public:
Settings() = default;
explicit Settings(tr_variant const& src)
{
load(src);
}
void load(tr_variant const& src)
{
libtransmission::serializer::load(*this, Fields, src);
}
[[nodiscard]] tr_variant::Map save() const
{
return libtransmission::serializer::save(*this, Fields);
}
// NB: When adding a field here, you must also add it to
// `fields` if you want it to be in session-settings.json
bool authentication_required = false;
bool is_anti_brute_force_enabled = false;
bool is_enabled = false;
bool is_host_whitelist_enabled = true;
bool is_whitelist_enabled = true;
size_t anti_brute_force_limit = 100U;
std::string bind_address_str = "0.0.0.0";
std::string host_whitelist_str;
std::string salted_password;
std::string url = std::string{ TrDefaultHttpServerBasePath };
std::string username;
std::string whitelist_str = std::string{ TrDefaultRpcWhitelist };
tr_mode_t socket_mode = 0750;
tr_port port = tr_port::from_host(TrDefaultRpcPort);
private:
template<auto MemberPtr>
using Field = libtransmission::serializer::Field<MemberPtr>;
static constexpr auto Fields = std::tuple{
Field<&Settings::is_anti_brute_force_enabled>{ TR_KEY_anti_brute_force_enabled },
Field<&Settings::anti_brute_force_limit>{ TR_KEY_anti_brute_force_threshold },
Field<&Settings::authentication_required>{ TR_KEY_rpc_authentication_required },
Field<&Settings::bind_address_str>{ TR_KEY_rpc_bind_address },
Field<&Settings::is_enabled>{ TR_KEY_rpc_enabled },
Field<&Settings::host_whitelist_str>{ TR_KEY_rpc_host_whitelist },
Field<&Settings::is_host_whitelist_enabled>{ TR_KEY_rpc_host_whitelist_enabled },
Field<&Settings::port>{ TR_KEY_rpc_port },
Field<&Settings::salted_password>{ TR_KEY_rpc_password },
Field<&Settings::socket_mode>{ TR_KEY_rpc_socket_mode },
Field<&Settings::url>{ TR_KEY_rpc_url },
Field<&Settings::username>{ TR_KEY_rpc_username },
Field<&Settings::whitelist_str>{ TR_KEY_rpc_whitelist },
Field<&Settings::is_whitelist_enabled>{ TR_KEY_rpc_whitelist_enabled },
};
};
tr_rpc_server(tr_session* session, Settings&& settings);
~tr_rpc_server();
tr_rpc_server(tr_rpc_server&) = delete;
tr_rpc_server(tr_rpc_server&&) = delete;
tr_rpc_server& operator=(tr_rpc_server&) = delete;
tr_rpc_server& operator=(tr_rpc_server&&) = delete;
void load(Settings&& settings);
[[nodiscard]] constexpr Settings const& settings() const
{
return settings_;
}
[[nodiscard]] constexpr tr_port port() const noexcept
{
return settings_.port;
}
void set_port(tr_port port) noexcept;
[[nodiscard]] constexpr auto is_enabled() const noexcept
{
return settings_.is_enabled;
}
void set_enabled(bool is_enabled);
[[nodiscard]] constexpr auto is_whitelist_enabled() const noexcept
{
return settings_.is_whitelist_enabled;
}
constexpr void set_whitelist_enabled(bool is_whitelist_enabled) noexcept
{
settings_.is_whitelist_enabled = is_whitelist_enabled;
}
[[nodiscard]] constexpr auto const& whitelist() const noexcept
{
return settings_.whitelist_str;
}
void set_whitelist(std::string_view whitelist);
[[nodiscard]] constexpr auto const& username() const noexcept
{
return settings_.username;
}
void set_username(std::string_view username);
[[nodiscard]] constexpr auto is_password_enabled() const noexcept
{
return settings_.authentication_required;
}
void set_password_enabled(bool enabled);
[[nodiscard]] constexpr auto const& get_salted_password() const noexcept
{
return settings_.salted_password;
}
void set_password(std::string_view password) noexcept;
[[nodiscard]] constexpr auto is_anti_brute_force_enabled() const noexcept
{
return settings_.is_anti_brute_force_enabled;
}
void set_anti_brute_force_enabled(bool enabled) noexcept;
[[nodiscard]] constexpr auto get_anti_brute_force_limit() const noexcept
{
return settings_.anti_brute_force_limit;
}
constexpr void set_anti_brute_force_limit(size_t limit) noexcept
{
settings_.anti_brute_force_limit = limit;
}
std::unique_ptr<libdeflate_compressor, void (*)(libdeflate_compressor*)> compressor;
[[nodiscard]] constexpr auto const& url() const noexcept
{
return settings_.url;
}
void set_url(std::string_view url);
[[nodiscard]] std::string get_bind_address() const;
[[nodiscard]] constexpr auto socket_mode() const noexcept
{
return settings_.socket_mode;
}
Settings settings_;
std::vector<std::string> host_whitelist_;
std::vector<std::string> whitelist_;
std::string const web_client_dir_;
std::unique_ptr<tr_rpc_address> bind_address_;
std::unique_ptr<libtransmission::Timer> start_retry_timer;
libtransmission::evhelpers::evhttp_unique_ptr httpd;
tr_session* const session;
size_t login_attempts_ = 0U;
int start_retry_counter = 0;
};