2013-10-27 15:26:39 +00:00
|
|
|
#include "Log.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Crypto.h"
|
2013-10-27 15:26:39 +00:00
|
|
|
#include "RouterContext.h"
|
|
|
|
#include "I2NPProtocol.h"
|
2017-04-22 00:04:16 +00:00
|
|
|
#include "NetDb.hpp"
|
2013-10-27 15:26:39 +00:00
|
|
|
#include "Transports.h"
|
2016-10-28 19:57:18 +00:00
|
|
|
#include "Config.h"
|
2017-05-29 05:28:16 +00:00
|
|
|
#include "HTTP.h"
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-10-20 13:12:15 +00:00
|
|
|
#include "Event.h"
|
2016-11-01 16:16:18 +00:00
|
|
|
#include "util.h"
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2013-10-27 15:26:39 +00:00
|
|
|
|
|
|
|
using namespace i2p::data;
|
|
|
|
|
|
|
|
namespace i2p
|
2014-10-21 16:25:53 +00:00
|
|
|
{
|
|
|
|
namespace transport
|
2013-10-27 15:26:39 +00:00
|
|
|
{
|
2014-10-20 19:19:56 +00:00
|
|
|
DHKeysPairSupplier::DHKeysPairSupplier (int size):
|
|
|
|
m_QueueSize (size), m_IsRunning (false), m_Thread (nullptr)
|
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2014-10-20 19:19:56 +00:00
|
|
|
|
2014-04-04 20:29:40 +00:00
|
|
|
DHKeysPairSupplier::~DHKeysPairSupplier ()
|
|
|
|
{
|
|
|
|
Stop ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DHKeysPairSupplier::Start ()
|
|
|
|
{
|
|
|
|
m_IsRunning = true;
|
|
|
|
m_Thread = new std::thread (std::bind (&DHKeysPairSupplier::Run, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DHKeysPairSupplier::Stop ()
|
|
|
|
{
|
2018-11-20 18:57:51 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_AcquiredMutex);
|
|
|
|
m_IsRunning = false;
|
|
|
|
m_Acquired.notify_one ();
|
|
|
|
}
|
2014-04-04 20:29:40 +00:00
|
|
|
if (m_Thread)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
|
|
|
m_Thread->join ();
|
2014-04-04 20:29:40 +00:00
|
|
|
delete m_Thread;
|
|
|
|
m_Thread = 0;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2014-04-04 20:29:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DHKeysPairSupplier::Run ()
|
|
|
|
{
|
|
|
|
while (m_IsRunning)
|
|
|
|
{
|
2016-11-07 19:44:32 +00:00
|
|
|
int num, total = 0;
|
2018-11-20 18:57:51 +00:00
|
|
|
while ((num = m_QueueSize - (int)m_Queue.size ()) > 0 && total < 10)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2014-04-04 20:29:40 +00:00
|
|
|
CreateDHKeysPairs (num);
|
2016-11-07 19:44:32 +00:00
|
|
|
total += num;
|
|
|
|
}
|
2018-11-20 18:57:51 +00:00
|
|
|
if (total >= 10)
|
2016-11-07 19:44:32 +00:00
|
|
|
{
|
|
|
|
LogPrint (eLogWarning, "Transports: ", total, " DH keys generated at the time");
|
|
|
|
std::this_thread::sleep_for (std::chrono::seconds(1)); // take a break
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-20 18:57:51 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_AcquiredMutex);
|
|
|
|
if (!m_IsRunning) break;
|
2017-12-07 13:26:28 +00:00
|
|
|
m_Acquired.wait (l); // wait for element gets acquired
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2014-04-04 20:29:40 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2014-04-04 20:29:40 +00:00
|
|
|
|
|
|
|
void DHKeysPairSupplier::CreateDHKeysPairs (int num)
|
|
|
|
{
|
|
|
|
if (num > 0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < num; i++)
|
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
auto pair = std::make_shared<i2p::crypto::DHKeys> ();
|
|
|
|
pair->GenerateKeys ();
|
2016-06-13 15:34:44 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_AcquiredMutex);
|
2014-04-04 20:29:40 +00:00
|
|
|
m_Queue.push (pair);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<i2p::crypto::DHKeys> DHKeysPairSupplier::Acquire ()
|
2014-04-04 20:29:40 +00:00
|
|
|
{
|
|
|
|
{
|
2016-06-13 15:34:44 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_AcquiredMutex);
|
2016-01-28 03:09:35 +00:00
|
|
|
if (!m_Queue.empty ())
|
|
|
|
{
|
|
|
|
auto pair = m_Queue.front ();
|
|
|
|
m_Queue.pop ();
|
|
|
|
m_Acquired.notify_one ();
|
|
|
|
return pair;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-28 03:09:35 +00:00
|
|
|
// queue is empty, create new
|
|
|
|
auto pair = std::make_shared<i2p::crypto::DHKeys> ();
|
|
|
|
pair->GenerateKeys ();
|
|
|
|
return pair;
|
2014-04-04 20:29:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
void DHKeysPairSupplier::Return (std::shared_ptr<i2p::crypto::DHKeys> pair)
|
2014-09-17 15:13:25 +00:00
|
|
|
{
|
2017-08-25 18:45:58 +00:00
|
|
|
if (pair)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex>l(m_AcquiredMutex);
|
|
|
|
if ((int)m_Queue.size () < 2*m_QueueSize)
|
|
|
|
m_Queue.push (pair);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint(eLogError, "Transports: return null DHKeys");
|
2014-09-17 15:13:25 +00:00
|
|
|
}
|
|
|
|
|
2017-05-29 05:28:16 +00:00
|
|
|
Transports transports;
|
|
|
|
|
|
|
|
Transports::Transports ():
|
2017-08-09 14:52:52 +00:00
|
|
|
m_IsOnline (true), m_IsRunning (false), m_IsNAT (true), m_Thread (nullptr), m_Service (nullptr),
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Work (nullptr), m_PeerCleanupTimer (nullptr), m_PeerTestTimer (nullptr),
|
2018-07-13 19:59:28 +00:00
|
|
|
m_NTCPServer (nullptr), m_SSUServer (nullptr), m_NTCP2Server (nullptr),
|
|
|
|
m_DHKeysPairSupplier (5), // 5 pre-generated keys
|
2017-05-02 18:20:00 +00:00
|
|
|
m_TotalSentBytes(0), m_TotalReceivedBytes(0), m_TotalTransitTransmittedBytes (0),
|
2018-01-06 04:01:44 +00:00
|
|
|
m_InBandwidth (0), m_OutBandwidth (0), m_TransitBandwidth(0),
|
2017-05-02 18:20:00 +00:00
|
|
|
m_LastInBandwidthUpdateBytes (0), m_LastOutBandwidthUpdateBytes (0),
|
2017-05-29 05:28:16 +00:00
|
|
|
m_LastTransitBandwidthUpdateBytes (0), m_LastBandwidthUpdateTime (0)
|
|
|
|
{
|
2013-10-27 15:26:39 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
|
|
|
Transports::~Transports ()
|
|
|
|
{
|
2013-10-27 15:26:39 +00:00
|
|
|
Stop ();
|
2016-12-22 18:32:06 +00:00
|
|
|
if (m_Service)
|
|
|
|
{
|
|
|
|
delete m_PeerCleanupTimer; m_PeerCleanupTimer = nullptr;
|
|
|
|
delete m_PeerTestTimer; m_PeerTestTimer = nullptr;
|
|
|
|
delete m_Work; m_Work = nullptr;
|
|
|
|
delete m_Service; m_Service = nullptr;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-27 15:26:39 +00:00
|
|
|
|
2016-06-17 13:02:12 +00:00
|
|
|
void Transports::Start (bool enableNTCP, bool enableSSU)
|
2013-10-27 15:26:39 +00:00
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
if (!m_Service)
|
|
|
|
{
|
|
|
|
m_Service = new boost::asio::io_service ();
|
|
|
|
m_Work = new boost::asio::io_service::work (*m_Service);
|
|
|
|
m_PeerCleanupTimer = new boost::asio::deadline_timer (*m_Service);
|
2018-01-06 04:01:44 +00:00
|
|
|
m_PeerTestTimer = new boost::asio::deadline_timer (*m_Service);
|
2016-12-22 18:32:06 +00:00
|
|
|
}
|
|
|
|
|
2017-10-30 12:27:55 +00:00
|
|
|
i2p::config::GetOption("nat", m_IsNAT);
|
2014-04-04 20:29:40 +00:00
|
|
|
m_DHKeysPairSupplier.Start ();
|
2013-12-29 15:48:57 +00:00
|
|
|
m_IsRunning = true;
|
2013-10-27 15:26:39 +00:00
|
|
|
m_Thread = new std::thread (std::bind (&Transports::Run, this));
|
2017-05-29 05:28:16 +00:00
|
|
|
std::string ntcpproxy; i2p::config::GetOption("ntcpproxy", ntcpproxy);
|
|
|
|
i2p::http::URL proxyurl;
|
2018-02-20 18:18:57 +00:00
|
|
|
uint16_t softLimit, hardLimit, threads;
|
2017-10-30 12:27:55 +00:00
|
|
|
i2p::config::GetOption("limits.ntcpsoft", softLimit);
|
|
|
|
i2p::config::GetOption("limits.ntcphard", hardLimit);
|
2018-02-20 18:18:57 +00:00
|
|
|
i2p::config::GetOption("limits.ntcpthreads", threads);
|
2017-10-30 13:53:41 +00:00
|
|
|
if(softLimit > 0 && hardLimit > 0 && softLimit >= hardLimit)
|
2017-10-30 12:27:55 +00:00
|
|
|
{
|
|
|
|
LogPrint(eLogError, "ntcp soft limit must be less than ntcp hard limit");
|
|
|
|
return;
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
if(ntcpproxy.size() && enableNTCP)
|
|
|
|
{
|
|
|
|
if(proxyurl.parse(ntcpproxy))
|
|
|
|
{
|
2017-05-29 13:57:30 +00:00
|
|
|
if(proxyurl.schema == "socks" || proxyurl.schema == "http")
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2018-02-20 18:18:57 +00:00
|
|
|
m_NTCPServer = new NTCPServer(threads);
|
2017-10-30 12:27:55 +00:00
|
|
|
m_NTCPServer->SetSessionLimits(softLimit, hardLimit);
|
2017-05-29 13:57:30 +00:00
|
|
|
NTCPServer::ProxyType proxytype = NTCPServer::eSocksProxy;
|
|
|
|
|
|
|
|
if (proxyurl.schema == "http")
|
|
|
|
proxytype = NTCPServer::eHTTPProxy;
|
|
|
|
m_NTCPServer->UseProxy(proxytype, proxyurl.host, proxyurl.port) ;
|
2017-05-29 05:28:16 +00:00
|
|
|
m_NTCPServer->Start();
|
|
|
|
if(!m_NTCPServer->NetworkIsReady())
|
|
|
|
{
|
2017-05-29 13:57:30 +00:00
|
|
|
LogPrint(eLogError, "Transports: NTCP failed to start with proxy");
|
2017-05-29 05:28:16 +00:00
|
|
|
m_NTCPServer->Stop();
|
|
|
|
delete m_NTCPServer;
|
|
|
|
m_NTCPServer = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint(eLogError, "Transports: unsupported NTCP proxy URL ", ntcpproxy);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint(eLogError, "Transports: invalid NTCP proxy url ", ntcpproxy);
|
|
|
|
return;
|
|
|
|
}
|
2018-07-13 19:59:28 +00:00
|
|
|
// create NTCP2. TODO: move to acceptor
|
2018-07-19 13:45:24 +00:00
|
|
|
bool ntcp2; i2p::config::GetOption("ntcp2.enabled", ntcp2);
|
2018-07-13 19:59:28 +00:00
|
|
|
if (ntcp2)
|
|
|
|
{
|
|
|
|
m_NTCP2Server = new NTCP2Server ();
|
|
|
|
m_NTCP2Server->Start ();
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
2013-10-27 15:26:39 +00:00
|
|
|
// create acceptors
|
2016-03-21 17:02:51 +00:00
|
|
|
auto& addresses = context.GetRouterInfo ().GetAddresses ();
|
2016-08-08 22:53:37 +00:00
|
|
|
for (const auto& address : addresses)
|
2013-10-27 15:26:39 +00:00
|
|
|
{
|
2016-07-22 13:56:17 +00:00
|
|
|
if (!address) continue;
|
2016-07-14 13:23:33 +00:00
|
|
|
if (m_NTCPServer == nullptr && enableNTCP)
|
2016-06-13 15:34:44 +00:00
|
|
|
{
|
2018-02-20 18:18:57 +00:00
|
|
|
m_NTCPServer = new NTCPServer (threads);
|
2017-10-30 12:27:55 +00:00
|
|
|
m_NTCPServer->SetSessionLimits(softLimit, hardLimit);
|
2015-01-11 22:41:56 +00:00
|
|
|
m_NTCPServer->Start ();
|
2016-06-13 15:34:44 +00:00
|
|
|
if (!(m_NTCPServer->IsBoundV6() || m_NTCPServer->IsBoundV4())) {
|
|
|
|
/** failed to bind to NTCP */
|
|
|
|
LogPrint(eLogError, "Transports: failed to bind to TCP");
|
|
|
|
m_NTCPServer->Stop();
|
|
|
|
delete m_NTCPServer;
|
|
|
|
m_NTCPServer = nullptr;
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 14:24:37 +00:00
|
|
|
if (address->transportStyle == RouterInfo::eTransportSSU)
|
2014-02-25 00:25:26 +00:00
|
|
|
{
|
2016-07-14 13:23:33 +00:00
|
|
|
if (m_SSUServer == nullptr && enableSSU)
|
2016-06-27 14:24:37 +00:00
|
|
|
{
|
|
|
|
if (address->host.is_v4())
|
|
|
|
m_SSUServer = new SSUServer (address->port);
|
|
|
|
else
|
|
|
|
m_SSUServer = new SSUServer (address->host, address->port);
|
2016-03-21 17:02:51 +00:00
|
|
|
LogPrint (eLogInfo, "Transports: Start listening UDP port ", address->port);
|
2016-06-13 15:34:44 +00:00
|
|
|
try {
|
|
|
|
m_SSUServer->Start ();
|
|
|
|
} catch ( std::exception & ex ) {
|
|
|
|
LogPrint(eLogError, "Transports: Failed to bind to UDP port", address->port);
|
|
|
|
delete m_SSUServer;
|
|
|
|
m_SSUServer = nullptr;
|
|
|
|
continue;
|
|
|
|
}
|
2014-02-25 00:25:26 +00:00
|
|
|
DetectExternalIP ();
|
2014-01-23 21:10:33 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogError, "Transports: SSU server already exists");
|
2014-01-23 21:10:33 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2016-12-22 18:32:06 +00:00
|
|
|
m_PeerCleanupTimer->expires_from_now (boost::posix_time::seconds(5*SESSION_CREATION_TIMEOUT));
|
|
|
|
m_PeerCleanupTimer->async_wait (std::bind (&Transports::HandlePeerCleanupTimer, this, std::placeholders::_1));
|
2017-08-09 14:52:52 +00:00
|
|
|
|
|
|
|
if (m_IsNAT)
|
|
|
|
{
|
|
|
|
m_PeerTestTimer->expires_from_now (boost::posix_time::minutes(PEER_TEST_INTERVAL));
|
|
|
|
m_PeerTestTimer->async_wait (std::bind (&Transports::HandlePeerTestTimer, this, std::placeholders::_1));
|
|
|
|
}
|
2013-10-27 15:26:39 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
2013-10-27 15:26:39 +00:00
|
|
|
void Transports::Stop ()
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
|
|
|
if (m_PeerCleanupTimer) m_PeerCleanupTimer->cancel ();
|
2016-12-22 18:32:06 +00:00
|
|
|
if (m_PeerTestTimer) m_PeerTestTimer->cancel ();
|
2015-01-13 03:53:35 +00:00
|
|
|
m_Peers.clear ();
|
2014-01-23 21:10:33 +00:00
|
|
|
if (m_SSUServer)
|
|
|
|
{
|
|
|
|
m_SSUServer->Stop ();
|
|
|
|
delete m_SSUServer;
|
2014-09-22 17:28:46 +00:00
|
|
|
m_SSUServer = nullptr;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-01-11 22:41:56 +00:00
|
|
|
if (m_NTCPServer)
|
|
|
|
{
|
|
|
|
m_NTCPServer->Stop ();
|
|
|
|
delete m_NTCPServer;
|
|
|
|
m_NTCPServer = nullptr;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2014-01-23 21:10:33 +00:00
|
|
|
|
2018-07-13 19:59:28 +00:00
|
|
|
if (m_NTCP2Server)
|
|
|
|
{
|
|
|
|
m_NTCP2Server->Stop ();
|
|
|
|
delete m_NTCP2Server;
|
|
|
|
m_NTCP2Server = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-04 20:29:40 +00:00
|
|
|
m_DHKeysPairSupplier.Stop ();
|
2013-12-29 15:48:57 +00:00
|
|
|
m_IsRunning = false;
|
2016-12-22 18:32:06 +00:00
|
|
|
if (m_Service) m_Service->stop ();
|
2013-10-27 15:26:39 +00:00
|
|
|
if (m_Thread)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
|
|
|
m_Thread->join ();
|
2013-10-27 15:26:39 +00:00
|
|
|
delete m_Thread;
|
2014-09-22 17:28:46 +00:00
|
|
|
m_Thread = nullptr;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-27 15:26:39 +00:00
|
|
|
|
2017-05-29 05:28:16 +00:00
|
|
|
void Transports::Run ()
|
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
while (m_IsRunning && m_Service)
|
2013-11-29 12:52:09 +00:00
|
|
|
{
|
2013-12-29 15:48:57 +00:00
|
|
|
try
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Service->run ();
|
2013-12-29 15:48:57 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogError, "Transports: runtime exception: ", ex.what ());
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-29 12:52:09 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
2015-03-17 19:19:38 +00:00
|
|
|
void Transports::UpdateBandwidth ()
|
|
|
|
{
|
|
|
|
uint64_t ts = i2p::util::GetMillisecondsSinceEpoch ();
|
|
|
|
if (m_LastBandwidthUpdateTime > 0)
|
|
|
|
{
|
|
|
|
auto delta = ts - m_LastBandwidthUpdateTime;
|
|
|
|
if (delta > 0)
|
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
m_InBandwidth = (m_TotalReceivedBytes - m_LastInBandwidthUpdateBytes)*1000/delta; // per second
|
|
|
|
m_OutBandwidth = (m_TotalSentBytes - m_LastOutBandwidthUpdateBytes)*1000/delta; // per second
|
2017-05-02 18:20:00 +00:00
|
|
|
m_TransitBandwidth = (m_TotalTransitTransmittedBytes - m_LastTransitBandwidthUpdateBytes)*1000/delta;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-03-17 19:19:38 +00:00
|
|
|
}
|
|
|
|
m_LastBandwidthUpdateTime = ts;
|
2017-05-29 05:28:16 +00:00
|
|
|
m_LastInBandwidthUpdateBytes = m_TotalReceivedBytes;
|
|
|
|
m_LastOutBandwidthUpdateBytes = m_TotalSentBytes;
|
|
|
|
m_LastTransitBandwidthUpdateBytes = m_TotalTransitTransmittedBytes;
|
2015-03-17 19:19:38 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 17:07:11 +00:00
|
|
|
bool Transports::IsBandwidthExceeded () const
|
|
|
|
{
|
2016-03-31 00:00:00 +00:00
|
|
|
auto limit = i2p::context.GetBandwidthLimit() * 1024; // convert to bytes
|
2016-01-03 03:17:04 +00:00
|
|
|
auto bw = std::max (m_InBandwidth, m_OutBandwidth);
|
2016-03-31 00:00:00 +00:00
|
|
|
return bw > limit;
|
2015-03-18 17:07:11 +00:00
|
|
|
}
|
2013-10-27 15:26:39 +00:00
|
|
|
|
2017-05-04 18:58:12 +00:00
|
|
|
bool Transports::IsTransitBandwidthExceeded () const
|
|
|
|
{
|
|
|
|
auto limit = i2p::context.GetTransitBandwidthLimit() * 1024; // convert to bytes
|
|
|
|
return m_TransitBandwidth > limit;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2017-05-04 18:58:12 +00:00
|
|
|
|
2015-06-17 15:41:07 +00:00
|
|
|
void Transports::SendMessage (const i2p::data::IdentHash& ident, std::shared_ptr<i2p::I2NPMessage> msg)
|
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
SendMessages (ident, std::vector<std::shared_ptr<i2p::I2NPMessage> > {msg });
|
|
|
|
}
|
2015-06-17 15:41:07 +00:00
|
|
|
|
|
|
|
void Transports::SendMessages (const i2p::data::IdentHash& ident, const std::vector<std::shared_ptr<i2p::I2NPMessage> >& msgs)
|
2015-01-21 02:05:57 +00:00
|
|
|
{
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-12-07 16:52:20 +00:00
|
|
|
QueueIntEvent("transport.send", ident.ToBase64(), msgs.size());
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Service->post (std::bind (&Transports::PostMessages, this, ident, msgs));
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
|
2015-06-17 15:41:07 +00:00
|
|
|
void Transports::PostMessages (i2p::data::IdentHash ident, std::vector<std::shared_ptr<i2p::I2NPMessage> > msgs)
|
2015-01-21 02:05:57 +00:00
|
|
|
{
|
|
|
|
if (ident == i2p::context.GetRouterInfo ().GetIdentHash ())
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-01-21 02:05:57 +00:00
|
|
|
// we send it to ourself
|
2016-08-08 22:53:37 +00:00
|
|
|
for (auto& it: msgs)
|
2016-11-15 19:11:55 +00:00
|
|
|
m_LoopbackHandler.PutNextMessage (it);
|
|
|
|
m_LoopbackHandler.Flush ();
|
2015-01-21 02:05:57 +00:00
|
|
|
return;
|
2016-10-28 16:50:26 +00:00
|
|
|
}
|
|
|
|
if(RoutesRestricted() && ! IsRestrictedPeer(ident)) return;
|
2015-01-21 02:05:57 +00:00
|
|
|
auto it = m_Peers.find (ident);
|
|
|
|
if (it == m_Peers.end ())
|
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
bool connected = false;
|
2015-04-14 14:40:46 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
auto r = netdb.FindRouter (ident);
|
2016-01-15 21:23:03 +00:00
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2016-01-15 21:23:03 +00:00
|
|
|
it = m_Peers.insert (std::pair<i2p::data::IdentHash, Peer>(ident, { 0, r, {},
|
|
|
|
i2p::util::GetSecondsSinceEpoch (), {} })).first;
|
|
|
|
}
|
2015-04-14 14:40:46 +00:00
|
|
|
connected = ConnectToPeer (ident, it->second);
|
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogError, "Transports: PostMessages exception:", ex.what ());
|
2015-04-14 14:40:46 +00:00
|
|
|
}
|
2015-06-17 15:41:07 +00:00
|
|
|
if (!connected) return;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-06-09 15:00:37 +00:00
|
|
|
if (!it->second.sessions.empty ())
|
2015-06-17 15:41:07 +00:00
|
|
|
it->second.sessions.front ()->SendI2NPMessages (msgs);
|
2015-01-21 02:05:57 +00:00
|
|
|
else
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2016-07-12 16:37:39 +00:00
|
|
|
if (it->second.delayedMessages.size () < MAX_NUM_DELAYED_MESSAGES)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2016-08-08 22:53:37 +00:00
|
|
|
for (auto& it1: msgs)
|
2016-07-12 16:37:39 +00:00
|
|
|
it->second.delayedMessages.push_back (it1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint (eLogWarning, "Transports: delayed messages queue size exceeds ", MAX_NUM_DELAYED_MESSAGES);
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2016-07-12 16:37:39 +00:00
|
|
|
m_Peers.erase (it);
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 02:31:39 +00:00
|
|
|
bool Transports::ConnectToPeer (const i2p::data::IdentHash& ident, Peer& peer)
|
|
|
|
{
|
|
|
|
if (peer.router) // we have RI already
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2018-08-14 15:27:27 +00:00
|
|
|
if (!peer.numAttempts) // NTCP2
|
2015-01-14 02:31:39 +00:00
|
|
|
{
|
|
|
|
peer.numAttempts++;
|
2018-08-04 17:48:09 +00:00
|
|
|
if (m_NTCP2Server) // we support NTCP2
|
2018-07-13 19:59:28 +00:00
|
|
|
{
|
2018-08-04 17:48:09 +00:00
|
|
|
// NTCP2 have priority over NTCP
|
|
|
|
auto address = peer.router->GetNTCP2Address (true, !context.SupportsV6 ()); // published only
|
|
|
|
if (address)
|
|
|
|
{
|
|
|
|
auto s = std::make_shared<NTCP2Session> (*m_NTCP2Server, peer.router);
|
|
|
|
m_NTCP2Server->Connect (address->host, address->port, s);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2018-08-14 15:27:27 +00:00
|
|
|
}
|
|
|
|
if (peer.numAttempts == 1) // NTCP1
|
|
|
|
{
|
|
|
|
peer.numAttempts++;
|
2018-08-04 17:48:09 +00:00
|
|
|
auto address = peer.router->GetNTCPAddress (!context.SupportsV6 ());
|
2016-03-12 00:27:43 +00:00
|
|
|
if (address && m_NTCPServer)
|
2015-01-16 20:25:44 +00:00
|
|
|
{
|
2019-02-24 23:26:58 +00:00
|
|
|
if (!peer.router->UsesIntroducer () && !peer.router->IsUnreachable ())
|
2015-01-16 20:25:44 +00:00
|
|
|
{
|
2019-02-24 23:26:58 +00:00
|
|
|
if(!m_NTCPServer->ShouldLimit())
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2019-02-24 23:26:58 +00:00
|
|
|
auto s = std::make_shared<NTCPSession> (*m_NTCPServer, peer.router);
|
|
|
|
if(m_NTCPServer->UsingProxy())
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2019-02-24 23:26:58 +00:00
|
|
|
NTCPServer::RemoteAddressType remote = NTCPServer::eIP4Address;
|
|
|
|
std::string addr = address->host.to_string();
|
2017-10-30 12:27:55 +00:00
|
|
|
|
2019-02-24 23:26:58 +00:00
|
|
|
if(address->host.is_v6())
|
|
|
|
remote = NTCPServer::eIP6Address;
|
2017-10-30 12:27:55 +00:00
|
|
|
|
2019-02-24 23:26:58 +00:00
|
|
|
m_NTCPServer->ConnectWithProxy(addr, address->port, remote, s);
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
else
|
2019-02-24 23:26:58 +00:00
|
|
|
m_NTCPServer->Connect (address->host, address->port, s);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint(eLogWarning, "Transports: NTCP Limit hit falling back to SSU");
|
2015-01-16 20:25:44 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-12-02 17:48:10 +00:00
|
|
|
else
|
2016-06-13 15:34:44 +00:00
|
|
|
LogPrint (eLogDebug, "Transports: NTCP address is not present for ", i2p::data::GetIdentHashAbbreviation (ident), ", trying SSU");
|
2013-12-29 15:48:57 +00:00
|
|
|
}
|
2018-08-14 15:27:27 +00:00
|
|
|
if (peer.numAttempts == 2)// SSU
|
2014-01-19 15:05:54 +00:00
|
|
|
{
|
2015-01-14 02:31:39 +00:00
|
|
|
peer.numAttempts++;
|
2015-12-02 17:48:10 +00:00
|
|
|
if (m_SSUServer && peer.router->IsSSU (!context.SupportsV6 ()))
|
|
|
|
{
|
|
|
|
auto address = peer.router->GetSSUAddress (!context.SupportsV6 ());
|
2019-02-24 23:26:58 +00:00
|
|
|
m_SSUServer->CreateSession (peer.router, address->host, address->port);
|
|
|
|
return true;
|
2015-01-14 02:31:39 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2017-01-02 14:03:12 +00:00
|
|
|
LogPrint (eLogInfo, "Transports: No NTCP or SSU addresses available");
|
2015-06-09 15:00:37 +00:00
|
|
|
peer.Done ();
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-01-14 02:31:39 +00:00
|
|
|
m_Peers.erase (ident);
|
|
|
|
return false;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
else // otherwise request RI
|
|
|
|
{
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogInfo, "Transports: RouterInfo for ", ident.ToBase64 (), " not found, requested");
|
2015-01-14 21:37:03 +00:00
|
|
|
i2p::data::netdb.RequestDestination (ident, std::bind (
|
|
|
|
&Transports::RequestComplete, this, std::placeholders::_1, ident));
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
return true;
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 21:37:03 +00:00
|
|
|
void Transports::RequestComplete (std::shared_ptr<const i2p::data::RouterInfo> r, const i2p::data::IdentHash& ident)
|
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Service->post (std::bind (&Transports::HandleRequestComplete, this, r, ident));
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2015-12-31 16:21:01 +00:00
|
|
|
void Transports::HandleRequestComplete (std::shared_ptr<const i2p::data::RouterInfo> r, i2p::data::IdentHash ident)
|
2014-08-29 01:34:23 +00:00
|
|
|
{
|
2015-01-14 02:31:39 +00:00
|
|
|
auto it = m_Peers.find (ident);
|
|
|
|
if (it != m_Peers.end ())
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-01-14 02:31:39 +00:00
|
|
|
if (r)
|
|
|
|
{
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogDebug, "Transports: RouterInfo for ", ident.ToBase64 (), " found, Trying to connect");
|
2015-01-14 02:31:39 +00:00
|
|
|
it->second.router = r;
|
|
|
|
ConnectToPeer (ident, it->second);
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
else
|
|
|
|
{
|
2017-01-31 01:36:35 +00:00
|
|
|
LogPrint (eLogWarning, "Transports: RouterInfo not found, Failed to send messages");
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-01-14 02:31:39 +00:00
|
|
|
m_Peers.erase (it);
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-07 17:27:06 +00:00
|
|
|
|
2014-11-24 17:26:11 +00:00
|
|
|
void Transports::CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router)
|
2014-07-19 00:32:45 +00:00
|
|
|
{
|
|
|
|
if (!router) return;
|
2017-05-29 05:28:16 +00:00
|
|
|
m_Service->post (std::bind (&Transports::PostCloseSession, this, router));
|
|
|
|
}
|
2014-07-19 00:32:45 +00:00
|
|
|
|
2014-11-24 17:26:11 +00:00
|
|
|
void Transports::PostCloseSession (std::shared_ptr<const i2p::data::RouterInfo> router)
|
2014-07-19 00:32:45 +00:00
|
|
|
{
|
|
|
|
auto ssuSession = m_SSUServer ? m_SSUServer->FindSession (router) : nullptr;
|
|
|
|
if (ssuSession) // try SSU first
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2014-07-19 00:32:45 +00:00
|
|
|
m_SSUServer->DeleteSession (ssuSession);
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogDebug, "Transports: SSU session closed");
|
2016-06-19 20:48:03 +00:00
|
|
|
}
|
|
|
|
auto ntcpSession = m_NTCPServer ? m_NTCPServer->FindNTCPSession(router->GetIdentHash()) : nullptr;
|
|
|
|
if (ntcpSession) // try deleting ntcp session too
|
|
|
|
{
|
2016-06-20 01:05:48 +00:00
|
|
|
ntcpSession->Terminate ();
|
2016-06-19 20:48:03 +00:00
|
|
|
LogPrint(eLogDebug, "Transports: NTCP session closed");
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2014-02-09 02:06:40 +00:00
|
|
|
void Transports::DetectExternalIP ()
|
|
|
|
{
|
2016-10-28 16:50:26 +00:00
|
|
|
if (RoutesRestricted())
|
2018-01-06 04:01:44 +00:00
|
|
|
{
|
2016-10-28 16:50:26 +00:00
|
|
|
LogPrint(eLogInfo, "Transports: restricted routes enabled, not detecting ip");
|
2016-10-28 17:11:50 +00:00
|
|
|
i2p::context.SetStatus (eRouterStatusOK);
|
2016-10-28 16:50:26 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-02-26 19:17:16 +00:00
|
|
|
if (m_SSUServer)
|
2014-02-09 02:06:40 +00:00
|
|
|
{
|
2016-12-02 16:17:22 +00:00
|
|
|
bool isv4 = i2p::context.SupportsV4 ();
|
2017-08-09 14:52:52 +00:00
|
|
|
if (m_IsNAT && isv4)
|
2016-11-01 14:26:40 +00:00
|
|
|
i2p::context.SetStatus (eRouterStatusTesting);
|
2015-02-26 19:17:16 +00:00
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
{
|
2016-12-02 16:17:22 +00:00
|
|
|
auto router = i2p::data::netdb.GetRandomPeerTestRouter (isv4); // v4 only if v4
|
|
|
|
if (router)
|
2017-05-29 05:28:16 +00:00
|
|
|
m_SSUServer->CreateSession (router, true, isv4); // peer test
|
2015-02-26 19:17:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// if not peer test capable routers found pick any
|
|
|
|
router = i2p::data::netdb.GetRandomRouter ();
|
|
|
|
if (router && router->IsSSU ())
|
2016-06-13 15:34:44 +00:00
|
|
|
m_SSUServer->CreateSession (router); // no peer test
|
2015-02-26 19:17:16 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-02-26 19:17:16 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogError, "Transports: Can't detect external IP. SSU is not available");
|
2014-02-09 02:06:40 +00:00
|
|
|
}
|
2015-11-03 14:15:49 +00:00
|
|
|
|
|
|
|
void Transports::PeerTest ()
|
|
|
|
{
|
2016-12-02 16:17:22 +00:00
|
|
|
if (RoutesRestricted() || !i2p::context.SupportsV4 ()) return;
|
2015-11-03 14:15:49 +00:00
|
|
|
if (m_SSUServer)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
bool statusChanged = false;
|
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
{
|
2016-12-02 16:17:22 +00:00
|
|
|
auto router = i2p::data::netdb.GetRandomPeerTestRouter (true); // v4 only
|
|
|
|
if (router)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
if (!statusChanged)
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
statusChanged = true;
|
|
|
|
i2p::context.SetStatus (eRouterStatusTesting); // first time only
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
m_SSUServer->CreateSession (router, true, true); // peer test v4
|
|
|
|
}
|
2016-12-02 16:17:22 +00:00
|
|
|
}
|
|
|
|
if (!statusChanged)
|
2017-05-29 05:28:16 +00:00
|
|
|
LogPrint (eLogWarning, "Can't find routers for peer test");
|
2015-11-03 14:15:49 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<i2p::crypto::DHKeys> Transports::GetNextDHKeysPair ()
|
2014-04-04 17:30:13 +00:00
|
|
|
{
|
2014-04-04 20:29:40 +00:00
|
|
|
return m_DHKeysPairSupplier.Acquire ();
|
2014-04-04 17:30:13 +00:00
|
|
|
}
|
2014-09-17 15:13:25 +00:00
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
void Transports::ReuseDHKeysPair (std::shared_ptr<i2p::crypto::DHKeys> pair)
|
2014-09-17 15:13:25 +00:00
|
|
|
{
|
|
|
|
m_DHKeysPairSupplier.Return (pair);
|
|
|
|
}
|
2015-01-13 03:53:35 +00:00
|
|
|
|
|
|
|
void Transports::PeerConnected (std::shared_ptr<TransportSession> session)
|
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Service->post([session, this]()
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
|
|
|
auto remoteIdentity = session->GetRemoteIdentity ();
|
2016-02-01 19:19:54 +00:00
|
|
|
if (!remoteIdentity) return;
|
|
|
|
auto ident = remoteIdentity->GetIdentHash ();
|
2016-11-01 14:26:40 +00:00
|
|
|
auto it = m_Peers.find (ident);
|
2015-01-13 03:53:35 +00:00
|
|
|
if (it != m_Peers.end ())
|
|
|
|
{
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-11-01 14:26:40 +00:00
|
|
|
EmitEvent({{"type" , "transport.connected"}, {"ident", ident.ToBase64()}, {"inbound", "false"}});
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2016-03-19 02:53:03 +00:00
|
|
|
bool sendDatabaseStore = true;
|
|
|
|
if (it->second.delayedMessages.size () > 0)
|
|
|
|
{
|
|
|
|
// check if first message is our DatabaseStore (publishing)
|
|
|
|
auto firstMsg = it->second.delayedMessages[0];
|
|
|
|
if (firstMsg && firstMsg->GetTypeID () == eI2NPDatabaseStore &&
|
2016-06-13 15:34:44 +00:00
|
|
|
i2p::data::IdentHash(firstMsg->GetPayload () + DATABASE_STORE_KEY_OFFSET) == i2p::context.GetIdentHash ())
|
2016-03-19 02:53:03 +00:00
|
|
|
sendDatabaseStore = false; // we have it in the list already
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2016-03-19 02:53:03 +00:00
|
|
|
if (sendDatabaseStore)
|
2018-08-14 15:27:27 +00:00
|
|
|
session->SendLocalRouterInfo ();
|
2016-08-04 14:26:50 +00:00
|
|
|
else
|
|
|
|
session->SetTerminationTimeout (10); // most likely it's publishing, no follow-up messages expected, set timeout to 10 seconds
|
2015-06-09 15:00:37 +00:00
|
|
|
it->second.sessions.push_back (session);
|
|
|
|
session->SendI2NPMessages (it->second.delayedMessages);
|
|
|
|
it->second.delayedMessages.clear ();
|
2015-01-13 03:53:35 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
else // incoming connection
|
2016-01-15 21:23:03 +00:00
|
|
|
{
|
2016-10-28 16:50:26 +00:00
|
|
|
if(RoutesRestricted() && ! IsRestrictedPeer(ident)) {
|
|
|
|
// not trusted
|
|
|
|
LogPrint(eLogWarning, "Transports: closing untrusted inbound connection from ", ident.ToBase64());
|
|
|
|
session->Done();
|
|
|
|
return;
|
|
|
|
}
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-11-01 14:26:40 +00:00
|
|
|
EmitEvent({{"type" , "transport.connected"}, {"ident", ident.ToBase64()}, {"inbound", "true"}});
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2016-03-19 02:53:03 +00:00
|
|
|
session->SendI2NPMessages ({ CreateDatabaseStoreMsg () }); // send DatabaseStore
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-12-24 00:55:53 +00:00
|
|
|
m_Peers.insert (std::make_pair (ident, Peer{ 0, nullptr, { session }, i2p::util::GetSecondsSinceEpoch (), {} }));
|
2016-01-15 21:23:03 +00:00
|
|
|
}
|
2016-11-01 14:26:40 +00:00
|
|
|
});
|
2015-01-13 03:53:35 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
2015-01-13 03:53:35 +00:00
|
|
|
void Transports::PeerDisconnected (std::shared_ptr<TransportSession> session)
|
|
|
|
{
|
2016-12-22 18:32:06 +00:00
|
|
|
m_Service->post([session, this]()
|
2016-11-01 14:26:40 +00:00
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
auto remoteIdentity = session->GetRemoteIdentity ();
|
2016-02-01 19:19:54 +00:00
|
|
|
if (!remoteIdentity) return;
|
|
|
|
auto ident = remoteIdentity->GetIdentHash ();
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-11-01 14:26:40 +00:00
|
|
|
EmitEvent({{"type" , "transport.disconnected"}, {"ident", ident.ToBase64()}});
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2015-01-13 03:53:35 +00:00
|
|
|
auto it = m_Peers.find (ident);
|
2015-06-09 15:00:37 +00:00
|
|
|
if (it != m_Peers.end ())
|
2015-01-14 02:31:39 +00:00
|
|
|
{
|
2015-06-09 15:00:37 +00:00
|
|
|
it->second.sessions.remove (session);
|
|
|
|
if (it->second.sessions.empty ()) // TODO: why?
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
2015-06-09 15:00:37 +00:00
|
|
|
if (it->second.delayedMessages.size () > 0)
|
|
|
|
ConnectToPeer (ident, it->second);
|
|
|
|
else
|
2016-01-15 21:23:03 +00:00
|
|
|
{
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-06-09 15:00:37 +00:00
|
|
|
m_Peers.erase (it);
|
2016-01-15 21:23:03 +00:00
|
|
|
}
|
2015-06-09 15:00:37 +00:00
|
|
|
}
|
2015-01-14 02:31:39 +00:00
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
});
|
|
|
|
}
|
2015-02-11 19:45:25 +00:00
|
|
|
|
2015-03-18 00:56:51 +00:00
|
|
|
bool Transports::IsConnected (const i2p::data::IdentHash& ident) const
|
2017-05-29 05:28:16 +00:00
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-03-18 00:56:51 +00:00
|
|
|
auto it = m_Peers.find (ident);
|
|
|
|
return it != m_Peers.end ();
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
|
2015-02-11 19:45:25 +00:00
|
|
|
void Transports::HandlePeerCleanupTimer (const boost::system::error_code& ecode)
|
|
|
|
{
|
2015-02-12 03:48:26 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
2015-02-11 19:45:25 +00:00
|
|
|
{
|
2015-02-12 03:48:26 +00:00
|
|
|
auto ts = i2p::util::GetSecondsSinceEpoch ();
|
|
|
|
for (auto it = m_Peers.begin (); it != m_Peers.end (); )
|
2015-02-11 19:45:25 +00:00
|
|
|
{
|
2015-06-09 15:00:37 +00:00
|
|
|
if (it->second.sessions.empty () && ts > it->second.creationTime + SESSION_CREATION_TIMEOUT)
|
2015-02-12 03:48:26 +00:00
|
|
|
{
|
2015-12-18 12:57:22 +00:00
|
|
|
LogPrint (eLogWarning, "Transports: Session to peer ", it->first.ToBase64 (), " has not been created in ", SESSION_CREATION_TIMEOUT, " seconds");
|
2016-06-28 18:43:55 +00:00
|
|
|
auto profile = i2p::data::GetRouterProfile(it->first);
|
|
|
|
if (profile)
|
|
|
|
{
|
|
|
|
profile->TunnelNonReplied();
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-02-12 03:48:26 +00:00
|
|
|
it = m_Peers.erase (it);
|
|
|
|
}
|
|
|
|
else
|
2016-08-08 22:53:37 +00:00
|
|
|
++it;
|
2015-02-11 19:45:25 +00:00
|
|
|
}
|
2015-03-17 19:19:38 +00:00
|
|
|
UpdateBandwidth (); // TODO: use separate timer(s) for it
|
2016-06-13 15:34:44 +00:00
|
|
|
if (i2p::context.GetStatus () == eRouterStatusTesting) // if still testing, repeat peer test
|
2015-03-28 18:57:39 +00:00
|
|
|
DetectExternalIP ();
|
2016-12-22 18:32:06 +00:00
|
|
|
m_PeerCleanupTimer->expires_from_now (boost::posix_time::seconds(5*SESSION_CREATION_TIMEOUT));
|
|
|
|
m_PeerCleanupTimer->async_wait (std::bind (&Transports::HandlePeerCleanupTimer, this, std::placeholders::_1));
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
2015-02-11 19:45:25 +00:00
|
|
|
}
|
2015-05-05 14:33:19 +00:00
|
|
|
|
2016-11-13 14:14:05 +00:00
|
|
|
void Transports::HandlePeerTestTimer (const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
{
|
|
|
|
PeerTest ();
|
2016-12-22 18:32:06 +00:00
|
|
|
m_PeerTestTimer->expires_from_now (boost::posix_time::minutes(PEER_TEST_INTERVAL));
|
|
|
|
m_PeerTestTimer->async_wait (std::bind (&Transports::HandlePeerTestTimer, this, std::placeholders::_1));
|
2017-05-29 05:28:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-05 14:33:19 +00:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> Transports::GetRandomPeer () const
|
|
|
|
{
|
2016-06-01 00:00:00 +00:00
|
|
|
if (m_Peers.empty ()) return nullptr;
|
2017-05-29 05:28:16 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_PeersMutex);
|
2015-05-05 14:33:19 +00:00
|
|
|
auto it = m_Peers.begin ();
|
2017-05-29 05:28:16 +00:00
|
|
|
std::advance (it, rand () % m_Peers.size ());
|
2015-05-05 14:33:19 +00:00
|
|
|
return it != m_Peers.end () ? it->second.router : nullptr;
|
|
|
|
}
|
2016-11-01 14:26:40 +00:00
|
|
|
void Transports::RestrictRoutesToFamilies(std::set<std::string> families)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(m_FamilyMutex);
|
|
|
|
m_TrustedFamilies.clear();
|
|
|
|
for ( const auto& fam : families )
|
|
|
|
m_TrustedFamilies.push_back(fam);
|
|
|
|
}
|
2016-06-17 15:03:33 +00:00
|
|
|
|
2016-10-28 16:50:26 +00:00
|
|
|
void Transports::RestrictRoutesToRouters(std::set<i2p::data::IdentHash> routers)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(m_TrustedRoutersMutex);
|
|
|
|
m_TrustedRouters.clear();
|
|
|
|
for (const auto & ri : routers )
|
|
|
|
m_TrustedRouters.push_back(ri);
|
|
|
|
}
|
2017-05-29 05:28:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
bool Transports::RoutesRestricted() const {
|
|
|
|
std::unique_lock<std::mutex> famlock(m_FamilyMutex);
|
2016-10-28 16:50:26 +00:00
|
|
|
std::unique_lock<std::mutex> routerslock(m_TrustedRoutersMutex);
|
2016-11-01 14:26:40 +00:00
|
|
|
return m_TrustedFamilies.size() > 0 || m_TrustedRouters.size() > 0;
|
|
|
|
}
|
2016-06-17 15:03:33 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
/** XXX: if routes are not restricted this dies */
|
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> Transports::GetRestrictedPeer() const
|
2016-10-28 16:50:26 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> l(m_FamilyMutex);
|
|
|
|
std::string fam;
|
|
|
|
auto sz = m_TrustedFamilies.size();
|
|
|
|
if(sz > 1)
|
|
|
|
{
|
|
|
|
auto it = m_TrustedFamilies.begin ();
|
|
|
|
std::advance(it, rand() % sz);
|
|
|
|
fam = *it;
|
|
|
|
boost::to_lower(fam);
|
|
|
|
}
|
|
|
|
else if (sz == 1)
|
|
|
|
{
|
|
|
|
fam = m_TrustedFamilies[0];
|
|
|
|
}
|
|
|
|
if (fam.size())
|
|
|
|
return i2p::data::netdb.GetRandomRouterInFamily(fam);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_TrustedRoutersMutex);
|
|
|
|
auto sz = m_TrustedRouters.size();
|
|
|
|
if (sz)
|
|
|
|
{
|
|
|
|
if(sz == 1)
|
|
|
|
return i2p::data::netdb.FindRouter(m_TrustedRouters[0]);
|
|
|
|
auto it = m_TrustedRouters.begin();
|
|
|
|
std::advance(it, rand() % sz);
|
|
|
|
return i2p::data::netdb.FindRouter(*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
2016-11-01 14:26:40 +00:00
|
|
|
}
|
2016-10-28 16:50:26 +00:00
|
|
|
|
|
|
|
bool Transports::IsRestrictedPeer(const i2p::data::IdentHash & ih) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_TrustedRoutersMutex);
|
|
|
|
for (const auto & r : m_TrustedRouters )
|
|
|
|
if ( r == ih ) return true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> l(m_FamilyMutex);
|
|
|
|
auto ri = i2p::data::netdb.FindRouter(ih);
|
|
|
|
for (const auto & fam : m_TrustedFamilies)
|
|
|
|
if(ri->IsFamily(fam)) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-27 15:26:39 +00:00
|
|
|
}
|
2014-10-21 16:25:53 +00:00
|
|
|
}
|