|
|
@ -498,9 +498,8 @@ namespace tunnel |
|
|
|
} |
|
|
|
} |
|
|
|
prevHop = hop; |
|
|
|
prevHop = hop; |
|
|
|
path.Add (hop); |
|
|
|
path.Add (hop); |
|
|
|
if (i == numHops - 1) |
|
|
|
|
|
|
|
path.farEndTransports = hop->GetCompatibleTransports (inbound); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
path.farEndTransports = prevHop->GetCompatibleTransports (inbound); // last hop
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -555,13 +554,13 @@ namespace tunnel |
|
|
|
|
|
|
|
|
|
|
|
void TunnelPool::CreateInboundTunnel () |
|
|
|
void TunnelPool::CreateInboundTunnel () |
|
|
|
{ |
|
|
|
{ |
|
|
|
auto outboundTunnel = GetNextOutboundTunnel (); |
|
|
|
|
|
|
|
if (!outboundTunnel) |
|
|
|
|
|
|
|
outboundTunnel = tunnels.GetNextOutboundTunnel (); |
|
|
|
|
|
|
|
LogPrint (eLogDebug, "Tunnels: Creating destination inbound tunnel..."); |
|
|
|
LogPrint (eLogDebug, "Tunnels: Creating destination inbound tunnel..."); |
|
|
|
Path path; |
|
|
|
Path path; |
|
|
|
if (SelectPeers (path, true)) |
|
|
|
if (SelectPeers (path, true)) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
auto outboundTunnel = GetNextOutboundTunnel (nullptr, path.farEndTransports); |
|
|
|
|
|
|
|
if (!outboundTunnel) |
|
|
|
|
|
|
|
outboundTunnel = tunnels.GetNextOutboundTunnel (); |
|
|
|
std::shared_ptr<TunnelConfig> config; |
|
|
|
std::shared_ptr<TunnelConfig> config; |
|
|
|
if (m_NumInboundHops > 0) |
|
|
|
if (m_NumInboundHops > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -583,7 +582,7 @@ namespace tunnel |
|
|
|
CreateInboundTunnel (); |
|
|
|
CreateInboundTunnel (); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
auto outboundTunnel = GetNextOutboundTunnel (); |
|
|
|
auto outboundTunnel = GetNextOutboundTunnel (nullptr, tunnel->GetFarEndTransports ()); |
|
|
|
if (!outboundTunnel) |
|
|
|
if (!outboundTunnel) |
|
|
|
outboundTunnel = tunnels.GetNextOutboundTunnel (); |
|
|
|
outboundTunnel = tunnels.GetNextOutboundTunnel (); |
|
|
|
LogPrint (eLogDebug, "Tunnels: Re-creating destination inbound tunnel..."); |
|
|
|
LogPrint (eLogDebug, "Tunnels: Re-creating destination inbound tunnel..."); |
|
|
@ -603,16 +602,20 @@ namespace tunnel |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void TunnelPool::CreateOutboundTunnel () |
|
|
|
void TunnelPool::CreateOutboundTunnel () |
|
|
|
{ |
|
|
|
|
|
|
|
auto inboundTunnel = GetNextInboundTunnel (); |
|
|
|
|
|
|
|
if (!inboundTunnel) |
|
|
|
|
|
|
|
inboundTunnel = tunnels.GetNextInboundTunnel (); |
|
|
|
|
|
|
|
if (inboundTunnel) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint (eLogDebug, "Tunnels: Creating destination outbound tunnel..."); |
|
|
|
LogPrint (eLogDebug, "Tunnels: Creating destination outbound tunnel..."); |
|
|
|
Path path; |
|
|
|
Path path; |
|
|
|
if (SelectPeers (path, false)) |
|
|
|
if (SelectPeers (path, false)) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
auto inboundTunnel = GetNextInboundTunnel (nullptr, path.farEndTransports); |
|
|
|
|
|
|
|
if (!inboundTunnel) |
|
|
|
|
|
|
|
inboundTunnel = tunnels.GetNextInboundTunnel (); |
|
|
|
|
|
|
|
if (!inboundTunnel) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no inbound tunnels found"); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (m_LocalDestination && !m_LocalDestination->SupportsEncryptionType (i2p::data::CRYPTO_KEY_TYPE_ECIES_X25519_AEAD)) |
|
|
|
if (m_LocalDestination && !m_LocalDestination->SupportsEncryptionType (i2p::data::CRYPTO_KEY_TYPE_ECIES_X25519_AEAD)) |
|
|
|
path.isShort = false; // because can't handle ECIES encrypted reply
|
|
|
|
path.isShort = false; // because can't handle ECIES encrypted reply
|
|
|
|
|
|
|
|
|
|
|
@ -636,9 +639,6 @@ namespace tunnel |
|
|
|
else |
|
|
|
else |
|
|
|
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no peers available"); |
|
|
|
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no peers available"); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
|
|
|
|
LogPrint (eLogError, "Tunnels: Can't create outbound tunnel, no inbound tunnels found"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TunnelPool::RecreateOutboundTunnel (std::shared_ptr<OutboundTunnel> tunnel) |
|
|
|
void TunnelPool::RecreateOutboundTunnel (std::shared_ptr<OutboundTunnel> tunnel) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -647,7 +647,7 @@ namespace tunnel |
|
|
|
CreateOutboundTunnel (); |
|
|
|
CreateOutboundTunnel (); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
auto inboundTunnel = GetNextInboundTunnel (); |
|
|
|
auto inboundTunnel = GetNextInboundTunnel (nullptr, tunnel->GetFarEndTransports ()); |
|
|
|
if (!inboundTunnel) |
|
|
|
if (!inboundTunnel) |
|
|
|
inboundTunnel = tunnels.GetNextInboundTunnel (); |
|
|
|
inboundTunnel = tunnels.GetNextInboundTunnel (); |
|
|
|
if (inboundTunnel) |
|
|
|
if (inboundTunnel) |
|
|
|