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
|
|
|
|
{
|
|
|
|
LocalRouterLookup::LocalRouterLookup(const PathID_t &path, uint64_t txid,
|
2019-08-02 09:27:27 +00:00
|
|
|
const RouterID &_target,
|
2019-02-05 00:41:33 +00:00
|
|
|
AbstractContext *ctx)
|
2019-08-02 09:27:27 +00:00
|
|
|
: RecursiveRouterLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx,
|
2019-01-22 01:14:02 +00:00
|
|
|
nullptr)
|
|
|
|
, localPath(path)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LocalRouterLookup::SendReply()
|
|
|
|
{
|
2019-01-29 02:16:31 +00:00
|
|
|
auto path = parent->GetRouter()->pathContext().GetByUpstream(
|
2019-01-22 01:14:02 +00:00
|
|
|
parent->OurKey().as_array(), localPath);
|
|
|
|
if(!path)
|
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"did not send reply for relayed dht request, no such local path "
|
|
|
|
"for pathid=",
|
|
|
|
localPath);
|
|
|
|
return;
|
|
|
|
}
|
2019-02-08 19:43:25 +00:00
|
|
|
if(valuesFound.size())
|
|
|
|
{
|
|
|
|
RouterContact found;
|
|
|
|
for(const auto &rc : valuesFound)
|
|
|
|
{
|
|
|
|
if(rc.OtherIsNewer(found))
|
|
|
|
found = rc;
|
|
|
|
}
|
|
|
|
valuesFound.clear();
|
2020-01-15 15:43:21 +00:00
|
|
|
if(not found.pubkey.IsZero())
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
msg.M.emplace_back(new GotRouterMessage(parent->OurKey(), whoasked.txid,
|
|
|
|
valuesFound, true));
|
2019-04-22 17:38:29 +00:00
|
|
|
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
|