2018-02-01 17:06:49 +00:00
|
|
|
#ifndef LLARP_ROUTER_HPP
|
|
|
|
#define LLARP_ROUTER_HPP
|
2018-12-10 16:26:46 +00:00
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
#include <router/abstractrouter.hpp>
|
|
|
|
|
2019-12-06 17:32:46 +00:00
|
|
|
#include <bootstrap.hpp>
|
2019-11-26 19:42:41 +00:00
|
|
|
#include <config/key_manager.hpp>
|
2019-01-13 22:39:10 +00:00
|
|
|
#include <constants/link_layer.hpp>
|
2019-01-13 16:30:07 +00:00
|
|
|
#include <crypto/types.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <ev/ev.h>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <exit/context.hpp>
|
2018-12-12 01:12:59 +00:00
|
|
|
#include <handlers/tun.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <link/factory.hpp>
|
|
|
|
#include <link/link_manager.hpp>
|
2019-05-15 15:56:50 +00:00
|
|
|
#include <link/server.hpp>
|
2019-01-14 21:46:07 +00:00
|
|
|
#include <messages/link_message_parser.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <nodedb.hpp>
|
2019-06-17 23:19:39 +00:00
|
|
|
#include <path/path_context.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <profiling.hpp>
|
2018-12-12 01:55:30 +00:00
|
|
|
#include <router_contact.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <router/outbound_message_handler.hpp>
|
|
|
|
#include <router/outbound_session_maker.hpp>
|
2020-01-30 17:23:16 +00:00
|
|
|
#include <router/rc_gossiper.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <router/rc_lookup_handler.hpp>
|
2018-12-12 02:04:32 +00:00
|
|
|
#include <routing/handler.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <routing/message_parser.hpp>
|
2019-01-14 21:46:07 +00:00
|
|
|
#include <rpc/rpc.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <service/context.hpp>
|
2019-02-02 23:12:42 +00:00
|
|
|
#include <util/buffer.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/fs.hpp>
|
|
|
|
#include <util/mem.hpp>
|
2019-02-08 19:43:25 +00:00
|
|
|
#include <util/status.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/str.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <util/thread/logic.hpp>
|
|
|
|
#include <util/thread/threadpool.h>
|
2019-11-05 17:10:14 +00:00
|
|
|
#include <util/time.hpp>
|
2018-06-01 14:08:54 +00:00
|
|
|
|
2018-02-01 17:06:49 +00:00
|
|
|
#include <functional>
|
2018-05-22 15:54:19 +00:00
|
|
|
#include <list>
|
2018-05-20 17:45:47 +00:00
|
|
|
#include <map>
|
2019-01-26 15:40:58 +00:00
|
|
|
#include <memory>
|
2019-01-05 13:45:05 +00:00
|
|
|
#include <set>
|
2019-01-26 15:40:58 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2019-01-13 22:39:10 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2019-02-11 14:43:48 +00:00
|
|
|
struct Config;
|
|
|
|
} // namespace llarp
|
2019-01-13 16:30:07 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
namespace llarp
|
2018-05-22 15:54:19 +00:00
|
|
|
{
|
2019-02-15 22:19:19 +00:00
|
|
|
struct Router final : public AbstractRouter
|
2018-09-09 11:23:21 +00:00
|
|
|
{
|
2019-11-29 18:46:58 +00:00
|
|
|
llarp_time_t _lastPump = 0;
|
2018-12-10 16:26:46 +00:00
|
|
|
bool ready;
|
|
|
|
// transient iwp encryption key
|
|
|
|
fs::path transport_keyfile = "transport.key";
|
2018-05-20 17:45:47 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// nodes to connect to on startup
|
|
|
|
// DEPRECATED
|
|
|
|
// std::map< std::string, fs::path > connect;
|
2018-06-28 11:29:10 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// long term identity key
|
|
|
|
fs::path ident_keyfile = "identity.key";
|
2018-05-30 20:56:47 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
fs::path encryption_keyfile = "encryption.key";
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// path to write our self signed rc to
|
|
|
|
fs::path our_rc_file = "rc.signed";
|
2018-06-01 14:08:54 +00:00
|
|
|
|
2019-04-16 13:20:48 +00:00
|
|
|
// use file based logging?
|
|
|
|
bool m_UseFileLogging = false;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// our router contact
|
2019-02-11 19:45:42 +00:00
|
|
|
RouterContact _rc;
|
2018-09-13 12:04:36 +00:00
|
|
|
|
2019-01-21 17:06:31 +00:00
|
|
|
/// are we using the lokid service node seed ?
|
|
|
|
bool usingSNSeed = false;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// should we obey the service node whitelist?
|
|
|
|
bool whitelistRouters = false;
|
2018-09-15 11:37:46 +00:00
|
|
|
|
2019-05-22 16:20:50 +00:00
|
|
|
std::shared_ptr< Logic >
|
2019-01-29 02:16:31 +00:00
|
|
|
logic() const override
|
|
|
|
{
|
|
|
|
return _logic;
|
|
|
|
}
|
|
|
|
|
|
|
|
llarp_dht_context *
|
|
|
|
dht() const override
|
|
|
|
{
|
|
|
|
return _dht;
|
|
|
|
}
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
|
|
|
ExtractStatus() const override;
|
2019-02-08 19:43:25 +00:00
|
|
|
|
2019-01-29 02:16:31 +00:00
|
|
|
llarp_nodedb *
|
|
|
|
nodedb() const override
|
|
|
|
{
|
|
|
|
return _nodedb;
|
|
|
|
}
|
|
|
|
|
|
|
|
const path::PathContext &
|
|
|
|
pathContext() const override
|
|
|
|
{
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
path::PathContext &
|
|
|
|
pathContext() override
|
|
|
|
{
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
const RouterContact &
|
2019-01-29 02:16:31 +00:00
|
|
|
rc() const override
|
2018-12-10 16:26:46 +00:00
|
|
|
{
|
|
|
|
return _rc;
|
|
|
|
}
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2019-02-15 22:19:19 +00:00
|
|
|
void
|
2019-02-18 19:44:41 +00:00
|
|
|
SetRouterWhitelist(const std::vector< RouterID > &routers) override;
|
2019-02-15 22:19:19 +00:00
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
exit::Context &
|
|
|
|
exitContext() override
|
|
|
|
{
|
|
|
|
return _exitContext;
|
|
|
|
}
|
|
|
|
|
2019-12-06 18:21:14 +00:00
|
|
|
std::shared_ptr< KeyManager >
|
2019-12-10 14:14:16 +00:00
|
|
|
keyManager() const override
|
2019-12-06 18:21:14 +00:00
|
|
|
{
|
|
|
|
return m_keyManager;
|
|
|
|
}
|
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
const SecretKey &
|
|
|
|
identity() const override
|
|
|
|
{
|
|
|
|
return _identity;
|
|
|
|
}
|
|
|
|
|
|
|
|
const SecretKey &
|
|
|
|
encryption() const override
|
|
|
|
{
|
|
|
|
return _encryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
Profiling &
|
|
|
|
routerProfiling() override
|
|
|
|
{
|
|
|
|
return _routerProfiling;
|
|
|
|
}
|
|
|
|
|
2019-04-08 12:01:52 +00:00
|
|
|
llarp_ev_loop_ptr
|
2019-02-11 19:45:42 +00:00
|
|
|
netloop() const override
|
|
|
|
{
|
|
|
|
return _netloop;
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:47:24 +00:00
|
|
|
std::shared_ptr< llarp::thread::ThreadPool >
|
2019-02-11 19:45:42 +00:00
|
|
|
threadpool() override
|
|
|
|
{
|
2019-07-09 13:47:24 +00:00
|
|
|
return cryptoworker;
|
2019-02-11 19:45:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 13:47:24 +00:00
|
|
|
std::shared_ptr< llarp::thread::ThreadPool >
|
2019-02-11 19:45:42 +00:00
|
|
|
diskworker() override
|
|
|
|
{
|
2019-07-09 13:47:24 +00:00
|
|
|
return disk;
|
2019-02-11 19:45:42 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// our ipv4 public setting
|
|
|
|
bool publicOverride = false;
|
|
|
|
struct sockaddr_in ip4addr;
|
2019-02-11 19:45:42 +00:00
|
|
|
AddressInfo addrInfo;
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2019-08-07 16:33:29 +00:00
|
|
|
LinkFactory::LinkType _defaultLinkType;
|
|
|
|
|
2019-04-08 12:01:52 +00:00
|
|
|
llarp_ev_loop_ptr _netloop;
|
2019-07-09 13:47:24 +00:00
|
|
|
std::shared_ptr< llarp::thread::ThreadPool > cryptoworker;
|
2019-05-22 16:20:50 +00:00
|
|
|
std::shared_ptr< Logic > _logic;
|
2019-01-29 02:16:31 +00:00
|
|
|
path::PathContext paths;
|
2019-02-11 19:45:42 +00:00
|
|
|
exit::Context _exitContext;
|
|
|
|
SecretKey _identity;
|
|
|
|
SecretKey _encryption;
|
2019-07-09 13:47:24 +00:00
|
|
|
std::shared_ptr< thread::ThreadPool > disk;
|
2019-01-29 02:16:31 +00:00
|
|
|
llarp_dht_context *_dht = nullptr;
|
|
|
|
llarp_nodedb *_nodedb;
|
2019-04-22 12:25:25 +00:00
|
|
|
llarp_time_t _startedAt;
|
|
|
|
|
|
|
|
llarp_time_t
|
|
|
|
Uptime() const override;
|
2018-05-25 17:52:10 +00:00
|
|
|
|
2018-12-17 20:46:08 +00:00
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
Sign(Signature &sig, const llarp_buffer_t &buf) const override;
|
2018-12-17 20:46:08 +00:00
|
|
|
|
2019-02-11 18:40:20 +00:00
|
|
|
uint16_t m_OutboundPort = 0;
|
2019-03-31 15:09:59 +00:00
|
|
|
/// how often do we resign our RC? milliseconds.
|
|
|
|
// TODO: make configurable
|
|
|
|
llarp_time_t rcRegenInterval = 60 * 60 * 1000;
|
2018-11-28 14:58:38 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// should we be sending padded messages every interval?
|
|
|
|
bool sendPadding = false;
|
2018-11-28 14:58:38 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
uint32_t ticker_job_id = 0;
|
2018-11-14 19:34:17 +00:00
|
|
|
|
2019-06-19 20:48:25 +00:00
|
|
|
LinkMessageParser inbound_link_msg_parser;
|
2019-02-11 19:45:42 +00:00
|
|
|
routing::InboundMessageParser inbound_routing_msg_parser;
|
2018-10-03 11:01:42 +00:00
|
|
|
|
2019-02-22 16:21:05 +00:00
|
|
|
service::Context _hiddenServiceContext;
|
|
|
|
|
|
|
|
service::Context &
|
|
|
|
hiddenServiceContext() override
|
|
|
|
{
|
|
|
|
return _hiddenServiceContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
const service::Context &
|
|
|
|
hiddenServiceContext() const override
|
|
|
|
{
|
|
|
|
return _hiddenServiceContext;
|
|
|
|
}
|
2018-10-09 12:06:30 +00:00
|
|
|
|
2019-12-07 19:58:19 +00:00
|
|
|
llarp_time_t _lastTick = 0;
|
|
|
|
|
|
|
|
bool
|
|
|
|
LooksAlive() const override
|
|
|
|
{
|
|
|
|
const llarp_time_t now = Now();
|
|
|
|
return now <= _lastTick || (now - _lastTick) <= llarp_time_t{30000};
|
|
|
|
}
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
using NetConfig_t = std::unordered_multimap< std::string, std::string >;
|
2018-11-02 14:58:12 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// default network config for default network interface
|
|
|
|
NetConfig_t netConfig;
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// bootstrap RCs
|
2019-12-06 17:32:46 +00:00
|
|
|
BootstrapList bootstrapRCList;
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
|
|
|
ExitEnabled() const
|
|
|
|
{
|
|
|
|
// TODO: use equal_range ?
|
|
|
|
auto itr = netConfig.find("exit");
|
|
|
|
if(itr == netConfig.end())
|
|
|
|
return false;
|
2019-02-11 19:45:42 +00:00
|
|
|
return IsTrueValue(itr->second.c_str());
|
2018-12-10 16:26:46 +00:00
|
|
|
}
|
2018-06-01 14:08:54 +00:00
|
|
|
|
2019-04-30 16:07:17 +00:00
|
|
|
void
|
|
|
|
PumpLL() override;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
|
|
|
CreateDefaultHiddenService();
|
2018-05-30 20:56:47 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
const std::string DefaultRPCBindAddr = "127.0.0.1:1190";
|
2019-07-02 21:28:28 +00:00
|
|
|
bool enableRPCServer = false;
|
2019-02-11 19:45:42 +00:00
|
|
|
std::unique_ptr< rpc::Server > rpcServer;
|
2018-12-10 16:26:46 +00:00
|
|
|
std::string rpcBindAddr = DefaultRPCBindAddr;
|
2020-01-30 17:23:16 +00:00
|
|
|
const llarp_time_t _randomStartDelay;
|
2018-06-14 17:35:12 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// lokid caller
|
2019-02-11 19:45:42 +00:00
|
|
|
std::unique_ptr< rpc::Caller > rpcCaller;
|
2019-07-02 21:28:28 +00:00
|
|
|
std::string lokidRPCAddr = "127.0.0.1:22023";
|
|
|
|
std::string lokidRPCUser;
|
|
|
|
std::string lokidRPCPassword;
|
2018-11-22 15:02:51 +00:00
|
|
|
|
2019-02-11 19:45:42 +00:00
|
|
|
Profiling _routerProfiling;
|
2018-12-10 16:26:46 +00:00
|
|
|
std::string routerProfilesFile = "profiles.dat";
|
2018-11-20 15:22:59 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
OutboundMessageHandler _outboundMessageHandler;
|
|
|
|
OutboundSessionMaker _outboundSessionMaker;
|
|
|
|
LinkManager _linkManager;
|
|
|
|
RCLookupHandler _rcLookupHandler;
|
2020-01-30 17:23:16 +00:00
|
|
|
RCGossiper _rcGossiper;
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2020-01-18 20:46:22 +00:00
|
|
|
using Clock_t = std::chrono::steady_clock;
|
|
|
|
using TimePoint_t = Clock_t::time_point;
|
|
|
|
|
|
|
|
TimePoint_t m_NextExploreAt;
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
IOutboundMessageHandler &
|
|
|
|
outboundMessageHandler() override
|
|
|
|
{
|
|
|
|
return _outboundMessageHandler;
|
|
|
|
}
|
2018-06-07 16:22:49 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
IOutboundSessionMaker &
|
|
|
|
outboundSessionMaker() override
|
|
|
|
{
|
|
|
|
return _outboundSessionMaker;
|
|
|
|
}
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
ILinkManager &
|
|
|
|
linkManager() override
|
|
|
|
{
|
|
|
|
return _linkManager;
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
I_RCLookupHandler &
|
|
|
|
rcLookupHandler() override
|
|
|
|
{
|
|
|
|
return _rcLookupHandler;
|
|
|
|
}
|
2018-11-21 14:10:02 +00:00
|
|
|
|
2020-01-30 17:23:16 +00:00
|
|
|
void
|
|
|
|
GossipRCIfNeeded(const RouterContact rc) override;
|
|
|
|
|
2019-07-09 13:47:24 +00:00
|
|
|
Router(std::shared_ptr< llarp::thread::ThreadPool > worker,
|
|
|
|
llarp_ev_loop_ptr __netloop, std::shared_ptr< Logic > logic);
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
~Router() override;
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
HandleRecvLinkMessageBuffer(ILinkSession *from,
|
|
|
|
const llarp_buffer_t &msg) override;
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-01-05 13:45:05 +00:00
|
|
|
InitOutboundLinks();
|
2018-08-14 21:17:18 +00:00
|
|
|
|
2018-12-13 00:03:19 +00:00
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
GetRandomGoodRouter(RouterID &r) override;
|
2018-12-13 00:03:19 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// initialize us as a service node
|
|
|
|
/// return true on success
|
|
|
|
bool
|
|
|
|
InitServiceNode();
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2019-10-09 13:08:38 +00:00
|
|
|
bool
|
|
|
|
IsRunning() const override;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// return true if we are running in service node mode
|
|
|
|
bool
|
2020-01-06 23:13:23 +00:00
|
|
|
IsServiceNode() const override;
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
|
|
|
Close();
|
2018-11-28 14:58:38 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-07-02 21:28:28 +00:00
|
|
|
LoadHiddenServiceConfig(string_view fname);
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
AddHiddenService(const service::Config::section_t &config);
|
2018-09-13 16:41:53 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-06-26 21:39:29 +00:00
|
|
|
Configure(Config *conf, llarp_nodedb *nodedb = nullptr) override;
|
2018-04-05 14:23:14 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-10-04 09:10:55 +00:00
|
|
|
StartJsonRpc() override;
|
|
|
|
|
|
|
|
bool
|
|
|
|
Run() override;
|
2018-09-17 11:47:34 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// stop running the router logic gracefully
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
2019-02-22 16:21:05 +00:00
|
|
|
Stop() override;
|
2018-06-01 14:08:54 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// close all sessions and shutdown all links
|
|
|
|
void
|
|
|
|
StopLinks();
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
2019-02-11 19:45:42 +00:00
|
|
|
PersistSessionUntil(const RouterID &remote, llarp_time_t until) override;
|
2018-06-06 12:46:26 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
|
|
|
EnsureIdentity();
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
|
|
|
EnsureEncryptionKey();
|
2018-06-13 12:58:51 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-04-18 11:49:54 +00:00
|
|
|
ConnectionToRouterAllowed(const RouterID &router) const override;
|
2018-08-14 21:17:18 +00:00
|
|
|
|
2019-05-18 18:46:49 +00:00
|
|
|
void
|
|
|
|
HandleSaveRC() const;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
|
|
|
SaveRC();
|
2018-11-28 15:18:18 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
const byte_t *
|
2019-01-29 02:16:31 +00:00
|
|
|
pubkey() const override
|
2018-12-10 16:26:46 +00:00
|
|
|
{
|
2019-02-11 19:45:42 +00:00
|
|
|
return seckey_topublic(_identity);
|
2018-12-10 16:26:46 +00:00
|
|
|
}
|
2018-10-25 18:18:12 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
|
|
|
try_connect(fs::path rcfile);
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// inject configuration and reconfigure router
|
|
|
|
bool
|
2019-02-22 16:21:05 +00:00
|
|
|
Reconfigure(Config *conf) override;
|
2018-12-24 16:09:05 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
bool
|
|
|
|
TryConnectAsync(RouterContact rc, uint16_t tries) override;
|
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// validate new configuration against old one
|
|
|
|
/// return true on 100% valid
|
|
|
|
/// return false if not 100% valid
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-02-22 16:21:05 +00:00
|
|
|
ValidateConfig(Config *conf) const override;
|
2018-10-29 16:48:36 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// send to remote router or queue for sending
|
|
|
|
/// returns false on overflow
|
|
|
|
/// returns true on successful queue
|
|
|
|
/// NOT threadsafe
|
|
|
|
/// MUST be called in the logic thread
|
|
|
|
bool
|
2019-06-04 18:31:17 +00:00
|
|
|
SendToOrQueue(const RouterID &remote, const ILinkMessage *msg,
|
|
|
|
SendStatusHandler handler) override;
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
2019-04-08 12:01:52 +00:00
|
|
|
ForEachPeer(std::function< void(const ILinkSession *, bool) > visit,
|
|
|
|
bool randomize = false) const override;
|
2018-08-30 18:48:43 +00:00
|
|
|
|
2018-12-19 16:17:41 +00:00
|
|
|
void
|
2019-02-11 19:45:42 +00:00
|
|
|
ForEachPeer(std::function< void(ILinkSession *) > visit);
|
2018-12-19 16:17:41 +00:00
|
|
|
|
2019-04-08 12:01:52 +00:00
|
|
|
bool IsBootstrapNode(RouterID) const override;
|
|
|
|
|
2018-12-19 16:17:41 +00:00
|
|
|
/// check if newRc matches oldRC and update local rc for this remote contact
|
|
|
|
/// if valid
|
|
|
|
/// returns true on valid and updated
|
|
|
|
/// returns false otherwise
|
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
CheckRenegotiateValid(RouterContact newRc, RouterContact oldRC) override;
|
2018-12-19 16:17:41 +00:00
|
|
|
|
2018-12-17 20:46:08 +00:00
|
|
|
/// called by link when a remote session has no more sessions open
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
2019-02-11 19:45:42 +00:00
|
|
|
SessionClosed(RouterID remote) override;
|
2018-08-30 18:48:43 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// call internal router ticker
|
|
|
|
void
|
|
|
|
Tick();
|
2018-05-30 20:56:47 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
llarp_time_t
|
2019-01-29 02:16:31 +00:00
|
|
|
Now() const override
|
2018-12-10 16:26:46 +00:00
|
|
|
{
|
2019-11-05 17:10:14 +00:00
|
|
|
return llarp::time_now_ms();
|
2018-12-10 16:26:46 +00:00
|
|
|
}
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
/// schedule ticker to call i ms from now
|
|
|
|
void
|
|
|
|
ScheduleTicker(uint64_t i = 1000);
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2019-01-02 01:04:03 +00:00
|
|
|
/// parse a routing message in a buffer and handle it with a handler if
|
|
|
|
/// successful parsing return true on parse and handle success otherwise
|
|
|
|
/// return false
|
2018-12-27 14:32:37 +00:00
|
|
|
bool
|
2019-02-01 01:58:06 +00:00
|
|
|
ParseRoutingMessageBuffer(const llarp_buffer_t &buf,
|
2019-01-29 02:16:31 +00:00
|
|
|
routing::IMessageHandler *h,
|
2019-02-11 19:45:42 +00:00
|
|
|
const PathID_t &rxid) override;
|
2018-12-27 14:32:37 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
void
|
2019-02-20 12:09:18 +00:00
|
|
|
ConnectToRandomRouters(int N) override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
2019-05-09 15:36:39 +00:00
|
|
|
/// count the number of unique service nodes connected via pubkey
|
2018-12-10 16:26:46 +00:00
|
|
|
size_t
|
2019-02-11 19:45:42 +00:00
|
|
|
NumberOfConnectedRouters() const override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
2019-05-09 15:36:39 +00:00
|
|
|
/// count the number of unique clients connected by pubkey
|
|
|
|
size_t
|
|
|
|
NumberOfConnectedClients() const override;
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2019-02-11 19:45:42 +00:00
|
|
|
GetRandomConnectedRouter(RouterContact &result) const override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
|
|
|
HandleDHTLookupForExplore(
|
|
|
|
RouterID remote, const std::vector< RouterContact > &results) override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
|
|
|
void
|
2019-06-26 21:39:29 +00:00
|
|
|
LookupRouter(RouterID remote, RouterLookupHandler resultHandler) override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
|
|
|
bool
|
2019-05-27 19:01:09 +00:00
|
|
|
HasSessionTo(const RouterID &remote) const override;
|
|
|
|
|
2019-11-23 04:47:08 +00:00
|
|
|
void
|
|
|
|
handle_router_ticker();
|
|
|
|
|
|
|
|
void
|
|
|
|
AfterStopLinks();
|
|
|
|
|
|
|
|
void
|
|
|
|
AfterStopIssued();
|
2018-12-10 16:26:46 +00:00
|
|
|
|
|
|
|
private:
|
2018-12-24 16:09:05 +00:00
|
|
|
std::atomic< bool > _stopping;
|
|
|
|
std::atomic< bool > _running;
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
bool m_isServiceNode = false;
|
|
|
|
|
2019-07-15 16:56:09 +00:00
|
|
|
llarp_time_t m_LastStatsReport = 0;
|
|
|
|
|
2019-12-06 17:32:46 +00:00
|
|
|
std::shared_ptr< llarp::KeyManager > m_keyManager;
|
2019-11-26 19:42:41 +00:00
|
|
|
|
2019-07-15 16:56:09 +00:00
|
|
|
bool
|
|
|
|
ShouldReportStats(llarp_time_t now) const;
|
|
|
|
|
|
|
|
void
|
|
|
|
ReportStats();
|
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
bool
|
2019-01-29 12:56:02 +00:00
|
|
|
UpdateOurRC(bool rotateKeys = false);
|
2018-12-24 16:09:05 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
template < typename Config >
|
|
|
|
void
|
|
|
|
mergeHiddenServiceConfig(const Config &in, Config &out)
|
|
|
|
{
|
|
|
|
for(const auto &item : netConfig)
|
|
|
|
out.push_back({item.first, item.second});
|
|
|
|
for(const auto &item : in)
|
|
|
|
out.push_back({item.first, item.second});
|
|
|
|
}
|
2019-02-11 14:43:48 +00:00
|
|
|
|
2019-07-12 17:21:29 +00:00
|
|
|
bool
|
2019-07-12 17:23:38 +00:00
|
|
|
FromConfig(Config *conf);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
MessageSent(const RouterID &remote, SendStatus status);
|
2018-12-10 16:26:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llarp
|
2018-02-01 17:06:49 +00:00
|
|
|
|
|
|
|
#endif
|