mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-12 17:10:20 +03:00
don't handle RelayRequest and RelayIntro with same nonce twice
This commit is contained in:
parent
7461b640e3
commit
608056dcd2
@ -477,7 +477,7 @@ namespace transport
|
|||||||
HandleReceivedPackets (std::move (receivedPackets));
|
HandleReceivedPackets (std::move (receivedPackets));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSU2Server::AddSession (std::shared_ptr<SSU2Session> session)
|
bool SSU2Server::AddSession (std::shared_ptr<SSU2Session> session)
|
||||||
{
|
{
|
||||||
if (session)
|
if (session)
|
||||||
{
|
{
|
||||||
@ -485,8 +485,10 @@ namespace transport
|
|||||||
{
|
{
|
||||||
if (session->GetState () != eSSU2SessionStatePeerTest)
|
if (session->GetState () != eSSU2SessionStatePeerTest)
|
||||||
AddSessionByRouterHash (session);
|
AddSessionByRouterHash (session);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSU2Server::RemoveSession (uint64_t connID)
|
void SSU2Server::RemoveSession (uint64_t connID)
|
||||||
|
@ -85,7 +85,7 @@ namespace transport
|
|||||||
bool IsSyncClockFromPeers () const { return m_IsSyncClockFromPeers; };
|
bool IsSyncClockFromPeers () const { return m_IsSyncClockFromPeers; };
|
||||||
void AdjustTimeOffset (int64_t offset, std::shared_ptr<const i2p::data::IdentityEx> from);
|
void AdjustTimeOffset (int64_t offset, std::shared_ptr<const i2p::data::IdentityEx> from);
|
||||||
|
|
||||||
void AddSession (std::shared_ptr<SSU2Session> session);
|
bool AddSession (std::shared_ptr<SSU2Session> session);
|
||||||
void RemoveSession (uint64_t connID);
|
void RemoveSession (uint64_t connID);
|
||||||
void RequestRemoveSession (uint64_t connID);
|
void RequestRemoveSession (uint64_t connID);
|
||||||
void AddSessionByRouterHash (std::shared_ptr<SSU2Session> session);
|
void AddSessionByRouterHash (std::shared_ptr<SSU2Session> session);
|
||||||
|
@ -1931,25 +1931,28 @@ namespace transport
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto mts = i2p::util::GetMillisecondsSinceEpoch ();
|
auto mts = i2p::util::GetMillisecondsSinceEpoch ();
|
||||||
session->m_RelaySessions.emplace (bufbe32toh (buf + 1), // nonce
|
uint32_t nonce = bufbe32toh (buf + 1);
|
||||||
std::make_pair (shared_from_this (), mts/1000) );
|
if (session->m_RelaySessions.emplace (nonce, std::make_pair (shared_from_this (), mts/1000)).second)
|
||||||
|
{
|
||||||
|
// send relay intro to Charlie
|
||||||
|
auto r = i2p::data::netdb.FindRouter (GetRemoteIdentity ()->GetIdentHash ()); // Alice's RI
|
||||||
|
if (r && (r->IsUnreachable () || !i2p::data::netdb.PopulateRouterInfoBuffer (r))) r = nullptr;
|
||||||
|
if (!r) LogPrint (eLogWarning, "SSU2: RelayRequest Alice's router info not found");
|
||||||
|
|
||||||
// send relay intro to Charlie
|
auto packet = m_Server.GetSentPacketsPool ().AcquireShared ();
|
||||||
auto r = i2p::data::netdb.FindRouter (GetRemoteIdentity ()->GetIdentHash ()); // Alice's RI
|
packet->payloadSize = r ? CreateRouterInfoBlock (packet->payload, m_MaxPayloadSize - len - 32, r) : 0;
|
||||||
if (r && (r->IsUnreachable () || !i2p::data::netdb.PopulateRouterInfoBuffer (r))) r = nullptr;
|
if (!packet->payloadSize && r)
|
||||||
if (!r) LogPrint (eLogWarning, "SSU2: RelayRequest Alice's router info not found");
|
session->SendFragmentedMessage (CreateDatabaseStoreMsg (r));
|
||||||
|
packet->payloadSize += CreateRelayIntroBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize, buf + 1, len -1);
|
||||||
auto packet = m_Server.GetSentPacketsPool ().AcquireShared ();
|
if (packet->payloadSize < m_MaxPayloadSize)
|
||||||
packet->payloadSize = r ? CreateRouterInfoBlock (packet->payload, m_MaxPayloadSize - len - 32, r) : 0;
|
packet->payloadSize += CreatePaddingBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize);
|
||||||
if (!packet->payloadSize && r)
|
uint32_t packetNum = session->SendData (packet->payload, packet->payloadSize);
|
||||||
session->SendFragmentedMessage (CreateDatabaseStoreMsg (r));
|
packet->sendTime = mts;
|
||||||
packet->payloadSize += CreateRelayIntroBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize, buf + 1, len -1);
|
// Charlie always responds with RelayResponse
|
||||||
if (packet->payloadSize < m_MaxPayloadSize)
|
session->m_SentPackets.emplace (packetNum, packet);
|
||||||
packet->payloadSize += CreatePaddingBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize);
|
}
|
||||||
uint32_t packetNum = session->SendData (packet->payload, packet->payloadSize);
|
else
|
||||||
packet->sendTime = mts;
|
LogPrint (eLogInfo, "SSU2: Relay request nonce ", nonce, " already exists. Ignore");
|
||||||
// Charlie always responds with RelayResponse
|
|
||||||
session->m_SentPackets.emplace (packetNum, packet);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSU2Session::HandleRelayIntro (const uint8_t * buf, size_t len, int attempts)
|
void SSU2Session::HandleRelayIntro (const uint8_t * buf, size_t len, int attempts)
|
||||||
@ -2035,8 +2038,13 @@ namespace transport
|
|||||||
{
|
{
|
||||||
// send HolePunch
|
// send HolePunch
|
||||||
auto holePunchSession = std::make_shared<SSU2HolePunchSession>(m_Server, nonce, ep, addr);
|
auto holePunchSession = std::make_shared<SSU2HolePunchSession>(m_Server, nonce, ep, addr);
|
||||||
m_Server.AddSession (holePunchSession);
|
if (m_Server.AddSession (holePunchSession))
|
||||||
holePunchSession->SendHolePunch (packet->payload, packet->payloadSize); // relay response block
|
holePunchSession->SendHolePunch (packet->payload, packet->payloadSize); // relay response block
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LogPrint (eLogInfo, "SSU2: Relay intro nonce ", nonce, " already exists. Ignore");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
packet->payloadSize += CreatePaddingBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize);
|
packet->payloadSize += CreatePaddingBlock (packet->payload + packet->payloadSize, m_MaxPayloadSize - packet->payloadSize);
|
||||||
uint32_t packetNum = SendData (packet->payload, packet->payloadSize);
|
uint32_t packetNum = SendData (packet->payload, packet->payloadSize);
|
||||||
@ -3043,7 +3051,7 @@ namespace transport
|
|||||||
{
|
{
|
||||||
if (ts > it->second.second + SSU2_RELAY_NONCE_EXPIRATION_TIMEOUT)
|
if (ts > it->second.second + SSU2_RELAY_NONCE_EXPIRATION_TIMEOUT)
|
||||||
{
|
{
|
||||||
LogPrint (eLogWarning, "SSU2: Relay nonce ", it->first, " was not responded in ", SSU2_RELAY_NONCE_EXPIRATION_TIMEOUT, " seconds, deleted");
|
LogPrint (eLogInfo, "SSU2: Relay nonce ", it->first, " was not responded in ", SSU2_RELAY_NONCE_EXPIRATION_TIMEOUT, " seconds, deleted");
|
||||||
it = m_RelaySessions.erase (it);
|
it = m_RelaySessions.erase (it);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user