2020-01-15 23:13:43 +03:00
|
|
|
#ifndef ECIES_X25519_AEAD_RATCHET_SESSION_H__
|
|
|
|
#define ECIES_X25519_AEAD_RATCHET_SESSION_H__
|
|
|
|
|
2020-01-17 03:33:00 +03:00
|
|
|
#include <string.h>
|
2020-01-15 23:13:43 +03:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <functional>
|
2020-01-21 22:40:23 +03:00
|
|
|
#include <memory>
|
2020-01-17 19:21:41 +03:00
|
|
|
#include <vector>
|
2020-03-27 02:03:38 +03:00
|
|
|
#include <list>
|
2020-01-15 23:13:43 +03:00
|
|
|
#include "Identity.h"
|
2020-01-17 00:34:13 +03:00
|
|
|
#include "Crypto.h"
|
2020-01-16 22:59:19 +03:00
|
|
|
#include "Garlic.h"
|
2020-01-15 23:13:43 +03:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace garlic
|
|
|
|
{
|
2020-01-20 23:17:38 +03:00
|
|
|
class RatchetTagSet
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
void DHInitialize (const uint8_t * rootKey, const uint8_t * k);
|
|
|
|
void NextSessionTagRatchet ();
|
2020-01-21 22:40:23 +03:00
|
|
|
uint64_t GetNextSessionTag ();
|
2020-02-05 23:48:51 +03:00
|
|
|
int GetNextIndex () const { return m_NextIndex; };
|
2020-03-08 02:46:40 +03:00
|
|
|
void GetSymmKey (int index, uint8_t * key);
|
2020-01-20 23:17:38 +03:00
|
|
|
|
|
|
|
private:
|
2020-02-09 05:51:02 +03:00
|
|
|
|
2020-03-08 02:46:40 +03:00
|
|
|
void CalculateSymmKeyCK (int index, uint8_t * key);
|
2020-02-09 05:51:02 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2020-01-21 22:40:23 +03:00
|
|
|
union
|
|
|
|
{
|
|
|
|
uint64_t ll[8];
|
|
|
|
uint8_t buf[64];
|
|
|
|
|
|
|
|
const uint8_t * GetSessTagCK () const { return buf; }; // sessTag_chainKey = keydata[0:31]
|
|
|
|
const uint8_t * GetSessTagConstant () const { return buf + 32; }; // SESSTAG_CONSTANT = keydata[32:63]
|
|
|
|
uint64_t GetTag () const { return ll[4]; }; // tag = keydata[32:39]
|
|
|
|
|
|
|
|
} m_KeyData;
|
2020-02-09 05:51:02 +03:00
|
|
|
uint8_t m_SessTagConstant[32], m_SymmKeyCK[32], m_CurrentSymmKeyCK[64];
|
|
|
|
int m_NextIndex, m_NextSymmKeyIndex;
|
2020-01-20 23:17:38 +03:00
|
|
|
};
|
|
|
|
|
2020-01-15 23:13:43 +03:00
|
|
|
enum ECIESx25519BlockType
|
|
|
|
{
|
|
|
|
eECIESx25519BlkDateTime = 0,
|
|
|
|
eECIESx25519BlkSessionID = 1,
|
|
|
|
eECIESx25519BlkTermination = 4,
|
|
|
|
eECIESx25519BlkOptions = 5,
|
|
|
|
eECIESx25519BlkNextSessionKey = 7,
|
2020-03-27 02:03:38 +03:00
|
|
|
eECIESx25519BlkAck = 8,
|
|
|
|
eECIESx25519BlkAckRequest = 9,
|
2020-01-15 23:13:43 +03:00
|
|
|
eECIESx25519BlkGalicClove = 11,
|
|
|
|
eECIESx25519BlkPadding = 254
|
|
|
|
};
|
|
|
|
|
2020-02-20 23:44:09 +03:00
|
|
|
|
|
|
|
const int ECIESX25519_RESTART_TIMEOUT = 120; // number of second of inactivity we should restart after
|
|
|
|
const int ECIESX25519_EXPIRATION_TIMEOUT = 600; // in seconds
|
|
|
|
|
2020-01-21 22:40:23 +03:00
|
|
|
class ECIESX25519AEADRatchetSession: public GarlicRoutingSession, public std::enable_shared_from_this<ECIESX25519AEADRatchetSession>
|
2020-01-15 23:13:43 +03:00
|
|
|
{
|
2020-01-17 19:21:41 +03:00
|
|
|
enum SessionState
|
|
|
|
{
|
|
|
|
eSessionStateNew =0,
|
2020-01-29 23:54:11 +03:00
|
|
|
eSessionStateNewSessionReceived,
|
2020-02-04 00:21:07 +03:00
|
|
|
eSessionStateNewSessionSent,
|
|
|
|
eSessionStateEstablished
|
2020-01-17 19:21:41 +03:00
|
|
|
};
|
|
|
|
|
2020-01-15 23:13:43 +03:00
|
|
|
public:
|
|
|
|
|
2020-01-16 22:59:19 +03:00
|
|
|
ECIESX25519AEADRatchetSession (GarlicDestination * owner);
|
2020-01-15 23:13:43 +03:00
|
|
|
~ECIESX25519AEADRatchetSession ();
|
|
|
|
|
2020-02-04 00:21:07 +03:00
|
|
|
bool HandleNextMessage (const uint8_t * buf, size_t len, int index = 0);
|
2020-01-16 22:59:19 +03:00
|
|
|
std::shared_ptr<I2NPMessage> WrapSingleMessage (std::shared_ptr<const I2NPMessage> msg);
|
|
|
|
|
2020-01-17 03:33:00 +03:00
|
|
|
const uint8_t * GetRemoteStaticKey () const { return m_RemoteStaticKey; }
|
|
|
|
void SetRemoteStaticKey (const uint8_t * key) { memcpy (m_RemoteStaticKey, key, 32); }
|
2020-01-15 23:13:43 +03:00
|
|
|
|
2020-01-30 19:48:32 +03:00
|
|
|
void SetDestination (const i2p::data::IdentHash& dest) // TODO:
|
|
|
|
{
|
|
|
|
if (!m_Destination) m_Destination.reset (new i2p::data::IdentHash (dest));
|
|
|
|
}
|
2020-02-10 01:19:42 +03:00
|
|
|
|
2020-03-14 23:35:34 +03:00
|
|
|
bool CheckExpired (uint64_t ts); // true is expired
|
2020-02-20 23:44:09 +03:00
|
|
|
bool CanBeRestarted (uint64_t ts) const { return ts > m_LastActivityTimestamp + ECIESX25519_RESTART_TIMEOUT; }
|
|
|
|
|
2020-01-15 23:13:43 +03:00
|
|
|
private:
|
|
|
|
|
2020-01-23 05:42:30 +03:00
|
|
|
void ResetKeys ();
|
2020-01-15 23:13:43 +03:00
|
|
|
void MixHash (const uint8_t * buf, size_t len);
|
2020-02-05 23:48:51 +03:00
|
|
|
void CreateNonce (uint64_t seqn, uint8_t * nonce);
|
2020-01-21 20:19:20 +03:00
|
|
|
bool GenerateEphemeralKeysAndEncode (uint8_t * buf); // buf is 32 bytes
|
2020-01-21 22:40:23 +03:00
|
|
|
uint64_t CreateNewSessionTag () const;
|
2020-01-15 23:13:43 +03:00
|
|
|
|
2020-02-04 00:21:07 +03:00
|
|
|
bool HandleNewIncomingSession (const uint8_t * buf, size_t len);
|
|
|
|
bool HandleNewOutgoingSessionReply (const uint8_t * buf, size_t len);
|
|
|
|
bool HandleExistingSessionMessage (const uint8_t * buf, size_t len, int index);
|
2020-03-27 02:03:38 +03:00
|
|
|
void HandlePayload (const uint8_t * buf, size_t len, int index = 0);
|
2020-01-15 23:13:43 +03:00
|
|
|
|
2020-01-17 00:34:13 +03:00
|
|
|
bool NewOutgoingSessionMessage (const uint8_t * payload, size_t len, uint8_t * out, size_t outLen);
|
2020-01-17 22:11:15 +03:00
|
|
|
bool NewSessionReplyMessage (const uint8_t * payload, size_t len, uint8_t * out, size_t outLen);
|
2020-02-05 23:48:51 +03:00
|
|
|
bool NewExistingSessionMessage (const uint8_t * payload, size_t len, uint8_t * out, size_t outLen);
|
|
|
|
|
2020-01-17 19:21:41 +03:00
|
|
|
std::vector<uint8_t> CreatePayload (std::shared_ptr<const I2NPMessage> msg);
|
2020-01-30 19:48:32 +03:00
|
|
|
size_t CreateGarlicClove (std::shared_ptr<const I2NPMessage> msg, uint8_t * buf, size_t len, bool isDestination = false);
|
2020-03-09 01:13:41 +03:00
|
|
|
size_t CreateDeliveryStatusClove (std::shared_ptr<const I2NPMessage> msg, uint8_t * buf, size_t len);
|
2020-01-17 00:34:13 +03:00
|
|
|
|
2020-02-10 01:19:42 +03:00
|
|
|
void GenerateMoreReceiveTags (int numTags);
|
|
|
|
|
2020-01-15 23:13:43 +03:00
|
|
|
private:
|
|
|
|
|
2020-01-17 03:33:00 +03:00
|
|
|
uint8_t m_H[32], m_CK[64] /* [chainkey, key] */, m_RemoteStaticKey[32];
|
2020-01-30 05:57:10 +03:00
|
|
|
uint8_t m_Aepk[32]; // Alice's ephemeral keys TODO: for incoming only
|
2020-01-17 00:34:13 +03:00
|
|
|
i2p::crypto::X25519Keys m_EphemeralKeys;
|
2020-01-17 19:21:41 +03:00
|
|
|
SessionState m_State = eSessionStateNew;
|
2020-02-20 23:44:09 +03:00
|
|
|
uint64_t m_LastActivityTimestamp = 0; // incoming
|
2020-02-04 00:21:07 +03:00
|
|
|
RatchetTagSet m_SendTagset, m_ReceiveTagset;
|
2020-01-30 19:48:32 +03:00
|
|
|
std::unique_ptr<i2p::data::IdentHash> m_Destination;// TODO: might not need it
|
2020-04-01 00:35:51 +03:00
|
|
|
std::list<std::pair<uint16_t, int> > m_AckRequests; // (tagsetid, index)
|
2020-01-15 23:13:43 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|