2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <llarp/hook/ihook.hpp>
|
|
|
|
#include <llarp/router_id.hpp>
|
|
|
|
#include "address.hpp"
|
|
|
|
#include "pendingbuffer.hpp"
|
|
|
|
#include "router_lookup_job.hpp"
|
|
|
|
#include "session.hpp"
|
|
|
|
#include "endpoint_types.hpp"
|
|
|
|
#include <llarp/util/compare_ptr.hpp>
|
|
|
|
#include <llarp/util/decaying_hashtable.hpp>
|
|
|
|
#include <llarp/util/status.hpp>
|
2021-03-19 14:09:06 +00:00
|
|
|
#include "lns_tracker.hpp"
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <queue>
|
|
|
|
#include <set>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
2021-03-20 18:30:18 +00:00
|
|
|
#include <oxenmq/variant.h>
|
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2019-07-15 09:15:51 +00:00
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
struct EndpointState
|
|
|
|
{
|
|
|
|
hooks::Backend_ptr m_OnUp;
|
|
|
|
hooks::Backend_ptr m_OnDown;
|
|
|
|
hooks::Backend_ptr m_OnReady;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<RouterID> m_SnodeBlacklist;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
AbstractRouter* m_Router;
|
|
|
|
std::string m_Keyfile;
|
|
|
|
std::string m_Name;
|
|
|
|
std::string m_NetNS;
|
2020-05-21 14:18:23 +00:00
|
|
|
bool m_ExitEnabled = false;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
PendingTraffic m_PendingTraffic;
|
|
|
|
|
|
|
|
Sessions m_RemoteSessions;
|
|
|
|
Sessions m_DeadSessions;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<ConvoTag> m_InboundConvos;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
SNodeSessions m_SNodeSessions;
|
|
|
|
|
2021-03-09 18:39:40 +00:00
|
|
|
std::unordered_multimap<Address, PathEnsureHook> m_PendingServiceLookups;
|
|
|
|
std::unordered_map<Address, llarp_time_t> m_LastServiceLookupTimes;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
2021-03-09 18:39:40 +00:00
|
|
|
std::unordered_map<RouterID, uint32_t> m_ServiceLookupFails;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
PendingRouters m_PendingRouters;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp_time_t m_LastPublish = 0s;
|
2020-02-24 19:40:45 +00:00
|
|
|
llarp_time_t m_LastPublishAttempt = 0s;
|
2019-07-15 09:15:51 +00:00
|
|
|
/// our introset
|
|
|
|
IntroSet m_IntroSet;
|
|
|
|
/// pending remote service lookups by id
|
|
|
|
PendingLookups m_PendingLookups;
|
|
|
|
/// on initialize functions
|
2020-04-07 18:38:56 +00:00
|
|
|
std::list<std::function<bool(void)>> m_OnInit;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
/// conversations
|
|
|
|
ConvoMap m_Sessions;
|
|
|
|
|
2020-02-18 16:00:45 +00:00
|
|
|
OutboundSessions_t m_OutboundSessions;
|
|
|
|
|
2021-03-20 19:26:08 +00:00
|
|
|
util::DecayingHashTable<std::string, std::variant<Address, RouterID>, std::hash<std::string>>
|
2021-03-20 15:47:36 +00:00
|
|
|
nameCache;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
2021-03-19 14:09:06 +00:00
|
|
|
LNSLookupTracker lnsTracker;
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-30 22:11:05 +00:00
|
|
|
Configure(const NetworkConfig& conf);
|
2019-07-15 09:15:51 +00:00
|
|
|
|
|
|
|
util::StatusObject
|
|
|
|
ExtractStatus(util::StatusObject& obj) const;
|
|
|
|
};
|
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|