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-02-14 18:06:19 +00:00
|
|
|
const PathID_t &pathid, uint64_t txid, uint64_t relayOrder,
|
2020-02-13 22:19:12 +00:00
|
|
|
const Key_t &addr, AbstractContext *ctx,
|
|
|
|
__attribute__((unused)) const Key_t &askpeer)
|
2020-02-20 20:14:20 +00:00
|
|
|
: ServiceAddressLookup(TXOwner{ctx->OurKey(), txid}, addr, ctx,
|
2020-02-13 22:19:12 +00:00
|
|
|
relayOrder, nullptr)
|
2019-01-22 01:14:02 +00:00
|
|
|
, localPath(pathid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LocalServiceAddressLookup::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 13:21:55 +00:00
|
|
|
// pick newest if we have more than 1 result
|
2019-02-08 13:42:12 +00:00
|
|
|
if(valuesFound.size())
|
2019-02-08 13:21:55 +00:00
|
|
|
{
|
2020-01-27 21:30:41 +00:00
|
|
|
service::EncryptedIntroSet found;
|
2019-02-08 13:21:55 +00:00
|
|
|
for(const auto &introset : valuesFound)
|
|
|
|
{
|
|
|
|
if(found.OtherIsNewer(introset))
|
|
|
|
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));
|
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
|