2020-05-22 13:18:41 +00:00
|
|
|
/*
|
2022-03-08 03:20:11 +00:00
|
|
|
* Copyright (c) 2013-2022, The PurpleI2P Project
|
2020-05-22 13:18:41 +00:00
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
#ifndef TUNNEL_H__
|
|
|
|
#define TUNNEL_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <map>
|
2016-03-02 01:48:56 +00:00
|
|
|
#include <unordered_map>
|
2013-12-07 00:02:49 +00:00
|
|
|
#include <list>
|
2014-01-20 23:37:51 +00:00
|
|
|
#include <vector>
|
2013-12-07 00:02:49 +00:00
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
2014-04-03 16:19:12 +00:00
|
|
|
#include <mutex>
|
2015-01-20 03:28:13 +00:00
|
|
|
#include <memory>
|
2021-10-21 01:05:22 +00:00
|
|
|
#include "util.h"
|
2013-12-07 00:02:49 +00:00
|
|
|
#include "Queue.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Crypto.h"
|
2013-12-07 00:02:49 +00:00
|
|
|
#include "TunnelConfig.h"
|
2014-03-14 16:35:02 +00:00
|
|
|
#include "TunnelPool.h"
|
2013-12-07 00:02:49 +00:00
|
|
|
#include "TransitTunnel.h"
|
|
|
|
#include "TunnelEndpoint.h"
|
|
|
|
#include "TunnelGateway.h"
|
|
|
|
#include "TunnelBase.h"
|
|
|
|
#include "I2NPProtocol.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace tunnel
|
2016-10-20 16:14:32 +00:00
|
|
|
{
|
2018-01-06 03:48:51 +00:00
|
|
|
const int TUNNEL_EXPIRATION_TIMEOUT = 660; // 11 minutes
|
|
|
|
const int TUNNEL_EXPIRATION_THRESHOLD = 60; // 1 minute
|
|
|
|
const int TUNNEL_RECREATION_THRESHOLD = 90; // 1.5 minutes
|
2014-09-26 14:15:34 +00:00
|
|
|
const int TUNNEL_CREATION_TIMEOUT = 30; // 30 seconds
|
2020-09-21 23:22:53 +00:00
|
|
|
const int STANDARD_NUM_RECORDS = 4; // in VariableTunnelBuild message
|
2021-01-14 16:24:03 +00:00
|
|
|
const int MAX_NUM_RECORDS = 8;
|
2021-06-02 18:45:21 +00:00
|
|
|
const int HIGH_LATENCY_PER_HOP = 250; // in milliseconds
|
2021-11-27 20:30:35 +00:00
|
|
|
|
2021-10-22 23:18:45 +00:00
|
|
|
const size_t I2NP_TUNNEL_MESSAGE_SIZE = TUNNEL_DATA_MSG_SIZE + I2NP_HEADER_SIZE + 34; // reserved for alignment and NTCP 16 + 6 + 12
|
2021-11-27 20:30:35 +00:00
|
|
|
const size_t I2NP_TUNNEL_ENPOINT_MESSAGE_SIZE = 2*TUNNEL_DATA_MSG_SIZE + I2NP_HEADER_SIZE + TUNNEL_GATEWAY_HEADER_SIZE + 28; // reserved for alignment and NTCP 16 + 6 + 6
|
|
|
|
|
2022-05-01 20:25:08 +00:00
|
|
|
/** function for visiting a hops stored in a tunnel */
|
|
|
|
typedef std::function<void(std::shared_ptr<const i2p::data::IdentityEx>)> TunnelHopVisitor;
|
|
|
|
|
2014-07-27 00:56:42 +00:00
|
|
|
enum TunnelState
|
|
|
|
{
|
|
|
|
eTunnelStatePending,
|
2014-09-26 14:15:34 +00:00
|
|
|
eTunnelStateBuildReplyReceived,
|
|
|
|
eTunnelStateBuildFailed,
|
2014-07-27 00:56:42 +00:00
|
|
|
eTunnelStateEstablished,
|
|
|
|
eTunnelStateTestFailed,
|
2014-08-26 14:31:32 +00:00
|
|
|
eTunnelStateFailed,
|
|
|
|
eTunnelStateExpiring
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
class OutboundTunnel;
|
|
|
|
class InboundTunnel;
|
|
|
|
class Tunnel: public TunnelBase
|
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
struct TunnelHop
|
|
|
|
{
|
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> ident;
|
|
|
|
i2p::crypto::TunnelDecryption decryption;
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
public:
|
|
|
|
|
2015-05-06 20:17:48 +00:00
|
|
|
Tunnel (std::shared_ptr<const TunnelConfig> config);
|
2021-11-01 02:03:34 +00:00
|
|
|
~Tunnel ();
|
2013-12-07 00:02:49 +00:00
|
|
|
|
2015-01-27 19:55:46 +00:00
|
|
|
void Build (uint32_t replyMsgID, std::shared_ptr<OutboundTunnel> outboundTunnel = nullptr);
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2015-05-06 20:17:48 +00:00
|
|
|
std::shared_ptr<const TunnelConfig> GetTunnelConfig () const { return m_Config; }
|
2018-01-06 03:48:51 +00:00
|
|
|
std::vector<std::shared_ptr<const i2p::data::IdentityEx> > GetPeers () const;
|
|
|
|
std::vector<std::shared_ptr<const i2p::data::IdentityEx> > GetInvertedPeers () const;
|
2021-10-05 23:38:33 +00:00
|
|
|
bool IsShortBuildMessage () const { return m_IsShortBuildMessage; };
|
2021-11-05 18:51:24 +00:00
|
|
|
i2p::data::RouterInfo::CompatibleTransports GetFarEndTransports () const { return m_FarEndTransports; };
|
2014-07-27 00:56:42 +00:00
|
|
|
TunnelState GetState () const { return m_State; };
|
2016-11-01 14:26:40 +00:00
|
|
|
void SetState (TunnelState state);
|
2014-07-27 00:56:42 +00:00
|
|
|
bool IsEstablished () const { return m_State == eTunnelStateEstablished; };
|
|
|
|
bool IsFailed () const { return m_State == eTunnelStateFailed; };
|
2015-04-17 15:36:42 +00:00
|
|
|
bool IsRecreated () const { return m_IsRecreated; };
|
2021-09-10 23:57:38 +00:00
|
|
|
void SetRecreated (bool recreated) { m_IsRecreated = recreated; };
|
2018-02-27 00:41:24 +00:00
|
|
|
int GetNumHops () const { return m_Hops.size (); };
|
2016-11-01 14:46:07 +00:00
|
|
|
virtual bool IsInbound() const = 0;
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2015-01-20 03:28:13 +00:00
|
|
|
std::shared_ptr<TunnelPool> GetTunnelPool () const { return m_Pool; };
|
2018-01-06 03:48:51 +00:00
|
|
|
void SetTunnelPool (std::shared_ptr<TunnelPool> pool) { m_Pool = pool; };
|
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
bool HandleTunnelBuildResponse (uint8_t * msg, size_t len);
|
2016-03-03 03:41:53 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
// implements TunnelBase
|
2015-06-19 18:38:31 +00:00
|
|
|
void SendTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage> msg);
|
2018-01-06 03:48:51 +00:00
|
|
|
void EncryptTunnelMsg (std::shared_ptr<const I2NPMessage> in, std::shared_ptr<I2NPMessage> out);
|
2015-12-10 00:07:12 +00:00
|
|
|
|
2017-01-01 19:29:39 +00:00
|
|
|
/** @brief add latency sample */
|
|
|
|
void AddLatencySample(const uint64_t ms) { m_Latency = (m_Latency + ms) >> 1; }
|
|
|
|
/** @brief get this tunnel's estimated latency */
|
|
|
|
uint64_t GetMeanLatency() const { return m_Latency; }
|
2017-07-08 13:53:33 +00:00
|
|
|
/** @brief return true if this tunnel's latency fits in range [lowerbound, upperbound] */
|
2017-01-01 19:29:39 +00:00
|
|
|
bool LatencyFitsRange(uint64_t lowerbound, uint64_t upperbound) const;
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2017-01-01 19:29:39 +00:00
|
|
|
bool LatencyIsKnown() const { return m_Latency > 0; }
|
2021-06-02 18:45:21 +00:00
|
|
|
bool IsSlow () const { return LatencyIsKnown() && (int)m_Latency > HIGH_LATENCY_PER_HOP*GetNumHops (); }
|
2021-11-27 20:30:35 +00:00
|
|
|
|
2022-05-01 20:25:08 +00:00
|
|
|
/** visit all hops we currently store */
|
|
|
|
void VisitTunnelHops(TunnelHopVisitor v);
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
private:
|
|
|
|
|
2015-05-06 20:17:48 +00:00
|
|
|
std::shared_ptr<const TunnelConfig> m_Config;
|
2021-11-13 20:11:59 +00:00
|
|
|
std::vector<TunnelHop> m_Hops;
|
2021-10-05 23:38:33 +00:00
|
|
|
bool m_IsShortBuildMessage;
|
2015-01-20 03:28:13 +00:00
|
|
|
std::shared_ptr<TunnelPool> m_Pool; // pool, tunnel belongs to, or null
|
2014-07-27 00:56:42 +00:00
|
|
|
TunnelState m_State;
|
2021-10-05 23:38:33 +00:00
|
|
|
i2p::data::RouterInfo::CompatibleTransports m_FarEndTransports;
|
2021-11-27 20:30:35 +00:00
|
|
|
bool m_IsRecreated; // if tunnel is replaced by new, or new tunnel requested to replace
|
2017-01-01 19:29:39 +00:00
|
|
|
uint64_t m_Latency; // in milliseconds
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
2013-12-07 00:02:49 +00:00
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
class OutboundTunnel: public Tunnel
|
2013-12-07 00:02:49 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
OutboundTunnel (std::shared_ptr<const TunnelConfig> config):
|
2015-11-03 14:15:49 +00:00
|
|
|
Tunnel (config), m_Gateway (this), m_EndpointIdentHash (config->GetLastIdentHash ()) {};
|
2013-12-07 00:02:49 +00:00
|
|
|
|
2015-06-22 02:29:50 +00:00
|
|
|
void SendTunnelDataMsg (const uint8_t * gwHash, uint32_t gwTunnel, std::shared_ptr<i2p::I2NPMessage> msg);
|
2016-03-03 21:24:13 +00:00
|
|
|
virtual void SendTunnelDataMsg (const std::vector<TunnelMessageBlock>& msgs); // multiple messages
|
2018-01-06 03:48:51 +00:00
|
|
|
const i2p::data::IdentHash& GetEndpointIdentHash () const { return m_EndpointIdentHash; };
|
2016-03-03 21:24:13 +00:00
|
|
|
virtual size_t GetNumSentBytes () const { return m_Gateway.GetNumSentBytes (); };
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2014-01-04 03:56:28 +00:00
|
|
|
// implements TunnelBase
|
2021-10-15 18:01:41 +00:00
|
|
|
void HandleTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage>&& tunnelMsg);
|
2016-11-01 14:46:07 +00:00
|
|
|
|
|
|
|
bool IsInbound() const { return false; }
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
private:
|
|
|
|
|
2014-04-03 16:19:12 +00:00
|
|
|
std::mutex m_SendMutex;
|
2018-01-06 03:48:51 +00:00
|
|
|
TunnelGateway m_Gateway;
|
2015-11-03 14:15:49 +00:00
|
|
|
i2p::data::IdentHash m_EndpointIdentHash;
|
2013-12-07 00:02:49 +00:00
|
|
|
};
|
2016-03-03 03:41:53 +00:00
|
|
|
|
2015-02-05 23:53:43 +00:00
|
|
|
class InboundTunnel: public Tunnel, public std::enable_shared_from_this<InboundTunnel>
|
2013-12-07 00:02:49 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-05-06 20:17:48 +00:00
|
|
|
InboundTunnel (std::shared_ptr<const TunnelConfig> config): Tunnel (config), m_Endpoint (true) {};
|
2021-10-15 18:01:41 +00:00
|
|
|
void HandleTunnelDataMsg (std::shared_ptr<I2NPMessage>&& msg);
|
2016-03-03 12:30:38 +00:00
|
|
|
virtual size_t GetNumReceivedBytes () const { return m_Endpoint.GetNumReceivedBytes (); };
|
2016-11-01 14:46:07 +00:00
|
|
|
bool IsInbound() const { return true; }
|
2016-11-09 19:51:55 +00:00
|
|
|
|
|
|
|
// override TunnelBase
|
2018-01-06 03:48:51 +00:00
|
|
|
void Cleanup () { m_Endpoint.Cleanup (); };
|
2016-11-09 19:51:55 +00:00
|
|
|
|
2016-03-03 12:30:38 +00:00
|
|
|
private:
|
2013-12-07 00:02:49 +00:00
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
TunnelEndpoint m_Endpoint;
|
|
|
|
};
|
|
|
|
|
2016-03-03 03:41:53 +00:00
|
|
|
class ZeroHopsInboundTunnel: public InboundTunnel
|
|
|
|
{
|
|
|
|
public:
|
2013-12-07 00:02:49 +00:00
|
|
|
|
2016-03-03 03:41:53 +00:00
|
|
|
ZeroHopsInboundTunnel ();
|
2018-01-06 03:48:51 +00:00
|
|
|
void SendTunnelDataMsg (std::shared_ptr<i2p::I2NPMessage> msg);
|
2016-03-03 12:30:38 +00:00
|
|
|
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2016-03-03 12:30:38 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
size_t m_NumReceivedBytes;
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
|
|
|
|
2016-03-03 21:24:13 +00:00
|
|
|
class ZeroHopsOutboundTunnel: public OutboundTunnel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
ZeroHopsOutboundTunnel ();
|
|
|
|
void SendTunnelDataMsg (const std::vector<TunnelMessageBlock>& msgs);
|
|
|
|
size_t GetNumSentBytes () const { return m_NumSentBytes; };
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2016-03-03 21:24:13 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
size_t m_NumSentBytes;
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
2016-03-03 21:24:13 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
class Tunnels
|
2018-01-06 03:48:51 +00:00
|
|
|
{
|
2013-12-07 00:02:49 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
Tunnels ();
|
|
|
|
~Tunnels ();
|
|
|
|
void Start ();
|
2018-01-06 03:48:51 +00:00
|
|
|
void Stop ();
|
|
|
|
|
|
|
|
std::shared_ptr<InboundTunnel> GetPendingInboundTunnel (uint32_t replyMsgID);
|
|
|
|
std::shared_ptr<OutboundTunnel> GetPendingOutboundTunnel (uint32_t replyMsgID);
|
2015-01-27 19:55:46 +00:00
|
|
|
std::shared_ptr<InboundTunnel> GetNextInboundTunnel ();
|
|
|
|
std::shared_ptr<OutboundTunnel> GetNextOutboundTunnel ();
|
2015-01-20 03:28:13 +00:00
|
|
|
std::shared_ptr<TunnelPool> GetExploratoryPool () const { return m_ExploratoryPool; };
|
2016-03-02 01:48:56 +00:00
|
|
|
std::shared_ptr<TunnelBase> GetTunnel (uint32_t tunnelID);
|
2015-01-10 03:27:52 +00:00
|
|
|
int GetTransitTunnelsExpirationTimeout ();
|
2016-03-01 20:22:36 +00:00
|
|
|
void AddTransitTunnel (std::shared_ptr<TransitTunnel> tunnel);
|
2015-01-27 19:55:46 +00:00
|
|
|
void AddOutboundTunnel (std::shared_ptr<OutboundTunnel> newTunnel);
|
|
|
|
void AddInboundTunnel (std::shared_ptr<InboundTunnel> newTunnel);
|
2021-07-21 17:08:12 +00:00
|
|
|
std::shared_ptr<InboundTunnel> CreateInboundTunnel (std::shared_ptr<TunnelConfig> config, std::shared_ptr<TunnelPool> pool, std::shared_ptr<OutboundTunnel> outboundTunnel);
|
|
|
|
std::shared_ptr<OutboundTunnel> CreateOutboundTunnel (std::shared_ptr<TunnelConfig> config, std::shared_ptr<TunnelPool> pool);
|
2015-06-19 18:38:31 +00:00
|
|
|
void PostTunnelData (std::shared_ptr<I2NPMessage> msg);
|
|
|
|
void PostTunnelData (const std::vector<std::shared_ptr<I2NPMessage> >& msgs);
|
2015-01-27 19:55:46 +00:00
|
|
|
void AddPendingTunnel (uint32_t replyMsgID, std::shared_ptr<InboundTunnel> tunnel);
|
|
|
|
void AddPendingTunnel (uint32_t replyMsgID, std::shared_ptr<OutboundTunnel> tunnel);
|
2022-03-08 03:20:11 +00:00
|
|
|
std::shared_ptr<TunnelPool> CreateTunnelPool (int numInboundHops, int numOuboundHops,
|
|
|
|
int numInboundTunnels, int numOutboundTunnels, int inboundVariance, int outboundVariance);
|
2015-01-20 03:28:13 +00:00
|
|
|
void DeleteTunnelPool (std::shared_ptr<TunnelPool> pool);
|
|
|
|
void StopTunnelPool (std::shared_ptr<TunnelPool> pool);
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2021-10-22 23:18:45 +00:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPTunnelMessage (bool endpoint);
|
2021-11-27 20:30:35 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
private:
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2016-06-29 15:26:46 +00:00
|
|
|
template<class TTunnel>
|
2021-11-27 20:30:35 +00:00
|
|
|
std::shared_ptr<TTunnel> CreateTunnel (std::shared_ptr<TunnelConfig> config,
|
2021-07-21 17:08:12 +00:00
|
|
|
std::shared_ptr<TunnelPool> pool, std::shared_ptr<OutboundTunnel> outboundTunnel = nullptr);
|
2016-06-29 15:26:46 +00:00
|
|
|
|
2015-01-26 16:56:10 +00:00
|
|
|
template<class TTunnel>
|
2018-01-06 03:48:51 +00:00
|
|
|
std::shared_ptr<TTunnel> GetPendingTunnel (uint32_t replyMsgID, const std::map<uint32_t, std::shared_ptr<TTunnel> >& pendingTunnels);
|
2015-01-26 16:56:10 +00:00
|
|
|
|
2016-03-01 20:22:36 +00:00
|
|
|
void HandleTunnelGatewayMsg (std::shared_ptr<TunnelBase> tunnel, std::shared_ptr<I2NPMessage> msg);
|
2015-01-23 21:26:39 +00:00
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
void Run ();
|
2013-12-07 00:02:49 +00:00
|
|
|
void ManageTunnels ();
|
|
|
|
void ManageOutboundTunnels ();
|
|
|
|
void ManageInboundTunnels ();
|
2014-01-04 03:56:28 +00:00
|
|
|
void ManageTransitTunnels ();
|
2014-10-06 16:50:36 +00:00
|
|
|
void ManagePendingTunnels ();
|
2015-01-26 16:56:10 +00:00
|
|
|
template<class PendingTunnels>
|
|
|
|
void ManagePendingTunnels (PendingTunnels& pendingTunnels);
|
2020-11-16 00:38:34 +00:00
|
|
|
void ManageTunnelPools (uint64_t ts);
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2021-07-30 18:12:50 +00:00
|
|
|
std::shared_ptr<ZeroHopsInboundTunnel> CreateZeroHopsInboundTunnel (std::shared_ptr<TunnelPool> pool);
|
|
|
|
std::shared_ptr<ZeroHopsOutboundTunnel> CreateZeroHopsOutboundTunnel (std::shared_ptr<TunnelPool> pool);
|
2016-03-03 21:24:13 +00:00
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
bool m_IsRunning;
|
2018-01-06 03:48:51 +00:00
|
|
|
std::thread * m_Thread;
|
2015-01-27 19:55:46 +00:00
|
|
|
std::map<uint32_t, std::shared_ptr<InboundTunnel> > m_PendingInboundTunnels; // by replyMsgID
|
|
|
|
std::map<uint32_t, std::shared_ptr<OutboundTunnel> > m_PendingOutboundTunnels; // by replyMsgID
|
2016-03-02 16:58:52 +00:00
|
|
|
std::list<std::shared_ptr<InboundTunnel> > m_InboundTunnels;
|
2015-01-27 19:55:46 +00:00
|
|
|
std::list<std::shared_ptr<OutboundTunnel> > m_OutboundTunnels;
|
2016-03-02 01:48:56 +00:00
|
|
|
std::list<std::shared_ptr<TransitTunnel> > m_TransitTunnels;
|
|
|
|
std::unordered_map<uint32_t, std::shared_ptr<TunnelBase> > m_Tunnels; // tunnelID->tunnel known by this id
|
2021-11-01 02:03:34 +00:00
|
|
|
std::mutex m_PoolsMutex;
|
2015-01-20 03:28:13 +00:00
|
|
|
std::list<std::shared_ptr<TunnelPool>> m_Pools;
|
|
|
|
std::shared_ptr<TunnelPool> m_ExploratoryPool;
|
2015-06-19 18:38:31 +00:00
|
|
|
i2p::util::Queue<std::shared_ptr<I2NPMessage> > m_Queue;
|
2021-10-22 23:18:45 +00:00
|
|
|
i2p::util::MemoryPoolMt<I2NPMessageBuffer<I2NP_TUNNEL_ENPOINT_MESSAGE_SIZE> > m_I2NPTunnelEndpointMessagesMemoryPool;
|
|
|
|
i2p::util::MemoryPoolMt<I2NPMessageBuffer<I2NP_TUNNEL_MESSAGE_SIZE> > m_I2NPTunnelMessagesMemoryPool;
|
2021-11-27 20:30:35 +00:00
|
|
|
|
2015-02-28 12:59:34 +00:00
|
|
|
// some stats
|
|
|
|
int m_NumSuccesiveTunnelCreations, m_NumFailedTunnelCreations;
|
|
|
|
|
2013-12-07 00:02:49 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
// for HTTP only
|
|
|
|
const decltype(m_OutboundTunnels)& GetOutboundTunnels () const { return m_OutboundTunnels; };
|
|
|
|
const decltype(m_InboundTunnels)& GetInboundTunnels () const { return m_InboundTunnels; };
|
2013-12-10 13:10:49 +00:00
|
|
|
const decltype(m_TransitTunnels)& GetTransitTunnels () const { return m_TransitTunnels; };
|
2016-03-02 14:41:37 +00:00
|
|
|
|
2016-03-02 16:58:52 +00:00
|
|
|
size_t CountTransitTunnels() const;
|
|
|
|
size_t CountInboundTunnels() const;
|
|
|
|
size_t CountOutboundTunnels() const;
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2015-02-03 21:45:19 +00:00
|
|
|
int GetQueueSize () { return m_Queue.GetSize (); };
|
2015-02-28 12:59:34 +00:00
|
|
|
int GetTunnelCreationSuccessRate () const // in percents
|
2018-01-06 03:48:51 +00:00
|
|
|
{
|
2015-02-28 12:59:34 +00:00
|
|
|
int totalNum = m_NumSuccesiveTunnelCreations + m_NumFailedTunnelCreations;
|
|
|
|
return totalNum ? m_NumSuccesiveTunnelCreations*100/totalNum : 0;
|
2018-01-06 03:48:51 +00:00
|
|
|
}
|
|
|
|
};
|
2013-12-07 00:02:49 +00:00
|
|
|
|
|
|
|
extern Tunnels tunnels;
|
2018-01-06 03:48:51 +00:00
|
|
|
}
|
2013-12-07 00:02:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|