2014-01-28 21:49:54 +00:00
|
|
|
#include <string.h>
|
2014-01-23 21:10:33 +00:00
|
|
|
#include <boost/bind.hpp>
|
2014-01-29 21:49:53 +00:00
|
|
|
#include <cryptopp/dh.h>
|
2014-04-15 15:53:24 +00:00
|
|
|
#include <cryptopp/sha.h>
|
2014-01-29 21:49:53 +00:00
|
|
|
#include "CryptoConst.h"
|
2014-01-23 21:10:33 +00:00
|
|
|
#include "Log.h"
|
2014-01-29 21:49:53 +00:00
|
|
|
#include "Timestamp.h"
|
2014-01-28 21:49:54 +00:00
|
|
|
#include "RouterContext.h"
|
2014-04-04 18:56:46 +00:00
|
|
|
#include "Transports.h"
|
2014-01-23 21:10:33 +00:00
|
|
|
#include "hmac.h"
|
|
|
|
#include "SSU.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace ssu
|
|
|
|
{
|
2014-01-24 21:30:07 +00:00
|
|
|
|
2014-04-02 14:49:16 +00:00
|
|
|
SSUSession::SSUSession (SSUServer& server, boost::asio::ip::udp::endpoint& remoteEndpoint,
|
2014-04-07 23:28:06 +00:00
|
|
|
const i2p::data::RouterInfo * router, bool peerTest ):
|
|
|
|
m_Server (server), m_RemoteEndpoint (remoteEndpoint), m_RemoteRouter (router),
|
2014-04-08 19:35:08 +00:00
|
|
|
m_Timer (m_Server.GetService ()), m_PeerTest (peerTest), m_State (eSessionStateUnknown),
|
2014-04-13 20:59:54 +00:00
|
|
|
m_IsSessionKey (false), m_RelayTag (0)
|
2014-01-24 21:30:07 +00:00
|
|
|
{
|
2014-04-04 18:56:46 +00:00
|
|
|
m_DHKeysPair = i2p::transports.GetNextDHKeysPair ();
|
2014-01-24 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 02:55:03 +00:00
|
|
|
SSUSession::~SSUSession ()
|
|
|
|
{
|
2014-04-04 18:56:46 +00:00
|
|
|
delete m_DHKeysPair;
|
2014-04-13 01:13:30 +00:00
|
|
|
for (auto it: m_IncomleteMessages)
|
|
|
|
if (it.second)
|
|
|
|
{
|
|
|
|
DeleteI2NPMessage (it.second->msg);
|
|
|
|
delete it.second;
|
|
|
|
}
|
2014-03-31 02:55:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-13 20:59:54 +00:00
|
|
|
void SSUSession::CreateAESandMacKey (const uint8_t * pubKey, uint8_t * aesKey, uint8_t * macKey)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
|
|
|
CryptoPP::DH dh (i2p::crypto::elgp, i2p::crypto::elgg);
|
2014-04-15 21:44:44 +00:00
|
|
|
uint8_t sharedKey[256];
|
2014-04-15 15:53:24 +00:00
|
|
|
if (!dh.Agree (sharedKey, m_DHKeysPair->privateKey, pubKey))
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
|
|
|
LogPrint ("Couldn't create shared key");
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2014-04-15 15:53:24 +00:00
|
|
|
if (sharedKey[0] & 0x80)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
|
|
|
aesKey[0] = 0;
|
2014-04-15 15:53:24 +00:00
|
|
|
memcpy (aesKey + 1, sharedKey, 31);
|
|
|
|
memcpy (macKey, sharedKey + 31, 32);
|
|
|
|
}
|
|
|
|
else if (sharedKey[0])
|
|
|
|
{
|
|
|
|
memcpy (aesKey, sharedKey, 32);
|
|
|
|
memcpy (macKey, sharedKey + 32, 32);
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
2014-02-03 19:40:38 +00:00
|
|
|
else
|
|
|
|
{
|
2014-04-15 15:53:24 +00:00
|
|
|
// find first non-zero byte
|
|
|
|
uint8_t * nonZero = sharedKey + 1;
|
|
|
|
while (!*nonZero)
|
|
|
|
{
|
|
|
|
nonZero++;
|
|
|
|
if (nonZero - sharedKey > 32)
|
|
|
|
{
|
|
|
|
LogPrint ("First 32 bytes of shared key is all zeros. Ignored");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy (aesKey, nonZero, 32);
|
|
|
|
CryptoPP::SHA256().CalculateDigest(macKey, nonZero, 64 - (nonZero - sharedKey));
|
2014-02-03 19:40:38 +00:00
|
|
|
}
|
2014-04-13 20:59:54 +00:00
|
|
|
m_IsSessionKey = true;
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::ProcessNextMessage (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint)
|
2014-01-24 21:30:07 +00:00
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
if (m_State == eSessionStateIntroduced)
|
2014-01-27 21:52:17 +00:00
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
// HolePunch received
|
|
|
|
LogPrint ("SSU HolePuch of ", len, " bytes received");
|
|
|
|
m_State = eSessionStateUnknown;
|
|
|
|
Connect ();
|
2014-02-05 20:07:47 +00:00
|
|
|
}
|
|
|
|
else
|
2014-02-12 21:36:13 +00:00
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
ScheduleTermination ();
|
|
|
|
if (m_IsSessionKey && Validate (buf, len, m_MacKey)) // try session key first
|
|
|
|
Decrypt (buf, len, m_SessionKey);
|
|
|
|
else
|
2014-02-12 21:36:13 +00:00
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
// try intro key depending on side
|
|
|
|
auto introKey = GetIntroKey ();
|
|
|
|
if (introKey && Validate (buf, len, introKey))
|
|
|
|
Decrypt (buf, len, introKey);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// try own intro key
|
|
|
|
auto address = i2p::context.GetRouterInfo ().GetSSUAddress ();
|
|
|
|
if (!address)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU is not supported");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (Validate (buf, len, address->key))
|
|
|
|
Decrypt (buf, len, address->key);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint ("MAC verifcation failed");
|
|
|
|
m_Server.DeleteSession (this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-02-12 21:36:13 +00:00
|
|
|
}
|
2014-04-13 20:59:54 +00:00
|
|
|
// successfully decrypted
|
|
|
|
ProcessMessage (buf, len, senderEndpoint);
|
|
|
|
}
|
2014-02-05 20:07:47 +00:00
|
|
|
}
|
|
|
|
|
2014-04-13 20:59:54 +00:00
|
|
|
void SSUSession::ProcessMessage (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
2014-04-07 22:54:28 +00:00
|
|
|
SSUHeader * header = (SSUHeader *)buf;
|
|
|
|
switch (header->GetPayloadType ())
|
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
case PAYLOAD_TYPE_DATA:
|
|
|
|
LogPrint ("SSU data received");
|
|
|
|
ProcessData (buf + sizeof (SSUHeader), len - sizeof (SSUHeader));
|
|
|
|
break;
|
2014-04-07 22:54:28 +00:00
|
|
|
case PAYLOAD_TYPE_SESSION_REQUEST:
|
|
|
|
ProcessSessionRequest (buf, len, senderEndpoint);
|
|
|
|
break;
|
|
|
|
case PAYLOAD_TYPE_SESSION_CREATED:
|
|
|
|
ProcessSessionCreated (buf, len);
|
|
|
|
break;
|
2014-04-13 20:59:54 +00:00
|
|
|
case PAYLOAD_TYPE_SESSION_CONFIRMED:
|
|
|
|
ProcessSessionConfirmed (buf, len);
|
|
|
|
break;
|
2014-04-07 22:54:28 +00:00
|
|
|
case PAYLOAD_TYPE_PEER_TEST:
|
2014-04-07 23:28:06 +00:00
|
|
|
LogPrint ("SSU peer test received");
|
2014-04-13 20:59:54 +00:00
|
|
|
ProcessPeerTest (buf + sizeof (SSUHeader), len - sizeof (SSUHeader), senderEndpoint);
|
|
|
|
break;
|
|
|
|
case PAYLOAD_TYPE_SESSION_DESTROYED:
|
|
|
|
{
|
|
|
|
LogPrint ("SSU session destroy received");
|
|
|
|
m_Server.DeleteSession (this); // delete this
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case PAYLOAD_TYPE_RELAY_RESPONSE:
|
|
|
|
ProcessRelayResponse (buf, len);
|
|
|
|
m_Server.DeleteSession (this);
|
|
|
|
break;
|
2014-04-16 20:47:56 +00:00
|
|
|
case PAYLOAD_TYPE_RELAY_REQUEST:
|
|
|
|
LogPrint ("SSU relay request received");
|
2014-04-16 22:28:44 +00:00
|
|
|
ProcessRelayRequest (buf + sizeof (SSUHeader), len - sizeof (SSUHeader));
|
2014-04-16 20:47:56 +00:00
|
|
|
break;
|
2014-04-13 20:59:54 +00:00
|
|
|
case PAYLOAD_TYPE_RELAY_INTRO:
|
|
|
|
LogPrint ("SSU relay intro received");
|
|
|
|
ProcessRelayIntro (buf + sizeof (SSUHeader), len - sizeof (SSUHeader));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LogPrint ("Unexpected SSU payload type ", (int)header->GetPayloadType ());
|
|
|
|
}
|
2014-04-07 20:41:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::ProcessSessionRequest (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint)
|
|
|
|
{
|
|
|
|
m_State = eSessionStateRequestReceived;
|
|
|
|
LogPrint ("Session request received");
|
|
|
|
m_RemoteEndpoint = senderEndpoint;
|
2014-04-13 20:59:54 +00:00
|
|
|
CreateAESandMacKey (buf + sizeof (SSUHeader), m_SessionKey, m_MacKey);
|
2014-04-07 20:53:28 +00:00
|
|
|
SendSessionCreated (buf + sizeof (SSUHeader));
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::ProcessSessionCreated (uint8_t * buf, size_t len)
|
|
|
|
{
|
2014-02-01 23:46:28 +00:00
|
|
|
if (!m_RemoteRouter)
|
|
|
|
{
|
|
|
|
LogPrint ("Unsolicited session created message");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-07 20:53:28 +00:00
|
|
|
m_State = eSessionStateCreatedReceived;
|
|
|
|
LogPrint ("Session created received");
|
|
|
|
m_Timer.cancel (); // connect timer
|
|
|
|
uint8_t signedData[532]; // x,y, our IP, our port, remote IP, remote port, relayTag, signed on time
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
uint8_t * y = payload;
|
2014-04-13 20:59:54 +00:00
|
|
|
CreateAESandMacKey (y, m_SessionKey, m_MacKey);
|
2014-04-07 20:53:28 +00:00
|
|
|
memcpy (signedData, m_DHKeysPair->publicKey, 256); // x
|
|
|
|
memcpy (signedData + 256, y, 256); // y
|
|
|
|
payload += 256;
|
|
|
|
payload += 1; // size, assume 4
|
|
|
|
uint8_t * ourAddress = payload;
|
|
|
|
boost::asio::ip::address_v4 ourIP (be32toh (*(uint32_t* )ourAddress));
|
|
|
|
payload += 4; // address
|
|
|
|
uint16_t ourPort = be16toh (*(uint16_t *)payload);
|
|
|
|
payload += 2; // port
|
|
|
|
memcpy (signedData + 512, ourAddress, 6); // our IP and port
|
|
|
|
LogPrint ("Our external address is ", ourIP.to_string (), ":", ourPort);
|
|
|
|
i2p::context.UpdateAddress (ourIP.to_string ().c_str ());
|
|
|
|
*(uint32_t *)(signedData + 518) = htobe32 (m_RemoteEndpoint.address ().to_v4 ().to_ulong ()); // remote IP
|
|
|
|
*(uint16_t *)(signedData + 522) = htobe16 (m_RemoteEndpoint.port ()); // remote port
|
|
|
|
memcpy (signedData + 524, payload, 8); // relayTag and signed on time
|
2014-04-08 19:35:08 +00:00
|
|
|
m_RelayTag = be32toh (*(uint32_t *)payload);
|
2014-04-07 20:53:28 +00:00
|
|
|
payload += 4; // relayTag
|
|
|
|
payload += 4; // signed on time
|
|
|
|
// decrypt DSA signature
|
|
|
|
m_Decryption.SetKeyWithIV (m_SessionKey, 32, ((SSUHeader *)buf)->iv);
|
|
|
|
m_Decryption.ProcessData (payload, payload, 48);
|
|
|
|
// verify
|
|
|
|
CryptoPP::DSA::PublicKey pubKey;
|
|
|
|
pubKey.Initialize (i2p::crypto::dsap, i2p::crypto::dsaq, i2p::crypto::dsag, CryptoPP::Integer (m_RemoteRouter->GetRouterIdentity ().signingKey, 128));
|
|
|
|
CryptoPP::DSA::Verifier verifier (pubKey);
|
|
|
|
if (!verifier.VerifyMessage (signedData, 532, payload, 40))
|
|
|
|
LogPrint ("SSU signature verification failed");
|
|
|
|
|
2014-04-08 19:35:08 +00:00
|
|
|
SendSessionConfirmed (y, ourAddress);
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-04 19:20:58 +00:00
|
|
|
void SSUSession::ProcessSessionConfirmed (uint8_t * buf, size_t len)
|
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
m_State = eSessionStateConfirmedReceived;
|
|
|
|
LogPrint ("Session confirmed received");
|
|
|
|
m_State = eSessionStateEstablished;
|
|
|
|
SendI2NPMessage (CreateDeliveryStatusMsg (0));
|
|
|
|
Established ();
|
2014-02-04 19:20:58 +00:00
|
|
|
}
|
|
|
|
|
2014-01-29 21:49:53 +00:00
|
|
|
void SSUSession::SendSessionRequest ()
|
|
|
|
{
|
2014-02-12 21:36:13 +00:00
|
|
|
auto introKey = GetIntroKey ();
|
|
|
|
if (!introKey)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
2014-02-12 21:36:13 +00:00
|
|
|
LogPrint ("SSU is not supported");
|
2014-01-29 21:49:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t buf[304 + 18]; // 304 bytes for ipv4 (320 for ipv6)
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
2014-04-04 18:56:46 +00:00
|
|
|
memcpy (payload, m_DHKeysPair->publicKey, 256); // x
|
2014-01-29 21:49:53 +00:00
|
|
|
payload[256] = 4; // we assume ipv4
|
2014-02-05 03:51:46 +00:00
|
|
|
*(uint32_t *)(payload + 257) = htobe32 (m_RemoteEndpoint.address ().to_v4 ().to_ulong ());
|
2014-01-29 21:49:53 +00:00
|
|
|
|
|
|
|
uint8_t iv[16];
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
2014-02-12 21:36:13 +00:00
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_SESSION_REQUEST, buf, 304, introKey, iv, introKey);
|
2014-01-29 21:49:53 +00:00
|
|
|
|
|
|
|
m_State = eSessionStateRequestSent;
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, 304, m_RemoteEndpoint);
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 15:58:57 +00:00
|
|
|
void SSUSession::SendRelayRequest (uint32_t iTag, const uint8_t * iKey)
|
2014-02-21 21:13:36 +00:00
|
|
|
{
|
|
|
|
auto address = i2p::context.GetRouterInfo ().GetSSUAddress ();
|
|
|
|
if (!address)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU is not supported");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t buf[96 + 18];
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
2014-04-09 15:58:57 +00:00
|
|
|
*(uint32_t *)payload = htobe32 (iTag);
|
2014-02-21 21:13:36 +00:00
|
|
|
payload += 4;
|
|
|
|
*payload = 0; // no address
|
|
|
|
payload++;
|
|
|
|
*(uint16_t *)payload = 0; // port = 0
|
|
|
|
payload += 2;
|
|
|
|
*payload = 0; // challenge
|
|
|
|
payload++;
|
|
|
|
memcpy (payload, address->key, 32);
|
|
|
|
payload += 32;
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
*(uint32_t *)payload = htobe32 (rnd.GenerateWord32 ()); // nonce
|
|
|
|
|
|
|
|
uint8_t iv[16];
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
2014-04-09 16:25:40 +00:00
|
|
|
if (m_State == eSessionStateEstablished)
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_REQUEST, buf, 96, m_SessionKey, iv, m_MacKey);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_REQUEST, buf, 96, iKey, iv, iKey);
|
|
|
|
m_State = eSessionStateRelayRequestSent;
|
|
|
|
}
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, 96, m_RemoteEndpoint);
|
2014-02-21 21:13:36 +00:00
|
|
|
}
|
|
|
|
|
2014-01-30 19:03:11 +00:00
|
|
|
void SSUSession::SendSessionCreated (const uint8_t * x)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
2014-02-12 21:36:13 +00:00
|
|
|
auto introKey = GetIntroKey ();
|
2014-02-25 02:43:26 +00:00
|
|
|
auto address = i2p::context.GetRouterInfo ().GetSSUAddress ();
|
|
|
|
if (!introKey || !address)
|
2014-01-29 21:49:53 +00:00
|
|
|
{
|
2014-02-12 21:36:13 +00:00
|
|
|
LogPrint ("SSU is not supported");
|
2014-01-29 21:49:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-04-16 19:54:28 +00:00
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
2014-01-30 19:03:11 +00:00
|
|
|
uint8_t signedData[532]; // x,y, remote IP, remote port, our IP, our port, relayTag, signed on time
|
|
|
|
memcpy (signedData, x, 256); // x
|
2014-01-29 21:49:53 +00:00
|
|
|
|
2014-01-30 19:03:11 +00:00
|
|
|
uint8_t buf[368 + 18];
|
2014-01-29 21:49:53 +00:00
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
2014-04-04 18:56:46 +00:00
|
|
|
memcpy (payload, m_DHKeysPair->publicKey, 256);
|
2014-01-30 19:03:11 +00:00
|
|
|
memcpy (signedData + 256, payload, 256); // y
|
|
|
|
payload += 256;
|
|
|
|
*payload = 4; // we assume ipv4
|
|
|
|
payload++;
|
2014-02-01 23:46:28 +00:00
|
|
|
*(uint32_t *)(payload) = htobe32 (m_RemoteEndpoint.address ().to_v4 ().to_ulong ());
|
2014-01-30 19:03:11 +00:00
|
|
|
payload += 4;
|
|
|
|
*(uint16_t *)(payload) = htobe16 (m_RemoteEndpoint.port ());
|
|
|
|
payload += 2;
|
|
|
|
memcpy (signedData + 512, payload - 6, 6); // remote endpoint IP and port
|
2014-02-25 02:43:26 +00:00
|
|
|
*(uint32_t *)(signedData + 518) = htobe32 (address->host.to_v4 ().to_ulong ()); // our IP
|
|
|
|
*(uint16_t *)(signedData + 522) = htobe16 (address->port); // our port
|
2014-04-16 19:54:28 +00:00
|
|
|
uint32_t relayTag = 0;
|
|
|
|
if (i2p::context.GetRouterInfo ().IsIntroducer ())
|
|
|
|
{
|
|
|
|
rnd.GenerateWord32 (relayTag);
|
|
|
|
m_Server.AddRelay (relayTag, m_RemoteEndpoint);
|
|
|
|
}
|
|
|
|
*(uint32_t *)(payload) = relayTag;
|
|
|
|
payload += 4; // relay tag
|
2014-01-30 19:03:11 +00:00
|
|
|
*(uint32_t *)(payload) = htobe32 (i2p::util::GetSecondsSinceEpoch ()); // signed on time
|
|
|
|
payload += 4;
|
|
|
|
memcpy (signedData + 524, payload - 8, 8); // relayTag and signed on time
|
|
|
|
i2p::context.Sign (signedData, 532, payload); // DSA signature
|
|
|
|
// TODO: fill padding with random data
|
2014-01-29 21:49:53 +00:00
|
|
|
|
2014-01-30 19:03:11 +00:00
|
|
|
uint8_t iv[16];
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt signature and 8 bytes padding with newly created session key
|
|
|
|
m_Encryption.SetKeyWithIV (m_SessionKey, 32, iv);
|
|
|
|
m_Encryption.ProcessData (payload, payload, 48);
|
|
|
|
|
|
|
|
// encrypt message with intro key
|
2014-02-12 21:36:13 +00:00
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_SESSION_CREATED, buf, 368, introKey, iv, introKey);
|
2014-02-26 01:37:39 +00:00
|
|
|
m_State = eSessionStateCreatedSent;
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, 368, m_RemoteEndpoint);
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 19:35:08 +00:00
|
|
|
void SSUSession::SendSessionConfirmed (const uint8_t * y, const uint8_t * ourAddress)
|
2014-02-04 19:20:58 +00:00
|
|
|
{
|
|
|
|
uint8_t buf[480 + 18];
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
*payload = 1; // 1 fragment
|
|
|
|
payload++; // info
|
|
|
|
size_t identLen = sizeof (i2p::context.GetRouterIdentity ()); // 387 bytes
|
|
|
|
*(uint16_t *)(payload) = htobe16 (identLen);
|
|
|
|
payload += 2; // cursize
|
|
|
|
memcpy (payload, (uint8_t *)&i2p::context.GetRouterIdentity (), identLen);
|
|
|
|
payload += identLen;
|
|
|
|
uint32_t signedOnTime = i2p::util::GetSecondsSinceEpoch ();
|
|
|
|
*(uint32_t *)(payload) = htobe32 (signedOnTime); // signed on time
|
|
|
|
payload += 4;
|
|
|
|
size_t paddingSize = ((payload - buf) + 40)%16;
|
|
|
|
if (paddingSize > 0) paddingSize = 16 - paddingSize;
|
|
|
|
// TODO: fill padding
|
|
|
|
payload += paddingSize; // padding size
|
|
|
|
|
|
|
|
// signature
|
|
|
|
uint8_t signedData[532]; // x,y, our IP, our port, remote IP, remote port, relayTag, our signed on time
|
2014-04-04 18:56:46 +00:00
|
|
|
memcpy (signedData, m_DHKeysPair->publicKey, 256); // x
|
2014-02-04 19:20:58 +00:00
|
|
|
memcpy (signedData + 256, y, 256); // y
|
|
|
|
memcpy (signedData + 512, ourAddress, 6); // our address/port as seem by party
|
|
|
|
*(uint32_t *)(signedData + 518) = htobe32 (m_RemoteEndpoint.address ().to_v4 ().to_ulong ()); // remote IP
|
|
|
|
*(uint16_t *)(signedData + 522) = htobe16 (m_RemoteEndpoint.port ()); // remote port
|
2014-04-08 19:35:08 +00:00
|
|
|
*(uint32_t *)(signedData + 524) = htobe32 (m_RelayTag); // relay tag
|
2014-02-04 19:20:58 +00:00
|
|
|
*(uint32_t *)(signedData + 528) = htobe32 (signedOnTime); // signed on time
|
|
|
|
i2p::context.Sign (signedData, 532, payload); // DSA signature
|
|
|
|
|
|
|
|
uint8_t iv[16];
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_SESSION_CONFIRMED, buf, 480, m_SessionKey, iv, m_MacKey);
|
|
|
|
m_State = eSessionStateConfirmedSent;
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, 480, m_RemoteEndpoint);
|
2014-02-04 19:20:58 +00:00
|
|
|
}
|
|
|
|
|
2014-04-16 20:47:56 +00:00
|
|
|
void SSUSession::ProcessRelayRequest (uint8_t * buf, size_t len)
|
|
|
|
{
|
|
|
|
uint32_t relayTag = be32toh (*(uint32_t *)buf);
|
|
|
|
auto session = m_Server.FindRelaySession (relayTag);
|
|
|
|
if (session)
|
|
|
|
{
|
|
|
|
buf += 4; // relay tag
|
|
|
|
uint8_t size = *buf;
|
|
|
|
if (size == 4)
|
|
|
|
{
|
|
|
|
buf++; // size
|
|
|
|
boost::asio::ip::address_v4 address (be32toh (*(uint32_t* )buf));
|
|
|
|
buf += 4; // address
|
|
|
|
uint16_t port = be16toh (*(uint16_t *)buf);
|
|
|
|
buf += 2; // port
|
|
|
|
uint8_t challengeSize = *buf;
|
|
|
|
buf++; // challenge size
|
|
|
|
buf += challengeSize;
|
|
|
|
uint8_t * introKey = buf;
|
|
|
|
buf += 32; // introkey
|
|
|
|
uint32_t nonce = be32toh (*(uint32_t *)buf);
|
|
|
|
boost::asio::ip::udp::endpoint from (address, port);
|
|
|
|
SendRelayResponse (nonce, from, introKey, session->m_RemoteEndpoint);
|
|
|
|
SendRelayIntro (session, from);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("Address size ", size, " is not supported");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 * payload = buf + sizeof (SSUHeader);
|
|
|
|
// Charlie
|
|
|
|
*payload = 4;
|
|
|
|
payload++; // size
|
|
|
|
*(uint32_t *)payload = htobe32 (to.address ().to_v4 ().to_ulong ()); // Charlie's IP
|
|
|
|
payload += 4; // address
|
|
|
|
*(uint16_t *)payload = htobe16 (to.port ()); // Charlie's port
|
|
|
|
payload += 2; // port
|
|
|
|
// Alice
|
|
|
|
*payload = 4;
|
|
|
|
payload++; // size
|
|
|
|
*(uint32_t *)payload = htobe32 (from.address ().to_v4 ().to_ulong ()); // Alice's IP
|
|
|
|
payload += 4; // address
|
|
|
|
*(uint16_t *)payload = htobe16 (from.port ()); // Alice's port
|
|
|
|
payload += 2; // port
|
|
|
|
*(uint32_t *)payload = htobe32 (nonce);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::SendRelayIntro (SSUSession * session, const boost::asio::ip::udp::endpoint& from)
|
|
|
|
{
|
|
|
|
if (!session) return;
|
|
|
|
uint8_t buf[48 + 18];
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
*payload = 4;
|
|
|
|
payload++; // size
|
|
|
|
*(uint32_t *)payload = htobe32 (from.address ().to_v4 ().to_ulong ()); // Alice's IP
|
|
|
|
payload += 4; // address
|
|
|
|
*(uint16_t *)payload = htobe16 (from.port ()); // Alice's port
|
|
|
|
payload += 2; // port
|
|
|
|
*payload = 0; // challenge size
|
|
|
|
uint8_t iv[16];
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_RELAY_INTRO, buf, 48, session->m_SessionKey, iv, session->m_MacKey);
|
|
|
|
m_Server.Send (buf, 48, session->m_RemoteEndpoint);
|
|
|
|
}
|
|
|
|
|
2014-02-21 21:13:36 +00:00
|
|
|
void SSUSession::ProcessRelayResponse (uint8_t * buf, size_t len)
|
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
LogPrint ("Relay response received");
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
payload++; // remote size
|
|
|
|
//boost::asio::ip::address_v4 remoteIP (be32toh (*(uint32_t* )(payload)));
|
|
|
|
payload += 4; // remote address
|
|
|
|
//uint16_t remotePort = be16toh (*(uint16_t *)(payload));
|
|
|
|
payload += 2; // remote port
|
|
|
|
payload++; // our size
|
|
|
|
boost::asio::ip::address_v4 ourIP (be32toh (*(uint32_t* )(payload)));
|
|
|
|
payload += 4; // our address
|
|
|
|
uint16_t ourPort = be16toh (*(uint16_t *)(payload));
|
|
|
|
payload += 2; // our port
|
|
|
|
LogPrint ("Our external address is ", ourIP.to_string (), ":", ourPort);
|
|
|
|
i2p::context.UpdateAddress (ourIP.to_string ().c_str ());
|
2014-02-21 21:13:36 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 18:03:15 +00:00
|
|
|
void SSUSession::ProcessRelayIntro (uint8_t * buf, size_t len)
|
|
|
|
{
|
|
|
|
uint8_t size = *buf;
|
|
|
|
if (size == 4)
|
|
|
|
{
|
|
|
|
buf++; // size
|
|
|
|
boost::asio::ip::address_v4 address (be32toh (*(uint32_t* )buf));
|
|
|
|
buf += 4; // address
|
|
|
|
uint16_t port = be16toh (*(uint16_t *)buf);
|
|
|
|
// send hole punch of 1 byte
|
|
|
|
m_Server.Send (buf, 1, boost::asio::ip::udp::endpoint (address, port));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("Address size ", size, " is not supported");
|
|
|
|
}
|
|
|
|
|
2014-02-09 13:52:56 +00:00
|
|
|
void SSUSession::FillHeaderAndEncrypt (uint8_t payloadType, uint8_t * buf, size_t len,
|
|
|
|
const uint8_t * aesKey, const uint8_t * iv, const uint8_t * macKey)
|
2014-01-27 21:52:17 +00:00
|
|
|
{
|
2014-01-28 21:49:54 +00:00
|
|
|
if (len < sizeof (SSUHeader))
|
|
|
|
{
|
|
|
|
LogPrint ("Unexpected SSU packet length ", len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SSUHeader * header = (SSUHeader *)buf;
|
|
|
|
memcpy (header->iv, iv, 16);
|
2014-01-29 21:49:53 +00:00
|
|
|
header->flag = payloadType << 4; // MSB is 0
|
|
|
|
header->time = htobe32 (i2p::util::GetSecondsSinceEpoch ());
|
2014-01-28 21:49:54 +00:00
|
|
|
uint8_t * encrypted = &header->flag;
|
|
|
|
uint16_t encryptedLen = len - (encrypted - buf);
|
2014-01-27 21:52:17 +00:00
|
|
|
m_Encryption.SetKeyWithIV (aesKey, 32, iv);
|
2014-04-18 18:38:32 +00:00
|
|
|
encryptedLen = (encryptedLen>>4)<<4; // make sure 16 bytes boundary
|
2014-01-28 21:49:54 +00:00
|
|
|
m_Encryption.ProcessData (encrypted, encrypted, encryptedLen);
|
|
|
|
// assume actual buffer size is 18 (16 + 2) bytes more
|
|
|
|
memcpy (buf + len, iv, 16);
|
|
|
|
*(uint16_t *)(buf + len + 16) = htobe16 (encryptedLen);
|
|
|
|
i2p::crypto::HMACMD5Digest (encrypted, encryptedLen + 18, macKey, header->mac);
|
|
|
|
}
|
|
|
|
|
2014-02-09 13:52:56 +00:00
|
|
|
void SSUSession::Decrypt (uint8_t * buf, size_t len, const uint8_t * aesKey)
|
2014-01-28 21:49:54 +00:00
|
|
|
{
|
|
|
|
if (len < sizeof (SSUHeader))
|
|
|
|
{
|
|
|
|
LogPrint ("Unexpected SSU packet length ", len);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SSUHeader * header = (SSUHeader *)buf;
|
|
|
|
uint8_t * encrypted = &header->flag;
|
|
|
|
uint16_t encryptedLen = len - (encrypted - buf);
|
|
|
|
m_Decryption.SetKeyWithIV (aesKey, 32, header->iv);
|
2014-04-18 18:38:32 +00:00
|
|
|
encryptedLen = (encryptedLen>>4)<<4; // make sure 16 bytes boundary
|
2014-01-28 21:49:54 +00:00
|
|
|
m_Decryption.ProcessData (encrypted, encrypted, encryptedLen);
|
|
|
|
}
|
|
|
|
|
2014-02-09 13:52:56 +00:00
|
|
|
bool SSUSession::Validate (uint8_t * buf, size_t len, const uint8_t * macKey)
|
2014-01-28 21:49:54 +00:00
|
|
|
{
|
|
|
|
if (len < sizeof (SSUHeader))
|
|
|
|
{
|
|
|
|
LogPrint ("Unexpected SSU packet length ", len);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SSUHeader * header = (SSUHeader *)buf;
|
|
|
|
uint8_t * encrypted = &header->flag;
|
|
|
|
uint16_t encryptedLen = len - (encrypted - buf);
|
|
|
|
// assume actual buffer size is 18 (16 + 2) bytes more
|
|
|
|
memcpy (buf + len, header->iv, 16);
|
|
|
|
*(uint16_t *)(buf + len + 16) = htobe16 (encryptedLen);
|
|
|
|
uint8_t digest[16];
|
|
|
|
i2p::crypto::HMACMD5Digest (encrypted, encryptedLen + 18, macKey, digest);
|
|
|
|
return !memcmp (header->mac, digest, 16);
|
2014-01-24 21:30:07 +00:00
|
|
|
}
|
|
|
|
|
2014-01-29 21:49:53 +00:00
|
|
|
void SSUSession::Connect ()
|
|
|
|
{
|
2014-03-31 11:51:18 +00:00
|
|
|
if (m_State == eSessionStateUnknown)
|
2014-03-31 02:55:03 +00:00
|
|
|
{
|
2014-04-02 14:49:16 +00:00
|
|
|
// set connect timer
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
|
|
|
m_Timer.async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
|
|
|
this, boost::asio::placeholders::error));
|
2014-03-31 11:51:18 +00:00
|
|
|
SendSessionRequest ();
|
|
|
|
}
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 02:55:03 +00:00
|
|
|
void SSUSession::HandleConnectTimer (const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
{
|
|
|
|
// timeout expired
|
|
|
|
LogPrint ("SSU session was not established after ", SSU_CONNECT_TIMEOUT, " second");
|
|
|
|
Failed ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-09 15:58:57 +00:00
|
|
|
void SSUSession::Introduce (uint32_t iTag, const uint8_t * iKey)
|
2014-04-02 14:49:16 +00:00
|
|
|
{
|
|
|
|
if (m_State == eSessionStateUnknown)
|
|
|
|
{
|
|
|
|
// set connect timer
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
|
|
|
m_Timer.async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
2014-04-09 22:17:13 +00:00
|
|
|
this, boost::asio::placeholders::error));
|
|
|
|
}
|
|
|
|
SendRelayRequest (iTag, iKey);
|
2014-02-21 21:13:36 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 15:58:57 +00:00
|
|
|
void SSUSession::WaitForIntroduction ()
|
|
|
|
{
|
2014-04-09 16:25:40 +00:00
|
|
|
m_State = eSessionStateIntroduced;
|
2014-04-09 15:58:57 +00:00
|
|
|
// set connect timer
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SSU_CONNECT_TIMEOUT));
|
|
|
|
m_Timer.async_wait (boost::bind (&SSUSession::HandleConnectTimer,
|
|
|
|
this, boost::asio::placeholders::error));
|
|
|
|
}
|
|
|
|
|
2014-02-09 02:06:40 +00:00
|
|
|
void SSUSession::Close ()
|
|
|
|
{
|
|
|
|
SendSesionDestroyed ();
|
2014-02-09 23:28:34 +00:00
|
|
|
if (!m_DelayedMessages.empty ())
|
|
|
|
{
|
|
|
|
for (auto it :m_DelayedMessages)
|
|
|
|
delete it;
|
|
|
|
m_DelayedMessages.clear ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::Established ()
|
|
|
|
{
|
2014-02-10 20:13:16 +00:00
|
|
|
SendI2NPMessage (CreateDatabaseStoreMsg ());
|
2014-02-09 23:28:34 +00:00
|
|
|
if (!m_DelayedMessages.empty ())
|
|
|
|
{
|
|
|
|
for (auto it :m_DelayedMessages)
|
|
|
|
Send (it);
|
|
|
|
m_DelayedMessages.clear ();
|
2014-04-07 23:28:06 +00:00
|
|
|
}
|
2014-04-10 18:46:52 +00:00
|
|
|
if (m_PeerTest && (m_RemoteRouter && m_RemoteRouter->IsPeerTesting ()))
|
2014-04-07 23:28:06 +00:00
|
|
|
SendPeerTest ();
|
2014-04-08 01:40:28 +00:00
|
|
|
ScheduleTermination ();
|
2014-02-09 02:06:40 +00:00
|
|
|
}
|
2014-03-16 12:34:32 +00:00
|
|
|
|
|
|
|
void SSUSession::Failed ()
|
|
|
|
{
|
2014-03-31 02:55:03 +00:00
|
|
|
if (m_State != eSessionStateFailed)
|
|
|
|
{
|
|
|
|
m_State = eSessionStateFailed;
|
|
|
|
Close ();
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.DeleteSession (this); // delete this
|
2014-03-31 02:55:03 +00:00
|
|
|
}
|
2014-03-16 12:34:32 +00:00
|
|
|
}
|
2014-04-08 01:40:28 +00:00
|
|
|
|
|
|
|
void SSUSession::ScheduleTermination ()
|
|
|
|
{
|
|
|
|
m_Timer.cancel ();
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SSU_TERMINATION_TIMEOUT));
|
|
|
|
m_Timer.async_wait (boost::bind (&SSUSession::HandleTerminationTimer,
|
|
|
|
this, boost::asio::placeholders::error));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::HandleTerminationTimer (const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU no activity fo ", SSU_TERMINATION_TIMEOUT, " seconds");
|
2014-04-08 02:26:18 +00:00
|
|
|
Failed ();
|
2014-04-08 01:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 21:36:13 +00:00
|
|
|
const uint8_t * SSUSession::GetIntroKey () const
|
|
|
|
{
|
|
|
|
if (m_RemoteRouter)
|
|
|
|
{
|
|
|
|
// we are client
|
|
|
|
auto address = m_RemoteRouter->GetSSUAddress ();
|
|
|
|
return address ? address->key : nullptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// we are server
|
|
|
|
auto address = i2p::context.GetRouterInfo ().GetSSUAddress ();
|
|
|
|
return address ? address->key : nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 21:49:53 +00:00
|
|
|
void SSUSession::SendI2NPMessage (I2NPMessage * msg)
|
|
|
|
{
|
2014-02-09 23:28:34 +00:00
|
|
|
if (msg)
|
|
|
|
{
|
|
|
|
if (m_State == eSessionStateEstablished)
|
|
|
|
Send (msg);
|
|
|
|
else
|
|
|
|
m_DelayedMessages.push_back (msg);
|
|
|
|
}
|
2014-01-29 21:49:53 +00:00
|
|
|
}
|
2014-02-09 23:28:34 +00:00
|
|
|
|
2014-02-05 20:07:47 +00:00
|
|
|
void SSUSession::ProcessData (uint8_t * buf, size_t len)
|
|
|
|
{
|
|
|
|
//uint8_t * start = buf;
|
|
|
|
uint8_t flag = *buf;
|
|
|
|
buf++;
|
|
|
|
LogPrint ("Process SSU data flags=", (int)flag);
|
2014-02-08 02:42:35 +00:00
|
|
|
if (flag & DATA_FLAG_EXPLICIT_ACKS_INCLUDED)
|
|
|
|
{
|
|
|
|
// explicit ACKs
|
|
|
|
uint8_t numAcks =*buf;
|
|
|
|
buf++;
|
|
|
|
// TODO: process ACKs
|
|
|
|
buf += numAcks*4;
|
|
|
|
}
|
|
|
|
if (flag & DATA_FLAG_ACK_BITFIELDS_INCLUDED)
|
|
|
|
{
|
|
|
|
// explicit ACK bitfields
|
|
|
|
uint8_t numBitfields =*buf;
|
|
|
|
buf++;
|
|
|
|
for (int i = 0; i < numBitfields; i++)
|
|
|
|
{
|
|
|
|
buf += 4; // msgID
|
|
|
|
// TODO: process ACH bitfields
|
|
|
|
while (*buf & 0x80) // not last
|
|
|
|
buf++;
|
|
|
|
buf++; // last byte
|
|
|
|
}
|
|
|
|
}
|
2014-02-05 20:07:47 +00:00
|
|
|
uint8_t numFragments = *buf; // number of fragments
|
|
|
|
buf++;
|
2014-02-06 00:11:38 +00:00
|
|
|
for (int i = 0; i < numFragments; i++)
|
|
|
|
{
|
|
|
|
uint32_t msgID = be32toh (*(uint32_t *)buf); // message ID
|
|
|
|
buf += 4;
|
|
|
|
uint8_t frag[4];
|
|
|
|
frag[0] = 0;
|
|
|
|
memcpy (frag + 1, buf, 3);
|
|
|
|
buf += 3;
|
|
|
|
uint32_t fragmentInfo = be32toh (*(uint32_t *)frag); // fragment info
|
|
|
|
uint16_t fragmentSize = fragmentInfo & 0x1FFF; // bits 0 - 13
|
|
|
|
bool isLast = fragmentInfo & 0x010000; // bit 16
|
|
|
|
uint8_t fragmentNum = fragmentInfo >> 17; // bits 23 - 17
|
2014-02-07 20:47:10 +00:00
|
|
|
LogPrint ("SSU data fragment ", (int)fragmentNum, " of message ", msgID, " size=", (int)fragmentSize, isLast ? " last" : " non-last");
|
2014-02-06 15:16:50 +00:00
|
|
|
I2NPMessage * msg = nullptr;
|
|
|
|
if (fragmentNum > 0) // follow-up fragment
|
|
|
|
{
|
|
|
|
auto it = m_IncomleteMessages.find (msgID);
|
|
|
|
if (it != m_IncomleteMessages.end ())
|
2014-02-07 16:26:00 +00:00
|
|
|
{
|
2014-04-13 01:13:30 +00:00
|
|
|
if (fragmentNum == it->second->nextFragmentNum)
|
|
|
|
{
|
|
|
|
// expected fragment
|
|
|
|
msg = it->second->msg;
|
|
|
|
memcpy (msg->buf + msg->len, buf, fragmentSize);
|
|
|
|
msg->len += fragmentSize;
|
|
|
|
it->second->nextFragmentNum++;
|
|
|
|
}
|
|
|
|
else if (fragmentNum < it->second->nextFragmentNum)
|
|
|
|
// duplicate fragment
|
|
|
|
LogPrint ("Duplicate fragment ", fragmentNum, " of message ", msgID, ". Ignored");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// missing fragment
|
|
|
|
LogPrint ("Missing fragments from ", it->second->nextFragmentNum, " to ", fragmentNum - 1, " of message ", msgID);
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isLast)
|
|
|
|
{
|
|
|
|
delete it->second;
|
|
|
|
m_IncomleteMessages.erase (it);
|
|
|
|
}
|
2014-02-07 16:26:00 +00:00
|
|
|
}
|
2014-02-06 15:16:50 +00:00
|
|
|
else
|
|
|
|
// TODO:
|
|
|
|
LogPrint ("Unexpected follow-on fragment ", fragmentNum, " of message ", msgID);
|
|
|
|
}
|
|
|
|
else // first fragment
|
2014-02-07 16:26:00 +00:00
|
|
|
{
|
2014-02-06 15:16:50 +00:00
|
|
|
msg = NewI2NPMessage ();
|
2014-02-07 16:26:00 +00:00
|
|
|
memcpy (msg->GetSSUHeader (), buf, fragmentSize);
|
|
|
|
msg->len += fragmentSize - sizeof (I2NPHeaderShort);
|
|
|
|
}
|
|
|
|
|
2014-02-06 15:16:50 +00:00
|
|
|
if (msg)
|
2014-02-07 16:26:00 +00:00
|
|
|
{
|
2014-02-06 15:16:50 +00:00
|
|
|
if (!fragmentNum && !isLast)
|
2014-04-13 01:13:30 +00:00
|
|
|
m_IncomleteMessages[msgID] = new IncompleteMessage (msg);
|
2014-02-06 15:16:50 +00:00
|
|
|
if (isLast)
|
|
|
|
{
|
2014-02-10 20:13:16 +00:00
|
|
|
SendMsgAck (msgID);
|
2014-02-07 16:26:00 +00:00
|
|
|
msg->FromSSU (msgID);
|
2014-02-10 20:13:16 +00:00
|
|
|
if (m_State == eSessionStateEstablished)
|
2014-03-13 00:13:49 +00:00
|
|
|
i2p::HandleI2NPMessage (msg);
|
2014-02-10 20:13:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// we expect DeliveryStatus
|
|
|
|
if (msg->GetHeader ()->typeID == eI2NPDeliveryStatus)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU session established");
|
|
|
|
m_State = eSessionStateEstablished;
|
|
|
|
Established ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("SSU unexpected message ", (int)msg->GetHeader ()->typeID);
|
|
|
|
DeleteI2NPMessage (msg);
|
|
|
|
}
|
2014-02-06 15:16:50 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-06 00:11:38 +00:00
|
|
|
buf += fragmentSize;
|
|
|
|
}
|
2014-02-05 20:07:47 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 19:31:38 +00:00
|
|
|
|
|
|
|
void SSUSession::ProcessPeerTest (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint)
|
|
|
|
{
|
|
|
|
uint8_t * buf1 = buf;
|
|
|
|
uint32_t nonce = be32toh (*(uint32_t *)buf);
|
|
|
|
buf += 4; // nonce
|
|
|
|
uint8_t size = *buf;
|
|
|
|
buf++; // size
|
|
|
|
uint8_t * address = (size == 4) ? buf : nullptr;
|
|
|
|
buf += size; // address
|
|
|
|
uint16_t port = *(uint16_t *)buf; // use it as is
|
|
|
|
buf += 2; // port
|
|
|
|
uint8_t * introKey = buf;
|
2014-04-09 18:58:30 +00:00
|
|
|
if (port && !address)
|
2014-04-07 19:31:38 +00:00
|
|
|
{
|
2014-04-09 18:58:30 +00:00
|
|
|
LogPrint ("Address of ", size, " bytes not supported");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m_PeerTestNonces.count (nonce) > 0)
|
|
|
|
{
|
|
|
|
// existing test
|
2014-04-10 18:41:34 +00:00
|
|
|
if (m_PeerTest)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU peer test from Bob. We are Alice");
|
|
|
|
m_PeerTestNonces.erase (nonce);
|
|
|
|
m_PeerTest = false;
|
|
|
|
}
|
|
|
|
else if (port)
|
2014-04-09 18:58:30 +00:00
|
|
|
{
|
|
|
|
LogPrint ("SSU peer test from Charlie. We are Bob");
|
|
|
|
// TODO: back to Alice
|
|
|
|
}
|
2014-04-07 19:31:38 +00:00
|
|
|
else
|
2014-04-09 18:58:30 +00:00
|
|
|
{
|
|
|
|
LogPrint ("SSU peer test from Alice. We are Charlie");
|
2014-04-10 02:35:35 +00:00
|
|
|
//SendPeerTest (nonce, be32toh (*(uint32_t *)address), be16toh (port), introKey); // to Alice
|
2014-04-09 18:58:30 +00:00
|
|
|
}
|
2014-04-07 19:31:38 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-09 18:58:30 +00:00
|
|
|
// new test
|
|
|
|
m_PeerTestNonces.insert (nonce);
|
|
|
|
if (port)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU peer test from Bob. We are Charlie");
|
|
|
|
Send (PAYLOAD_TYPE_PEER_TEST, buf1, len); // back to Bob
|
|
|
|
SendPeerTest (nonce, be32toh (*(uint32_t *)address), be16toh (port), introKey); // to Alice
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint ("SSU peer test from Alice. We are Bob");
|
|
|
|
// TODO: find Charlie
|
|
|
|
}
|
2014-04-07 19:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUSession::SendPeerTest (uint32_t nonce, uint32_t address, uint16_t port, uint8_t * introKey)
|
|
|
|
{
|
|
|
|
uint8_t buf[80 + 18];
|
|
|
|
uint8_t iv[16];
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
*(uint32_t *)payload = htobe32 (nonce);
|
|
|
|
payload += 4; // nonce
|
|
|
|
*payload = 4;
|
|
|
|
payload++; // size
|
|
|
|
*(uint32_t *)payload = htobe32 (address);
|
|
|
|
payload += 4; // address
|
|
|
|
*(uint16_t *)payload = htobe32 (port);
|
|
|
|
payload += 2; // port
|
|
|
|
memcpy (payload, introKey, 32); // intro key
|
|
|
|
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with specified intro key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_PEER_TEST, buf, 80, introKey, iv, introKey);
|
|
|
|
boost::asio::ip::udp::endpoint e (boost::asio::ip::address_v4 (address), port);
|
|
|
|
m_Server.Send (buf, 80, e);
|
|
|
|
}
|
|
|
|
|
2014-04-07 20:19:33 +00:00
|
|
|
void SSUSession::SendPeerTest ()
|
|
|
|
{
|
2014-04-07 23:28:06 +00:00
|
|
|
LogPrint ("SSU sending peer test");
|
2014-04-07 22:54:28 +00:00
|
|
|
auto address = i2p::context.GetRouterInfo ().GetSSUAddress ();
|
|
|
|
if (!address)
|
2014-04-07 20:19:33 +00:00
|
|
|
{
|
|
|
|
LogPrint ("SSU is not supported. Can't send peer test");
|
|
|
|
return;
|
|
|
|
}
|
2014-04-07 22:54:28 +00:00
|
|
|
auto introKey = address->key;
|
2014-04-07 20:19:33 +00:00
|
|
|
uint8_t buf[80 + 18];
|
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
uint32_t nonce = 0;
|
|
|
|
rnd.GenerateWord32 (nonce);
|
2014-04-10 18:41:34 +00:00
|
|
|
m_PeerTestNonces.insert (nonce);
|
2014-04-07 20:19:33 +00:00
|
|
|
*(uint32_t *)payload = htobe32 (nonce);
|
|
|
|
payload += 4; // nonce
|
|
|
|
*payload = 4;
|
|
|
|
payload++; // size
|
|
|
|
memset (payload, 0, 6); // address and port always zero for Alice
|
|
|
|
payload += 6; // address and port
|
|
|
|
memcpy (payload, introKey, 32); // intro key
|
|
|
|
uint8_t iv[16];
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_PEER_TEST, buf, 80, m_SessionKey, iv, m_MacKey);
|
|
|
|
m_Server.Send (buf, 80, m_RemoteEndpoint);
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:47:10 +00:00
|
|
|
void SSUSession::SendMsgAck (uint32_t msgID)
|
|
|
|
{
|
2014-02-09 02:06:40 +00:00
|
|
|
uint8_t buf[48 + 18]; // actual length is 44 = 37 + 7 but pad it to multiple of 16
|
2014-02-07 20:47:10 +00:00
|
|
|
uint8_t iv[16];
|
2014-02-08 02:42:35 +00:00
|
|
|
uint8_t * payload = buf + sizeof (SSUHeader);
|
|
|
|
*payload = DATA_FLAG_EXPLICIT_ACKS_INCLUDED; // flag
|
|
|
|
payload++;
|
|
|
|
*payload = 1; // number of ACKs
|
|
|
|
payload++;
|
|
|
|
*(uint32_t *)(payload) = htobe32 (msgID); // msgID
|
|
|
|
payload += 4;
|
|
|
|
*payload = 0; // number of fragments
|
2014-02-07 20:47:10 +00:00
|
|
|
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_DATA, buf, 48, m_SessionKey, iv, m_MacKey);
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, 48, m_RemoteEndpoint);
|
2014-02-07 20:47:10 +00:00
|
|
|
}
|
|
|
|
|
2014-02-09 02:06:40 +00:00
|
|
|
void SSUSession::SendSesionDestroyed ()
|
|
|
|
{
|
2014-04-13 20:59:54 +00:00
|
|
|
if (m_IsSessionKey)
|
2014-04-08 17:25:19 +00:00
|
|
|
{
|
2014-04-10 18:13:15 +00:00
|
|
|
uint8_t buf[48 + 18], iv[16];
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
2014-02-12 21:36:13 +00:00
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_SESSION_DESTROYED, buf, 48, m_SessionKey, iv, m_MacKey);
|
2014-04-08 17:25:19 +00:00
|
|
|
m_Server.Send (buf, 48, m_RemoteEndpoint);
|
2014-02-12 21:36:13 +00:00
|
|
|
}
|
2014-02-09 02:06:40 +00:00
|
|
|
}
|
2014-02-09 23:28:34 +00:00
|
|
|
|
|
|
|
void SSUSession::Send (i2p::I2NPMessage * msg)
|
|
|
|
{
|
|
|
|
uint32_t msgID = htobe32 (msg->ToSSU ());
|
|
|
|
size_t payloadSize = SSU_MTU - sizeof (SSUHeader) - 9; // 9 = flag + #frg(1) + messageID(4) + frag info (3)
|
|
|
|
size_t len = msg->GetLength ();
|
|
|
|
uint8_t * msgBuf = msg->GetSSUHeader ();
|
|
|
|
|
|
|
|
uint32_t fragmentNum = 0;
|
|
|
|
while (len > 0)
|
|
|
|
{
|
2014-02-11 00:27:55 +00:00
|
|
|
uint8_t buf[SSU_MTU + 18], iv[16], * payload = buf + sizeof (SSUHeader);
|
|
|
|
*payload = DATA_FLAG_WANT_REPLY; // for compatibility
|
|
|
|
payload++;
|
|
|
|
*payload = 1; // always 1 message fragment per message
|
|
|
|
payload++;
|
|
|
|
*(uint32_t *)payload = msgID;
|
|
|
|
payload += 4;
|
2014-02-09 23:28:34 +00:00
|
|
|
bool isLast = (len <= payloadSize);
|
|
|
|
size_t size = isLast ? len : payloadSize;
|
|
|
|
uint32_t fragmentInfo = (fragmentNum << 17);
|
|
|
|
if (isLast)
|
|
|
|
fragmentInfo |= 0x010000;
|
|
|
|
|
|
|
|
fragmentInfo |= size;
|
|
|
|
fragmentInfo = htobe32 (fragmentInfo);
|
2014-02-11 00:27:55 +00:00
|
|
|
memcpy (payload, (uint8_t *)(&fragmentInfo) + 1, 3);
|
|
|
|
payload += 3;
|
|
|
|
memcpy (payload, msgBuf, size);
|
2014-02-09 23:28:34 +00:00
|
|
|
|
2014-02-11 00:27:55 +00:00
|
|
|
size += payload - buf;
|
2014-04-18 18:38:32 +00:00
|
|
|
if (size & 0x0F) // make sure 16 bytes boundary
|
|
|
|
size = ((size >> 4) + 1) << 4; // (/16 + 1)*16
|
2014-02-09 23:28:34 +00:00
|
|
|
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (PAYLOAD_TYPE_DATA, buf, size, m_SessionKey, iv, m_MacKey);
|
2014-04-02 14:49:16 +00:00
|
|
|
m_Server.Send (buf, size, m_RemoteEndpoint);
|
2014-02-09 23:28:34 +00:00
|
|
|
|
|
|
|
if (!isLast)
|
|
|
|
{
|
|
|
|
len -= payloadSize;
|
|
|
|
msgBuf += payloadSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
len = 0;
|
|
|
|
fragmentNum++;
|
|
|
|
}
|
2014-04-07 20:19:33 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 19:31:38 +00:00
|
|
|
void SSUSession::Send (uint8_t type, const uint8_t * payload, size_t len)
|
|
|
|
{
|
|
|
|
uint8_t buf[SSU_MTU + 18];
|
|
|
|
uint8_t iv[16];
|
|
|
|
size_t msgSize = len + sizeof (SSUHeader);
|
|
|
|
if (msgSize > SSU_MTU)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU payload size ", msgSize, " exceeds MTU");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy (buf + sizeof (SSUHeader), payload, len);
|
|
|
|
CryptoPP::RandomNumberGenerator& rnd = i2p::context.GetRandomNumberGenerator ();
|
|
|
|
rnd.GenerateBlock (iv, 16); // random iv
|
|
|
|
// encrypt message with session key
|
|
|
|
FillHeaderAndEncrypt (type, buf, msgSize, m_SessionKey, iv, m_MacKey);
|
|
|
|
m_Server.Send (buf, msgSize, m_RemoteEndpoint);
|
|
|
|
}
|
|
|
|
|
2014-01-23 21:10:33 +00:00
|
|
|
SSUServer::SSUServer (boost::asio::io_service& service, int port):
|
2014-01-30 19:03:11 +00:00
|
|
|
m_Endpoint (boost::asio::ip::udp::v4 (), port), m_Socket (service, m_Endpoint)
|
2014-01-23 21:10:33 +00:00
|
|
|
{
|
2014-02-07 20:47:10 +00:00
|
|
|
m_Socket.set_option (boost::asio::socket_base::receive_buffer_size (65535));
|
|
|
|
m_Socket.set_option (boost::asio::socket_base::send_buffer_size (65535));
|
2014-01-23 21:10:33 +00:00
|
|
|
}
|
|
|
|
|
2014-01-24 21:30:07 +00:00
|
|
|
SSUServer::~SSUServer ()
|
|
|
|
{
|
|
|
|
for (auto it: m_Sessions)
|
|
|
|
delete it.second;
|
|
|
|
}
|
|
|
|
|
2014-01-23 21:10:33 +00:00
|
|
|
void SSUServer::Start ()
|
|
|
|
{
|
|
|
|
Receive ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUServer::Stop ()
|
|
|
|
{
|
2014-02-11 00:27:55 +00:00
|
|
|
DeleteAllSessions ();
|
2014-01-23 21:10:33 +00:00
|
|
|
m_Socket.close ();
|
|
|
|
}
|
|
|
|
|
2014-04-16 19:54:28 +00:00
|
|
|
void SSUServer::AddRelay (uint32_t tag, const boost::asio::ip::udp::endpoint& relay)
|
|
|
|
{
|
|
|
|
m_Relays[tag] = relay;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSUSession * SSUServer::FindRelaySession (uint32_t tag)
|
|
|
|
{
|
|
|
|
auto it = m_Relays.find (tag);
|
|
|
|
if (it != m_Relays.end ())
|
|
|
|
return FindSession (it->second);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-01-28 21:49:54 +00:00
|
|
|
void SSUServer::Send (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& to)
|
|
|
|
{
|
|
|
|
m_Socket.send_to (boost::asio::buffer (buf, len), to);
|
2014-02-09 23:28:34 +00:00
|
|
|
LogPrint ("SSU sent ", len, " bytes");
|
2014-01-28 21:49:54 +00:00
|
|
|
}
|
|
|
|
|
2014-01-23 21:10:33 +00:00
|
|
|
void SSUServer::Receive ()
|
|
|
|
{
|
|
|
|
m_Socket.async_receive_from (boost::asio::buffer (m_ReceiveBuffer, SSU_MTU), m_SenderEndpoint,
|
|
|
|
boost::bind (&SSUServer::HandleReceivedFrom, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUServer::HandleReceivedFrom (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
{
|
|
|
|
LogPrint ("SSU received ", bytes_transferred, " bytes");
|
2014-01-24 21:30:07 +00:00
|
|
|
SSUSession * session = nullptr;
|
|
|
|
auto it = m_Sessions.find (m_SenderEndpoint);
|
|
|
|
if (it != m_Sessions.end ())
|
|
|
|
session = it->second;
|
2014-01-28 21:49:54 +00:00
|
|
|
if (!session)
|
2014-01-24 21:30:07 +00:00
|
|
|
{
|
2014-04-02 14:49:16 +00:00
|
|
|
session = new SSUSession (*this, m_SenderEndpoint);
|
2014-01-24 21:30:07 +00:00
|
|
|
m_Sessions[m_SenderEndpoint] = session;
|
|
|
|
LogPrint ("New SSU session from ", m_SenderEndpoint.address ().to_string (), ":", m_SenderEndpoint.port (), " created");
|
|
|
|
}
|
2014-01-29 21:49:53 +00:00
|
|
|
session->ProcessNextMessage (m_ReceiveBuffer, bytes_transferred, m_SenderEndpoint);
|
2014-01-23 21:10:33 +00:00
|
|
|
Receive ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("SSU receive error: ", ecode.message ());
|
|
|
|
}
|
2014-01-28 21:49:54 +00:00
|
|
|
|
2014-03-26 01:17:03 +00:00
|
|
|
SSUSession * SSUServer::FindSession (const i2p::data::RouterInfo * router)
|
|
|
|
{
|
|
|
|
if (!router) return nullptr;
|
|
|
|
auto address = router->GetSSUAddress ();
|
|
|
|
if (!address) return nullptr;
|
2014-04-16 19:54:28 +00:00
|
|
|
return FindSession (boost::asio::ip::udp::endpoint (address->host, address->port));
|
|
|
|
}
|
|
|
|
|
|
|
|
SSUSession * SSUServer::FindSession (const boost::asio::ip::udp::endpoint& e)
|
|
|
|
{
|
|
|
|
auto it = m_Sessions.find (e);
|
2014-03-26 01:17:03 +00:00
|
|
|
if (it != m_Sessions.end ())
|
|
|
|
return it->second;
|
|
|
|
else
|
|
|
|
return nullptr;
|
2014-04-16 19:54:28 +00:00
|
|
|
}
|
2014-03-26 01:17:03 +00:00
|
|
|
|
2014-04-07 23:28:06 +00:00
|
|
|
SSUSession * SSUServer::GetSession (const i2p::data::RouterInfo * router, bool peerTest)
|
2014-01-28 21:49:54 +00:00
|
|
|
{
|
|
|
|
SSUSession * session = nullptr;
|
|
|
|
if (router)
|
|
|
|
{
|
|
|
|
auto address = router->GetSSUAddress ();
|
|
|
|
if (address)
|
|
|
|
{
|
|
|
|
boost::asio::ip::udp::endpoint remoteEndpoint (address->host, address->port);
|
|
|
|
auto it = m_Sessions.find (remoteEndpoint);
|
|
|
|
if (it != m_Sessions.end ())
|
|
|
|
session = it->second;
|
|
|
|
else
|
|
|
|
{
|
2014-02-21 21:13:36 +00:00
|
|
|
// otherwise create new session
|
2014-04-09 15:58:57 +00:00
|
|
|
session = new SSUSession (*this, remoteEndpoint, router, peerTest);
|
|
|
|
m_Sessions[remoteEndpoint] = session;
|
|
|
|
|
2014-02-21 21:13:36 +00:00
|
|
|
if (!router->UsesIntroducer ())
|
|
|
|
{
|
2014-04-09 15:58:57 +00:00
|
|
|
// connect directly
|
2014-04-07 23:28:06 +00:00
|
|
|
LogPrint ("Creating new SSU session to [", router->GetIdentHashAbbreviation (), "] ",
|
|
|
|
remoteEndpoint.address ().to_string (), ":", remoteEndpoint.port ());
|
2014-02-21 21:13:36 +00:00
|
|
|
session->Connect ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-19 16:02:51 +00:00
|
|
|
// connect through introducer
|
2014-04-09 15:58:57 +00:00
|
|
|
session->WaitForIntroduction ();
|
2014-03-19 16:02:51 +00:00
|
|
|
if (address->introducers.size () > 0)
|
|
|
|
{
|
|
|
|
auto& introducer = address->introducers[0]; // TODO:
|
|
|
|
boost::asio::ip::udp::endpoint introducerEndpoint (introducer.iHost, introducer.iPort);
|
2014-04-09 15:58:57 +00:00
|
|
|
LogPrint ("Creating new SSU session to [", router->GetIdentHashAbbreviation (),
|
2014-04-08 19:35:08 +00:00
|
|
|
"] through introducer ", introducerEndpoint.address ().to_string (), ":", introducerEndpoint.port ());
|
2014-04-09 15:58:57 +00:00
|
|
|
it = m_Sessions.find (introducerEndpoint);
|
|
|
|
SSUSession * introducerSession = nullptr;
|
|
|
|
if (it != m_Sessions.end ())
|
2014-04-08 19:35:08 +00:00
|
|
|
{
|
|
|
|
LogPrint ("Session to introducer already exists");
|
2014-04-09 15:58:57 +00:00
|
|
|
introducerSession = it->second;
|
2014-04-08 19:35:08 +00:00
|
|
|
}
|
2014-04-09 15:58:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint ("New session to introducer created");
|
|
|
|
introducerSession = new SSUSession (*this, introducerEndpoint, router);
|
|
|
|
m_Sessions[introducerEndpoint] = introducerSession;
|
|
|
|
}
|
|
|
|
introducerSession->Introduce (introducer.iTag, introducer.iKey);
|
2014-03-19 16:02:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("Router is unreachable, but not introducers presentd. Ignored");
|
2014-02-21 21:13:36 +00:00
|
|
|
}
|
2014-01-28 21:49:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogPrint ("Router ", router->GetIdentHashAbbreviation (), " doesn't have SSU address");
|
|
|
|
}
|
|
|
|
return session;
|
|
|
|
}
|
2014-02-09 02:06:40 +00:00
|
|
|
|
|
|
|
void SSUServer::DeleteSession (SSUSession * session)
|
|
|
|
{
|
|
|
|
if (session)
|
|
|
|
{
|
|
|
|
session->Close ();
|
|
|
|
m_Sessions.erase (session->GetRemoteEndpoint ());
|
|
|
|
delete session;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSUServer::DeleteAllSessions ()
|
|
|
|
{
|
|
|
|
for (auto it: m_Sessions)
|
|
|
|
{
|
|
|
|
it.second->Close ();
|
|
|
|
delete it.second;
|
|
|
|
}
|
|
|
|
m_Sessions.clear ();
|
2014-02-21 21:13:36 +00:00
|
|
|
}
|
2014-01-23 21:10:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|