2019-06-26 21:39:29 +00:00
|
|
|
#ifndef LLARP_RC_LOOKUP_HANDLER_HPP
|
|
|
|
#define LLARP_RC_LOOKUP_HANDLER_HPP
|
|
|
|
|
2020-01-17 21:54:34 +00:00
|
|
|
#include <chrono>
|
2019-06-26 21:39:29 +00:00
|
|
|
#include <router/i_rc_lookup_handler.hpp>
|
|
|
|
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <util/thread/threading.hpp>
|
|
|
|
#include <util/thread/thread_pool.hpp>
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <set>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
struct llarp_nodedb;
|
|
|
|
struct llarp_dht_context;
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
struct Context;
|
|
|
|
|
|
|
|
} // namespace service
|
|
|
|
|
|
|
|
struct ILinkManager;
|
|
|
|
|
|
|
|
struct RCLookupHandler final : public I_RCLookupHandler
|
|
|
|
{
|
|
|
|
public:
|
2020-04-07 18:38:56 +00:00
|
|
|
using CallbacksQueue = std::list<RCRequestCallback>;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
~RCLookupHandler() override = default;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
AddValidRouter(const RouterID& router) override EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
RemoveValidRouter(const RouterID& router) override EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
SetRouterWhitelist(const std::vector<RouterID>& routers) override EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2020-01-16 04:12:38 +00:00
|
|
|
bool
|
|
|
|
HaveReceivedWhitelist();
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
GetRC(const RouterID& router, RCRequestCallback callback, bool forceLookup = false) override
|
|
|
|
EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
RemoteIsAllowed(const RouterID& remote) const override EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
CheckRC(const RouterContact& rc) const override;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
GetRandomWhitelistRouter(RouterID& router) const override EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
CheckRenegotiateValid(RouterContact newrc, RouterContact oldrc) override;
|
|
|
|
|
|
|
|
void
|
|
|
|
PeriodicUpdate(llarp_time_t now) override;
|
|
|
|
|
|
|
|
void
|
|
|
|
ExploreNetwork() override;
|
|
|
|
|
2019-09-03 15:56:56 +00:00
|
|
|
size_t
|
|
|
|
NumberOfStrictConnectRouters() const override;
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
Init(
|
|
|
|
llarp_dht_context* dht,
|
|
|
|
llarp_nodedb* nodedb,
|
|
|
|
std::shared_ptr<llarp::thread::ThreadPool> threadpool,
|
|
|
|
ILinkManager* linkManager,
|
|
|
|
service::Context* hiddenServiceContext,
|
|
|
|
const std::set<RouterID>& strictConnectPubkeys,
|
|
|
|
const std::set<RouterContact>& bootstrapRCList,
|
|
|
|
bool useWhitelist_arg,
|
|
|
|
bool isServiceNode_arg);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
HandleDHTLookupResult(RouterID remote, const std::vector<RouterContact>& results);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
HavePendingLookup(RouterID remote) const EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
RemoteInBootstrap(const RouterID& remote) const;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
FinalizeRequest(const RouterID& router, const RouterContact* const rc, RCRequestResult result)
|
|
|
|
EXCLUDES(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
mutable util::Mutex _mutex; // protects pendingCallbacks, whitelistRouters
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp_dht_context* _dht = nullptr;
|
|
|
|
llarp_nodedb* _nodedb = nullptr;
|
|
|
|
std::shared_ptr<llarp::thread::ThreadPool> _threadpool = nullptr;
|
|
|
|
service::Context* _hiddenServiceContext = nullptr;
|
|
|
|
ILinkManager* _linkManager = nullptr;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
/// explicit whitelist of routers we will connect to directly (not for
|
|
|
|
/// service nodes)
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<RouterID> _strictConnectPubkeys;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<RouterContact> _bootstrapRCList;
|
|
|
|
std::set<RouterID> _bootstrapRouterIDList;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::unordered_map<RouterID, CallbacksQueue, RouterID::Hash> pendingCallbacks
|
|
|
|
GUARDED_BY(_mutex);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
bool useWhitelist = false;
|
2019-06-26 21:39:29 +00:00
|
|
|
bool isServiceNode = false;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<RouterID> whitelistRouters GUARDED_BY(_mutex);
|
2020-01-17 21:54:34 +00:00
|
|
|
|
|
|
|
using TimePoint = std::chrono::steady_clock::time_point;
|
2020-04-07 18:38:56 +00:00
|
|
|
std::unordered_map<RouterID, TimePoint, RouterID::Hash> _routerLookupTimes;
|
2019-06-26 21:39:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif // LLARP_RC_LOOKUP_HANDLER_HPP
|