lokinet/llarp/dht/serviceaddresslookup.cpp

71 lines
1.8 KiB
C++
Raw Normal View History

2019-01-22 01:14:02 +00:00
#include <dht/serviceaddresslookup.hpp>
#include <dht/context.hpp>
#include <dht/messages/findintro.hpp>
#include <dht/messages/gotintro.hpp>
2019-07-30 23:42:13 +00:00
#include <utility>
2019-01-22 01:14:02 +00:00
namespace llarp
{
namespace dht
{
ServiceAddressLookup::ServiceAddressLookup(
2020-01-27 21:30:41 +00:00
const TXOwner &asker, const Key_t &addr, AbstractContext *ctx,
uint32_t order, service::EncryptedIntroSetLookupHandler handler)
2020-03-01 15:59:19 +00:00
: TX< TXOwner, service::EncryptedIntroSet >(asker, asker, ctx)
, location(addr)
2019-07-30 23:42:13 +00:00
, handleResult(std::move(handler))
, relayOrder(order)
2019-01-22 01:14:02 +00:00
{
peersAsked.insert(ctx->OurKey());
}
bool
2020-01-27 21:30:41 +00:00
ServiceAddressLookup::Validate(
const service::EncryptedIntroSet &value) const
2019-01-22 01:14:02 +00:00
{
if(!value.Verify(parent->Now()))
2019-01-22 01:14:02 +00:00
{
llarp::LogWarn("Got invalid introset from service lookup");
return false;
}
2020-03-01 15:59:19 +00:00
if(value.derivedSigningKey != location)
2019-01-22 01:14:02 +00:00
{
llarp::LogWarn("got introset with wrong target from service lookup");
return false;
}
return true;
}
void
ServiceAddressLookup::Start(const TXOwner &peer)
{
2020-02-20 20:14:20 +00:00
parent->DHTSendTo(peer.node.as_array(),
2020-03-01 15:59:19 +00:00
new FindIntroMessage(peer.txid, location, relayOrder));
2019-01-22 01:14:02 +00:00
}
2019-02-08 19:43:25 +00:00
void
ServiceAddressLookup::SendReply()
{
// get newest introset
if(valuesFound.size())
{
2020-01-27 21:30:41 +00:00
llarp::service::EncryptedIntroSet found;
for(const auto &introset : valuesFound)
2019-02-08 19:43:25 +00:00
{
if(found.OtherIsNewer(introset))
found = introset;
2019-02-08 19:43:25 +00:00
}
valuesFound.clear();
valuesFound.emplace_back(found);
}
2019-02-08 19:43:25 +00:00
if(handleResult)
{
handleResult(valuesFound);
}
2019-01-22 01:14:02 +00:00
parent->DHTSendTo(whoasked.node.as_array(),
new GotIntroMessage(valuesFound, whoasked.txid));
}
} // namespace dht
} // namespace llarp