2019-01-22 01:14:02 +00:00
|
|
|
#include <dht/localserviceaddresslookup.hpp>
|
|
|
|
|
|
|
|
#include <dht/context.hpp>
|
|
|
|
#include <dht/messages/gotintro.hpp>
|
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
|
|
|
|
{
|
|
|
|
LocalServiceAddressLookup::LocalServiceAddressLookup(
|
2020-04-07 18:38:56 +00:00
|
|
|
const PathID_t& pathid,
|
|
|
|
uint64_t txid,
|
|
|
|
uint64_t relayOrder,
|
|
|
|
const Key_t& addr,
|
|
|
|
AbstractContext* ctx,
|
|
|
|
__attribute__((unused)) const Key_t& askpeer)
|
|
|
|
: ServiceAddressLookup(TXOwner{ctx->OurKey(), txid}, addr, ctx, relayOrder, nullptr)
|
2019-01-22 01:14:02 +00:00
|
|
|
, localPath(pathid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LocalServiceAddressLookup::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;
|
|
|
|
}
|
2019-02-08 13:21:55 +00:00
|
|
|
// pick newest if we have more than 1 result
|
2020-04-07 18:38:56 +00:00
|
|
|
if (valuesFound.size())
|
2019-02-08 13:21:55 +00:00
|
|
|
{
|
2020-01-27 21:30:41 +00:00
|
|
|
service::EncryptedIntroSet found;
|
2020-04-07 18:38:56 +00:00
|
|
|
for (const auto& introset : valuesFound)
|
2019-02-08 13:21:55 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (found.OtherIsNewer(introset))
|
2019-02-08 13:21:55 +00:00
|
|
|
found = introset;
|
|
|
|
}
|
|
|
|
valuesFound.clear();
|
|
|
|
valuesFound.emplace_back(found);
|
|
|
|
}
|
2019-01-22 01:14:02 +00:00
|
|
|
routing::DHTMessage msg;
|
|
|
|
msg.M.emplace_back(new GotIntroMessage(valuesFound, whoasked.txid));
|
2020-04-07 18:38:56 +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
|