2014-03-14 20:35:02 +04:00
|
|
|
#ifndef TUNNEL_POOL__
|
|
|
|
#define TUNNEL_POOL__
|
|
|
|
|
2014-03-18 00:50:03 +04:00
|
|
|
#include <inttypes.h>
|
2014-03-14 23:13:34 +04:00
|
|
|
#include <set>
|
|
|
|
#include <vector>
|
2014-03-18 00:50:03 +04:00
|
|
|
#include <utility>
|
2014-10-03 18:35:11 +04:00
|
|
|
#include <mutex>
|
2015-01-20 06:28:13 +03:00
|
|
|
#include <memory>
|
2014-03-14 23:13:34 +04:00
|
|
|
#include "Identity.h"
|
2014-03-14 20:35:02 +04:00
|
|
|
#include "LeaseSet.h"
|
2014-09-26 05:08:20 +04:00
|
|
|
#include "RouterInfo.h"
|
2014-03-14 23:13:34 +04:00
|
|
|
#include "I2NPProtocol.h"
|
|
|
|
#include "TunnelBase.h"
|
2014-04-02 21:14:21 +04:00
|
|
|
#include "RouterContext.h"
|
2014-10-07 04:18:18 +04:00
|
|
|
#include "Garlic.h"
|
2014-03-14 20:35:02 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace tunnel
|
|
|
|
{
|
|
|
|
class Tunnel;
|
|
|
|
class InboundTunnel;
|
|
|
|
class OutboundTunnel;
|
|
|
|
|
2015-01-20 06:28:13 +03:00
|
|
|
class TunnelPool: public std::enable_shared_from_this<TunnelPool> // per local destination
|
2014-03-14 20:35:02 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-12-16 05:24:01 +03:00
|
|
|
TunnelPool (i2p::garlic::GarlicDestination * localDestination, int numInboundHops, int numOutboundHops, int numTunnels = 5);
|
2014-03-14 20:35:02 +04:00
|
|
|
~TunnelPool ();
|
2014-12-16 03:08:46 +03:00
|
|
|
|
2014-12-16 05:24:01 +03:00
|
|
|
i2p::garlic::GarlicDestination * GetLocalDestination () const { return m_LocalDestination; };
|
|
|
|
void SetLocalDestination (i2p::garlic::GarlicDestination * destination) { m_LocalDestination = destination; };
|
2014-04-02 21:14:21 +04:00
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
void CreateTunnels ();
|
2015-01-27 22:55:46 +03:00
|
|
|
void TunnelCreated (std::shared_ptr<InboundTunnel> createdTunnel);
|
|
|
|
void TunnelExpired (std::shared_ptr<InboundTunnel> expiredTunnel);
|
|
|
|
void TunnelCreated (std::shared_ptr<OutboundTunnel> createdTunnel);
|
|
|
|
void TunnelExpired (std::shared_ptr<OutboundTunnel> expiredTunnel);
|
2015-04-15 04:37:21 +03:00
|
|
|
void RecreateInboundTunnel (std::shared_ptr<InboundTunnel> tunnel);
|
|
|
|
void RecreateOutboundTunnel (std::shared_ptr<OutboundTunnel> tunnel);
|
2015-01-27 22:55:46 +03:00
|
|
|
std::vector<std::shared_ptr<InboundTunnel> > GetInboundTunnels (int num) const;
|
2015-03-21 23:26:14 +03:00
|
|
|
std::shared_ptr<OutboundTunnel> GetNextOutboundTunnel (std::shared_ptr<OutboundTunnel> excluded = nullptr) const;
|
|
|
|
std::shared_ptr<InboundTunnel> GetNextInboundTunnel (std::shared_ptr<InboundTunnel> excluded = nullptr) const;
|
2014-04-01 23:08:53 +04:00
|
|
|
|
2014-03-18 00:50:03 +04:00
|
|
|
void TestTunnels ();
|
2014-12-16 05:24:01 +03:00
|
|
|
void ProcessGarlicMessage (I2NPMessage * msg);
|
2014-03-18 00:50:03 +04:00
|
|
|
void ProcessDeliveryStatus (I2NPMessage * msg);
|
|
|
|
|
2014-10-13 19:21:57 +04:00
|
|
|
bool IsActive () const { return m_IsActive; };
|
|
|
|
void SetActive (bool isActive) { m_IsActive = isActive; };
|
2014-10-11 17:47:24 +04:00
|
|
|
void DetachTunnels ();
|
2014-10-11 17:01:08 +04:00
|
|
|
|
2014-03-14 23:13:34 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
void CreateInboundTunnel ();
|
2014-03-17 00:03:20 +04:00
|
|
|
void CreateOutboundTunnel ();
|
2014-04-04 00:27:37 +04:00
|
|
|
template<class TTunnels>
|
2015-03-21 23:26:14 +03:00
|
|
|
typename TTunnels::value_type GetNextTunnel (TTunnels& tunnels, typename TTunnels::value_type excluded) const;
|
2014-11-21 18:46:11 +03:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> SelectNextHop (std::shared_ptr<const i2p::data::RouterInfo> prevHop) const;
|
2014-03-17 00:03:20 +04:00
|
|
|
|
2014-03-14 20:35:02 +04:00
|
|
|
private:
|
|
|
|
|
2014-12-16 05:24:01 +03:00
|
|
|
i2p::garlic::GarlicDestination * m_LocalDestination;
|
2014-11-30 06:00:52 +03:00
|
|
|
int m_NumInboundHops, m_NumOutboundHops, m_NumTunnels;
|
2014-10-03 18:35:11 +04:00
|
|
|
mutable std::mutex m_InboundTunnelsMutex;
|
2015-01-27 22:55:46 +03:00
|
|
|
std::set<std::shared_ptr<InboundTunnel>, TunnelCreationTimeCmp> m_InboundTunnels; // recent tunnel appears first
|
2014-10-03 18:35:11 +04:00
|
|
|
mutable std::mutex m_OutboundTunnelsMutex;
|
2015-01-27 22:55:46 +03:00
|
|
|
std::set<std::shared_ptr<OutboundTunnel>, TunnelCreationTimeCmp> m_OutboundTunnels;
|
|
|
|
std::map<uint32_t, std::pair<std::shared_ptr<OutboundTunnel>, std::shared_ptr<InboundTunnel> > > m_Tests;
|
2014-10-13 19:21:57 +04:00
|
|
|
bool m_IsActive;
|
2014-09-30 06:18:32 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// for HTTP only
|
|
|
|
const decltype(m_OutboundTunnels)& GetOutboundTunnels () const { return m_OutboundTunnels; };
|
|
|
|
const decltype(m_InboundTunnels)& GetInboundTunnels () const { return m_InboundTunnels; };
|
|
|
|
|
2014-03-14 20:35:02 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|