mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
relay request from non-established session
This commit is contained in:
parent
9500d96789
commit
119603845b
36
SSU.cpp
36
SSU.cpp
@ -158,7 +158,7 @@ namespace ssu
|
|||||||
break;
|
break;
|
||||||
case PAYLOAD_TYPE_RELAY_REQUEST:
|
case PAYLOAD_TYPE_RELAY_REQUEST:
|
||||||
LogPrint ("SSU relay request received");
|
LogPrint ("SSU relay request received");
|
||||||
ProcessRelayRequest (buf + sizeof (SSUHeader), len - sizeof (SSUHeader));
|
ProcessRelayRequest (buf + sizeof (SSUHeader), len - sizeof (SSUHeader), senderEndpoint);
|
||||||
break;
|
break;
|
||||||
case PAYLOAD_TYPE_RELAY_INTRO:
|
case PAYLOAD_TYPE_RELAY_INTRO:
|
||||||
LogPrint ("SSU relay intro received");
|
LogPrint ("SSU relay intro received");
|
||||||
@ -375,7 +375,7 @@ namespace ssu
|
|||||||
Send (buf, 480);
|
Send (buf, 480);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSUSession::ProcessRelayRequest (uint8_t * buf, size_t len)
|
void SSUSession::ProcessRelayRequest (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& from)
|
||||||
{
|
{
|
||||||
uint32_t relayTag = be32toh (*(uint32_t *)buf);
|
uint32_t relayTag = be32toh (*(uint32_t *)buf);
|
||||||
auto session = m_Server.FindRelaySession (relayTag);
|
auto session = m_Server.FindRelaySession (relayTag);
|
||||||
@ -389,14 +389,16 @@ namespace ssu
|
|||||||
uint8_t challengeSize = *buf;
|
uint8_t challengeSize = *buf;
|
||||||
buf++; // challenge size
|
buf++; // challenge size
|
||||||
buf += challengeSize;
|
buf += challengeSize;
|
||||||
|
uint8_t * introKey = buf;
|
||||||
buf += 32; // introkey
|
buf += 32; // introkey
|
||||||
uint32_t nonce = be32toh (*(uint32_t *)buf);
|
uint32_t nonce = be32toh (*(uint32_t *)buf);
|
||||||
SendRelayResponse (nonce, session->m_RemoteEndpoint);
|
SendRelayResponse (nonce, from, introKey, session->m_RemoteEndpoint);
|
||||||
SendRelayIntro (session, m_RemoteEndpoint);
|
SendRelayIntro (session, from);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSUSession::SendRelayResponse (uint32_t nonce, const boost::asio::ip::udp::endpoint& to)
|
void SSUSession::SendRelayResponse (uint32_t nonce, const boost::asio::ip::udp::endpoint& from,
|
||||||
|
const uint8_t * introKey, const boost::asio::ip::udp::endpoint& to)
|
||||||
{
|
{
|
||||||
uint8_t buf[64 + 18];
|
uint8_t buf[64 + 18];
|
||||||
uint8_t * payload = buf + sizeof (SSUHeader);
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
||||||
@ -410,15 +412,28 @@ namespace ssu
|
|||||||
// Alice
|
// Alice
|
||||||
*payload = 4;
|
*payload = 4;
|
||||||
payload++; // size
|
payload++; // size
|
||||||
*(uint32_t *)payload = htobe32 (m_RemoteEndpoint.address ().to_v4 ().to_ulong ()); // Alice's IP
|
*(uint32_t *)payload = htobe32 (from.address ().to_v4 ().to_ulong ()); // Alice's IP
|
||||||
payload += 4; // address
|
payload += 4; // address
|
||||||
*(uint16_t *)payload = htobe16 (m_RemoteEndpoint.port ()); // Alice's port
|
*(uint16_t *)payload = htobe16 (from.port ()); // Alice's port
|
||||||
payload += 2; // port
|
payload += 2; // port
|
||||||
*(uint32_t *)payload = htobe32 (nonce);
|
*(uint32_t *)payload = htobe32 (nonce);
|
||||||
|
|
||||||
// encrypt with session key
|
if (m_State == eSessionStateEstablished)
|
||||||
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_RESPONSE, buf, 64);
|
{
|
||||||
Send (buf, 64);
|
// encrypt with session key
|
||||||
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_RESPONSE, buf, 64);
|
||||||
|
Send (buf, 64);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// ecrypt with Alice's intro key
|
||||||
|
uint8_t iv[16];
|
||||||
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
||||||
|
rnd.GenerateBlock (iv, 16); // random iv
|
||||||
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_RESPONSE, buf, 64, introKey, iv, introKey);
|
||||||
|
m_Server.Send (buf, 64, from);
|
||||||
|
}
|
||||||
|
LogPrint ("SSU relay response sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSUSession::SendRelayIntro (SSUSession * session, const boost::asio::ip::udp::endpoint& from)
|
void SSUSession::SendRelayIntro (SSUSession * session, const boost::asio::ip::udp::endpoint& from)
|
||||||
@ -438,6 +453,7 @@ namespace ssu
|
|||||||
rnd.GenerateBlock (iv, 16); // random iv
|
rnd.GenerateBlock (iv, 16); // random iv
|
||||||
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_INTRO, buf, 48, session->m_SessionKey, iv, session->m_MacKey);
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_INTRO, buf, 48, session->m_SessionKey, iv, session->m_MacKey);
|
||||||
m_Server.Send (buf, 48, session->m_RemoteEndpoint);
|
m_Server.Send (buf, 48, session->m_RemoteEndpoint);
|
||||||
|
LogPrint ("SSU relay intro sent");
|
||||||
}
|
}
|
||||||
|
|
||||||
void SSUSession::ProcessRelayResponse (uint8_t * buf, size_t len)
|
void SSUSession::ProcessRelayResponse (uint8_t * buf, size_t len)
|
||||||
|
5
SSU.h
5
SSU.h
@ -95,8 +95,9 @@ namespace ssu
|
|||||||
void SendSessionCreated (const uint8_t * x);
|
void SendSessionCreated (const uint8_t * x);
|
||||||
void ProcessSessionConfirmed (uint8_t * buf, size_t len);
|
void ProcessSessionConfirmed (uint8_t * buf, size_t len);
|
||||||
void SendSessionConfirmed (const uint8_t * y, const uint8_t * ourAddress);
|
void SendSessionConfirmed (const uint8_t * y, const uint8_t * ourAddress);
|
||||||
void ProcessRelayRequest (uint8_t * buf, size_t len);
|
void ProcessRelayRequest (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& from);
|
||||||
void SendRelayResponse (uint32_t nonce, const boost::asio::ip::udp::endpoint& to);
|
void SendRelayResponse (uint32_t nonce, const boost::asio::ip::udp::endpoint& from,
|
||||||
|
const uint8_t * introKey, const boost::asio::ip::udp::endpoint& to);
|
||||||
void SendRelayIntro (SSUSession * session, const boost::asio::ip::udp::endpoint& from);
|
void SendRelayIntro (SSUSession * session, const boost::asio::ip::udp::endpoint& from);
|
||||||
void ProcessRelayResponse (uint8_t * buf, size_t len);
|
void ProcessRelayResponse (uint8_t * buf, size_t len);
|
||||||
void ProcessRelayIntro (uint8_t * buf, size_t len);
|
void ProcessRelayIntro (uint8_t * buf, size_t len);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user