2019-01-22 01:14:02 +00:00
|
|
|
#include <dht/localrouterlookup.hpp>
|
|
|
|
|
|
|
|
#include <dht/context.hpp>
|
|
|
|
#include <dht/messages/gotrouter.hpp>
|
2019-06-15 14:55:13 +00:00
|
|
|
|
2019-06-17 23:19:39 +00:00
|
|
|
#include <path/path_context.hpp>
|
2019-02-11 19:45:42 +00:00
|
|
|
#include <router/abstractrouter.hpp>
|
2019-06-15 14:55:13 +00:00
|
|
|
#include <routing/dht_message.hpp>
|
2019-09-01 12:10:49 +00:00
|
|
|
#include <util/logging/logger.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
LocalRouterLookup::LocalRouterLookup(
|
|
|
|
const PathID_t& path, uint64_t txid, const RouterID& _target, AbstractContext* ctx)
|
|
|
|
: RecursiveRouterLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx, nullptr)
|
2019-01-22 01:14:02 +00:00
|
|
|
, localPath(path)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LocalRouterLookup::SendReply()
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
auto path =
|
|
|
|
parent->GetRouter()->pathContext().GetByUpstream(parent->OurKey().as_array(), localPath);
|
|
|
|
if (!path)
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"did not send reply for relayed dht request, no such local path "
|
|
|
|
"for pathid=",
|
|
|
|
localPath);
|
|
|
|
return;
|
|
|
|
}
|
2020-04-07 18:38:56 +00:00
|
|
|
if (valuesFound.size())
|
2019-02-08 19:43:25 +00:00
|
|
|
{
|
|
|
|
RouterContact found;
|
2020-04-07 18:38:56 +00:00
|
|
|
for (const auto& rc : valuesFound)
|
2019-02-08 19:43:25 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (rc.OtherIsNewer(found))
|
2019-02-08 19:43:25 +00:00
|
|
|
found = rc;
|
|
|
|
}
|
|
|
|
valuesFound.clear();
|
2020-04-07 18:38:56 +00:00
|
|
|
if (not found.pubkey.IsZero())
|
2020-01-15 15:43:21 +00:00
|
|
|
{
|
|
|
|
valuesFound.resize(1);
|
|
|
|
valuesFound[0] = found;
|
|
|
|
}
|
2020-01-16 02:37:12 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
llarp::LogWarn("We found a null RC for dht request, dropping it");
|
|
|
|
}
|
2019-02-08 19:43:25 +00:00
|
|
|
}
|
2019-01-22 01:14:02 +00:00
|
|
|
routing::DHTMessage msg;
|
2020-04-07 18:38:56 +00:00
|
|
|
msg.M.emplace_back(new GotRouterMessage(parent->OurKey(), whoasked.txid, valuesFound, true));
|
|
|
|
if (!path->SendRoutingMessage(msg, parent->GetRouter()))
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"failed to send routing message when informing result of dht "
|
|
|
|
"request, pathid=",
|
|
|
|
localPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|