mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
4.2 KiB
176 lines
4.2 KiB
#include <boost/bind.hpp> |
|
#include "Log.h" |
|
#include "RouterContext.h" |
|
#include "I2NPProtocol.h" |
|
#include "NetDb.h" |
|
#include "Transports.h" |
|
|
|
using namespace i2p::data; |
|
|
|
namespace i2p |
|
{ |
|
Transports transports; |
|
|
|
Transports::Transports (): |
|
m_Thread (nullptr), m_Work (m_Service),m_NTCPAcceptor (nullptr), m_SSUServer (nullptr) |
|
{ |
|
} |
|
|
|
Transports::~Transports () |
|
{ |
|
Stop (); |
|
} |
|
|
|
void Transports::Start () |
|
{ |
|
m_IsRunning = true; |
|
m_Thread = new std::thread (std::bind (&Transports::Run, this)); |
|
// create acceptors |
|
auto addresses = context.GetRouterInfo ().GetAddresses (); |
|
for (auto& address : addresses) |
|
{ |
|
if (address.transportStyle == RouterInfo::eTransportNTCP) |
|
{ |
|
m_NTCPAcceptor = new boost::asio::ip::tcp::acceptor (m_Service, |
|
boost::asio::ip::tcp::endpoint(boost::asio::ip::tcp::v4(), address.port)); |
|
|
|
LogPrint ("Start listening TCP port ", address.port); |
|
auto conn = new i2p::ntcp::NTCPServerConnection (m_Service); |
|
m_NTCPAcceptor->async_accept(conn->GetSocket (), boost::bind (&Transports::HandleAccept, this, |
|
conn, boost::asio::placeholders::error)); |
|
} |
|
else if (address.transportStyle == RouterInfo::eTransportSSU) |
|
{ |
|
if (!m_SSUServer) |
|
{ |
|
m_SSUServer = new i2p::ssu::SSUServer (m_Service, address.port); |
|
LogPrint ("Start listening UDP port ", address.port); |
|
m_SSUServer->Start (); |
|
} |
|
else |
|
LogPrint ("SSU server already exists"); |
|
} |
|
} |
|
} |
|
|
|
void Transports::Stop () |
|
{ |
|
for (auto session: m_NTCPSessions) |
|
delete session.second; |
|
m_NTCPSessions.clear (); |
|
delete m_NTCPAcceptor; |
|
|
|
if (m_SSUServer) |
|
{ |
|
m_SSUServer->Stop (); |
|
delete m_SSUServer; |
|
} |
|
|
|
m_IsRunning = false; |
|
m_Service.stop (); |
|
if (m_Thread) |
|
{ |
|
m_Thread->join (); |
|
delete m_Thread; |
|
m_Thread = 0; |
|
} |
|
} |
|
|
|
void Transports::Run () |
|
{ |
|
while (m_IsRunning) |
|
{ |
|
try |
|
{ |
|
m_Service.run (); |
|
} |
|
catch (std::exception& ex) |
|
{ |
|
LogPrint ("Transports: ", ex.what ()); |
|
} |
|
} |
|
} |
|
|
|
void Transports::AddNTCPSession (i2p::ntcp::NTCPSession * session) |
|
{ |
|
if (session) |
|
m_NTCPSessions[session->GetRemoteRouterInfo ().GetIdentHash ()] = session; |
|
} |
|
|
|
void Transports::RemoveNTCPSession (i2p::ntcp::NTCPSession * session) |
|
{ |
|
if (session) |
|
m_NTCPSessions.erase (session->GetRemoteRouterInfo ().GetIdentHash ()); |
|
} |
|
|
|
void Transports::HandleAccept (i2p::ntcp::NTCPServerConnection * conn, const boost::system::error_code& error) |
|
{ |
|
if (!error) |
|
{ |
|
LogPrint ("Connected from ", conn->GetSocket ().remote_endpoint().address ().to_string ()); |
|
conn->ServerLogin (); |
|
} |
|
else |
|
{ |
|
delete conn; |
|
} |
|
|
|
conn = new i2p::ntcp::NTCPServerConnection (m_Service); |
|
m_NTCPAcceptor->async_accept(conn->GetSocket (), boost::bind (&Transports::HandleAccept, this, |
|
conn, boost::asio::placeholders::error)); |
|
} |
|
|
|
i2p::ntcp::NTCPSession * Transports::GetNextNTCPSession () |
|
{ |
|
for (auto session: m_NTCPSessions) |
|
if (session.second->IsEstablished ()) |
|
return session.second; |
|
return 0; |
|
} |
|
|
|
i2p::ntcp::NTCPSession * Transports::FindNTCPSession (const i2p::data::IdentHash& ident) |
|
{ |
|
auto it = m_NTCPSessions.find (ident); |
|
if (it != m_NTCPSessions.end ()) |
|
return it->second; |
|
return 0; |
|
} |
|
|
|
void Transports::SendMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg) |
|
{ |
|
if (ident == i2p::context.GetRouterInfo ().GetIdentHash ()) |
|
// we send it to ourself |
|
i2p::HandleI2NPMessage (msg, false); |
|
else |
|
m_Service.post (boost::bind (&Transports::PostMessage, this, ident, msg)); |
|
} |
|
|
|
void Transports::PostMessage (const i2p::data::IdentHash& ident, i2p::I2NPMessage * msg) |
|
{ |
|
auto session = FindNTCPSession (ident); |
|
if (!session) |
|
{ |
|
RouterInfo * r = netdb.FindRouter (ident); |
|
if (r) |
|
{ |
|
auto address = r->GetNTCPAddress (); |
|
if (address) |
|
{ |
|
session = new i2p::ntcp::NTCPClient (m_Service, address->host, address->port, *r); |
|
AddNTCPSession (session); |
|
} |
|
else |
|
LogPrint ("No NTCP addresses available"); |
|
} |
|
else |
|
{ |
|
LogPrint ("Router not found. Requested"); |
|
i2p::data::netdb.RequestDestination (ident); |
|
} |
|
} |
|
if (session) |
|
session->SendI2NPMessage (msg); |
|
else |
|
LogPrint ("Session not found"); |
|
} |
|
}
|
|
|