mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
280 lines
5.4 KiB
C++
280 lines
5.4 KiB
C++
#ifndef LLARP_MESSAGES_EXIT_HPP
|
|
#define LLARP_MESSAGES_EXIT_HPP
|
|
|
|
#include <crypto/types.hpp>
|
|
#include <exit/policy.hpp>
|
|
#include <routing/message.hpp>
|
|
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Crypto;
|
|
namespace routing
|
|
{
|
|
struct ObtainExitMessage final : public IMessage
|
|
{
|
|
std::vector< llarp::exit::Policy > B;
|
|
uint64_t E;
|
|
llarp::PubKey I;
|
|
uint64_t T;
|
|
std::vector< llarp::exit::Policy > W;
|
|
llarp_time_t X;
|
|
llarp::Signature Z;
|
|
|
|
ObtainExitMessage() : IMessage(), E(0), T(0), X(0)
|
|
{
|
|
}
|
|
|
|
~ObtainExitMessage()
|
|
{
|
|
}
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
B.clear();
|
|
E = 0;
|
|
I.Zero();
|
|
T = 0;
|
|
W.clear();
|
|
X = 0;
|
|
Z.Zero();
|
|
}
|
|
|
|
/// populates I and signs
|
|
bool
|
|
Sign(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c) 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;
|
|
GrantExitMessage() : IMessage()
|
|
{
|
|
}
|
|
|
|
~GrantExitMessage()
|
|
{
|
|
}
|
|
|
|
GrantExitMessage&
|
|
operator=(const GrantExitMessage& other);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
Sign(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c, 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;
|
|
|
|
RejectExitMessage() : IMessage()
|
|
{
|
|
}
|
|
|
|
~RejectExitMessage()
|
|
{
|
|
}
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
B = 0;
|
|
R.clear();
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
|
|
RejectExitMessage&
|
|
operator=(const RejectExitMessage& other);
|
|
|
|
bool
|
|
Sign(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c, 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() : IMessage()
|
|
{
|
|
}
|
|
|
|
~UpdateExitVerifyMessage()
|
|
{
|
|
}
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
T = 0;
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
|
|
UpdateExitVerifyMessage&
|
|
operator=(const UpdateExitVerifyMessage& other);
|
|
|
|
bool
|
|
Sign(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c, 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 UpdateExitMessage final : public IMessage
|
|
{
|
|
using Nonce_t = llarp::AlignedBuffer< 16 >;
|
|
llarp::PathID_t P;
|
|
uint64_t T;
|
|
Nonce_t Y;
|
|
llarp::Signature Z;
|
|
|
|
UpdateExitMessage() : IMessage()
|
|
{
|
|
}
|
|
|
|
~UpdateExitMessage()
|
|
{
|
|
}
|
|
|
|
UpdateExitMessage&
|
|
operator=(const UpdateExitMessage& other);
|
|
|
|
bool
|
|
Sign(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c, 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;
|
|
|
|
CloseExitMessage() : IMessage()
|
|
{
|
|
}
|
|
|
|
~CloseExitMessage()
|
|
{
|
|
}
|
|
|
|
CloseExitMessage&
|
|
operator=(const CloseExitMessage& other);
|
|
|
|
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(llarp::Crypto* c, const llarp::SecretKey& sk);
|
|
|
|
bool
|
|
Verify(llarp::Crypto* c, const llarp::PubKey& pk) const;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
Y.Zero();
|
|
Z.Zero();
|
|
}
|
|
};
|
|
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|