1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/path/pathbuilder.cpp

527 lines
14 KiB
C++
Raw Normal View History

#include "pathbuilder.hpp"
#include "path_context.hpp"
#include <llarp/crypto/crypto.hpp>
#include <llarp/messages/relay_commit.hpp>
#include <llarp/nodedb.hpp>
#include <llarp/util/logging.hpp>
#include <llarp/profiling.hpp>
#include <llarp/router/abstractrouter.hpp>
#include <llarp/router/i_rc_lookup_handler.hpp>
#include <llarp/util/buffer.hpp>
#include <llarp/tooling/path_event.hpp>
#include <llarp/link/link_manager.hpp>
2018-06-19 00:03:50 +02:00
2018-10-09 14:06:30 +02:00
#include <functional>
2018-06-19 00:03:50 +02:00
namespace llarp
{
namespace
{
auto log_path = log::Cat("path");
}
struct AsyncPathKeyExchangeContext : std::enable_shared_from_this<AsyncPathKeyExchangeContext>
2018-06-21 14:55:02 +02:00
{
using WorkFunc_t = std::function<void(void)>;
using WorkerFunc_t = std::function<void(WorkFunc_t)>;
using Path_t = path::Path_ptr;
using PathSet_t = path::PathSet_ptr;
PathSet_t pathset = nullptr;
Path_t path = nullptr;
using Handler = std::function<void(std::shared_ptr<AsyncPathKeyExchangeContext>)>;
2018-10-09 14:06:30 +02:00
Handler result;
size_t idx = 0;
2019-07-09 15:47:24 +02:00
AbstractRouter* router = nullptr;
WorkerFunc_t work;
EventLoop_ptr loop;
LR_CommitMessage LRCM;
2018-06-21 14:55:02 +02:00
2019-06-20 18:22:29 +02:00
void
GenerateNextKey()
2018-06-21 14:55:02 +02:00
{
2018-06-21 16:20:14 +02:00
// current hop
auto& hop = path->hops[idx];
2019-06-20 18:22:29 +02:00
auto& frame = LRCM.frames[idx];
auto crypto = CryptoManager::instance();
2018-06-21 14:55:02 +02:00
// generate key
crypto->encryption_keygen(hop.commkey);
2018-06-21 14:55:02 +02:00
hop.nonce.Randomize();
// do key exchange
if (!crypto->dh_client(hop.shared, hop.rc.enckey, hop.commkey, hop.nonce))
2018-06-21 14:55:02 +02:00
{
LogError(pathset->Name(), " Failed to generate shared key for path build");
2018-06-21 14:55:02 +02:00
return;
}
// generate nonceXOR valueself->hop->pathKey
crypto->shorthash(hop.nonceXOR, llarp_buffer_t(hop.shared));
2019-06-20 18:22:29 +02:00
++idx;
2018-06-21 16:20:14 +02:00
2019-06-20 18:22:29 +02:00
bool isFarthestHop = idx == path->hops.size();
2018-06-21 16:20:14 +02:00
LR_CommitRecord record;
if (isFarthestHop)
2018-06-21 14:55:02 +02:00
{
hop.upstream = hop.rc.pubkey;
2018-06-21 14:55:02 +02:00
}
else
{
hop.upstream = path->hops[idx].rc.pubkey;
record.nextRC = std::make_unique<RouterContact>(path->hops[idx].rc);
2018-06-21 14:55:02 +02:00
}
2018-06-21 17:46:35 +02:00
// build record
record.lifetime = path::default_lifetime;
2022-05-26 17:59:44 +02:00
record.version = llarp::constants::proto_version;
record.txid = hop.txID;
record.rxid = hop.rxID;
2018-06-21 17:46:35 +02:00
record.tunnelNonce = hop.nonce;
record.nextHop = hop.upstream;
record.commkey = seckey_topublic(hop.commkey);
2018-06-21 17:46:35 +02:00
2019-02-19 16:06:39 +01:00
llarp_buffer_t buf(frame.data(), frame.size());
buf.cur = buf.base + EncryptedFrameOverheadSize;
2018-06-21 17:46:35 +02:00
// encode record
if (!record.BEncode(&buf))
2018-06-21 14:55:02 +02:00
{
// failed to encode?
2019-06-20 18:22:29 +02:00
LogError(pathset->Name(), " Failed to generate Commit Record");
2019-02-19 16:06:39 +01:00
DumpBuffer(buf);
2018-06-21 14:55:02 +02:00
return;
}
// use ephemeral keypair for frame
2018-06-21 14:55:02 +02:00
SecretKey framekey;
crypto->encryption_keygen(framekey);
if (!frame.EncryptInPlace(framekey, hop.rc.enckey))
2018-06-21 14:55:02 +02:00
{
2019-06-20 18:22:29 +02:00
LogError(pathset->Name(), " Failed to encrypt LRCR");
2018-06-21 14:55:02 +02:00
return;
}
if (isFarthestHop)
2018-06-21 14:55:02 +02:00
{
2018-06-21 16:20:14 +02:00
// farthest hop
2019-05-15 16:55:01 +02:00
// TODO: encrypt junk frames because our public keys are not eligator
loop->call([self = shared_from_this()] {
self->result(self);
self->result = nullptr;
});
2018-06-21 14:55:02 +02:00
}
else
{
2018-06-21 16:20:14 +02:00
// next hop
work([self = shared_from_this()] { self->GenerateNextKey(); });
2018-06-21 14:55:02 +02:00
}
}
/// Generate all keys asynchronously and call handler when done
2018-06-21 14:55:02 +02:00
void
AsyncGenerateKeys(Path_t p, EventLoop_ptr l, WorkerFunc_t worker, Handler func)
2018-06-21 14:55:02 +02:00
{
path = p;
loop = std::move(l);
2018-06-21 14:55:02 +02:00
result = func;
work = worker;
2018-06-21 14:55:02 +02:00
for (size_t i = 0; i < path::max_len; ++i)
2018-06-21 14:55:02 +02:00
{
2019-04-26 01:21:19 +02:00
LRCM.frames[i].Randomize();
2018-06-21 14:55:02 +02:00
}
work([self = shared_from_this()] { self->GenerateNextKey(); });
2018-06-21 14:55:02 +02:00
}
};
static void
PathBuilderKeysGenerated(std::shared_ptr<AsyncPathKeyExchangeContext> ctx)
2018-06-19 00:03:50 +02:00
{
if (ctx->pathset->IsStopped())
return;
ctx->router->NotifyRouterEvent<tooling::PathAttemptEvent>(ctx->router->pubkey(), ctx->path);
ctx->router->pathContext().AddOwnPath(ctx->pathset, ctx->path);
ctx->pathset->PathBuildStarted(ctx->path);
const RouterID remote = ctx->path->Upstream();
auto sentHandler = [router = ctx->router, path = ctx->path](auto status) {
if (status != SendStatus::Success)
{
path->EnterState(path::ePathFailed, router->Now());
}
};
if (ctx->router->SendToOrQueue(remote, ctx->LRCM, sentHandler))
{
// persist session with router until this path is done
if (ctx->path)
ctx->router->PersistSessionUntil(remote, ctx->path->ExpireTime());
}
else
{
LogError(ctx->pathset->Name(), " failed to queue LRCM to ", remote);
sentHandler(SendStatus::NoLink);
2018-06-20 14:34:48 +02:00
}
2018-06-19 00:03:50 +02:00
}
2018-08-30 20:48:43 +02:00
namespace path
2018-06-19 00:03:50 +02:00
{
2021-05-05 14:21:39 +02:00
bool
BuildLimiter::Attempt(const RouterID& router)
{
return m_EdgeLimiter.Insert(router);
}
void
BuildLimiter::Decay(llarp_time_t now)
{
m_EdgeLimiter.Decay(now);
}
bool
BuildLimiter::Limited(const RouterID& router) const
{
return m_EdgeLimiter.Contains(router);
}
2019-06-20 18:22:29 +02:00
Builder::Builder(AbstractRouter* p_router, size_t pathNum, size_t hops)
2021-05-05 14:21:39 +02:00
: path::PathSet{pathNum}, _run{true}, m_router{p_router}, numHops{hops}
2018-06-19 00:03:50 +02:00
{
CryptoManager::instance()->encryption_keygen(enckey);
2018-08-30 20:48:43 +02:00
}
2019-05-07 19:46:38 +02:00
void
Builder::ResetInternalState()
{
buildIntervalLimit = PATH_BUILD_RATE;
lastBuild = 0s;
2019-05-07 19:46:38 +02:00
}
void
Builder::Tick(llarp_time_t now)
2019-04-23 18:13:22 +02:00
{
PathSet::Tick(now);
now = llarp::time_now_ms();
m_router->pathBuildLimiter().Decay(now);
2019-11-07 19:23:06 +01:00
ExpirePaths(now, m_router);
if (ShouldBuildMore(now))
2019-04-23 18:13:22 +02:00
BuildOne();
2019-11-05 17:58:53 +01:00
TickPaths(m_router);
if (m_BuildStats.attempts > 50)
2019-07-01 15:44:25 +02:00
{
if (m_BuildStats.SuccessRatio() <= BuildStats::MinGoodRatio && now - m_LastWarn > 5s)
{
LogWarn(Name(), " has a low path build success. ", m_BuildStats);
m_LastWarn = now;
}
2019-07-01 15:44:25 +02:00
}
2019-04-23 18:13:22 +02:00
}
2019-02-11 18:14:43 +01:00
util::StatusObject
Builder::ExtractStatus() const
2019-02-08 20:43:25 +01:00
{
2021-03-05 18:31:52 +01:00
util::StatusObject obj{
{"buildStats", m_BuildStats.ExtractStatus()},
{"numHops", uint64_t{numHops}},
{"numPaths", uint64_t{numDesiredPaths}}};
std::transform(
m_Paths.begin(),
m_Paths.end(),
std::back_inserter(obj["paths"]),
[](const auto& item) -> util::StatusObject { return item.second->ExtractStatus(); });
2019-02-11 18:14:43 +01:00
return obj;
2019-02-08 20:43:25 +01:00
}
std::optional<RouterContact>
Builder::SelectFirstHop(const std::set<RouterID>& exclude) const
2018-08-30 20:48:43 +02:00
{
std::optional<RouterContact> found = std::nullopt;
m_router->ForEachPeer(
[&](const ILinkSession* s, bool isOutbound) {
if (s && s->IsEstablished() && isOutbound && not found.has_value())
{
const RouterContact rc = s->GetRemoteRC();
#ifndef TESTNET
if (m_router->IsBootstrapNode(rc.pubkey))
return;
2019-09-05 22:20:55 +02:00
#endif
if (exclude.count(rc.pubkey))
return;
2021-05-05 14:21:39 +02:00
if (BuildCooldownHit(rc.pubkey))
return;
if (m_router->routerProfiling().IsBadForPath(rc.pubkey))
return;
found = rc;
}
},
true);
return found;
}
2019-06-20 18:22:29 +02:00
std::optional<std::vector<RouterContact>>
Builder::GetHopsForBuild()
{
auto filter = [r = m_router](const auto& rc) -> bool {
return not r->routerProfiling().IsBadForPath(rc.pubkey, 1);
};
2021-02-03 22:38:31 +01:00
if (const auto maybe = m_router->nodedb()->GetRandom(filter))
2018-10-04 19:51:45 +02:00
{
return GetHopsAlignedToForBuild(maybe->pubkey);
}
return std::nullopt;
2018-08-30 20:48:43 +02:00
}
bool
Builder::Stop()
{
2019-06-20 18:22:29 +02:00
_run = false;
// tell all our paths that they are to be ignored
const auto now = Now();
for (auto& item : m_Paths)
{
item.second->EnterState(ePathIgnore, now);
}
return true;
}
2019-02-05 15:50:33 +01:00
bool
Builder::IsStopped() const
{
return !_run.load();
}
bool
Builder::ShouldRemove() const
{
return IsStopped() and NumInStatus(ePathEstablished) == 0;
}
const SecretKey&
2018-08-30 20:48:43 +02:00
Builder::GetTunnelEncryptionSecretKey() const
{
return enckey;
}
2018-06-19 00:03:50 +02:00
bool
Builder::BuildCooldownHit(RouterID edge) const
{
2021-05-05 14:21:39 +02:00
return m_router->pathBuildLimiter().Limited(edge);
}
2018-12-27 13:00:28 +01:00
bool
Builder::BuildCooldownHit(llarp_time_t now) const
{
2020-03-01 16:58:08 +01:00
return now < lastBuild + buildIntervalLimit;
2018-12-27 13:00:28 +01:00
}
2018-08-30 20:48:43 +02:00
bool
2018-10-29 17:48:36 +01:00
Builder::ShouldBuildMore(llarp_time_t now) const
2018-08-30 20:48:43 +02:00
{
if (IsStopped())
2019-04-16 13:44:55 +02:00
return false;
if (BuildCooldownHit(now))
2019-11-05 17:58:53 +01:00
return false;
return PathSet::ShouldBuildMore(now);
2018-08-30 20:48:43 +02:00
}
2018-08-12 19:22:29 +02:00
2018-08-30 20:48:43 +02:00
void
2018-11-14 19:02:27 +01:00
Builder::BuildOne(PathRole roles)
2018-08-30 20:48:43 +02:00
{
2021-04-12 13:39:07 +02:00
if (const auto maybe = GetHopsForBuild())
Build(*maybe, roles);
}
2022-10-21 00:23:14 +02:00
bool
Builder::UrgentBuild(llarp_time_t) const
{
return buildIntervalLimit > MIN_PATH_BUILD_INTERVAL * 4;
}
std::optional<std::vector<RouterContact>>
Builder::GetHopsAlignedToForBuild(RouterID endpoint, const std::set<RouterID>& exclude)
{
const auto pathConfig = m_router->GetConfig()->paths;
std::vector<RouterContact> hops;
2019-06-20 18:22:29 +02:00
{
const auto maybe = SelectFirstHop(exclude);
if (not maybe.has_value())
2021-04-12 13:39:07 +02:00
{
log::warning(log_path, "{} has no first hop candidate", Name());
return std::nullopt;
2021-04-12 13:39:07 +02:00
}
hops.emplace_back(*maybe);
};
RouterContact endpointRC;
if (const auto maybe = m_router->nodedb()->Get(endpoint))
{
endpointRC = *maybe;
}
else
return std::nullopt;
for (size_t idx = hops.size(); idx < numHops; ++idx)
{
if (idx + 1 == numHops)
{
hops.emplace_back(endpointRC);
}
2019-06-20 18:22:29 +02:00
else
{
auto filter =
[&hops, r = m_router, endpointRC, pathConfig, exclude](const auto& rc) -> bool {
if (exclude.count(rc.pubkey))
return false;
std::set<RouterContact> hopsSet;
hopsSet.insert(endpointRC);
hopsSet.insert(hops.begin(), hops.end());
if (r->routerProfiling().IsBadForPath(rc.pubkey, 1))
return false;
for (const auto& hop : hopsSet)
{
if (hop.pubkey == rc.pubkey)
return false;
}
hopsSet.insert(rc);
2021-04-12 13:38:12 +02:00
#ifndef TESTNET
if (not pathConfig.Acceptable(hopsSet))
return false;
2021-04-12 13:38:12 +02:00
#endif
return rc.pubkey != endpointRC.pubkey;
};
if (const auto maybe = m_router->nodedb()->GetRandom(filter))
hops.emplace_back(*maybe);
else
return std::nullopt;
}
}
return hops;
2019-06-20 18:22:29 +02:00
}
bool
Builder::BuildOneAlignedTo(const RouterID remote)
{
if (const auto maybe = GetHopsAlignedToForBuild(remote); maybe.has_value())
{
LogInfo(Name(), " building path to ", remote);
Build(*maybe);
return true;
2019-06-20 18:22:29 +02:00
}
return false;
}
2018-10-29 17:48:36 +01:00
llarp_time_t
Builder::Now() const
{
2019-08-02 11:27:27 +02:00
return m_router->Now();
2018-10-29 17:48:36 +01:00
}
void
Builder::Build(std::vector<RouterContact> hops, PathRole roles)
{
if (IsStopped())
return;
2021-04-12 13:39:07 +02:00
lastBuild = Now();
const RouterID edge{hops[0].pubkey};
2021-05-05 14:21:39 +02:00
if (not m_router->pathBuildLimiter().Attempt(edge))
{
LogWarn(Name(), " building too fast to edge router ", edge);
return;
}
2018-08-30 20:48:43 +02:00
// async generate keys
auto ctx = std::make_shared<AsyncPathKeyExchangeContext>();
ctx->router = m_router;
auto self = GetSelf();
2019-11-05 17:58:53 +01:00
ctx->pathset = self;
2020-02-20 23:20:17 +01:00
std::string path_shortName = "[path " + m_router->ShortName() + "-";
path_shortName = path_shortName + std::to_string(m_router->NextPathBuildNumber()) + "]";
auto path = std::make_shared<path::Path>(hops, GetWeak(), roles, std::move(path_shortName));
LogInfo(Name(), " build ", path->ShortName(), ": ", path->HopsString());
path->SetBuildResultHook([self](Path_ptr p) { self->HandlePathBuilt(p); });
ctx->AsyncGenerateKeys(
path,
m_router->loop(),
[r = m_router](auto func) { r->QueueWork(std::move(func)); },
&PathBuilderKeysGenerated);
2018-08-30 20:48:43 +02:00
}
2018-06-19 00:03:50 +02:00
void
Builder::HandlePathBuilt(Path_ptr p)
{
buildIntervalLimit = PATH_BUILD_RATE;
2019-08-02 11:27:27 +02:00
m_router->routerProfiling().MarkPathSuccess(p.get());
LogInfo(p->Name(), " built latency=", ToString(p->intro.latency));
2019-07-01 15:44:25 +02:00
m_BuildStats.success++;
}
void
Builder::HandlePathBuildFailedAt(Path_ptr p, RouterID edge)
{
PathSet::HandlePathBuildFailedAt(p, edge);
DoPathBuildBackoff();
}
void
Builder::DoPathBuildBackoff()
{
static constexpr std::chrono::milliseconds MaxBuildInterval = 30s;
// linear backoff
buildIntervalLimit = std::min(PATH_BUILD_RATE + buildIntervalLimit, MaxBuildInterval);
LogWarn(Name(), " build interval is now ", ToString(buildIntervalLimit));
}
void
Builder::HandlePathBuildTimeout(Path_ptr p)
{
m_router->routerProfiling().MarkPathTimeout(p.get());
PathSet::HandlePathBuildTimeout(p);
DoPathBuildBackoff();
for (const auto& hop : p->hops)
{
const RouterID router{hop.rc.pubkey};
// look up router and see if it's still on the network
m_router->loop()->call_soon([router, r = m_router]() {
LogInfo("looking up ", router, " because of path build timeout");
r->rcLookupHandler().GetRC(
router,
[r](const auto& router, const auto* rc, auto result) {
if (result == RCRequestResult::Success && rc != nullptr)
{
LogInfo("refreshed rc for ", router);
r->nodedb()->PutIfNewer(*rc);
}
else
{
// remove all connections to this router as it's probably not registered anymore
LogWarn("removing router ", router, " because of path build timeout");
r->linkManager().DeregisterPeer(router);
r->nodedb()->Remove(router);
}
},
true);
});
}
}
2018-08-30 20:48:43 +02:00
void
2018-11-14 19:02:27 +01:00
Builder::ManualRebuild(size_t num, PathRole roles)
2018-08-30 20:48:43 +02:00
{
2019-03-22 15:10:30 +01:00
LogDebug(Name(), " manual rebuild ", num);
while (num--)
2018-11-14 19:02:27 +01:00
BuildOne(roles);
2018-08-30 20:48:43 +02:00
}
2018-06-19 00:03:50 +02:00
2018-08-30 20:48:43 +02:00
} // namespace path
} // namespace llarp