2021-03-09 22:24:35 +00:00
|
|
|
#include "localrouterlookup.hpp"
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "context.hpp"
|
|
|
|
#include <llarp/dht/messages/gotrouter.hpp>
|
2019-06-15 14:55:13 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/path/path_context.hpp>
|
2023-09-15 14:55:32 +00:00
|
|
|
#include <llarp/router/router.hpp>
|
2023-08-31 16:28:02 +00:00
|
|
|
#include <llarp/routing/path_dht_message.hpp>
|
2022-07-16 00:41:14 +00:00
|
|
|
#include <llarp/util/logging.hpp>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
namespace llarp::dht
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
LocalRouterLookup::LocalRouterLookup(
|
2023-09-13 15:57:29 +00:00
|
|
|
const PathID_t& path, uint64_t txid, const RouterID& _target, AbstractDHTMessageHandler* ctx)
|
2023-08-31 16:28:02 +00:00
|
|
|
: RecursiveRouterLookup(TXOwner{ctx->OurKey(), txid}, _target, ctx, nullptr), localPath(path)
|
|
|
|
{}
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
void
|
|
|
|
LocalRouterLookup::SendReply()
|
|
|
|
{
|
|
|
|
auto path =
|
2023-09-15 14:55:32 +00:00
|
|
|
parent->GetRouter()->path_context().GetByUpstream(parent->OurKey().as_array(), localPath);
|
2023-08-31 16:28:02 +00:00
|
|
|
if (!path)
|
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"did not send reply for relayed dht request, no such local path "
|
|
|
|
"for pathid=",
|
|
|
|
localPath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (valuesFound.size())
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
RouterContact found;
|
|
|
|
for (const auto& rc : valuesFound)
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
if (rc.OtherIsNewer(found))
|
|
|
|
found = rc;
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
valuesFound.clear();
|
|
|
|
if (not found.pubkey.IsZero())
|
2019-02-08 19:43:25 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
valuesFound.resize(1);
|
|
|
|
valuesFound[0] = found;
|
2019-02-08 19:43:25 +00:00
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
else
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
llarp::LogWarn("We found a null RC for dht request, dropping it");
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
routing::PathDHTMessage msg;
|
|
|
|
msg.dht_msgs.emplace_back(
|
|
|
|
new GotRouterMessage(parent->OurKey(), whoasked.txid, valuesFound, true));
|
|
|
|
if (!path->SendRoutingMessage(msg, parent->GetRouter()))
|
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"failed to send routing message when informing result of dht "
|
|
|
|
"request, pathid=",
|
|
|
|
localPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace llarp::dht
|