1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 01:20:10 +00:00
i2pd/NTCPSession.h

178 lines
5.8 KiB
C
Raw Normal View History

2013-09-09 21:35:46 -04:00
#ifndef NTCP_SESSION_H__
#define NTCP_SESSION_H__
#include <inttypes.h>
2015-01-11 17:41:56 -05:00
#include <map>
2014-11-25 16:30:15 -05:00
#include <memory>
2015-01-11 17:41:56 -05:00
#include <thread>
2015-01-12 12:15:54 -05:00
#include <mutex>
2015-01-11 17:41:56 -05:00
#include <boost/asio.hpp>
2015-11-03 09:15:49 -05:00
#include "Crypto.h"
2014-04-04 13:30:13 -04:00
#include "Identity.h"
2013-09-09 21:35:46 -04:00
#include "RouterInfo.h"
2013-10-22 22:43:29 -04:00
#include "I2NPProtocol.h"
2014-10-20 16:09:59 -04:00
#include "TransportSession.h"
2013-09-09 21:35:46 -04:00
namespace i2p
{
namespace transport
2013-09-09 21:35:46 -04:00
{
struct NTCPPhase1
{
uint8_t pubKey[256];
uint8_t HXxorHI[32];
};
struct NTCPPhase2
{
uint8_t pubKey[256];
struct
{
uint8_t hxy[32];
2016-01-11 19:03:04 -05:00
uint8_t timestamp[4];
2013-09-09 21:35:46 -04:00
uint8_t filler[12];
} encrypted;
};
const size_t NTCP_MAX_MESSAGE_SIZE = 16384;
2015-01-22 22:00:41 -05:00
const size_t NTCP_BUFFER_SIZE = 4160; // fits 4 tunnel messages (4*1028)
2014-04-07 21:40:28 -04:00
const int NTCP_TERMINATION_TIMEOUT = 120; // 2 minutes
2014-11-25 14:29:06 -05:00
const size_t NTCP_DEFAULT_PHASE3_SIZE = 2/*size*/ + i2p::data::DEFAULT_IDENTITY_SIZE/*387*/ + 4/*ts*/ + 15/*padding*/ + 40/*signature*/; // 448
2015-02-10 13:05:08 -05:00
const int NTCP_BAN_EXPIRATION_TIMEOUT = 70; // in second
2016-01-26 19:02:06 -05:00
const int NTCP_CLOCK_SKEW = 60; // in seconds
2014-10-20 15:19:56 -04:00
2015-01-11 17:41:56 -05:00
class NTCPServer;
2014-11-25 16:30:15 -05:00
class NTCPSession: public TransportSession, public std::enable_shared_from_this<NTCPSession>
2013-09-09 21:35:46 -04:00
{
public:
2015-01-11 17:41:56 -05:00
NTCPSession (NTCPServer& server, std::shared_ptr<const i2p::data::RouterInfo> in_RemoteRouter = nullptr);
~NTCPSession ();
2014-11-25 15:16:03 -05:00
void Terminate ();
2015-02-06 20:53:48 -05:00
void Done ();
2013-09-09 21:35:46 -04:00
2013-11-29 07:52:09 -05:00
boost::asio::ip::tcp::socket& GetSocket () { return m_Socket; };
2013-09-09 21:35:46 -04:00
bool IsEstablished () const { return m_IsEstablished; };
void ClientLogin ();
void ServerLogin ();
void SendI2NPMessages (const std::vector<std::shared_ptr<I2NPMessage> >& msgs);
2013-10-22 22:43:29 -04:00
2015-01-21 12:08:15 -05:00
private:
2013-10-22 22:43:29 -04:00
void PostI2NPMessages (std::vector<std::shared_ptr<I2NPMessage> > msgs);
2014-11-25 15:16:03 -05:00
void Connected ();
2013-11-29 07:52:09 -05:00
void SendTimeSyncMessage ();
void SetIsEstablished (bool isEstablished) { m_IsEstablished = isEstablished; }
2013-09-09 21:35:46 -04:00
2014-11-01 21:53:45 -04:00
void CreateAESKey (uint8_t * pubKey, i2p::crypto::AESKey& key);
2013-09-09 21:35:46 -04:00
// client
void SendPhase3 ();
void HandlePhase1Sent (const boost::system::error_code& ecode, std::size_t bytes_transferred);
void HandlePhase2Received (const boost::system::error_code& ecode, std::size_t bytes_transferred);
void HandlePhase3Sent (const boost::system::error_code& ecode, std::size_t bytes_transferred, uint32_t tsA);
void HandlePhase4Received (const boost::system::error_code& ecode, std::size_t bytes_transferred, uint32_t tsA);
//server
void SendPhase2 ();
2014-11-25 10:35:35 -05:00
void SendPhase4 (uint32_t tsA, uint32_t tsB);
2013-09-09 21:35:46 -04:00
void HandlePhase1Received (const boost::system::error_code& ecode, std::size_t bytes_transferred);
void HandlePhase2Sent (const boost::system::error_code& ecode, std::size_t bytes_transferred, uint32_t tsB);
void HandlePhase3Received (const boost::system::error_code& ecode, std::size_t bytes_transferred, uint32_t tsB);
2014-11-25 12:33:51 -05:00
void HandlePhase3ExtraReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred, uint32_t tsB, size_t paddingLen);
void HandlePhase3 (uint32_t tsB, size_t paddingLen);
2013-09-09 21:35:46 -04:00
void HandlePhase4Sent (const boost::system::error_code& ecode, std::size_t bytes_transferred);
// common
void Receive ();
void HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred);
2014-09-18 11:11:51 -04:00
bool DecryptNextBlock (const uint8_t * encrypted);
2013-10-27 11:23:15 -04:00
void Send (std::shared_ptr<i2p::I2NPMessage> msg);
boost::asio::const_buffers_1 CreateMsgBuffer (std::shared_ptr<I2NPMessage> msg);
void Send (const std::vector<std::shared_ptr<I2NPMessage> >& msgs);
void HandleSent (const boost::system::error_code& ecode, std::size_t bytes_transferred, std::vector<std::shared_ptr<I2NPMessage> > msgs);
2013-11-29 07:52:09 -05:00
// timer
void ScheduleTermination ();
void HandleTerminationTimer (const boost::system::error_code& ecode);
2013-09-09 21:35:46 -04:00
private:
2015-01-11 17:41:56 -05:00
NTCPServer& m_Server;
2013-11-29 07:52:09 -05:00
boost::asio::ip::tcp::socket m_Socket;
boost::asio::deadline_timer m_TerminationTimer;
2015-02-06 20:53:48 -05:00
bool m_IsEstablished, m_IsTerminated;
2013-09-09 21:35:46 -04:00
2014-05-06 22:30:09 -04:00
i2p::crypto::CBCDecryption m_Decryption;
i2p::crypto::CBCEncryption m_Encryption;
2014-09-11 22:15:20 -04:00
struct Establisher
{
NTCPPhase1 phase1;
NTCPPhase2 phase2;
} * m_Establisher;
2013-09-09 21:35:46 -04:00
2014-11-25 10:14:18 -05:00
i2p::crypto::AESAlignedBuffer<NTCP_BUFFER_SIZE + 16> m_ReceiveBuffer;
i2p::crypto::AESAlignedBuffer<16> m_TimeSyncBuffer;
2013-09-09 21:35:46 -04:00
int m_ReceiveBufferOffset;
std::shared_ptr<I2NPMessage> m_NextMessage;
2013-10-27 11:23:15 -04:00
size_t m_NextMessageOffset;
2015-01-22 22:00:41 -05:00
i2p::I2NPMessagesHandler m_Handler;
2015-01-27 19:12:27 -05:00
bool m_IsSending;
std::vector<std::shared_ptr<I2NPMessage> > m_SendQueue;
2015-01-22 22:00:41 -05:00
2015-02-10 13:05:08 -05:00
boost::asio::ip::address m_ConnectedFrom; // for ban
2013-09-09 21:35:46 -04:00
};
2015-01-11 17:41:56 -05:00
// TODO: move to NTCP.h/.cpp
class NTCPServer
{
public:
2016-01-27 21:54:42 -05:00
NTCPServer ();
2015-01-11 17:41:56 -05:00
~NTCPServer ();
void Start ();
void Stop ();
2015-11-25 11:51:35 -05:00
bool AddNTCPSession (std::shared_ptr<NTCPSession> session);
2015-01-11 17:41:56 -05:00
void RemoveNTCPSession (std::shared_ptr<NTCPSession> session);
std::shared_ptr<NTCPSession> FindNTCPSession (const i2p::data::IdentHash& ident);
void Connect (const boost::asio::ip::address& address, int port, std::shared_ptr<NTCPSession> conn);
boost::asio::io_service& GetService () { return m_Service; };
2015-02-10 13:05:08 -05:00
void Ban (const boost::asio::ip::address& addr);
2015-01-11 17:41:56 -05:00
private:
void Run ();
void HandleAccept (std::shared_ptr<NTCPSession> conn, const boost::system::error_code& error);
void HandleAcceptV6 (std::shared_ptr<NTCPSession> conn, const boost::system::error_code& error);
void HandleConnect (const boost::system::error_code& ecode, std::shared_ptr<NTCPSession> conn);
private:
bool m_IsRunning;
std::thread * m_Thread;
boost::asio::io_service m_Service;
boost::asio::io_service::work m_Work;
boost::asio::ip::tcp::acceptor * m_NTCPAcceptor, * m_NTCPV6Acceptor;
2015-11-25 11:51:35 -05:00
std::map<i2p::data::IdentHash, std::shared_ptr<NTCPSession> > m_NTCPSessions; // access from m_Thread only
2015-02-10 13:05:08 -05:00
std::map<boost::asio::ip::address, uint32_t> m_BanList; // IP -> ban expiration time in seconds
2015-01-11 17:41:56 -05:00
public:
// for HTTP/I2PControl
const decltype(m_NTCPSessions)& GetNTCPSessions () const { return m_NTCPSessions; };
};
2013-09-09 21:35:46 -04:00
}
}
#endif