mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
85 lines
2.4 KiB
C++
85 lines
2.4 KiB
C++
#include "publishservicejob.hpp"
|
|
|
|
#include "context.hpp"
|
|
#include <llarp/dht/messages/pubintro.hpp>
|
|
#include <llarp/dht/messages/gotintro.hpp>
|
|
#include <llarp/path/path_context.hpp>
|
|
#include <llarp/routing/dht_message.hpp>
|
|
#include <llarp/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
|