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