mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +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.
216 lines
4.2 KiB
C++
216 lines
4.2 KiB
C++
#pragma once
|
|
|
|
#include <llarp/crypto/types.hpp>
|
|
#include "policy.hpp"
|
|
#include <llarp/routing/message.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct ObtainExitMessage final : public IMessage
|
|
{
|
|
std::vector<llarp::exit::Policy> B;
|
|
uint64_t E{0};
|
|
llarp::PubKey I;
|
|
uint64_t T{0};
|
|
std::vector<llarp::exit::Policy> W;
|
|
uint64_t X{0};
|
|
llarp::Signature Z;
|
|
|
|
ObtainExitMessage() : IMessage()
|
|
{}
|
|
|
|
~ObtainExitMessage() override = default;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
B.clear();
|
|
E = 0;
|
|
I.Zero();
|
|
T = 0;
|
|
W.clear();
|
|
X = 0;
|
|
Z.Zero();
|
|
}
|
|
|
|
/// populates I and signs
|
|
bool
|
|
Sign(const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify() const;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
};
|
|
|
|
struct GrantExitMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer<16>;
|
|
|
|
uint64_t T;
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
Sign(const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(const llarp::PubKey& pk) const;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
};
|
|
|
|
struct RejectExitMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer<16>;
|
|
uint64_t B;
|
|
std::vector<llarp::exit::Policy> R;
|
|
uint64_t T;
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
B = 0;
|
|
R.clear();
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
|
|
bool
|
|
Sign(const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(const llarp::PubKey& pk) const;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
};
|
|
|
|
struct UpdateExitVerifyMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer<16>;
|
|
uint64_t T;
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
~UpdateExitVerifyMessage() override = default;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
};
|
|
|
|
struct UpdateExitMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer<16>;
|
|
llarp::PathID_t P;
|
|
uint64_t T;
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
bool
|
|
Sign(const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(const llarp::PubKey& pk) const;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
P.Zero();
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
};
|
|
|
|
struct CloseExitMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer<16>;
|
|
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
|
|
bool
|
|
Sign(const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(const llarp::PubKey& pk) const;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
};
|
|
|
|
} // namespace routing
|
|
} // namespace llarp
|