mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
560 lines
16 KiB
C++
560 lines
16 KiB
C++
/*
|
|
* Copyright (c) 2022, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#include "Log.h"
|
|
#include "RouterContext.h"
|
|
#include "Transports.h"
|
|
#include "NetDb.hpp"
|
|
#include "Config.h"
|
|
#include "SSU2.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace transport
|
|
{
|
|
SSU2Server::SSU2Server ():
|
|
RunnableServiceWithWork ("SSU2"), m_ReceiveService ("SSU2r"),
|
|
m_SocketV4 (m_ReceiveService.GetService ()), m_SocketV6 (m_ReceiveService.GetService ()),
|
|
m_TerminationTimer (GetService ()), m_ResendTimer (GetService ())
|
|
{
|
|
}
|
|
|
|
void SSU2Server::Start ()
|
|
{
|
|
if (!IsRunning ())
|
|
{
|
|
StartIOService ();
|
|
bool found = false;
|
|
auto& addresses = i2p::context.GetRouterInfo ().GetAddresses ();
|
|
for (const auto& address: addresses)
|
|
{
|
|
if (!address) continue;
|
|
if (address->transportStyle == i2p::data::RouterInfo::eTransportSSU2)
|
|
{
|
|
auto port = address->port;
|
|
if (!port)
|
|
{
|
|
uint16_t ssu2Port; i2p::config::GetOption ("ssu2.port", ssu2Port);
|
|
if (ssu2Port) port = ssu2Port;
|
|
else
|
|
{
|
|
uint16_t p; i2p::config::GetOption ("port", p);
|
|
if (p) port = p;
|
|
}
|
|
}
|
|
if (port)
|
|
{
|
|
if (address->IsV4 ())
|
|
{
|
|
found = true;
|
|
OpenSocket (boost::asio::ip::udp::endpoint (boost::asio::ip::udp::v4(), port));
|
|
m_ReceiveService.GetService ().post(
|
|
[this]()
|
|
{
|
|
Receive (m_SocketV4);
|
|
});
|
|
}
|
|
if (address->IsV6 ())
|
|
{
|
|
found = true;
|
|
OpenSocket (boost::asio::ip::udp::endpoint (boost::asio::ip::udp::v6(), port));
|
|
m_ReceiveService.GetService ().post(
|
|
[this]()
|
|
{
|
|
Receive (m_SocketV6);
|
|
});
|
|
}
|
|
}
|
|
else
|
|
LogPrint (eLogError, "SSU2: Can't start server because port not specified");
|
|
}
|
|
}
|
|
if (found)
|
|
m_ReceiveService.Start ();
|
|
ScheduleTermination ();
|
|
}
|
|
}
|
|
|
|
void SSU2Server::Stop ()
|
|
{
|
|
if (context.SupportsV4 () || context.SupportsV6 ())
|
|
m_ReceiveService.Stop ();
|
|
|
|
if (IsRunning ())
|
|
m_TerminationTimer.cancel ();
|
|
|
|
StopIOService ();
|
|
}
|
|
|
|
boost::asio::ip::udp::socket& SSU2Server::OpenSocket (const boost::asio::ip::udp::endpoint& localEndpoint)
|
|
{
|
|
boost::asio::ip::udp::socket& socket = localEndpoint.address ().is_v6 () ? m_SocketV6 : m_SocketV4;
|
|
try
|
|
{
|
|
socket.open (localEndpoint.protocol ());
|
|
if (localEndpoint.address ().is_v6 ())
|
|
socket.set_option (boost::asio::ip::v6_only (true));
|
|
socket.set_option (boost::asio::socket_base::receive_buffer_size (SSU2_SOCKET_RECEIVE_BUFFER_SIZE));
|
|
socket.set_option (boost::asio::socket_base::send_buffer_size (SSU2_SOCKET_SEND_BUFFER_SIZE));
|
|
socket.bind (localEndpoint);
|
|
LogPrint (eLogInfo, "SSU2: Start listening on ", localEndpoint);
|
|
}
|
|
catch (std::exception& ex )
|
|
{
|
|
LogPrint (eLogError, "SSU2: Failed to bind to ", localEndpoint, ": ", ex.what());
|
|
ThrowFatal ("Unable to start SSU2 transport on ", localEndpoint, ": ", ex.what ());
|
|
}
|
|
return socket;
|
|
}
|
|
|
|
void SSU2Server::Receive (boost::asio::ip::udp::socket& socket)
|
|
{
|
|
Packet * packet = m_PacketsPool.AcquireMt ();
|
|
socket.async_receive_from (boost::asio::buffer (packet->buf, SSU2_MTU), packet->from,
|
|
std::bind (&SSU2Server::HandleReceivedFrom, this, std::placeholders::_1, std::placeholders::_2, packet, std::ref (socket)));
|
|
}
|
|
|
|
void SSU2Server::HandleReceivedFrom (const boost::system::error_code& ecode, size_t bytes_transferred,
|
|
Packet * packet, boost::asio::ip::udp::socket& socket)
|
|
{
|
|
if (!ecode)
|
|
{
|
|
i2p::transport::transports.UpdateReceivedBytes (bytes_transferred);
|
|
packet->len = bytes_transferred;
|
|
|
|
boost::system::error_code ec;
|
|
size_t moreBytes = socket.available (ec);
|
|
if (!ec && moreBytes)
|
|
{
|
|
std::vector<Packet *> packets;
|
|
packets.push_back (packet);
|
|
while (moreBytes && packets.size () < 32)
|
|
{
|
|
packet = m_PacketsPool.AcquireMt ();
|
|
packet->len = socket.receive_from (boost::asio::buffer (packet->buf, SSU2_MTU), packet->from, 0, ec);
|
|
if (!ec)
|
|
{
|
|
i2p::transport::transports.UpdateReceivedBytes (packet->len);
|
|
packets.push_back (packet);
|
|
moreBytes = socket.available(ec);
|
|
if (ec) break;
|
|
}
|
|
else
|
|
{
|
|
LogPrint (eLogError, "SSU2: receive_from error: code ", ec.value(), ": ", ec.message ());
|
|
m_PacketsPool.ReleaseMt (packet);
|
|
break;
|
|
}
|
|
}
|
|
GetService ().post (std::bind (&SSU2Server::HandleReceivedPackets, this, packets));
|
|
}
|
|
else
|
|
GetService ().post (std::bind (&SSU2Server::HandleReceivedPacket, this, packet));
|
|
Receive (socket);
|
|
}
|
|
else
|
|
{
|
|
m_PacketsPool.ReleaseMt (packet);
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
{
|
|
LogPrint (eLogError, "SSU2: Receive error: code ", ecode.value(), ": ", ecode.message ());
|
|
auto ep = socket.local_endpoint ();
|
|
socket.close ();
|
|
OpenSocket (ep);
|
|
Receive (socket);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SSU2Server::HandleReceivedPacket (Packet * packet)
|
|
{
|
|
if (packet)
|
|
{
|
|
ProcessNextPacket (packet->buf, packet->len, packet->from);
|
|
m_PacketsPool.ReleaseMt (packet);
|
|
if (m_LastSession) m_LastSession->FlushData ();
|
|
}
|
|
}
|
|
|
|
void SSU2Server::HandleReceivedPackets (std::vector<Packet *> packets)
|
|
{
|
|
for (auto& packet: packets)
|
|
ProcessNextPacket (packet->buf, packet->len, packet->from);
|
|
m_PacketsPool.ReleaseMt (packets);
|
|
if (m_LastSession) m_LastSession->FlushData ();
|
|
}
|
|
|
|
void SSU2Server::AddSession (std::shared_ptr<SSU2Session> session)
|
|
{
|
|
if (session)
|
|
{
|
|
m_Sessions.emplace (session->GetConnID (), session);
|
|
AddSessionByRouterHash (session);
|
|
}
|
|
}
|
|
|
|
void SSU2Server::RemoveSession (uint64_t connID)
|
|
{
|
|
auto it = m_Sessions.find (connID);
|
|
if (it != m_Sessions.end ())
|
|
{
|
|
auto ident = it->second->GetRemoteIdentity ();
|
|
if (ident)
|
|
m_SessionsByRouterHash.erase (ident->GetIdentHash ());
|
|
m_Sessions.erase (it);
|
|
}
|
|
}
|
|
|
|
void SSU2Server::AddSessionByRouterHash (std::shared_ptr<SSU2Session> session)
|
|
{
|
|
if (session)
|
|
{
|
|
auto ident = session->GetRemoteIdentity ();
|
|
if (ident)
|
|
{
|
|
auto ret = m_SessionsByRouterHash.emplace (ident->GetIdentHash (), session);
|
|
if (!ret.second)
|
|
{
|
|
// session already exists
|
|
LogPrint (eLogWarning, "SSU2: Session to ", ident->GetIdentHash ().ToBase64 (), " aready exists");
|
|
// terminate existing
|
|
GetService ().post (std::bind (&SSU2Session::Terminate, ret.first->second));
|
|
// update session
|
|
ret.first->second = session;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void SSU2Server::AddPendingOutgoingSession (std::shared_ptr<SSU2Session> session)
|
|
{
|
|
if (session)
|
|
m_PendingOutgoingSessions.emplace (session->GetRemoteEndpoint (), session);
|
|
}
|
|
|
|
void SSU2Server::AddRelay (uint32_t tag, std::shared_ptr<SSU2Session> relay)
|
|
{
|
|
m_Relays.emplace (tag, relay);
|
|
}
|
|
|
|
void SSU2Server::RemoveRelay (uint32_t tag)
|
|
{
|
|
m_Relays.erase (tag);
|
|
}
|
|
|
|
std::shared_ptr<SSU2Session> SSU2Server::FindRelaySession (uint32_t tag)
|
|
{
|
|
auto it = m_Relays.find (tag);
|
|
if (it != m_Relays.end ())
|
|
{
|
|
if (it->second->IsEstablished ())
|
|
return it->second;
|
|
else
|
|
m_Relays.erase (it);
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void SSU2Server::ProcessNextPacket (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint)
|
|
{
|
|
if (len < 24) return;
|
|
uint64_t connID;
|
|
memcpy (&connID, buf, 8);
|
|
connID ^= CreateHeaderMask (i2p::context.GetSSU2IntroKey (), buf + (len - 24));
|
|
if (!m_LastSession || m_LastSession->GetConnID () != connID)
|
|
{
|
|
if (m_LastSession) m_LastSession->FlushData ();
|
|
auto it = m_Sessions.find (connID);
|
|
if (it != m_Sessions.end ())
|
|
m_LastSession = it->second;
|
|
else
|
|
m_LastSession = nullptr;
|
|
}
|
|
if (m_LastSession)
|
|
{
|
|
switch (m_LastSession->GetState ())
|
|
{
|
|
case eSSU2SessionStateEstablished:
|
|
m_LastSession->ProcessData (buf, len);
|
|
break;
|
|
case eSSU2SessionStateUnknown:
|
|
m_LastSession->ProcessSessionConfirmed (buf, len);
|
|
break;
|
|
case eSSU2SessionStateIntroduced:
|
|
m_LastSession->SetRemoteEndpoint (senderEndpoint);
|
|
m_LastSession->ProcessHolePunch (buf, len);
|
|
break;
|
|
case eSSU2SessionStatePeerTest:
|
|
m_LastSession->SetRemoteEndpoint (senderEndpoint);
|
|
m_LastSession->ProcessPeerTest (buf, len);
|
|
break;
|
|
default:
|
|
LogPrint (eLogWarning, "SSU2: Invalid session state ", (int)m_LastSession->GetState ());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// check pending sessions if it's SessionCreated or Retry
|
|
auto it1 = m_PendingOutgoingSessions.find (senderEndpoint);
|
|
if (it1 != m_PendingOutgoingSessions.end ())
|
|
{
|
|
if (it1->second->ProcessSessionCreated (buf, len))
|
|
m_PendingOutgoingSessions.erase (it1); // we are done with that endpoint
|
|
else
|
|
it1->second->ProcessRetry (buf, len);
|
|
}
|
|
else
|
|
{
|
|
// assume new incoming session
|
|
auto session = std::make_shared<SSU2Session> (*this);
|
|
session->SetRemoteEndpoint (senderEndpoint);
|
|
session->ProcessFirstIncomingMessage (connID, buf, len);
|
|
}
|
|
}
|
|
}
|
|
|
|
void SSU2Server::Send (const uint8_t * header, size_t headerLen, const uint8_t * payload, size_t payloadLen,
|
|
const boost::asio::ip::udp::endpoint& to)
|
|
{
|
|
std::vector<boost::asio::const_buffer> bufs
|
|
{
|
|
boost::asio::buffer (header, headerLen),
|
|
boost::asio::buffer (payload, payloadLen)
|
|
};
|
|
boost::system::error_code ec;
|
|
if (to.address ().is_v6 ())
|
|
m_SocketV6.send_to (bufs, to, 0, ec);
|
|
else
|
|
m_SocketV4.send_to (bufs, to, 0, ec);
|
|
if (!ec)
|
|
i2p::transport::transports.UpdateSentBytes (headerLen + payloadLen);
|
|
else
|
|
LogPrint (eLogError, "SSU2: Send exception: ", ec.message (), " to ", to);
|
|
}
|
|
|
|
void SSU2Server::Send (const uint8_t * header, size_t headerLen, const uint8_t * headerX, size_t headerXLen,
|
|
const uint8_t * payload, size_t payloadLen, const boost::asio::ip::udp::endpoint& to)
|
|
{
|
|
std::vector<boost::asio::const_buffer> bufs
|
|
{
|
|
boost::asio::buffer (header, headerLen),
|
|
boost::asio::buffer (headerX, headerXLen),
|
|
boost::asio::buffer (payload, payloadLen)
|
|
};
|
|
boost::system::error_code ec;
|
|
if (to.address ().is_v6 ())
|
|
m_SocketV6.send_to (bufs, to, 0, ec);
|
|
else
|
|
m_SocketV4.send_to (bufs, to, 0, ec);
|
|
|
|
if (!ec)
|
|
i2p::transport::transports.UpdateSentBytes (headerLen + headerXLen + payloadLen);
|
|
else
|
|
LogPrint (eLogError, "SSU2: Send exception: ", ec.message (), " to ", to);
|
|
}
|
|
|
|
bool SSU2Server::CreateSession (std::shared_ptr<const i2p::data::RouterInfo> router,
|
|
std::shared_ptr<const i2p::data::RouterInfo::Address> address)
|
|
{
|
|
if (router && address)
|
|
{
|
|
if (address->UsesIntroducer ())
|
|
GetService ().post (std::bind (&SSU2Server::ConnectThroughIntroducer, this, router, address));
|
|
else
|
|
GetService ().post (
|
|
[this, router, address]()
|
|
{
|
|
auto session = std::make_shared<SSU2Session> (*this, router, address);
|
|
session->Connect ();
|
|
});
|
|
}
|
|
else
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
void SSU2Server::ConnectThroughIntroducer (std::shared_ptr<const i2p::data::RouterInfo> router,
|
|
std::shared_ptr<const i2p::data::RouterInfo::Address> address)
|
|
{
|
|
auto session = std::make_shared<SSU2Session> (*this, router, address);
|
|
session->SetState (eSSU2SessionStateIntroduced);
|
|
// try to find existing session first
|
|
for (auto& it: address->ssu->introducers)
|
|
{
|
|
auto it1 = m_SessionsByRouterHash.find (it.iKey);
|
|
if (it1 != m_SessionsByRouterHash.end ())
|
|
{
|
|
it1->second->Introduce (session, it.iTag);
|
|
return;
|
|
}
|
|
}
|
|
// we have to start a new session to an introducer
|
|
std::shared_ptr<i2p::data::RouterInfo> r;
|
|
uint32_t relayTag = 0;
|
|
for (auto& it: address->ssu->introducers)
|
|
{
|
|
r = i2p::data::netdb.FindRouter (it.iKey);
|
|
if (r && r->IsReachableFrom (i2p::context.GetRouterInfo ()))
|
|
{
|
|
relayTag = it.iTag;
|
|
if (relayTag) break;
|
|
}
|
|
}
|
|
if (r)
|
|
{
|
|
if (relayTag)
|
|
{
|
|
// introducer and tag found connect to it through SSU2
|
|
auto addr = address->IsV6 () ? r->GetSSU2V6Address () : r->GetSSU2V4Address ();
|
|
if (addr)
|
|
{
|
|
auto s = std::make_shared<SSU2Session> (*this, r, addr);
|
|
s->SetOnEstablished (
|
|
[session, s, relayTag]()
|
|
{
|
|
s->Introduce (session, relayTag);
|
|
});
|
|
s->Connect ();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// introducers not found, try to request them
|
|
for (auto& it: address->ssu->introducers)
|
|
i2p::data::netdb.RequestDestination (it.iKey);
|
|
}
|
|
}
|
|
|
|
bool SSU2Server::StartPeerTest (std::shared_ptr<const i2p::data::RouterInfo> router, bool v4)
|
|
{
|
|
if (!router) return false;
|
|
auto addr = v4 ? router->GetSSU2V4Address () : router->GetSSU2V6Address ();
|
|
if (!addr) return false;
|
|
auto it = m_SessionsByRouterHash.find (router->GetIdentHash ());
|
|
if (it != m_SessionsByRouterHash.end ())
|
|
{
|
|
if (it->second->IsEstablished ())
|
|
it->second->SendPeerTest ();
|
|
else
|
|
{
|
|
auto s = it->second;
|
|
s->SetOnEstablished ([s]() { s->SendPeerTest (); });
|
|
}
|
|
return true;
|
|
}
|
|
auto s = std::make_shared<SSU2Session> (*this, router, addr);
|
|
s->SetOnEstablished ([s]() {s->SendPeerTest (); });
|
|
s->Connect ();
|
|
return true;
|
|
}
|
|
|
|
void SSU2Server::ScheduleTermination ()
|
|
{
|
|
m_TerminationTimer.expires_from_now (boost::posix_time::seconds(SSU2_TERMINATION_CHECK_TIMEOUT));
|
|
m_TerminationTimer.async_wait (std::bind (&SSU2Server::HandleTerminationTimer,
|
|
this, std::placeholders::_1));
|
|
}
|
|
|
|
void SSU2Server::HandleTerminationTimer (const boost::system::error_code& ecode)
|
|
{
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
{
|
|
auto ts = i2p::util::GetSecondsSinceEpoch ();
|
|
for (auto it = m_PendingOutgoingSessions.begin (); it != m_PendingOutgoingSessions.end ();)
|
|
{
|
|
if (it->second->IsTerminationTimeoutExpired (ts))
|
|
{
|
|
//it->second->Terminate ();
|
|
it = m_PendingOutgoingSessions.erase (it);
|
|
}
|
|
else
|
|
it++;
|
|
}
|
|
|
|
for (auto it = m_Sessions.begin (); it != m_Sessions.end ();)
|
|
{
|
|
if (it->second->IsTerminationTimeoutExpired (ts))
|
|
{
|
|
if (it->second->IsEstablished ())
|
|
it->second->TerminateByTimeout ();
|
|
if (it->second == m_LastSession)
|
|
m_LastSession = nullptr;
|
|
it = m_Sessions.erase (it);
|
|
}
|
|
else
|
|
{
|
|
it->second->CleanUp (ts);
|
|
it++;
|
|
}
|
|
}
|
|
|
|
for (auto it = m_IncomingTokens.begin (); it != m_IncomingTokens.end (); )
|
|
{
|
|
if (ts > it->second.second)
|
|
it = m_IncomingTokens.erase (it);
|
|
else
|
|
it++;
|
|
}
|
|
|
|
for (auto it = m_OutgoingTokens.begin (); it != m_OutgoingTokens.end (); )
|
|
{
|
|
if (ts > it->second.second)
|
|
it = m_OutgoingTokens.erase (it);
|
|
else
|
|
it++;
|
|
}
|
|
|
|
ScheduleTermination ();
|
|
}
|
|
}
|
|
|
|
void SSU2Server::ScheduleResend ()
|
|
{
|
|
m_ResendTimer.expires_from_now (boost::posix_time::seconds(SSU2_RESEND_INTERVAL));
|
|
m_ResendTimer.async_wait (std::bind (&SSU2Server::HandleResendTimer,
|
|
this, std::placeholders::_1));
|
|
}
|
|
|
|
void SSU2Server::HandleResendTimer (const boost::system::error_code& ecode)
|
|
{
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
{
|
|
auto ts = i2p::util::GetSecondsSinceEpoch ();
|
|
for (auto it: m_Sessions)
|
|
it.second->Resend (ts);
|
|
ScheduleResend ();
|
|
}
|
|
}
|
|
|
|
void SSU2Server::UpdateOutgoingToken (const boost::asio::ip::udp::endpoint& ep, uint64_t token, uint32_t exp)
|
|
{
|
|
m_OutgoingTokens[ep] = {token, exp};
|
|
}
|
|
|
|
uint64_t SSU2Server::FindOutgoingToken (const boost::asio::ip::udp::endpoint& ep) const
|
|
{
|
|
auto it = m_OutgoingTokens.find (ep);
|
|
if (it != m_OutgoingTokens.end ())
|
|
return it->second.first;
|
|
return 0;
|
|
}
|
|
|
|
uint64_t SSU2Server::GetIncomingToken (const boost::asio::ip::udp::endpoint& ep)
|
|
{
|
|
auto it = m_IncomingTokens.find (ep);
|
|
if (it != m_IncomingTokens.end ())
|
|
return it->second.first;
|
|
uint64_t token;
|
|
RAND_bytes ((uint8_t *)&token, 8);
|
|
m_IncomingTokens.emplace (ep, std::make_pair (token, i2p::util::GetSecondsSinceEpoch () + SSU2_TOKEN_EXPIRATION_TIMEOUT));
|
|
return token;
|
|
}
|
|
}
|
|
}
|