2021-03-09 22:24:35 +00:00
|
|
|
#include "localserviceaddresslookup.hpp"
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "context.hpp"
|
|
|
|
#include <llarp/dht/messages/gotintro.hpp>
|
|
|
|
#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
|
|
|
LocalServiceAddressLookup::LocalServiceAddressLookup(
|
|
|
|
const PathID_t& pathid,
|
|
|
|
uint64_t txid,
|
|
|
|
uint64_t relayOrder,
|
|
|
|
const Key_t& addr,
|
2023-09-13 15:57:29 +00:00
|
|
|
AbstractDHTMessageHandler* ctx,
|
2023-08-31 16:28:02 +00:00
|
|
|
[[maybe_unused]] const Key_t& askpeer)
|
|
|
|
: ServiceAddressLookup(TXOwner{ctx->OurKey(), txid}, addr, ctx, relayOrder, nullptr)
|
|
|
|
, localPath(pathid)
|
|
|
|
{}
|
2019-01-22 01:14:02 +00:00
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
void
|
|
|
|
LocalServiceAddressLookup::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)
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
llarp::LogWarn(
|
|
|
|
"did not send reply for relayed dht request, no such local path "
|
|
|
|
"for pathid=",
|
|
|
|
localPath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// pick newest if we have more than 1 result
|
|
|
|
if (valuesFound.size())
|
|
|
|
{
|
|
|
|
service::EncryptedIntroSet found;
|
|
|
|
for (const auto& introset : valuesFound)
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
2023-08-31 16:28:02 +00:00
|
|
|
if (found.OtherIsNewer(introset))
|
|
|
|
found = introset;
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
valuesFound.clear();
|
|
|
|
valuesFound.emplace_back(found);
|
|
|
|
}
|
|
|
|
routing::PathDHTMessage msg;
|
|
|
|
msg.dht_msgs.emplace_back(new GotIntroMessage(valuesFound, whoasked.txid));
|
|
|
|
if (!path->SendRoutingMessage(msg, parent->GetRouter()))
|
|
|
|
{
|
|
|
|
llarp::LogWarn(
|
|
|
|
"failed to send routing message when informing result of dht "
|
|
|
|
"request, pathid=",
|
|
|
|
localPath);
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
2023-08-31 16:28:02 +00:00
|
|
|
}
|
|
|
|
} // namespace llarp::dht
|