2018-06-05 19:53:13 +03:00
|
|
|
#include <openssl/rand.h>
|
2018-06-05 22:37:08 +03:00
|
|
|
#include <openssl/sha.h>
|
|
|
|
#include <openssl/hmac.h>
|
2018-06-06 22:38:18 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include "Log.h"
|
|
|
|
#include "I2PEndian.h"
|
2018-06-05 19:53:13 +03:00
|
|
|
#include "Crypto.h"
|
|
|
|
#include "Ed25519.h"
|
|
|
|
#include "ChaCha20.h"
|
|
|
|
#include "Poly1305.h"
|
|
|
|
#include "NTCP2.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace transport
|
|
|
|
{
|
2018-06-06 22:38:18 +03:00
|
|
|
NTCP2Session::NTCP2Session (NTCP2Server& server, std::shared_ptr<const i2p::data::RouterInfo> in_RemoteRouter):
|
|
|
|
TransportSession (in_RemoteRouter, 30),
|
|
|
|
m_Server (server), m_Socket (m_Server.GetService ()), m_SessionRequestBuffer (nullptr)
|
2018-06-05 19:53:13 +03:00
|
|
|
{
|
2018-06-06 22:38:18 +03:00
|
|
|
auto addr = in_RemoteRouter->GetNTCPAddress ();
|
|
|
|
if (addr->ntcp2)
|
|
|
|
{
|
|
|
|
memcpy (m_RemoteStaticKey, addr->ntcp2->staticKey, 32);
|
|
|
|
memcpy (m_RemoteIV, addr->ntcp2->iv, 16);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint (eLogWarning, "NTCP2: Missing NTCP2 parameters");
|
2018-06-05 19:53:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
NTCP2Session::~NTCP2Session ()
|
|
|
|
{
|
2018-06-06 22:38:18 +03:00
|
|
|
delete[] m_SessionRequestBuffer;
|
2018-06-05 19:53:13 +03:00
|
|
|
}
|
|
|
|
|
2018-06-05 22:37:08 +03:00
|
|
|
bool NTCP2Session::KeyDerivationFunction (const uint8_t * rs, const uint8_t * pub, uint8_t * derived)
|
|
|
|
{
|
|
|
|
static const char protocolName[] = "Noise_XK_25519_ChaChaPoly_SHA256"; // 32 bytes
|
|
|
|
uint8_t h[64], ck[33];
|
2018-06-05 23:15:33 +03:00
|
|
|
memcpy (ck, protocolName, 32);
|
|
|
|
SHA256 ((const uint8_t *)protocolName, 32, h);
|
2018-06-05 22:37:08 +03:00
|
|
|
// h = SHA256(h || rs)
|
|
|
|
memcpy (h + 32, rs, 32);
|
|
|
|
SHA256 (h, 64, h);
|
|
|
|
// h = SHA256(h || pub)
|
|
|
|
memcpy (h + 32, pub, 32);
|
|
|
|
SHA256 (h, 64, h);
|
|
|
|
// x25519 between rs and priv
|
|
|
|
uint8_t inputKeyMaterial[32];
|
|
|
|
BN_CTX * ctx = BN_CTX_new ();
|
|
|
|
i2p::crypto::GetEd25519 ()->Mul (rs, m_ExpandedPrivateKey, inputKeyMaterial, ctx); // rs*priv
|
|
|
|
BN_CTX_free (ctx);
|
|
|
|
// temp_key = HMAC-SHA256(ck, input_key_material)
|
|
|
|
uint8_t tempKey[32]; unsigned int len;
|
|
|
|
HMAC(EVP_sha256(), ck, 32, inputKeyMaterial, 32, tempKey, &len);
|
|
|
|
// ck = HMAC-SHA256(temp_key, byte(0x01))
|
|
|
|
inputKeyMaterial[0] = 1;
|
|
|
|
HMAC(EVP_sha256(), tempKey, 32, inputKeyMaterial, 1, ck, &len);
|
|
|
|
// derived = HMAC-SHA256(temp_key, ck || byte(0x02))
|
|
|
|
ck[32] = 2;
|
|
|
|
HMAC(EVP_sha256(), tempKey, 32, ck, 33, derived, &len);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-05 19:53:13 +03:00
|
|
|
void NTCP2Session::CreateEphemeralKey (uint8_t * pub)
|
|
|
|
{
|
|
|
|
uint8_t key[32];
|
|
|
|
RAND_bytes (key, 32);
|
|
|
|
i2p::crypto::Ed25519::ExpandPrivateKey (key, m_ExpandedPrivateKey);
|
|
|
|
BN_CTX * ctx = BN_CTX_new ();
|
|
|
|
auto publicKey = i2p::crypto::GetEd25519 ()->GeneratePublicKey (m_ExpandedPrivateKey, ctx);
|
|
|
|
i2p::crypto::GetEd25519 ()->EncodePublicKey (publicKey, pub, ctx);
|
|
|
|
BN_CTX_free (ctx);
|
|
|
|
}
|
|
|
|
|
2018-06-06 22:38:18 +03:00
|
|
|
void NTCP2Session::SendSessionRequest ()
|
2018-06-05 19:53:13 +03:00
|
|
|
{
|
|
|
|
i2p::crypto::AESAlignedBuffer<32> x;
|
|
|
|
CreateEphemeralKey (x);
|
|
|
|
// encrypt X
|
|
|
|
i2p::crypto::CBCEncryption encryption;
|
|
|
|
encryption.SetKey (GetRemoteIdentity ()->GetIdentHash ());
|
2018-06-06 22:38:18 +03:00
|
|
|
encryption.SetIV (m_RemoteIV);
|
2018-06-05 23:15:33 +03:00
|
|
|
encryption.Encrypt (2, x.GetChipherBlock (), x.GetChipherBlock ());
|
|
|
|
// encryption key for next block
|
|
|
|
uint8_t key[32];
|
2018-06-06 22:38:18 +03:00
|
|
|
KeyDerivationFunction (m_RemoteStaticKey, x, key);
|
|
|
|
// fill options
|
|
|
|
uint8_t options[32]; // actual options size is 16 bytes
|
|
|
|
memset (options, 0, 16);
|
|
|
|
htobe16buf (options, 2); // ver
|
|
|
|
auto paddingLength = rand () % (287 - 64); // message length doesn't exceed 287 bytes
|
|
|
|
htobe16buf (options + 2, paddingLength); // padLen
|
|
|
|
htobe16buf (options + 4, 0); // m3p2Len TODO:
|
|
|
|
// 2 bytes reserved
|
|
|
|
htobe32buf (options + 8, i2p::util::GetSecondsSinceEpoch ()); // tsA
|
|
|
|
// 4 bytes reserved
|
|
|
|
// sign and encrypt options
|
2018-06-05 23:15:33 +03:00
|
|
|
i2p::crypto::Poly1305HMAC (((uint32_t *)options) + 4, (uint32_t *)key, options, 16); // calculate MAC first
|
|
|
|
i2p::crypto::chacha20 (options, 16, 0, key); // then encrypt
|
2018-06-06 22:38:18 +03:00
|
|
|
// create buffer
|
|
|
|
m_SessionRequestBuffer = new uint8_t[paddingLength + 64];
|
|
|
|
memcpy (m_SessionRequestBuffer, x, 32);
|
|
|
|
memcpy (m_SessionRequestBuffer + 32, options, 32);
|
|
|
|
RAND_bytes (m_SessionRequestBuffer + 64, paddingLength);
|
|
|
|
// send message
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_SessionRequestBuffer, paddingLength + 64), boost::asio::transfer_all (),
|
|
|
|
std::bind(&NTCP2Session::HandleSessionRequestSent, shared_from_this (), std::placeholders::_1, std::placeholders::_2));
|
2018-06-05 19:53:13 +03:00
|
|
|
}
|
2018-06-06 22:38:18 +03:00
|
|
|
|
|
|
|
void NTCP2Session::HandleSessionRequestSent (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
(void) bytes_transferred;
|
|
|
|
delete[] m_SessionRequestBuffer; m_SessionRequestBuffer = nullptr;
|
|
|
|
if (ecode)
|
|
|
|
{
|
|
|
|
LogPrint (eLogInfo, "NTCP2: couldn't send SessionRequest message: ", ecode.message ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NTCP2Session::ClientLogin ()
|
|
|
|
{
|
|
|
|
SendSessionRequest ();
|
|
|
|
}
|
2018-06-05 19:53:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|