i2pd/TunnelPool.cpp

314 lines
8.9 KiB
C++
Raw Normal View History

2014-03-18 00:50:03 +04:00
#include "I2PEndian.h"
#include "CryptoConst.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"
2014-03-14 20:35:02 +04:00
#include "TunnelPool.h"
namespace i2p
{
namespace tunnel
{
TunnelPool::TunnelPool (i2p::data::LocalDestination& localDestination, int numHops, int numTunnels):
m_LocalDestination (localDestination), m_NumHops (numHops), m_NumTunnels (numTunnels)
2014-03-14 20:35:02 +04:00
{
}
TunnelPool::~TunnelPool ()
{
for (auto it: m_InboundTunnels)
2014-03-15 04:51:51 +04:00
it->SetTunnelPool (nullptr);
2014-03-17 00:03:20 +04:00
for (auto it: m_OutboundTunnels)
it->SetTunnelPool (nullptr);
}
void TunnelPool::TunnelCreated (InboundTunnel * createdTunnel)
{
2014-10-03 18:35:11 +04:00
{
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
m_InboundTunnels.insert (createdTunnel);
}
2014-08-16 03:21:30 +04:00
m_LocalDestination.SetLeaseSetUpdated ();
}
2014-03-15 05:22:59 +04:00
void TunnelPool::TunnelExpired (InboundTunnel * expiredTunnel)
{
2014-03-18 16:15:43 +04:00
if (expiredTunnel)
{
expiredTunnel->SetTunnelPool (nullptr);
2014-07-10 05:43:33 +04:00
for (auto it: m_Tests)
if (it.second.second == expiredTunnel) it.second.second = nullptr;
2014-08-09 06:44:33 +04:00
RecreateInboundTunnel (expiredTunnel);
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
void TunnelPool::TunnelCreated (OutboundTunnel * createdTunnel)
{
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_OutboundTunnelsMutex);
2014-03-17 00:03:20 +04:00
m_OutboundTunnels.insert (createdTunnel);
}
void TunnelPool::TunnelExpired (OutboundTunnel * expiredTunnel)
{
2014-03-18 16:15:43 +04:00
if (expiredTunnel)
2014-03-21 23:54:55 +04:00
{
2014-03-18 16:15:43 +04:00
expiredTunnel->SetTunnelPool (nullptr);
2014-07-10 05:43:33 +04:00
for (auto it: m_Tests)
if (it.second.first == expiredTunnel) it.second.first = nullptr;
2014-08-09 06:44:33 +04:00
RecreateOutboundTunnel (expiredTunnel);
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
std::vector<InboundTunnel *> TunnelPool::GetInboundTunnels (int num) const
{
std::vector<InboundTunnel *> v;
int i = 0;
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
for (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;
}
2014-10-03 18:35:11 +04:00
OutboundTunnel * TunnelPool::GetNextOutboundTunnel (OutboundTunnel * suggested) 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, suggested);
2014-03-17 00:03:20 +04:00
}
2014-10-03 18:35:11 +04:00
InboundTunnel * TunnelPool::GetNextInboundTunnel (InboundTunnel * suggested) const
{
2014-10-03 18:35:11 +04:00
std::unique_lock<std::mutex> l(m_InboundTunnelsMutex);
return GetNextTunnel (m_InboundTunnels, suggested);
}
template<class TTunnels>
typename TTunnels::value_type TunnelPool::GetNextTunnel (TTunnels& tunnels,
2014-10-03 18:35:11 +04:00
typename TTunnels::value_type suggested) const
{
if (tunnels.empty ()) return nullptr;
2014-08-28 05:53:44 +04:00
if (suggested && tunnels.count (suggested) > 0 && suggested->IsEstablished ())
return suggested;
2014-08-28 06:21:29 +04:00
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
uint32_t ind = rnd.GenerateWord32 (0, tunnels.size ()/2), i = 0;
typename TTunnels::value_type tunnel = nullptr;
for (auto it: tunnels)
2014-08-28 06:21:29 +04:00
{
2014-08-28 05:53:44 +04:00
if (it->IsEstablished ())
2014-08-28 06:21:29 +04:00
{
tunnel = it;
i++;
}
2014-08-29 15:44:12 +04:00
if (i > ind && tunnel) break;
2014-08-28 06:21:29 +04:00
}
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);
for (auto it : m_InboundTunnels)
if (it->IsEstablished ()) num++;
}
2014-03-15 04:24:12 +04:00
for (int i = num; i < m_NumTunnels; 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);
for (auto it : m_OutboundTunnels)
if (it->IsEstablished ()) num++;
}
2014-03-17 00:03:20 +04:00
for (int i = num; i < m_NumTunnels; i++)
CreateOutboundTunnel ();
}
2014-03-18 00:50:03 +04:00
void TunnelPool::TestTunnels ()
{
auto& rnd = i2p::context.GetRandomNumberGenerator ();
for (auto it: m_Tests)
{
LogPrint ("Tunnel test ", (int)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-08-16 03:21:30 +04:00
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
}
m_Tests.clear ();
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;
it1++;
}
if ((*it2)->IsFailed ())
{
failed = true;
it2++;
}
if (!failed)
2014-07-27 04:56:42 +04:00
{
2014-03-22 02:26:11 +04:00
uint32_t msgID = rnd.GenerateWord32 ();
m_Tests[msgID] = std::make_pair (*it1, *it2);
(*it1)->SendTunnelDataMsg ((*it2)->GetNextIdentHash (), (*it2)->GetNextTunnelID (),
CreateDeliveryStatusMsg (msgID));
it1++; it2++;
}
2014-03-18 00:50:03 +04:00
}
}
void TunnelPool::ProcessDeliveryStatus (I2NPMessage * msg)
{
I2NPDeliveryStatusMsg * deliveryStatus = (I2NPDeliveryStatusMsg *)msg->GetPayload ();
auto it = m_Tests.find (be32toh (deliveryStatus->msgID));
if (it != m_Tests.end ())
{
2014-07-27 04:56:42 +04:00
// restore from test failed state if any
2014-08-28 05:53:44 +04:00
if (it->second.first->GetState () == eTunnelStateTestFailed)
it->second.first->SetState (eTunnelStateEstablished);
if (it->second.second->GetState () == eTunnelStateTestFailed)
it->second.second->SetState (eTunnelStateEstablished);
2014-07-27 18:39:38 +04:00
LogPrint ("Tunnel test ", it->first, " successive. ", i2p::util::GetMillisecondsSinceEpoch () - be64toh (deliveryStatus->timestamp), " milliseconds");
m_Tests.erase (it);
DeleteI2NPMessage (msg);
2014-03-18 00:50:03 +04:00
}
else
i2p::garlic::routing.PostI2NPMsg (msg);
2014-03-18 00:50:03 +04:00
}
const i2p::data::RouterInfo * TunnelPool::SelectNextHop (const i2p::data::RouterInfo * prevHop) const
{
auto hop = m_NumHops >= 3 ? i2p::data::netdb.GetHighBandwidthRandomRouter (prevHop) :
i2p::data::netdb.GetRandomRouter (prevHop);
if (!hop)
hop = i2p::data::netdb.GetRandomRouter ();
return hop;
}
void TunnelPool::CreateInboundTunnel ()
{
2014-09-02 16:16:46 +04:00
OutboundTunnel * outboundTunnel = GetNextOutboundTunnel ();
if (!outboundTunnel)
outboundTunnel = tunnels.GetNextOutboundTunnel ();
LogPrint ("Creating destination inbound tunnel...");
const i2p::data::RouterInfo * prevHop = &i2p::context.GetRouterInfo ();
std::vector<const i2p::data::RouterInfo *> hops;
int numHops = m_NumHops;
if (outboundTunnel)
{
// last hop
auto hop = outboundTunnel->GetTunnelConfig ()->GetFirstHop ()->router;
if (hop->GetIdentHash () != i2p::context.GetRouterIdentHash ()) // outbound shouldn't be zero-hop tunnel
{
prevHop = hop;
hops.push_back (prevHop);
numHops--;
}
}
for (int i = 0; i < numHops; i++)
{
auto hop = SelectNextHop (prevHop);
prevHop = hop;
hops.push_back (hop);
}
std::reverse (hops.begin (), hops.end ());
2014-07-17 15:40:34 +04:00
auto * tunnel = tunnels.CreateTunnel<InboundTunnel> (new TunnelConfig (hops), outboundTunnel);
2014-03-15 04:51:51 +04:00
tunnel->SetTunnelPool (this);
2014-03-14 20:35:02 +04:00
}
2014-03-17 00:03:20 +04:00
2014-08-09 06:44:33 +04:00
void TunnelPool::RecreateInboundTunnel (InboundTunnel * tunnel)
{
OutboundTunnel * outboundTunnel = GetNextOutboundTunnel ();
if (!outboundTunnel)
outboundTunnel = tunnels.GetNextOutboundTunnel ();
LogPrint ("Re-creating destination inbound tunnel...");
auto * newTunnel = tunnels.CreateTunnel<InboundTunnel> (tunnel->GetTunnelConfig ()->Clone (), outboundTunnel);
newTunnel->SetTunnelPool (this);
}
2014-03-17 00:03:20 +04:00
void TunnelPool::CreateOutboundTunnel ()
{
2014-09-02 16:16:46 +04:00
InboundTunnel * inboundTunnel = GetNextInboundTunnel ();
if (!inboundTunnel)
inboundTunnel = tunnels.GetNextInboundTunnel ();
2014-03-17 00:03:20 +04:00
if (inboundTunnel)
{
LogPrint ("Creating destination outbound tunnel...");
const i2p::data::RouterInfo * prevHop = &i2p::context.GetRouterInfo ();
std::vector<const i2p::data::RouterInfo *> hops;
for (int i = 0; i < m_NumHops; i++)
{
auto hop = SelectNextHop (prevHop);
prevHop = hop;
hops.push_back (hop);
}
2014-03-17 00:03:20 +04:00
auto * tunnel = tunnels.CreateTunnel<OutboundTunnel> (
new TunnelConfig (hops, inboundTunnel->GetTunnelConfig ()));
2014-03-17 00:03:20 +04:00
tunnel->SetTunnelPool (this);
}
2014-09-14 15:50:01 +04:00
else
LogPrint ("Can't create outbound tunnel. No inbound tunnels found");
2014-03-17 00:03:20 +04:00
}
2014-08-09 06:44:33 +04:00
void TunnelPool::RecreateOutboundTunnel (OutboundTunnel * tunnel)
{
InboundTunnel * inboundTunnel = GetNextInboundTunnel ();
if (!inboundTunnel)
inboundTunnel = tunnels.GetNextInboundTunnel ();
2014-09-14 15:50:01 +04:00
if (inboundTunnel)
{
LogPrint ("Re-creating destination outbound tunnel...");
auto * newTunnel = tunnels.CreateTunnel<OutboundTunnel> (
tunnel->GetTunnelConfig ()->Clone (inboundTunnel->GetTunnelConfig ()));
newTunnel->SetTunnelPool (this);
}
else
LogPrint ("Can't re-create outbound tunnel. No inbound tunnels found");
2014-08-09 06:44:33 +04:00
}
2014-03-14 20:35:02 +04:00
}
}