i2pd/TunnelPool.cpp

528 lines
15 KiB
C++
Raw Normal View History

2015-06-10 22:32:55 +03:00
#include <algorithm>
2014-03-18 00:50:03 +04:00
#include "I2PEndian.h"
2015-11-03 17:15:49 +03:00
#include "Crypto.h"
2014-03-14 20:35:02 +04:00
#include "Tunnel.h"
#include "NetDb.h"
2014-03-15 04:24:12 +04:00
#include "Timestamp.h"
2014-03-18 00:50:03 +04:00
#include "Garlic.h"
#include "Transports.h"
2015-11-03 17:15:49 +03:00
#include "Log.h"
2016-11-01 17:26:40 +03:00
#include "Tunnel.h"
2014-03-14 20:35:02 +04:00
#include "TunnelPool.h"
2016-10-20 19:14:32 +03:00
#include "Destination.h"
2016-11-02 00:49:42 +03:00
#ifdef WITH_EVENTS
2016-10-20 19:14:32 +03:00
#include "Event.h"
2016-11-02 00:49:42 +03:00
#endif
2014-03-14 20:35:02 +04:00
namespace i2p
{
namespace tunnel
{
2016-10-20 19:14:32 +03:00
TunnelPool::TunnelPool (int numInboundHops, int numOutboundHops, int numInboundTunnels, int numOutboundTunnels):
m_NumInboundHops (numInboundHops), m_NumOutboundHops (numOutboundHops),
2016-08-29 19:09:37 +03:00
m_NumInboundTunnels (numInboundTunnels), m_NumOutboundTunnels (numOutboundTunnels), m_IsActive (true),
m_CustomPeerSelector(nullptr)
2014-03-14 20:35:02 +04:00
{
}
TunnelPool::~TunnelPool ()
2014-10-11 17:47:24 +04:00
{
DetachTunnels ();
}
2015-06-10 22:32:55 +03:00
void TunnelPool::SetExplicitPeers (std::shared_ptr<std::vector<i2p::data::IdentHash> > explicitPeers)
{
m_ExplicitPeers = explicitPeers;
if (m_ExplicitPeers)
{
int size = m_ExplicitPeers->size ();
if (m_NumInboundHops > size)
{
m_NumInboundHops = size;
2015-12-18 14:48:22 +03:00
LogPrint (eLogInfo, "Tunnels: Inbound tunnel length has beed adjusted to ", size, " for explicit peers");
2015-06-10 22:32:55 +03:00
}
if (m_NumOutboundHops > size)
{
m_NumOutboundHops = size;
2015-12-18 14:48:22 +03:00
LogPrint (eLogInfo, "Tunnels: Outbound tunnel length has beed adjusted to ", size, " for explicit peers");
2015-06-10 22:32:55 +03:00
}
m_NumInboundTunnels = 1;
m_NumOutboundTunnels = 1;
}
}
2014-10-11 17:47:24 +04:00
void TunnelPool::DetachTunnels ()
2014-03-14 20:35:02 +04:00
{
2014-10-06 20:50:36 +04:00
{
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (auto& it: m_InboundTunnels)
2014-10-06 20:50:36 +04:00
it->SetTunnelPool (nullptr);
m_InboundTunnels.clear ();
2014-10-06 20:50:36 +04:00
}
{
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (auto& it: m_OutboundTunnels)
2014-10-06 20:50:36 +04:00
it->SetTunnelPool (nullptr);
m_OutboundTunnels.clear ();
2014-10-06 20:50:36 +04:00
}
m_Tests.clear ();
2014-10-11 17:47:24 +04:00
}
2015-01-27 22:55:46 +03:00
void TunnelPool::TunnelCreated (std::shared_ptr<InboundTunnel> createdTunnel)
{
if (!m_IsActive) return;
2014-10-03 18:35:11 +04:00
{
2016-11-02 00:49:42 +03:00
#ifdef WITH_EVENTS
2016-11-01 17:26:40 +03:00
EmitTunnelEvent("tunnels.created", createdTunnel);
2016-11-02 00:49:42 +03:00
#endif
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
m_InboundTunnels.insert (createdTunnel);
}
2014-12-16 05:24:01 +03:00
if (m_LocalDestination)
m_LocalDestination->SetLeaseSetUpdated ();
}
2015-01-27 22:55:46 +03:00
void TunnelPool::TunnelExpired (std::shared_ptr<InboundTunnel> expiredTunnel)
2014-03-15 05:22:59 +04:00
{
2014-03-18 16:15:43 +04:00
if (expiredTunnel)
2016-10-20 19:14:32 +03:00
{
2016-11-02 00:49:42 +03:00
#ifdef WITH_EVENTS
2016-11-01 17:26:40 +03:00
EmitTunnelEvent("tunnels.expired", expiredTunnel);
2016-11-02 00:49:42 +03:00
#endif
2014-03-18 16:15:43 +04:00
expiredTunnel->SetTunnelPool (nullptr);
2016-08-10 01:16:24 +03:00
for (auto& it: m_Tests)
2014-07-10 05:43:33 +04:00
if (it.second.second == expiredTunnel) it.second.second = nullptr;
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
m_InboundTunnels.erase (expiredTunnel);
2014-03-18 16:15:43 +04:00
}
2014-03-15 05:22:59 +04:00
}
2014-03-17 00:03:20 +04:00
2015-01-27 22:55:46 +03:00
void TunnelPool::TunnelCreated (std::shared_ptr<OutboundTunnel> createdTunnel)
2014-03-17 00:03:20 +04:00
{
if (!m_IsActive) return;
{
2016-11-02 00:49:42 +03:00
#ifdef WITH_EVENTS
2016-11-01 17:26:40 +03:00
EmitTunnelEvent("tunnels.created", createdTunnel);
2016-11-02 00:49:42 +03:00
#endif
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
m_OutboundTunnels.insert (createdTunnel);
}
//CreatePairedInboundTunnel (createdTunnel);
2014-03-17 00:03:20 +04:00
}
2015-01-27 22:55:46 +03:00
void TunnelPool::TunnelExpired (std::shared_ptr<OutboundTunnel> expiredTunnel)
2014-03-17 00:03:20 +04:00
{
2014-03-18 16:15:43 +04:00
if (expiredTunnel)
2014-03-21 23:54:55 +04:00
{
2016-11-02 00:49:42 +03:00
#ifdef WITH_EVENTS
2016-11-01 17:26:40 +03:00
EmitTunnelEvent("tunnels.expired", expiredTunnel);
2016-11-02 00:49:42 +03:00
#endif
2014-03-18 16:15:43 +04:00
expiredTunnel->SetTunnelPool (nullptr);
2016-08-10 01:16:24 +03:00
for (auto& it: m_Tests)
2014-07-10 05:43:33 +04:00
if (it.second.first == expiredTunnel) it.second.first = nullptr;
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
m_OutboundTunnels.erase (expiredTunnel);
2014-03-21 23:54:55 +04:00
}
2014-03-17 00:03:20 +04:00
}
2014-03-15 05:22:59 +04:00
2015-01-27 22:55:46 +03:00
std::vector<std::shared_ptr<InboundTunnel> > TunnelPool::GetInboundTunnels (int num) const
{
2015-01-27 22:55:46 +03:00
std::vector<std::shared_ptr<InboundTunnel> > v;
int i = 0;
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (const auto& it : m_InboundTunnels)
{
if (i >= num) break;
2014-08-28 05:53:44 +04:00
if (it->IsEstablished ())
2014-03-21 23:54:55 +04:00
{
v.push_back (it);
i++;
}
}
return v;
}
std::shared_ptr<OutboundTunnel> TunnelPool::GetNextOutboundTunnel (std::shared_ptr<OutboundTunnel> excluded) const
2014-03-17 00:03:20 +04:00
{
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
return GetNextTunnel (m_OutboundTunnels, excluded);
2014-03-17 00:03:20 +04:00
}
std::shared_ptr<InboundTunnel> TunnelPool::GetNextInboundTunnel (std::shared_ptr<InboundTunnel> excluded) const
{
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
return GetNextTunnel (m_InboundTunnels, excluded);
}
template<class TTunnels>
typename TTunnels::value_type TunnelPool::GetNextTunnel (TTunnels& tunnels, typename TTunnels::value_type excluded) const
{
if (tunnels.empty ()) return nullptr;
2015-11-03 17:15:49 +03:00
uint32_t ind = rand () % (tunnels.size ()/2 + 1), i = 0;
2014-08-28 06:21:29 +04:00
typename TTunnels::value_type tunnel = nullptr;
2016-08-10 01:16:24 +03:00
for (const auto& it: tunnels)
2014-08-28 06:21:29 +04:00
{
if (it->IsEstablished () && it != excluded)
2014-08-28 06:21:29 +04:00
{
tunnel = it;
i++;
}
2014-08-29 15:44:12 +04:00
if (i > ind && tunnel) break;
}
if (!tunnel && excluded && excluded->IsEstablished ()) tunnel = excluded;
2014-08-28 06:21:29 +04:00
return tunnel;
}
std::shared_ptr<OutboundTunnel> TunnelPool::GetNewOutboundTunnel (std::shared_ptr<OutboundTunnel> old) const
{
if (old && old->IsEstablished ()) return old;
std::shared_ptr<OutboundTunnel> tunnel;
if (old)
{
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (const auto& it: m_OutboundTunnels)
2015-11-03 17:15:49 +03:00
if (it->IsEstablished () && old->GetEndpointIdentHash () == it->GetEndpointIdentHash ())
2015-04-17 18:36:42 +03:00
{
tunnel = it;
2015-04-17 18:36:42 +03:00
break;
}
}
if (!tunnel)
tunnel = GetNextOutboundTunnel ();
return tunnel;
}
void TunnelPool::CreateTunnels ()
{
2014-08-28 05:53:44 +04:00
int num = 0;
2014-10-03 18:35:11 +04:00
{
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (const auto& it : m_InboundTunnels)
2014-10-03 18:35:11 +04:00
if (it->IsEstablished ()) num++;
}
2015-05-05 19:32:13 +03:00
for (int i = num; i < m_NumInboundTunnels; i++)
CreateInboundTunnel ();
2014-08-28 05:53:44 +04:00
num = 0;
2014-10-03 18:35:11 +04:00
{
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
2016-08-10 01:16:24 +03:00
for (const auto& it : m_OutboundTunnels)
2014-10-03 18:35:11 +04:00
if (it->IsEstablished ()) num++;
}
2015-05-05 19:32:13 +03:00
for (int i = num; i < m_NumOutboundTunnels; i++)
2014-03-17 00:03:20 +04:00
CreateOutboundTunnel ();
}
2014-03-18 00:50:03 +04:00
void TunnelPool::TestTunnels ()
{
decltype(m_Tests) tests;
{
std::unique_lock<std::mutex> l(m_TestsMutex);
2016-08-10 01:16:24 +03:00
tests.swap(m_Tests);
}
2016-08-10 01:16:24 +03:00
for (auto& it: tests)
2014-03-18 00:50:03 +04:00
{
2016-01-18 03:00:00 +03:00
LogPrint (eLogWarning, "Tunnels: test of tunnel ", it.first, " failed");
2014-07-27 04:56:42 +04:00
// if test failed again with another tunnel we consider it failed
2014-07-10 05:43:33 +04:00
if (it.second.first)
{
2014-07-27 04:56:42 +04:00
if (it.second.first->GetState () == eTunnelStateTestFailed)
{
it.second.first->SetState (eTunnelStateFailed);
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
2014-07-27 04:56:42 +04:00
m_OutboundTunnels.erase (it.second.first);
}
else
it.second.first->SetState (eTunnelStateTestFailed);
2014-07-10 05:43:33 +04:00
}
if (it.second.second)
{
2014-07-27 04:56:42 +04:00
if (it.second.second->GetState () == eTunnelStateTestFailed)
{
it.second.second->SetState (eTunnelStateFailed);
2014-10-03 18:35:11 +04:00
{
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
m_InboundTunnels.erase (it.second.second);
}
2014-12-16 05:24:01 +03:00
if (m_LocalDestination)
m_LocalDestination->SetLeaseSetUpdated ();
2014-07-27 04:56:42 +04:00
}
else
it.second.second->SetState (eTunnelStateTestFailed);
2014-07-10 05:43:33 +04:00
}
2014-03-18 00:50:03 +04:00
}
2014-11-29 00:19:56 +03:00
// new tests
2014-03-18 00:50:03 +04:00
auto it1 = m_OutboundTunnels.begin ();
auto it2 = m_InboundTunnels.begin ();
while (it1 != m_OutboundTunnels.end () && it2 != m_InboundTunnels.end ())
{
2014-03-22 02:26:11 +04:00
bool failed = false;
if ((*it1)->IsFailed ())
{
failed = true;
2016-08-10 01:16:24 +03:00
++it1;
2014-03-22 02:26:11 +04:00
}
if ((*it2)->IsFailed ())
{
failed = true;
2016-08-10 01:16:24 +03:00
++it2;
2014-03-22 02:26:11 +04:00
}
if (!failed)
2014-07-27 04:56:42 +04:00
{
2015-11-03 17:15:49 +03:00
uint32_t msgID;
RAND_bytes ((uint8_t *)&msgID, 4);
{
std::unique_lock<std::mutex> l(m_TestsMutex);
m_Tests[msgID] = std::make_pair (*it1, *it2);
}
2014-12-09 03:33:50 +03:00
(*it1)->SendTunnelDataMsg ((*it2)->GetNextIdentHash (), (*it2)->GetNextTunnelID (),
2015-06-24 17:45:58 +03:00
CreateDeliveryStatusMsg (msgID));
2016-08-10 01:16:24 +03:00
++it1; ++it2;
2014-03-22 02:26:11 +04:00
}
2014-03-18 00:50:03 +04:00
}
}
2015-06-16 17:14:14 +03:00
void TunnelPool::ProcessGarlicMessage (std::shared_ptr<I2NPMessage> msg)
2014-12-16 05:24:01 +03:00
{
if (m_LocalDestination)
m_LocalDestination->ProcessGarlicMessage (msg);
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogWarning, "Tunnels: local destination doesn't exist, dropped");
2014-12-16 05:24:01 +03:00
}
2015-06-16 17:14:14 +03:00
void TunnelPool::ProcessDeliveryStatus (std::shared_ptr<I2NPMessage> msg)
2014-03-18 00:50:03 +04:00
{
2014-12-30 23:33:11 +03:00
const uint8_t * buf = msg->GetPayload ();
uint32_t msgID = bufbe32toh (buf);
buf += 4;
uint64_t timestamp = bufbe64toh (buf);
decltype(m_Tests)::mapped_type test;
bool found = false;
{
std::unique_lock<std::mutex> l(m_TestsMutex);
auto it = m_Tests.find (msgID);
if (it != m_Tests.end ())
{
found = true;
test = it->second;
m_Tests.erase (it);
}
}
if (found)
2014-03-18 00:50:03 +04:00
{
2014-07-27 04:56:42 +04:00
// restore from test failed state if any
if (test.first->GetState () == eTunnelStateTestFailed)
test.first->SetState (eTunnelStateEstablished);
if (test.second->GetState () == eTunnelStateTestFailed)
test.second->SetState (eTunnelStateEstablished);
LogPrint (eLogDebug, "Tunnels: test of ", msgID, " successful. ", i2p::util::GetMillisecondsSinceEpoch () - timestamp, " milliseconds");
2014-03-18 00:50:03 +04:00
}
else
2014-12-16 05:24:01 +03:00
{
if (m_LocalDestination)
m_LocalDestination->ProcessDeliveryStatusMessage (msg);
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogWarning, "Tunnels: Local destination doesn't exist, dropped");
2014-12-16 05:24:01 +03:00
}
2014-03-18 00:50:03 +04:00
}
std::shared_ptr<const i2p::data::RouterInfo> TunnelPool::SelectNextHop (std::shared_ptr<const i2p::data::RouterInfo> prevHop) const
{
bool isExploratory = (i2p::tunnel::tunnels.GetExploratoryPool () == shared_from_this ());
2015-03-28 03:34:31 +03:00
auto hop = isExploratory ? i2p::data::netdb.GetRandomRouter (prevHop):
2014-11-30 06:00:52 +03:00
i2p::data::netdb.GetHighBandwidthRandomRouter (prevHop);
2015-05-04 20:01:27 +03:00
if (!hop || hop->GetProfile ()->IsBad ())
hop = i2p::data::netdb.GetRandomRouter (prevHop);
return hop;
}
2015-11-03 17:15:49 +03:00
bool TunnelPool::SelectPeers (std::vector<std::shared_ptr<const i2p::data::IdentityEx> >& peers, bool isInbound)
{
2015-06-10 22:32:55 +03:00
int numHops = isInbound ? m_NumInboundHops : m_NumOutboundHops;
2016-08-29 19:09:37 +03:00
// peers is empty
if (numHops <= 0) return true;
// custom peer selector in use ?
{
std::lock_guard<std::mutex> lock(m_CustomPeerSelectorMutex);
if (m_CustomPeerSelector)
return m_CustomPeerSelector->SelectPeers(peers, numHops, isInbound);
}
2016-08-29 19:09:37 +03:00
// explicit peers in use
if (m_ExplicitPeers) return SelectExplicitPeers (peers, isInbound);
auto prevHop = i2p::context.GetSharedRouterInfo ();
if(i2p::transport::transports.RoutesRestricted())
{
/** if routes are restricted prepend trusted first hop */
auto hop = i2p::transport::transports.GetRestrictedPeer();
if(!hop) return false;
peers.push_back(hop->GetRouterIdentity());
prevHop = hop;
}
else if (i2p::transport::transports.GetNumPeers () > 25)
{
auto r = i2p::transport::transports.GetRandomPeer ();
if (r && !r->GetProfile ()->IsBad ())
{
prevHop = r;
peers.push_back (r->GetRouterIdentity ());
numHops--;
}
}
for(int i = 0; i < numHops; i++ )
{
auto hop = SelectNextHop (prevHop);
2015-04-03 17:02:45 +03:00
if (!hop)
{
2015-12-18 14:48:22 +03:00
LogPrint (eLogError, "Tunnels: Can't select next hop for ", prevHop->GetIdentHashBase64 ());
return false;
2015-04-03 17:02:45 +03:00
}
prevHop = hop;
2015-11-03 17:15:49 +03:00
peers.push_back (hop->GetRouterIdentity ());
2016-06-17 18:03:33 +03:00
}
return true;
}
2015-06-10 22:32:55 +03:00
2015-11-03 17:15:49 +03:00
bool TunnelPool::SelectExplicitPeers (std::vector<std::shared_ptr<const i2p::data::IdentityEx> >& peers, bool isInbound)
2015-06-10 22:32:55 +03:00
{
int size = m_ExplicitPeers->size ();
std::vector<int> peerIndicies;
for (int i = 0; i < size; i++) peerIndicies.push_back(i);
std::random_shuffle (peerIndicies.begin(), peerIndicies.end());
int numHops = isInbound ? m_NumInboundHops : m_NumOutboundHops;
for (int i = 0; i < numHops; i++)
{
auto& ident = (*m_ExplicitPeers)[peerIndicies[i]];
auto r = i2p::data::netdb.FindRouter (ident);
if (r)
2015-11-03 17:15:49 +03:00
peers.push_back (r->GetRouterIdentity ());
2015-06-10 22:32:55 +03:00
else
{
2015-12-18 14:48:22 +03:00
LogPrint (eLogInfo, "Tunnels: Can't find router for ", ident.ToBase64 ());
2015-06-10 22:32:55 +03:00
i2p::data::netdb.RequestDestination (ident);
return false;
}
}
return true;
}
void TunnelPool::CreateInboundTunnel ()
{
auto outboundTunnel = GetNextOutboundTunnel ();
if (!outboundTunnel)
outboundTunnel = tunnels.GetNextOutboundTunnel ();
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Creating destination inbound tunnel...");
2015-11-03 17:15:49 +03:00
std::vector<std::shared_ptr<const i2p::data::IdentityEx> > peers;
if (SelectPeers (peers, true))
{
2016-06-30 04:37:17 +03:00
std::shared_ptr<TunnelConfig> config;
if (m_NumInboundHops > 0)
{
std::reverse (peers.begin (), peers.end ());
config = std::make_shared<TunnelConfig> (peers);
}
auto tunnel = tunnels.CreateInboundTunnel (config, outboundTunnel);
tunnel->SetTunnelPool (shared_from_this ());
if (tunnel->IsEstablished ()) // zero hops
TunnelCreated (tunnel);
}
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogError, "Tunnels: Can't create inbound tunnel, no peers available");
2014-03-14 20:35:02 +04:00
}
2014-03-17 00:03:20 +04:00
2015-01-27 22:55:46 +03:00
void TunnelPool::RecreateInboundTunnel (std::shared_ptr<InboundTunnel> tunnel)
2014-08-09 06:44:33 +04:00
{
2015-01-27 22:55:46 +03:00
auto outboundTunnel = GetNextOutboundTunnel ();
2014-08-09 06:44:33 +04:00
if (!outboundTunnel)
outboundTunnel = tunnels.GetNextOutboundTunnel ();
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Re-creating destination inbound tunnel...");
std::shared_ptr<TunnelConfig> config;
if (m_NumInboundHops > 0) config = std::make_shared<TunnelConfig>(tunnel->GetPeers ());
2016-06-30 04:37:17 +03:00
auto newTunnel = tunnels.CreateInboundTunnel (config, outboundTunnel);
2015-01-20 06:28:13 +03:00
newTunnel->SetTunnelPool (shared_from_this());
if (newTunnel->IsEstablished ()) // zero hops
TunnelCreated (newTunnel);
2014-08-09 06:44:33 +04:00
}
2014-03-17 00:03:20 +04:00
void TunnelPool::CreateOutboundTunnel ()
{
2015-01-27 22:55:46 +03:00
auto inboundTunnel = GetNextInboundTunnel ();
2014-09-02 16:16:46 +04:00
if (!inboundTunnel)
inboundTunnel = tunnels.GetNextInboundTunnel ();
2014-03-17 00:03:20 +04:00
if (inboundTunnel)
{
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Creating destination outbound tunnel...");
2015-11-03 17:15:49 +03:00
std::vector<std::shared_ptr<const i2p::data::IdentityEx> > peers;
if (SelectPeers (peers, false))
{
std::shared_ptr<TunnelConfig> config;
if (m_NumOutboundHops > 0)
config = std::make_shared<TunnelConfig>(peers, inboundTunnel->GetNextTunnelID (), inboundTunnel->GetNextIdentHash ());
2016-06-30 04:37:17 +03:00
auto tunnel = tunnels.CreateOutboundTunnel (config);
tunnel->SetTunnelPool (shared_from_this ());
if (tunnel->IsEstablished ()) // zero hops
TunnelCreated (tunnel);
}
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no peers available");
2014-03-17 00:03:20 +04:00
}
2014-09-14 15:50:01 +04:00
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no inbound tunnels found");
2014-03-17 00:03:20 +04:00
}
2015-01-27 22:55:46 +03:00
void TunnelPool::RecreateOutboundTunnel (std::shared_ptr<OutboundTunnel> tunnel)
2014-08-09 06:44:33 +04:00
{
2015-01-27 22:55:46 +03:00
auto inboundTunnel = GetNextInboundTunnel ();
2014-08-09 06:44:33 +04:00
if (!inboundTunnel)
inboundTunnel = tunnels.GetNextInboundTunnel ();
2014-09-14 15:50:01 +04:00
if (inboundTunnel)
{
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Re-creating destination outbound tunnel...");
std::shared_ptr<TunnelConfig> config;
if (m_NumOutboundHops > 0)
config = std::make_shared<TunnelConfig>(tunnel->GetPeers (), inboundTunnel->GetNextTunnelID (), inboundTunnel->GetNextIdentHash ());
2016-06-30 04:37:17 +03:00
auto newTunnel = tunnels.CreateOutboundTunnel (config);
2015-01-20 06:28:13 +03:00
newTunnel->SetTunnelPool (shared_from_this ());
if (newTunnel->IsEstablished ()) // zero hops
TunnelCreated (newTunnel);
2014-09-14 15:50:01 +04:00
}
else
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Can't re-create outbound tunnel, no inbound tunnels found");
}
void TunnelPool::CreatePairedInboundTunnel (std::shared_ptr<OutboundTunnel> outboundTunnel)
{
2015-12-18 14:48:22 +03:00
LogPrint (eLogDebug, "Tunnels: Creating paired inbound tunnel...");
auto tunnel = tunnels.CreateInboundTunnel (std::make_shared<TunnelConfig>(outboundTunnel->GetInvertedPeers ()), outboundTunnel);
tunnel->SetTunnelPool (shared_from_this ());
}
void TunnelPool::SetCustomPeerSelector(TunnelPeerSelector selector)
{
std::lock_guard<std::mutex> lock(m_CustomPeerSelectorMutex);
m_CustomPeerSelector = selector;
}
void TunnelPool::UnsetCustomPeerSelector()
{
SetCustomPeerSelector(nullptr);
}
bool TunnelPool::HasCustomPeerSelector()
{
std::lock_guard<std::mutex> lock(m_CustomPeerSelectorMutex);
return m_CustomPeerSelector != nullptr;
}
2014-03-14 20:35:02 +04:00
}
}