lokinet/llarp/service/protocol.hpp

174 lines
3.8 KiB
C++
Raw Normal View History

2018-07-19 04:58:39 +00:00
#ifndef LLARP_SERVICE_PROTOCOL_HPP
#define LLARP_SERVICE_PROTOCOL_HPP
2018-12-12 02:04:32 +00:00
#include <crypto/encrypted.hpp>
#include <crypto/types.hpp>
2018-12-12 00:48:54 +00:00
#include <dht/message.hpp>
2018-12-12 02:04:32 +00:00
#include <routing/message.hpp>
#include <service/protocol_type.hpp>
#include <service/identity.hpp>
#include <service/info.hpp>
#include <service/intro.hpp>
2018-12-12 02:15:08 +00:00
#include <service/handler.hpp>
#include <util/bencode.hpp>
#include <util/time.hpp>
#include <path/pathset.hpp>
2018-12-12 02:04:32 +00:00
2018-07-19 04:58:39 +00:00
#include <vector>
struct llarp_threadpool;
2018-07-19 04:58:39 +00:00
namespace llarp
{
class Logic;
2019-04-10 13:19:32 +00:00
namespace path
{
/// forward declare
struct Path;
} // namespace path
2018-07-19 04:58:39 +00:00
namespace service
{
2020-05-28 11:21:47 +00:00
struct Endpoint;
constexpr std::size_t MAX_PROTOCOL_MESSAGE_SIZE = 2048 * 2;
2018-07-22 23:14:29 +00:00
/// inner message
2019-05-24 02:01:36 +00:00
struct ProtocolMessage
2018-07-19 04:58:39 +00:00
{
2018-08-09 19:02:17 +00:00
ProtocolMessage(const ConvoTag& tag);
2018-07-22 23:14:29 +00:00
ProtocolMessage();
2018-07-19 04:58:39 +00:00
~ProtocolMessage();
ProtocolType proto = eProtocolTrafficV4;
2020-02-24 19:40:45 +00:00
llarp_time_t queued = 0s;
std::vector<byte_t> payload;
2018-07-22 23:14:29 +00:00
Introduction introReply;
ServiceInfo sender;
2020-05-28 11:21:47 +00:00
Endpoint* handler = nullptr;
2018-08-09 19:02:17 +00:00
ConvoTag tag;
uint64_t seqno = 0;
2019-05-24 02:01:36 +00:00
uint64_t version = LLARP_PROTO_VERSION;
2018-07-19 04:58:39 +00:00
/// encode metainfo for lmq endpoint auth
std::vector<char>
EncodeAuthInfo() const;
2020-06-17 13:07:05 +00:00
2018-07-19 04:58:39 +00:00
bool
2019-05-24 02:01:36 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val);
2018-08-09 19:02:17 +00:00
2018-07-19 04:58:39 +00:00
bool
2019-05-24 02:01:36 +00:00
BEncode(llarp_buffer_t* buf) const;
2018-07-19 04:58:39 +00:00
void
PutBuffer(const llarp_buffer_t& payload);
2018-08-09 19:02:17 +00:00
static void
ProcessAsync(path::Path_ptr p, PathID_t from, std::shared_ptr<ProtocolMessage> self);
2019-05-22 16:20:50 +00:00
bool
operator<(const ProtocolMessage& other) const
{
return seqno < other.seqno;
}
2018-07-22 23:14:29 +00:00
};
/// outer message
struct ProtocolFrame final : public routing::IMessage
2018-07-22 23:14:29 +00:00
{
using Encrypted_t = Encrypted<2048>;
PQCipherBlock C;
2018-12-20 16:49:05 +00:00
Encrypted_t D;
2019-03-08 16:00:45 +00:00
uint64_t R;
KeyExchangeNonce N;
Signature Z;
PathID_t F;
service::ConvoTag T;
2018-08-09 19:02:17 +00:00
2018-09-17 13:28:26 +00:00
ProtocolFrame(const ProtocolFrame& other)
: routing::IMessage()
2018-09-17 15:32:37 +00:00
, C(other.C)
, D(other.D)
2019-03-08 16:00:45 +00:00
, R(other.R)
2018-09-17 15:32:37 +00:00
, N(other.N)
, Z(other.Z)
, F(other.F)
2018-09-17 15:32:37 +00:00
, T(other.T)
2018-09-17 13:28:26 +00:00
{
S = other.S;
2018-09-17 13:28:26 +00:00
version = other.version;
}
ProtocolFrame() : routing::IMessage()
2018-09-17 16:12:42 +00:00
{
2018-12-29 15:44:25 +00:00
Clear();
2018-09-17 16:12:42 +00:00
}
2018-07-22 23:14:29 +00:00
2019-07-30 23:42:13 +00:00
~ProtocolFrame() override;
2018-07-22 23:14:29 +00:00
2018-09-17 15:32:37 +00:00
bool
operator==(const ProtocolFrame& other) const;
bool
operator!=(const ProtocolFrame& other) const
{
return !(*this == other);
}
2018-08-14 21:17:18 +00:00
ProtocolFrame&
operator=(const ProtocolFrame& other);
2018-07-22 23:14:29 +00:00
bool
EncryptAndSign(
const ProtocolMessage& msg, const SharedSecret& sharedkey, const Identity& localIdent);
2018-07-22 23:14:29 +00:00
2019-03-08 16:00:45 +00:00
bool
Sign(const Identity& localIdent);
2019-03-08 16:00:45 +00:00
2018-08-09 19:02:17 +00:00
bool
2019-07-09 13:47:24 +00:00
AsyncDecryptAndVerify(
std::shared_ptr<Logic> logic,
path::Path_ptr fromPath,
const Identity& localIdent,
2021-01-01 18:55:31 +00:00
Endpoint* handler,
std::function<void(std::shared_ptr<ProtocolMessage>)> hook = nullptr) const;
2018-08-09 19:02:17 +00:00
2018-07-22 23:14:29 +00:00
bool
DecryptPayloadInto(const SharedSecret& sharedkey, ProtocolMessage& into) const;
2018-07-19 04:58:39 +00:00
2018-07-22 23:14:29 +00:00
bool
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
2018-07-20 04:50:28 +00:00
2018-07-22 23:14:29 +00:00
bool
BEncode(llarp_buffer_t* buf) const override;
2018-07-19 04:58:39 +00:00
2019-05-24 02:01:36 +00:00
bool
BDecode(llarp_buffer_t* buf)
{
return bencode_decode_dict(*this, buf);
}
void
Clear() override
{
2018-12-29 15:44:25 +00:00
C.Zero();
D.Clear();
F.Zero();
2018-12-29 15:44:25 +00:00
T.Zero();
N.Zero();
Z.Zero();
R = 0;
2019-07-18 16:28:17 +00:00
version = LLARP_PROTO_VERSION;
}
2018-07-22 23:14:29 +00:00
bool
Verify(const ServiceInfo& from) const;
bool
HandleMessage(routing::IMessageHandler* h, AbstractRouter* r) const override;
2018-07-19 04:58:39 +00:00
};
} // namespace service
} // namespace llarp
2018-09-10 18:04:30 +00:00
#endif