2019-01-22 01:14:02 +00:00
|
|
|
#include <dht/recursiverouterlookup.hpp>
|
|
|
|
|
|
|
|
#include <dht/context.hpp>
|
|
|
|
#include <dht/messages/findrouter.hpp>
|
|
|
|
#include <dht/messages/gotrouter.hpp>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <utility>
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace dht
|
|
|
|
{
|
2019-08-02 09:27:27 +00:00
|
|
|
RecursiveRouterLookup::RecursiveRouterLookup(const TXOwner &_whoasked,
|
|
|
|
const RouterID &_target,
|
2019-01-24 01:31:02 +00:00
|
|
|
AbstractContext *ctx,
|
2019-01-22 01:14:02 +00:00
|
|
|
RouterLookupHandler result)
|
2019-08-02 09:27:27 +00:00
|
|
|
: TX< RouterID, RouterContact >(_whoasked, _target, ctx)
|
2019-07-30 23:42:13 +00:00
|
|
|
, resultHandler(std::move(result))
|
2019-01-22 01:14:02 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
peersAsked.insert(ctx->OurKey());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RecursiveRouterLookup::Validate(const RouterContact &rc) const
|
|
|
|
{
|
2019-05-28 19:45:08 +00:00
|
|
|
if(!rc.Verify(parent->Now()))
|
2019-01-22 01:14:02 +00:00
|
|
|
{
|
|
|
|
llarp::LogWarn("rc from lookup result is invalid");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-12 15:29:48 +00:00
|
|
|
bool
|
|
|
|
RecursiveRouterLookup::GetNextPeer(Key_t &nextPeer,
|
|
|
|
const std::set< Key_t > &exclude)
|
|
|
|
{
|
|
|
|
const Key_t K(target.as_array());
|
|
|
|
return parent->Nodes()->FindCloseExcluding(K, nextPeer, exclude);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RecursiveRouterLookup::DoNextRequest(const Key_t &peer)
|
|
|
|
{
|
|
|
|
parent->LookupRouterRecursive(target, whoasked.node, whoasked.txid, peer,
|
|
|
|
resultHandler);
|
|
|
|
}
|
|
|
|
|
2019-01-22 01:14:02 +00:00
|
|
|
void
|
|
|
|
RecursiveRouterLookup::Start(const TXOwner &peer)
|
|
|
|
{
|
|
|
|
parent->DHTSendTo(peer.node.as_array(),
|
|
|
|
new FindRouterMessage(peer.txid, target));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RecursiveRouterLookup::SendReply()
|
|
|
|
{
|
2019-02-08 13:42:12 +00:00
|
|
|
if(valuesFound.size())
|
|
|
|
{
|
|
|
|
RouterContact found;
|
|
|
|
for(const auto &rc : valuesFound)
|
|
|
|
{
|
|
|
|
if(found.OtherIsNewer(rc))
|
|
|
|
found = rc;
|
|
|
|
}
|
|
|
|
valuesFound.clear();
|
|
|
|
valuesFound.emplace_back(found);
|
|
|
|
}
|
2019-01-22 01:14:02 +00:00
|
|
|
if(resultHandler)
|
|
|
|
{
|
|
|
|
resultHandler(valuesFound);
|
|
|
|
}
|
2019-07-19 17:21:20 +00:00
|
|
|
else if(whoasked.node != parent->OurKey())
|
|
|
|
{
|
2019-01-22 01:14:02 +00:00
|
|
|
parent->DHTSendTo(
|
|
|
|
whoasked.node.as_array(),
|
2019-02-23 17:22:34 +00:00
|
|
|
new GotRouterMessage({}, whoasked.txid, valuesFound, false), false);
|
2019-07-19 17:21:20 +00:00
|
|
|
}
|
2019-08-28 12:44:50 +00:00
|
|
|
// store this in our nodedb for caching
|
|
|
|
if(valuesFound.size() > 0)
|
|
|
|
parent->StoreRC(valuesFound[0]);
|
2019-01-22 01:14:02 +00:00
|
|
|
}
|
|
|
|
} // namespace dht
|
|
|
|
} // namespace llarp
|