2018-06-05 19:53:13 +03:00
|
|
|
#ifndef NTCP2_H__
|
|
|
|
#define NTCP2_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <memory>
|
2018-06-11 21:05:30 +03:00
|
|
|
#include <thread>
|
2018-06-06 22:38:18 +03:00
|
|
|
#include <boost/asio.hpp>
|
2018-06-05 19:53:13 +03:00
|
|
|
#include "RouterInfo.h"
|
|
|
|
#include "TransportSession.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace transport
|
|
|
|
{
|
2018-06-06 22:38:18 +03:00
|
|
|
class NTCP2Server;
|
2018-06-05 19:53:13 +03:00
|
|
|
class NTCP2Session: public TransportSession, public std::enable_shared_from_this<NTCP2Session>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2018-06-11 21:05:30 +03:00
|
|
|
NTCP2Session (NTCP2Server& server, std::shared_ptr<const i2p::data::RouterInfo> in_RemoteRouter = nullptr);
|
2018-06-05 19:53:13 +03:00
|
|
|
~NTCP2Session ();
|
2018-06-11 19:29:30 +03:00
|
|
|
void Terminate ();
|
2018-06-11 21:05:30 +03:00
|
|
|
void Done ();
|
2018-06-05 19:53:13 +03:00
|
|
|
|
2018-06-06 22:38:18 +03:00
|
|
|
boost::asio::ip::tcp::socket& GetSocket () { return m_Socket; };
|
|
|
|
|
|
|
|
void ClientLogin (); // Alice
|
2018-06-11 21:05:30 +03:00
|
|
|
void SendI2NPMessages (const std::vector<std::shared_ptr<I2NPMessage> >& msgs) {}; // TODO
|
2018-06-06 22:38:18 +03:00
|
|
|
|
2018-06-05 19:53:13 +03:00
|
|
|
private:
|
|
|
|
|
2018-06-14 22:29:36 +03:00
|
|
|
void MixKey (const uint8_t * inputKeyMaterial, uint8_t * derived);
|
2018-06-13 23:16:23 +03:00
|
|
|
void KeyDerivationFunction1 (const uint8_t * rs, const uint8_t * pub, uint8_t * derived); // for SessionRequest
|
|
|
|
void KeyDerivationFunction2 (const uint8_t * pub, const uint8_t * sessionRequest, size_t sessionRequestLen, uint8_t * derived); // for SessionCreate
|
2018-06-14 22:29:36 +03:00
|
|
|
void KeyDerivationFunction3 (const uint8_t * staticPrivKey, uint8_t * derived); // for SessionConfirmed part 2
|
2018-06-13 23:16:23 +03:00
|
|
|
|
2018-06-05 19:53:13 +03:00
|
|
|
void CreateEphemeralKey (uint8_t * pub);
|
2018-06-06 22:38:18 +03:00
|
|
|
void SendSessionRequest ();
|
2018-06-14 22:29:36 +03:00
|
|
|
void SendSessionConfirmed ();
|
2018-06-06 22:38:18 +03:00
|
|
|
|
|
|
|
void HandleSessionRequestSent (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2018-06-11 19:29:30 +03:00
|
|
|
void HandleSessionCreatedReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2018-06-14 22:29:36 +03:00
|
|
|
void HandleSessionCreatedPaddingReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
|
|
|
void HandleSessionConfirmedSent (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2018-06-05 19:53:13 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-06-06 22:38:18 +03:00
|
|
|
NTCP2Server& m_Server;
|
|
|
|
boost::asio::ip::tcp::socket m_Socket;
|
2018-06-11 19:29:30 +03:00
|
|
|
bool m_IsEstablished, m_IsTerminated;
|
|
|
|
|
2018-06-05 19:53:13 +03:00
|
|
|
uint8_t m_ExpandedPrivateKey[64]; // x25519 ephemeral key
|
2018-06-14 22:29:36 +03:00
|
|
|
uint8_t m_RemoteStaticKey[32], m_IV[16], m_H[32] /*h*/, m_CK[33] /*ck*/, m_K[32] /* derived after SessionCreated */, m_Y[32];
|
|
|
|
uint8_t * m_SessionRequestBuffer, * m_SessionCreatedBuffer, * m_SessionConfirmedBuffer;
|
|
|
|
size_t m_SessionRequestBufferLen, m_SessionCreatedBufferLen;
|
2018-06-06 22:38:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class NTCP2Server
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2018-06-11 19:29:30 +03:00
|
|
|
NTCP2Server ();
|
|
|
|
~NTCP2Server ();
|
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
2018-06-06 22:38:18 +03:00
|
|
|
boost::asio::io_service& GetService () { return m_Service; };
|
2018-06-11 19:29:30 +03:00
|
|
|
|
|
|
|
void Connect(const boost::asio::ip::address & address, uint16_t port, std::shared_ptr<NTCP2Session> conn);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void Run ();
|
|
|
|
void HandleConnect (const boost::system::error_code& ecode, std::shared_ptr<NTCP2Session> conn);
|
|
|
|
|
2018-06-06 22:38:18 +03:00
|
|
|
private:
|
|
|
|
|
2018-06-11 19:29:30 +03:00
|
|
|
bool m_IsRunning;
|
|
|
|
std::thread * m_Thread;
|
2018-06-06 22:38:18 +03:00
|
|
|
boost::asio::io_service m_Service;
|
2018-06-11 19:29:30 +03:00
|
|
|
boost::asio::io_service::work m_Work;
|
2018-06-05 19:53:13 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|