mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
#include <dht/publishservicejob.hpp>
|
|
|
|
#include <dht/context.hpp>
|
|
#include <dht/messages/pubintro.hpp>
|
|
#include <dht/messages/gotintro.hpp>
|
|
#include <path/path_context.hpp>
|
|
#include <routing/dht_message.hpp>
|
|
#include <router/abstractrouter.hpp>
|
|
|
|
#include <utility>
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
PublishServiceJob::PublishServiceJob(
|
|
const TXOwner& asker,
|
|
const service::EncryptedIntroSet& introset_,
|
|
AbstractContext* ctx,
|
|
uint64_t relayOrder_)
|
|
: TX<TXOwner, service::EncryptedIntroSet>(asker, asker, ctx)
|
|
, relayOrder(relayOrder_)
|
|
, introset(introset_)
|
|
{
|
|
}
|
|
|
|
bool
|
|
PublishServiceJob::Validate(const service::EncryptedIntroSet& value) const
|
|
{
|
|
if (value.derivedSigningKey != introset.derivedSigningKey)
|
|
{
|
|
llarp::LogWarn("publish introset acknowledgement acked a different service");
|
|
return false;
|
|
}
|
|
const llarp_time_t now = llarp::time_now_ms();
|
|
return value.Verify(now);
|
|
}
|
|
|
|
void
|
|
PublishServiceJob::Start(const TXOwner& peer)
|
|
{
|
|
parent->DHTSendTo(
|
|
peer.node.as_array(), new PublishIntroMessage(introset, peer.txid, false, relayOrder));
|
|
}
|
|
|
|
void
|
|
PublishServiceJob::SendReply()
|
|
{
|
|
parent->DHTSendTo(whoasked.node.as_array(), new GotIntroMessage({introset}, whoasked.txid));
|
|
}
|
|
|
|
LocalPublishServiceJob::LocalPublishServiceJob(
|
|
const TXOwner& peer,
|
|
const PathID_t& fromID,
|
|
uint64_t _txid,
|
|
const service::EncryptedIntroSet& introset,
|
|
AbstractContext* ctx,
|
|
uint64_t relayOrder)
|
|
: PublishServiceJob(peer, introset, ctx, relayOrder), localPath(fromID), txid(_txid)
|
|
{
|
|
}
|
|
|
|
void
|
|
LocalPublishServiceJob::SendReply()
|
|
{
|
|
auto path =
|
|
parent->GetRouter()->pathContext().GetByUpstream(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;
|
|
}
|
|
routing::DHTMessage msg;
|
|
msg.M.emplace_back(new GotIntroMessage({introset}, txid));
|
|
if (!path->SendRoutingMessage(msg, parent->GetRouter()))
|
|
{
|
|
llarp::LogWarn(
|
|
"failed to send routing message when informing result of dht "
|
|
"request, pathid=",
|
|
localPath);
|
|
}
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|