i2pd/libi2pd/SSU2.h

115 lines
4.1 KiB
C
Raw Normal View History

2022-02-04 23:01:18 +03:00
/*
* Copyright (c) 2022, The PurpleI2P Project
2022-02-04 23:01:18 +03:00
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
#ifndef SSU2_H__
#define SSU2_H__
2022-02-28 04:15:14 +03:00
#include <unordered_map>
2022-06-06 02:33:36 +03:00
#include "util.h"
#include "SSU2Session.h"
2022-02-04 23:01:18 +03:00
namespace i2p
{
namespace transport
{
2022-03-19 03:21:31 +03:00
const int SSU2_TERMINATION_CHECK_TIMEOUT = 30; // 30 seconds
2022-03-01 05:46:00 +03:00
const size_t SSU2_SOCKET_RECEIVE_BUFFER_SIZE = 0x1FFFF; // 128K
const size_t SSU2_SOCKET_SEND_BUFFER_SIZE = 0x1FFFF; // 128K
2022-06-06 02:33:36 +03:00
class SSU2Server: private i2p::util::RunnableServiceWithWork
2022-02-28 04:15:14 +03:00
{
2022-03-15 02:25:59 +03:00
struct Packet
{
uint8_t buf[SSU2_MTU];
2022-03-15 02:25:59 +03:00
size_t len;
boost::asio::ip::udp::endpoint from;
};
2022-04-05 23:14:13 +03:00
class ReceiveService: public i2p::util::RunnableService
{
public:
ReceiveService (const std::string& name): RunnableService (name) {};
boost::asio::io_service& GetService () { return GetIOService (); };
void Start () { StartIOService (); };
void Stop () { StopIOService (); };
};
2022-02-28 04:15:14 +03:00
public:
2022-03-12 00:17:44 +03:00
SSU2Server ();
2022-02-28 04:15:14 +03:00
~SSU2Server () {};
2022-03-12 00:17:44 +03:00
void Start ();
void Stop ();
boost::asio::io_service& GetService () { return GetIOService (); };
2022-03-27 23:39:58 +03:00
void AddSession (std::shared_ptr<SSU2Session> session);
void RemoveSession (uint64_t connID);
2022-04-28 20:11:51 +03:00
void AddSessionByRouterHash (std::shared_ptr<SSU2Session> session);
2022-03-27 23:39:58 +03:00
void AddPendingOutgoingSession (std::shared_ptr<SSU2Session> session);
2022-02-28 04:15:14 +03:00
void AddRelay (uint32_t tag, std::shared_ptr<SSU2Session> relay);
void RemoveRelay (uint32_t tag);
std::shared_ptr<SSU2Session> FindRelaySession (uint32_t tag);
void Send (const uint8_t * header, size_t headerLen, const uint8_t * payload, size_t payloadLen,
2022-03-26 23:35:07 +03:00
const boost::asio::ip::udp::endpoint& to);
void Send (const uint8_t * header, size_t headerLen, const uint8_t * headerX, size_t headerXLen,
2022-03-01 05:46:00 +03:00
const uint8_t * payload, size_t payloadLen, const boost::asio::ip::udp::endpoint& to);
2022-03-17 04:11:48 +03:00
bool CreateSession (std::shared_ptr<const i2p::data::RouterInfo> router,
std::shared_ptr<const i2p::data::RouterInfo::Address> address);
2022-06-02 04:51:02 +03:00
bool StartPeerTest (std::shared_ptr<const i2p::data::RouterInfo> router, bool v4);
2022-03-24 02:13:44 +03:00
void UpdateOutgoingToken (const boost::asio::ip::udp::endpoint& ep, uint64_t token, uint32_t exp);
2022-03-24 04:48:41 +03:00
uint64_t FindOutgoingToken (const boost::asio::ip::udp::endpoint& ep) const;
uint64_t GetIncomingToken (const boost::asio::ip::udp::endpoint& ep);
2022-02-28 04:15:14 +03:00
private:
2022-03-18 01:45:14 +03:00
boost::asio::ip::udp::socket& OpenSocket (const boost::asio::ip::udp::endpoint& localEndpoint);
void Receive (boost::asio::ip::udp::socket& socket);
void HandleReceivedFrom (const boost::system::error_code& ecode, size_t bytes_transferred,
2022-03-18 01:45:14 +03:00
Packet * packet, boost::asio::ip::udp::socket& socket);
2022-04-13 19:33:59 +03:00
void HandleReceivedPacket (Packet * packet);
void HandleReceivedPackets (std::vector<Packet *> packets);
2022-03-01 05:46:00 +03:00
void ProcessNextPacket (uint8_t * buf, size_t len, const boost::asio::ip::udp::endpoint& senderEndpoint);
2022-03-19 03:21:31 +03:00
void ScheduleTermination ();
void HandleTerminationTimer (const boost::system::error_code& ecode);
2022-03-31 22:35:55 +03:00
void ScheduleResend ();
void HandleResendTimer (const boost::system::error_code& ecode);
2022-05-01 17:33:25 +03:00
void ConnectThroughIntroducer (std::shared_ptr<const i2p::data::RouterInfo> router,
std::shared_ptr<const i2p::data::RouterInfo::Address> address);
2022-02-28 04:15:14 +03:00
private:
ReceiveService m_ReceiveService;
2022-04-05 23:14:13 +03:00
boost::asio::ip::udp::socket m_SocketV4, m_SocketV6;
2022-02-28 04:15:14 +03:00
std::unordered_map<uint64_t, std::shared_ptr<SSU2Session> > m_Sessions;
2022-04-28 20:11:51 +03:00
std::map<i2p::data::IdentHash, std::shared_ptr<SSU2Session> > m_SessionsByRouterHash;
2022-03-01 05:46:00 +03:00
std::map<boost::asio::ip::udp::endpoint, std::shared_ptr<SSU2Session> > m_PendingOutgoingSessions;
2022-03-24 02:13:44 +03:00
std::map<boost::asio::ip::udp::endpoint, std::pair<uint64_t, uint32_t> > m_IncomingTokens, m_OutgoingTokens; // remote endpoint -> (token, expires in seconds)
std::map<uint32_t, std::shared_ptr<SSU2Session> > m_Relays; // we are introducer, relay tag -> session
2022-03-15 02:25:59 +03:00
i2p::util::MemoryPoolMt<Packet> m_PacketsPool;
2022-03-31 22:35:55 +03:00
boost::asio::deadline_timer m_TerminationTimer, m_ResendTimer;
std::shared_ptr<SSU2Session> m_LastSession;
2022-03-28 02:29:50 +03:00
public:
// for HTTP/I2PControl
const decltype(m_Sessions)& GetSSU2Sessions () const { return m_Sessions; };
};
2022-02-04 23:01:18 +03:00
}
}
#endif