1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 01:20:10 +00:00
i2pd/Garlic.h

213 lines
7.2 KiB
C
Raw Normal View History

2013-11-23 16:35:15 -05:00
#ifndef GARLIC_H__
#define GARLIC_H__
#include <inttypes.h>
2013-11-24 18:10:27 -05:00
#include <map>
2014-05-11 22:37:33 -04:00
#include <list>
2013-11-24 18:10:27 -05:00
#include <string>
#include <thread>
2014-08-25 13:07:14 -04:00
#include <mutex>
#include <memory>
2015-11-03 09:15:49 -05:00
#include "Crypto.h"
2013-11-23 16:35:15 -05:00
#include "I2NPProtocol.h"
2013-11-24 18:10:27 -05:00
#include "LeaseSet.h"
#include "Queue.h"
2014-10-06 16:49:41 -04:00
#include "Identity.h"
2013-11-23 16:35:15 -05:00
namespace i2p
2016-02-10 22:51:08 -05:00
{
namespace tunnel
{
class OutboundTunnel;
}
2013-11-24 18:10:27 -05:00
namespace garlic
2013-11-23 16:35:15 -05:00
{
2013-11-24 18:10:27 -05:00
2013-11-23 16:35:15 -05:00
enum GarlicDeliveryType
{
eGarlicDeliveryTypeLocal = 0,
eGarlicDeliveryTypeDestination = 1,
eGarlicDeliveryTypeRouter = 2,
eGarlicDeliveryTypeTunnel = 3
};
struct ElGamalBlock
{
uint8_t sessionKey[32];
uint8_t preIV[32];
uint8_t padding[158];
};
2013-11-24 18:10:27 -05:00
2014-10-17 22:15:42 -04:00
const int INCOMING_TAGS_EXPIRATION_TIMEOUT = 960; // 16 minutes
2014-10-16 21:11:02 -04:00
const int OUTGOING_TAGS_EXPIRATION_TIMEOUT = 720; // 12 minutes
const int OUTGOING_TAGS_CONFIRMATION_TIMEOUT = 10; // 10 seconds
2015-03-22 14:59:27 -04:00
const int LEASET_CONFIRMATION_TIMEOUT = 4000; // in milliseconds
2016-02-10 22:51:08 -05:00
const int ROUTING_PATH_EXPIRATION_TIMEOUT = 30; // 30 seconds
2016-02-14 22:10:56 -05:00
const int ROUTING_PATH_MAX_NUM_TIMES_USED = 100; // how many times might be used
2014-10-16 21:11:02 -04:00
2014-10-17 11:26:57 -04:00
struct SessionTag: public i2p::data::Tag<32>
{
SessionTag (const uint8_t * buf, uint32_t ts = 0): Tag<32>(buf), creationTime (ts) {};
SessionTag () = default;
SessionTag (const SessionTag& ) = default;
SessionTag& operator= (const SessionTag& ) = default;
#ifndef _WIN32
SessionTag (SessionTag&& ) = default;
SessionTag& operator= (SessionTag&& ) = default;
#endif
uint32_t creationTime; // seconds since epoch
};
2016-02-10 22:51:08 -05:00
struct GarlicRoutingPath
{
std::shared_ptr<i2p::tunnel::OutboundTunnel> outboundTunnel;
std::shared_ptr<const i2p::data::Lease> remoteLease;
2016-02-11 22:18:44 -05:00
int rtt; // RTT
2016-02-10 22:51:08 -05:00
uint32_t updateTime; // seconds since epoch
2016-02-13 23:02:58 -05:00
int numTimesUsed;
2016-02-10 22:51:08 -05:00
};
2014-10-07 21:08:00 -04:00
class GarlicDestination;
2015-01-22 15:31:34 -05:00
class GarlicRoutingSession: public std::enable_shared_from_this<GarlicRoutingSession>
2013-11-24 18:10:27 -05:00
{
2015-03-22 14:59:27 -04:00
enum LeaseSetUpdateStatus
{
eLeaseSetUpToDate = 0,
eLeaseSetUpdated,
2015-04-05 20:07:32 -04:00
eLeaseSetSubmitted,
eLeaseSetDoNotSend
2015-03-22 14:59:27 -04:00
};
2014-10-14 14:48:25 -04:00
struct UnconfirmedTags
{
UnconfirmedTags (int n): numTags (n), tagsCreationTime (0) { sessionTags = new SessionTag[numTags]; };
~UnconfirmedTags () { delete[] sessionTags; };
2016-07-07 22:39:20 -04:00
uint32_t msgID;
2014-10-14 14:48:25 -04:00
int numTags;
SessionTag * sessionTags;
uint32_t tagsCreationTime;
};
2013-11-24 18:10:27 -05:00
public:
2015-04-05 20:07:32 -04:00
GarlicRoutingSession (GarlicDestination * owner, std::shared_ptr<const i2p::data::RoutingDestination> destination,
int numTags, bool attachLeaseSet);
2014-07-28 12:02:50 -04:00
GarlicRoutingSession (const uint8_t * sessionKey, const SessionTag& sessionTag); // one time encryption
2013-11-24 18:10:27 -05:00
~GarlicRoutingSession ();
2015-11-03 09:15:49 -05:00
std::shared_ptr<I2NPMessage> WrapSingleMessage (std::shared_ptr<const I2NPMessage> msg);
2015-03-22 14:59:27 -04:00
void MessageConfirmed (uint32_t msgID);
2015-01-23 10:07:11 -05:00
bool CleanupExpiredTags (); // returns true if something left
bool CleanupUnconfirmedTags (); // returns true if something has been deleted
2015-04-05 20:07:32 -04:00
void SetLeaseSetUpdated ()
{
if (m_LeaseSetUpdateStatus != eLeaseSetDoNotSend) m_LeaseSetUpdateStatus = eLeaseSetUpdated;
};
bool IsLeaseSetNonConfirmed () const { return m_LeaseSetUpdateStatus == eLeaseSetSubmitted; };
bool IsLeaseSetUpdated () const { return m_LeaseSetUpdateStatus == eLeaseSetUpdated; };
2016-10-24 20:58:25 -04:00
uint64_t GetLeaseSetSubmissionTime () const { return m_LeaseSetSubmissionTime; }
2016-02-10 22:51:08 -05:00
std::shared_ptr<GarlicRoutingPath> GetSharedRoutingPath ();
void SetSharedRoutingPath (std::shared_ptr<GarlicRoutingPath> path);
const GarlicDestination * GetOwner () const { return m_Owner; }
void SetOwner (GarlicDestination * owner) { m_Owner = owner; }
2013-11-24 18:10:27 -05:00
private:
2015-11-03 09:15:49 -05:00
size_t CreateAESBlock (uint8_t * buf, std::shared_ptr<const I2NPMessage> msg);
size_t CreateGarlicPayload (uint8_t * payload, std::shared_ptr<const I2NPMessage> msg, UnconfirmedTags * newTags);
size_t CreateGarlicClove (uint8_t * buf, std::shared_ptr<const I2NPMessage> msg, bool isDestination);
2014-01-08 22:47:22 -05:00
size_t CreateDeliveryStatusClove (uint8_t * buf, uint32_t msgID);
2015-03-22 14:59:27 -04:00
void TagsConfirmed (uint32_t msgID);
2014-10-16 20:12:46 -04:00
UnconfirmedTags * GenerateSessionTags ();
2014-01-18 10:34:57 -05:00
2013-11-24 18:10:27 -05:00
private:
2014-10-07 21:08:00 -04:00
GarlicDestination * m_Owner;
2016-12-16 21:23:04 -05:00
std::shared_ptr<const i2p::data::RoutingDestination> m_Destination;
2016-12-13 12:45:18 -05:00
2014-11-01 21:53:45 -04:00
i2p::crypto::AESKey m_SessionKey;
2014-10-16 20:12:46 -04:00
std::list<SessionTag> m_SessionTags;
int m_NumTags;
2016-11-18 14:50:29 -05:00
std::map<uint32_t, std::unique_ptr<UnconfirmedTags> > m_UnconfirmedTagsMsgs; // msgID->tags
2015-03-22 14:59:27 -04:00
LeaseSetUpdateStatus m_LeaseSetUpdateStatus;
uint32_t m_LeaseSetUpdateMsgID;
uint64_t m_LeaseSetSubmissionTime; // in milliseconds
2014-05-11 22:37:33 -04:00
i2p::crypto::CBCEncryption m_Encryption;
2016-01-23 22:53:19 -05:00
2016-02-10 22:51:08 -05:00
std::shared_ptr<GarlicRoutingPath> m_SharedRoutingPath;
2016-01-23 22:53:19 -05:00
public:
// for HTTP only
size_t GetNumOutgoingTags () const { return m_SessionTags.size (); };
2013-11-24 18:10:27 -05:00
};
2016-02-04 12:36:54 -05:00
//using GarlicRoutingSessionPtr = std::shared_ptr<GarlicRoutingSession>;
typedef std::shared_ptr<GarlicRoutingSession> GarlicRoutingSessionPtr; // TODO: replace to using after switch to 4.8
2016-01-25 13:34:04 -05:00
class GarlicDestination: public i2p::data::LocalDestination
{
public:
GarlicDestination ();
~GarlicDestination ();
2016-11-28 22:47:37 -05:00
void CleanUp ();
void SetNumTags (int numTags) { m_NumTags = numTags; };
2015-04-05 20:07:32 -04:00
std::shared_ptr<GarlicRoutingSession> GetRoutingSession (std::shared_ptr<const i2p::data::RoutingDestination> destination, bool attachLeaseSet);
void CleanupExpiredTags ();
2016-01-25 13:34:04 -05:00
void RemoveDeliveryStatusSession (uint32_t msgID);
2015-06-21 22:29:50 -04:00
std::shared_ptr<I2NPMessage> WrapMessage (std::shared_ptr<const i2p::data::RoutingDestination> destination,
std::shared_ptr<I2NPMessage> msg, bool attachLeaseSet = false);
void AddSessionKey (const uint8_t * key, const uint8_t * tag); // one tag
virtual bool SubmitSessionKey (const uint8_t * key, const uint8_t * tag); // from different thread
2016-01-25 13:34:04 -05:00
void DeliveryStatusSent (GarlicRoutingSessionPtr session, uint32_t msgID);
2014-10-07 21:47:32 -04:00
2015-06-16 10:14:14 -04:00
virtual void ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg);
virtual void ProcessDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg);
virtual void SetLeaseSetUpdated ();
2016-05-25 15:10:28 -04:00
virtual std::shared_ptr<const i2p::data::LocalLeaseSet> GetLeaseSet () = 0; // TODO
virtual std::shared_ptr<i2p::tunnel::TunnelPool> GetTunnelPool () const = 0;
2015-02-05 18:53:43 -05:00
virtual void HandleI2NPMessage (const uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from) = 0;
protected:
2015-06-16 10:14:14 -04:00
void HandleGarlicMessage (std::shared_ptr<I2NPMessage> msg);
void HandleDeliveryStatusMessage (std::shared_ptr<I2NPMessage> msg);
private:
void HandleAESBlock (uint8_t * buf, size_t len, std::shared_ptr<i2p::crypto::CBCDecryption> decryption,
2015-02-05 18:53:43 -05:00
std::shared_ptr<i2p::tunnel::InboundTunnel> from);
void HandleGarlicPayload (uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from);
private:
2017-03-14 12:03:51 -04:00
BN_CTX * m_Ctx; // incoming
// outgoing sessions
int m_NumTags;
std::mutex m_SessionsMutex;
2016-01-25 13:34:04 -05:00
std::map<i2p::data::IdentHash, GarlicRoutingSessionPtr> m_Sessions;
// incoming
2014-10-17 22:15:42 -04:00
std::map<SessionTag, std::shared_ptr<i2p::crypto::CBCDecryption>> m_Tags;
2014-10-07 21:47:32 -04:00
// DeliveryStatus
2016-11-18 11:16:55 -05:00
std::mutex m_DeliveryStatusSessionsMutex;
2016-01-25 13:34:04 -05:00
std::map<uint32_t, GarlicRoutingSessionPtr> m_DeliveryStatusSessions; // msgID -> session
2016-01-23 22:53:19 -05:00
public:
// for HTTP only
size_t GetNumIncomingTags () const { return m_Tags.size (); }
const decltype(m_Sessions)& GetSessions () const { return m_Sessions; };
};
2013-11-23 16:35:15 -05:00
}
2013-11-24 18:10:27 -05:00
}
2013-11-23 16:35:15 -05:00
#endif