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>
|
2020-04-27 15:24:05 +00:00
|
|
|
#include <config/config.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/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>
|
2020-05-26 17:03:21 +00:00
|
|
|
#include <peerstats/peer_db.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>
|
2020-05-18 16:06:52 +00:00
|
|
|
#include <rpc/lokid_rpc_client.hpp>
|
2020-05-21 14:09:45 +00:00
|
|
|
#include <rpc/rpc_server.hpp>
|
2019-01-11 00:12:43 +00:00
|
|
|
#include <service/context.hpp>
|
2020-04-27 15:24:05 +00:00
|
|
|
#include <stdexcept>
|
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>
|
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
|
|
|
|
2020-06-11 18:26:02 +00:00
|
|
|
#include <lokimq/address.h>
|
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
namespace llarp
|
2018-05-22 15:54:19 +00:00
|
|
|
{
|
2020-06-29 15:44:13 +00:00
|
|
|
struct Router : public AbstractRouter
|
2018-09-09 11:23:21 +00:00
|
|
|
{
|
2020-02-24 19:40:45 +00:00
|
|
|
llarp_time_t _lastPump = 0s;
|
2018-12-10 16:26:46 +00:00
|
|
|
bool ready;
|
|
|
|
// transient iwp encryption key
|
2020-04-02 15:48:20 +00:00
|
|
|
fs::path transport_keyfile;
|
2018-06-28 11:29:10 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// long term identity key
|
2020-04-02 15:48:20 +00:00
|
|
|
fs::path ident_keyfile;
|
2018-05-30 20:56:47 +00:00
|
|
|
|
2020-04-02 15:48:20 +00:00
|
|
|
fs::path encryption_keyfile;
|
2018-02-01 17:06:49 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
// path to write our self signed rc to
|
2020-04-02 15:48:20 +00:00
|
|
|
fs::path our_rc_file;
|
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
|
|
|
|
2020-05-19 18:53:03 +00:00
|
|
|
LMQ_ptr m_lmq;
|
|
|
|
|
|
|
|
LMQ_ptr
|
|
|
|
lmq() const override
|
|
|
|
{
|
|
|
|
return m_lmq;
|
|
|
|
}
|
|
|
|
|
2020-05-20 11:41:42 +00:00
|
|
|
std::shared_ptr<rpc::LokidRpcClient>
|
|
|
|
RpcClient() const override
|
|
|
|
{
|
|
|
|
return m_lokidRpcClient;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::shared_ptr<Logic>
|
2019-01-29 02:16:31 +00:00
|
|
|
logic() const override
|
|
|
|
{
|
|
|
|
return _logic;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp_dht_context*
|
2019-01-29 02:16:31 +00:00
|
|
|
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
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp_nodedb*
|
2019-01-29 02:16:31 +00:00
|
|
|
nodedb() const override
|
|
|
|
{
|
|
|
|
return _nodedb;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
const path::PathContext&
|
2019-01-29 02:16:31 +00:00
|
|
|
pathContext() const override
|
|
|
|
{
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
path::PathContext&
|
2019-01-29 02:16:31 +00:00
|
|
|
pathContext() override
|
|
|
|
{
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +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
|
2020-05-19 18:53:03 +00:00
|
|
|
SetRouterWhitelist(const std::vector<RouterID> routers) override;
|
2019-02-15 22:19:19 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
exit::Context&
|
2019-02-11 19:45:42 +00:00
|
|
|
exitContext() override
|
|
|
|
{
|
|
|
|
return _exitContext;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +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;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
const SecretKey&
|
2019-02-11 19:45:42 +00:00
|
|
|
identity() const override
|
|
|
|
{
|
|
|
|
return _identity;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
const SecretKey&
|
2019-02-11 19:45:42 +00:00
|
|
|
encryption() const override
|
|
|
|
{
|
|
|
|
return _encryption;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
Profiling&
|
2019-02-11 19:45:42 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-06-11 11:44:02 +00:00
|
|
|
void
|
|
|
|
QueueWork(std::function<void(void)> func) override
|
2019-02-11 19:45:42 +00:00
|
|
|
{
|
2020-06-11 11:44:02 +00:00
|
|
|
m_lmq->job(std::move(func));
|
2019-02-11 19:45:42 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 11:44:02 +00:00
|
|
|
void
|
|
|
|
QueueDiskIO(std::function<void(void)> func) override
|
2019-02-11 19:45:42 +00:00
|
|
|
{
|
2020-06-11 11:44:02 +00:00
|
|
|
m_lmq->job(std::move(func), m_DiskThread);
|
2019-02-11 19:45:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-06 20:38:44 +00:00
|
|
|
IpAddress _ourAddress;
|
2018-06-03 13:04:51 +00:00
|
|
|
|
2019-04-08 12:01:52 +00:00
|
|
|
llarp_ev_loop_ptr _netloop;
|
2020-04-07 18:38:56 +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;
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp_dht_context* _dht = nullptr;
|
|
|
|
llarp_nodedb* _nodedb;
|
2019-04-22 12:25:25 +00:00
|
|
|
llarp_time_t _startedAt;
|
2020-06-11 11:44:02 +00:00
|
|
|
const lokimq::TaggedThreadID m_DiskThread;
|
2019-04-22 12:25:25 +00:00
|
|
|
|
|
|
|
llarp_time_t
|
|
|
|
Uptime() const override;
|
2018-05-25 17:52:10 +00:00
|
|
|
|
2018-12-17 20:46:08 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +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
|
2020-02-24 19:40:45 +00:00
|
|
|
llarp_time_t rcRegenInterval = 1h;
|
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;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
service::Context&
|
2019-02-22 16:21:05 +00:00
|
|
|
hiddenServiceContext() override
|
|
|
|
{
|
|
|
|
return _hiddenServiceContext;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
const service::Context&
|
2019-02-22 16:21:05 +00:00
|
|
|
hiddenServiceContext() const override
|
|
|
|
{
|
|
|
|
return _hiddenServiceContext;
|
|
|
|
}
|
2018-10-09 12:06:30 +00:00
|
|
|
|
2020-02-24 19:40:45 +00:00
|
|
|
llarp_time_t _lastTick = 0s;
|
2019-12-07 19:58:19 +00:00
|
|
|
|
|
|
|
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
|
|
|
/// 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
|
|
|
|
{
|
2020-05-06 15:37:15 +00:00
|
|
|
return false; // FIXME - have to fix the FIXME because FIXME
|
2020-04-27 15:24:05 +00:00
|
|
|
throw std::runtime_error("FIXME: this needs to be derived from config");
|
|
|
|
/*
|
2018-12-10 16:26:46 +00:00
|
|
|
// TODO: use equal_range ?
|
|
|
|
auto itr = netConfig.find("exit");
|
2020-04-07 18:38:56 +00:00
|
|
|
if (itr == netConfig.end())
|
2018-12-10 16:26:46 +00:00
|
|
|
return false;
|
2019-02-11 19:45:42 +00:00
|
|
|
return IsTrueValue(itr->second.c_str());
|
2020-04-27 15:24:05 +00:00
|
|
|
*/
|
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;
|
|
|
|
|
2020-04-27 15:24:05 +00:00
|
|
|
NetworkConfig networkConfig;
|
|
|
|
DnsConfig dnsConfig;
|
2018-05-30 20:56:47 +00:00
|
|
|
|
2020-06-11 18:26:02 +00:00
|
|
|
const lokimq::address DefaultRPCBindAddr = lokimq::address::tcp("127.0.0.1", 1190);
|
2020-04-07 18:38:56 +00:00
|
|
|
bool enableRPCServer = false;
|
2020-06-11 18:26:02 +00:00
|
|
|
lokimq::address rpcBindAddr = DefaultRPCBindAddr;
|
2020-05-21 14:09:45 +00:00
|
|
|
std::unique_ptr<rpc::RpcServer> m_RPCServer;
|
|
|
|
|
2020-02-25 17:05:13 +00:00
|
|
|
const llarp_time_t _randomStartDelay;
|
2018-06-14 17:35:12 +00:00
|
|
|
|
2020-05-20 11:41:42 +00:00
|
|
|
std::shared_ptr<rpc::LokidRpcClient> m_lokidRpcClient;
|
2020-05-19 18:53:03 +00:00
|
|
|
|
2020-06-11 18:26:02 +00:00
|
|
|
lokimq::address lokidRPCAddr;
|
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-04-07 18:38:56 +00:00
|
|
|
using Clock_t = std::chrono::steady_clock;
|
2020-01-18 20:46:22 +00:00
|
|
|
using TimePoint_t = Clock_t::time_point;
|
|
|
|
|
|
|
|
TimePoint_t m_NextExploreAt;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
IOutboundMessageHandler&
|
2019-06-26 21:39:29 +00:00
|
|
|
outboundMessageHandler() override
|
|
|
|
{
|
|
|
|
return _outboundMessageHandler;
|
|
|
|
}
|
2018-06-07 16:22:49 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
IOutboundSessionMaker&
|
2019-06-26 21:39:29 +00:00
|
|
|
outboundSessionMaker() override
|
|
|
|
{
|
|
|
|
return _outboundSessionMaker;
|
|
|
|
}
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
ILinkManager&
|
2019-06-26 21:39:29 +00:00
|
|
|
linkManager() override
|
|
|
|
{
|
|
|
|
return _linkManager;
|
|
|
|
}
|
2018-06-10 14:05:48 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
I_RCLookupHandler&
|
2019-06-26 21:39:29 +00:00
|
|
|
rcLookupHandler() override
|
|
|
|
{
|
|
|
|
return _rcLookupHandler;
|
|
|
|
}
|
2018-11-21 14:10:02 +00:00
|
|
|
|
2020-05-27 01:57:27 +00:00
|
|
|
std::shared_ptr<PeerDb>
|
|
|
|
peerDb() override
|
|
|
|
{
|
|
|
|
return m_peerDb;
|
|
|
|
}
|
|
|
|
|
2020-01-30 17:23:16 +00:00
|
|
|
void
|
|
|
|
GossipRCIfNeeded(const RouterContact rc) override;
|
|
|
|
|
2020-06-11 11:44:02 +00:00
|
|
|
explicit Router(llarp_ev_loop_ptr __netloop, std::shared_ptr<Logic> logic);
|
2018-05-22 15:54:19 +00:00
|
|
|
|
2020-06-29 15:44:13 +00:00
|
|
|
virtual ~Router() override;
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
2020-06-04 16:57:29 +00:00
|
|
|
Configure(Config* conf, bool isRouter, llarp_nodedb* nodedb = nullptr) override;
|
2018-04-05 14:23:14 +00:00
|
|
|
|
2018-12-10 16:26:46 +00:00
|
|
|
bool
|
2020-05-20 11:41:42 +00:00
|
|
|
StartRpcServer() override;
|
2019-10-04 09:10:55 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2020-06-16 11:28:20 +00:00
|
|
|
/// non graceful stop router
|
|
|
|
void
|
|
|
|
Die() override;
|
|
|
|
|
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
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
|
|
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
2020-04-07 18:38:56 +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
|
|
|
|
2020-06-08 20:03:03 +00:00
|
|
|
/// called by link when an unestablished connection times out
|
|
|
|
void
|
|
|
|
ConnectionTimedOut(ILinkSession* session);
|
|
|
|
|
|
|
|
/// called by link when session is fully established
|
|
|
|
bool
|
2020-06-11 19:02:34 +00:00
|
|
|
ConnectionEstablished(ILinkSession* session, bool inbound);
|
2020-06-08 20:03:03 +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
|
2020-02-24 19:40:45 +00:00
|
|
|
ScheduleTicker(llarp_time_t i = 1s);
|
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
|
2020-04-07 18:38:56 +00:00
|
|
|
ParseRoutingMessageBuffer(
|
|
|
|
const llarp_buffer_t& buf, routing::IMessageHandler* h, 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
|
2020-04-07 18:38:56 +00:00
|
|
|
GetRandomConnectedRouter(RouterContact& result) const override;
|
2018-12-10 16:26:46 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
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
|
2020-04-07 18:38:56 +00:00
|
|
|
HasSessionTo(const RouterID& remote) const override;
|
2019-05-27 19:01:09 +00:00
|
|
|
|
2020-02-20 21:37:39 +00:00
|
|
|
std::string
|
2020-04-10 17:26:50 +00:00
|
|
|
ShortName() const override;
|
2020-02-20 21:37:39 +00:00
|
|
|
|
|
|
|
uint32_t
|
2020-04-10 17:26:50 +00:00
|
|
|
NextPathBuildNumber() override;
|
2020-02-20 21:37:39 +00:00
|
|
|
|
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:
|
2020-04-07 18:38:56 +00:00
|
|
|
std::atomic<bool> _stopping;
|
|
|
|
std::atomic<bool> _running;
|
2018-12-24 16:09:05 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
bool m_isServiceNode = false;
|
|
|
|
|
2020-02-24 19:40:45 +00:00
|
|
|
llarp_time_t m_LastStatsReport = 0s;
|
2019-07-15 16:56:09 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::shared_ptr<llarp::KeyManager> m_keyManager;
|
2020-05-27 01:57:27 +00:00
|
|
|
std::shared_ptr<PeerDb> m_peerDb;
|
2019-11-26 19:42:41 +00:00
|
|
|
|
2020-02-20 21:37:39 +00:00
|
|
|
uint32_t path_build_count = 0;
|
|
|
|
|
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
|
|
|
|
2019-07-12 17:21:29 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
FromConfig(Config* conf);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
MessageSent(const RouterID& remote, SendStatus status);
|
2020-06-25 17:46:31 +00:00
|
|
|
|
|
|
|
protected:
|
2020-07-01 19:46:52 +00:00
|
|
|
virtual void
|
|
|
|
HandleRouterEvent(tooling::RouterEventPtr event) const override;
|
|
|
|
|
2020-06-25 17:46:31 +00:00
|
|
|
virtual bool
|
|
|
|
disableGossipingRC_TestingOnly()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
2018-12-10 16:26:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llarp
|
2018-02-01 17:06:49 +00:00
|
|
|
|
|
|
|
#endif
|