You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/exit/exit_messages.hpp

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