2020-05-22 16:18:41 +03:00
|
|
|
/*
|
2022-05-29 04:54:58 +03:00
|
|
|
* Copyright (c) 2013-2022, The PurpleI2P Project
|
2020-05-22 16:18:41 +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
|
|
|
|
*/
|
|
|
|
|
2014-08-13 05:14:19 +04:00
|
|
|
#ifndef I2PTUNNEL_H__
|
|
|
|
#define I2PTUNNEL_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string>
|
2014-08-13 23:25:52 +04:00
|
|
|
#include <set>
|
2016-11-17 18:36:27 +03:00
|
|
|
#include <tuple>
|
2014-11-23 19:33:58 +03:00
|
|
|
#include <memory>
|
2015-06-02 23:21:38 +03:00
|
|
|
#include <sstream>
|
2014-08-13 05:14:19 +04:00
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include "Identity.h"
|
2014-10-22 19:46:54 +04:00
|
|
|
#include "Destination.h"
|
2016-08-21 22:02:17 +03:00
|
|
|
#include "Datagram.h"
|
2014-08-13 05:14:19 +04:00
|
|
|
#include "Streaming.h"
|
2022-05-29 04:54:58 +03:00
|
|
|
#include "HTTP.h"
|
2015-01-07 21:09:59 +03:00
|
|
|
#include "I2PService.h"
|
2019-03-28 17:17:03 +03:00
|
|
|
#include "AddressBook.h"
|
2014-08-13 05:14:19 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-10-16 18:28:44 +04:00
|
|
|
namespace client
|
2014-08-13 05:14:19 +04:00
|
|
|
{
|
2016-12-23 15:27:34 +03:00
|
|
|
const size_t I2P_TUNNEL_CONNECTION_BUFFER_SIZE = 65536;
|
2017-04-08 19:51:35 +03:00
|
|
|
const int I2P_TUNNEL_CONNECTION_MAX_IDLE = 3600; // in seconds
|
2014-10-15 20:07:06 +04:00
|
|
|
const int I2P_TUNNEL_DESTINATION_REQUEST_TIMEOUT = 10; // in seconds
|
2017-04-08 19:51:35 +03:00
|
|
|
// for HTTP tunnels
|
2022-05-20 19:56:05 +03:00
|
|
|
const char X_I2P_DEST_HASH[] = "X-I2P-DestHash"; // hash in base64
|
2016-01-19 17:36:56 +03:00
|
|
|
const char X_I2P_DEST_B64[] = "X-I2P-DestB64"; // full address in base64
|
|
|
|
const char X_I2P_DEST_B32[] = "X-I2P-DestB32"; // .b32.i2p address
|
2015-01-07 21:09:59 +03:00
|
|
|
|
|
|
|
class I2PTunnelConnection: public I2PServiceHandler, public std::enable_shared_from_this<I2PTunnelConnection>
|
2014-08-13 05:14:19 +04:00
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2015-04-06 21:41:07 +03:00
|
|
|
I2PTunnelConnection (I2PService * owner, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
2015-03-13 20:29:27 +03:00
|
|
|
std::shared_ptr<const i2p::data::LeaseSet> leaseSet, int port = 0); // to I2P
|
2015-04-06 21:41:07 +03:00
|
|
|
I2PTunnelConnection (I2PService * owner, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
2017-04-08 19:51:35 +03:00
|
|
|
std::shared_ptr<i2p::stream::Stream> stream); // to I2P using simplified API
|
2022-05-20 19:56:05 +03:00
|
|
|
I2PTunnelConnection (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
2014-12-05 22:46:59 +03:00
|
|
|
const boost::asio::ip::tcp::endpoint& target, bool quiet = true); // from I2P
|
2014-08-13 05:14:19 +04:00
|
|
|
~I2PTunnelConnection ();
|
2014-12-04 04:37:20 +03:00
|
|
|
void I2PConnect (const uint8_t * msg = nullptr, size_t len = 0);
|
2017-01-13 00:17:11 +03:00
|
|
|
void Connect (bool isUniqueLocal = true);
|
2021-02-19 23:15:58 +03:00
|
|
|
void Connect (const boost::asio::ip::address& localAddress);
|
2021-11-27 23:30:35 +03:00
|
|
|
|
2015-06-02 20:03:22 +03:00
|
|
|
protected:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
void Terminate ();
|
2014-08-13 23:25:52 +04:00
|
|
|
|
|
|
|
void Receive ();
|
2017-04-08 19:51:35 +03:00
|
|
|
void HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2015-06-02 20:03:22 +03:00
|
|
|
virtual void Write (const uint8_t * buf, size_t len); // can be overloaded
|
2017-04-08 19:51:35 +03:00
|
|
|
void HandleWrite (const boost::system::error_code& ecode);
|
2020-10-06 23:22:40 +03:00
|
|
|
virtual void WriteToStream (const uint8_t * buf, size_t len); // can be overloaded
|
2021-11-27 23:30:35 +03:00
|
|
|
|
2014-08-13 23:25:52 +04:00
|
|
|
void StreamReceive ();
|
|
|
|
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-08-20 23:03:10 +04:00
|
|
|
void HandleConnect (const boost::system::error_code& ecode);
|
2014-08-13 23:25:52 +04:00
|
|
|
|
2017-01-20 18:02:16 +03:00
|
|
|
std::shared_ptr<const boost::asio::ip::tcp::socket> GetSocket () const { return m_Socket; };
|
|
|
|
|
2014-08-13 23:25:52 +04:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2014-08-13 23:25:52 +04:00
|
|
|
uint8_t m_Buffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE], m_StreamBuffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE];
|
2015-04-06 21:41:07 +03:00
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> m_Socket;
|
2014-11-23 19:33:58 +03:00
|
|
|
std::shared_ptr<i2p::stream::Stream> m_Stream;
|
2014-11-24 06:23:17 +03:00
|
|
|
boost::asio::ip::tcp::endpoint m_RemoteEndpoint;
|
2014-12-05 22:46:59 +03:00
|
|
|
bool m_IsQuiet; // don't send destination
|
2015-01-07 21:09:59 +03:00
|
|
|
};
|
2014-09-10 06:40:12 +04:00
|
|
|
|
2017-02-07 05:39:15 +03:00
|
|
|
class I2PClientTunnelConnectionHTTP: public I2PTunnelConnection
|
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-02-07 05:39:15 +03:00
|
|
|
I2PClientTunnelConnectionHTTP (I2PService * owner, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
|
|
|
std::shared_ptr<i2p::stream::Stream> stream):
|
|
|
|
I2PTunnelConnection (owner, socket, stream), m_HeaderSent (false),
|
|
|
|
m_ConnectionSent (false), m_ProxyConnectionSent (false) {};
|
|
|
|
|
|
|
|
protected:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
void Write (const uint8_t * buf, size_t len);
|
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-02-07 05:39:15 +03:00
|
|
|
std::stringstream m_InHeader, m_OutHeader;
|
|
|
|
bool m_HeaderSent, m_ConnectionSent, m_ProxyConnectionSent;
|
2017-04-08 19:51:35 +03:00
|
|
|
};
|
|
|
|
|
2017-02-07 05:39:15 +03:00
|
|
|
class I2PServerTunnelConnectionHTTP: public I2PTunnelConnection
|
2015-06-02 20:03:22 +03:00
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-02-07 05:39:15 +03:00
|
|
|
I2PServerTunnelConnectionHTTP (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream,
|
2017-04-08 19:51:35 +03:00
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
|
|
|
const boost::asio::ip::tcp::endpoint& target, const std::string& host);
|
2015-06-02 23:21:38 +03:00
|
|
|
|
|
|
|
protected:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2015-06-02 23:21:38 +03:00
|
|
|
void Write (const uint8_t * buf, size_t len);
|
2021-11-27 23:30:35 +03:00
|
|
|
void WriteToStream (const uint8_t * buf, size_t len);
|
2015-06-02 23:21:38 +03:00
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2015-06-03 19:30:15 +03:00
|
|
|
std::string m_Host;
|
2022-05-29 04:54:58 +03:00
|
|
|
i2p::http::HTTPReq m_ClientRequest;
|
|
|
|
std::string m_RequestSendBuffer;
|
|
|
|
std::stringstream m_InHeader, m_OutHeader; // for responses
|
2020-10-06 23:22:40 +03:00
|
|
|
bool m_HeaderSent, m_ResponseHeaderSent;
|
2016-01-11 21:48:18 +03:00
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> m_From;
|
2015-06-02 20:03:22 +03:00
|
|
|
};
|
|
|
|
|
2016-02-22 22:33:21 +03:00
|
|
|
class I2PTunnelConnectionIRC: public I2PTunnelConnection
|
2017-10-04 20:15:29 +03:00
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
I2PTunnelConnectionIRC (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream,
|
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> socket,
|
|
|
|
const boost::asio::ip::tcp::endpoint& target, const std::string& m_WebircPass);
|
2016-02-22 22:33:21 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
protected:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
void Write (const uint8_t * buf, size_t len);
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> m_From;
|
|
|
|
std::stringstream m_OutPacket, m_InPacket;
|
2016-03-05 04:35:53 +03:00
|
|
|
bool m_NeedsWebIrc;
|
2017-10-04 20:15:29 +03:00
|
|
|
std::string m_WebircPass;
|
|
|
|
};
|
2016-02-22 22:33:21 +03:00
|
|
|
|
|
|
|
|
2015-01-08 05:49:35 +03:00
|
|
|
class I2PClientTunnel: public TCPIPAcceptor
|
2014-08-13 05:14:19 +04:00
|
|
|
{
|
2015-01-08 05:49:35 +03:00
|
|
|
protected:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2015-01-08 05:49:35 +03:00
|
|
|
// Implements TCPIPAcceptor
|
2015-04-06 21:41:07 +03:00
|
|
|
std::shared_ptr<I2PServiceHandler> CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket);
|
2015-01-08 05:49:35 +03:00
|
|
|
|
2014-08-13 05:14:19 +04:00
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
I2PClientTunnel (const std::string& name, const std::string& destination,
|
2016-01-14 04:21:53 +03:00
|
|
|
const std::string& address, int port, std::shared_ptr<ClientDestination> localDestination, int destinationPort = 0);
|
2015-01-08 05:49:35 +03:00
|
|
|
~I2PClientTunnel () {}
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2014-08-13 23:25:52 +04:00
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
const char* GetName() { return m_Name.c_str (); }
|
2021-09-26 23:25:12 +03:00
|
|
|
void SetKeepAliveInterval (uint32_t keepAliveInterval);
|
2021-11-27 23:30:35 +03:00
|
|
|
|
2014-08-13 05:14:19 +04:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2019-03-28 17:17:03 +03:00
|
|
|
std::shared_ptr<const Address> GetAddress ();
|
2021-11-27 23:30:35 +03:00
|
|
|
|
2021-09-26 23:25:12 +03:00
|
|
|
void ScheduleKeepAliveTimer ();
|
|
|
|
void HandleKeepAliveTimer (const boost::system::error_code& ecode);
|
2014-08-13 05:14:19 +04:00
|
|
|
|
2016-01-14 04:21:53 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2016-01-14 04:21:53 +03:00
|
|
|
std::string m_Name, m_Destination;
|
2019-03-28 17:17:03 +03:00
|
|
|
std::shared_ptr<const Address> m_Address;
|
2017-04-08 19:51:35 +03:00
|
|
|
int m_DestinationPort;
|
2021-09-26 23:25:12 +03:00
|
|
|
uint32_t m_KeepAliveInterval;
|
|
|
|
std::unique_ptr<boost::asio::deadline_timer> m_KeepAliveTimer;
|
2016-08-21 22:02:17 +03:00
|
|
|
};
|
|
|
|
|
2014-08-20 23:03:10 +04:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
/** 2 minute timeout for udp sessions */
|
|
|
|
const uint64_t I2P_UDP_SESSION_TIMEOUT = 1000 * 60 * 2;
|
2021-11-27 23:30:35 +03:00
|
|
|
const uint64_t I2P_UDP_REPLIABLE_DATAGRAM_INTERVAL = 100; // in milliseconds
|
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
/** max size for i2p udp */
|
2020-06-12 23:06:07 +03:00
|
|
|
const size_t I2P_UDP_MAX_MTU = 64*1024;
|
2016-09-03 20:58:34 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
struct UDPSession
|
|
|
|
{
|
|
|
|
i2p::datagram::DatagramDestination * m_Destination;
|
|
|
|
boost::asio::ip::udp::socket IPSocket;
|
|
|
|
i2p::data::IdentHash Identity;
|
|
|
|
boost::asio::ip::udp::endpoint FromEndpoint;
|
|
|
|
boost::asio::ip::udp::endpoint SendEndpoint;
|
|
|
|
uint64_t LastActivity;
|
|
|
|
|
|
|
|
uint16_t LocalPort;
|
|
|
|
uint16_t RemotePort;
|
|
|
|
|
|
|
|
uint8_t m_Buffer[I2P_UDP_MAX_MTU];
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
UDPSession(boost::asio::ip::udp::endpoint localEndpoint,
|
2020-03-01 13:25:50 +03:00
|
|
|
const std::shared_ptr<i2p::client::ClientDestination> & localDestination,
|
|
|
|
boost::asio::ip::udp::endpoint remote, const i2p::data::IdentHash * ident,
|
|
|
|
uint16_t ourPort, uint16_t theirPort);
|
2016-09-03 16:38:53 +03:00
|
|
|
void HandleReceived(const boost::system::error_code & ecode, std::size_t len);
|
|
|
|
void Receive();
|
|
|
|
};
|
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2016-09-04 00:53:46 +03:00
|
|
|
/** read only info about a datagram session */
|
|
|
|
struct DatagramSessionInfo
|
|
|
|
{
|
|
|
|
/** the name of this forward */
|
|
|
|
std::string Name;
|
|
|
|
/** ident hash of local destination */
|
|
|
|
std::shared_ptr<const i2p::data::IdentHash> LocalIdent;
|
|
|
|
/** ident hash of remote destination */
|
|
|
|
std::shared_ptr<const i2p::data::IdentHash> RemoteIdent;
|
|
|
|
/** ident hash of IBGW in use currently in this session or nullptr if none is set */
|
|
|
|
std::shared_ptr<const i2p::data::IdentHash> CurrentIBGW;
|
|
|
|
/** ident hash of OBEP in use for this session or nullptr if none is set */
|
|
|
|
std::shared_ptr<const i2p::data::IdentHash> CurrentOBEP;
|
|
|
|
/** i2p router's udp endpoint */
|
|
|
|
boost::asio::ip::udp::endpoint LocalEndpoint;
|
|
|
|
/** client's udp endpoint */
|
|
|
|
boost::asio::ip::udp::endpoint RemoteEndpoint;
|
|
|
|
/** how long has this converstation been idle in ms */
|
|
|
|
uint64_t idle;
|
|
|
|
};
|
2016-12-23 15:27:34 +03:00
|
|
|
|
|
|
|
typedef std::shared_ptr<UDPSession> UDPSessionPtr;
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
/** server side udp tunnel, many i2p inbound to 1 ip outbound */
|
|
|
|
class I2PUDPServerTunnel
|
2017-10-04 20:15:29 +03:00
|
|
|
{
|
2016-09-03 16:38:53 +03:00
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2022-05-09 10:59:25 +03:00
|
|
|
I2PUDPServerTunnel (const std::string & name,
|
2016-09-03 16:38:53 +03:00
|
|
|
std::shared_ptr<i2p::client::ClientDestination> localDestination,
|
2017-10-04 20:15:29 +03:00
|
|
|
boost::asio::ip::address localAddress,
|
2020-05-18 19:01:13 +03:00
|
|
|
boost::asio::ip::udp::endpoint forwardTo, uint16_t port, bool gzip);
|
2022-05-09 10:59:25 +03:00
|
|
|
~I2PUDPServerTunnel ();
|
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
/** expire stale udp conversations */
|
2022-05-09 10:59:25 +03:00
|
|
|
void ExpireStale (const uint64_t delta=I2P_UDP_SESSION_TIMEOUT);
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
const char * GetName () const { return m_Name.c_str(); }
|
|
|
|
std::vector<std::shared_ptr<DatagramSessionInfo> > GetSessions ();
|
2016-09-12 19:05:01 +03:00
|
|
|
std::shared_ptr<ClientDestination> GetLocalDestination () const { return m_LocalDest; }
|
|
|
|
|
2022-05-09 10:59:25 +03:00
|
|
|
void SetUniqueLocal (bool isUniqueLocal = true) { m_IsUniqueLocal = isUniqueLocal; }
|
2016-12-25 16:56:47 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2022-05-09 10:59:25 +03:00
|
|
|
void HandleRecvFromI2P (const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
2020-06-10 04:48:47 +03:00
|
|
|
void HandleRecvFromI2PRaw (uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
2022-05-09 10:59:25 +03:00
|
|
|
UDPSessionPtr ObtainUDPSession (const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort);
|
2016-09-12 19:05:01 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-01-13 00:17:11 +03:00
|
|
|
bool m_IsUniqueLocal;
|
2016-09-03 16:38:53 +03:00
|
|
|
const std::string m_Name;
|
|
|
|
boost::asio::ip::address m_LocalAddress;
|
|
|
|
boost::asio::ip::udp::endpoint m_RemoteEndpoint;
|
|
|
|
std::mutex m_SessionsMutex;
|
2016-12-23 15:27:34 +03:00
|
|
|
std::vector<UDPSessionPtr> m_Sessions;
|
2016-09-03 16:38:53 +03:00
|
|
|
std::shared_ptr<i2p::client::ClientDestination> m_LocalDest;
|
2020-06-10 04:48:47 +03:00
|
|
|
UDPSessionPtr m_LastSession;
|
2022-05-09 10:59:25 +03:00
|
|
|
bool m_Gzip;
|
2021-09-03 23:25:47 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
bool isUpdated; // transient, used during reload only
|
2016-09-03 16:38:53 +03:00
|
|
|
};
|
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
class I2PUDPClientTunnel
|
2016-09-03 16:38:53 +03:00
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2022-05-09 10:59:25 +03:00
|
|
|
I2PUDPClientTunnel (const std::string & name, const std::string &remoteDest,
|
2016-09-03 16:38:53 +03:00
|
|
|
boost::asio::ip::udp::endpoint localEndpoint, std::shared_ptr<i2p::client::ClientDestination> localDestination,
|
2020-05-18 19:01:13 +03:00
|
|
|
uint16_t remotePort, bool gzip);
|
2022-05-09 10:59:25 +03:00
|
|
|
~I2PUDPClientTunnel ();
|
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
const char * GetName () const { return m_Name.c_str(); }
|
|
|
|
std::vector<std::shared_ptr<DatagramSessionInfo> > GetSessions ();
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2022-05-09 10:59:25 +03:00
|
|
|
bool IsLocalDestination (const i2p::data::IdentHash & destination) const { return destination == m_LocalDest->GetIdentHash(); }
|
2016-09-12 19:05:01 +03:00
|
|
|
|
|
|
|
std::shared_ptr<ClientDestination> GetLocalDestination () const { return m_LocalDest; }
|
2022-05-09 10:59:25 +03:00
|
|
|
inline void SetLocalDestination (std::shared_ptr<ClientDestination> dest)
|
|
|
|
{
|
|
|
|
if (m_LocalDest) m_LocalDest->Release ();
|
|
|
|
if (dest) dest->Acquire ();
|
|
|
|
m_LocalDest = dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExpireStale (const uint64_t delta=I2P_UDP_SESSION_TIMEOUT);
|
2016-09-12 19:05:01 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
typedef std::pair<boost::asio::ip::udp::endpoint, uint64_t> UDPConvo;
|
2022-05-09 10:59:25 +03:00
|
|
|
void RecvFromLocal ();
|
|
|
|
void HandleRecvFromLocal (const boost::system::error_code & e, std::size_t transferred);
|
|
|
|
void HandleRecvFromI2P (const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
|
|
|
void HandleRecvFromI2PRaw (uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
|
|
|
void TryResolving ();
|
2020-06-12 05:04:32 +03:00
|
|
|
|
|
|
|
private:
|
2021-09-03 23:25:47 +03:00
|
|
|
|
2016-09-03 16:38:53 +03:00
|
|
|
const std::string m_Name;
|
2017-10-04 20:15:29 +03:00
|
|
|
std::mutex m_SessionsMutex;
|
2020-06-07 23:24:11 +03:00
|
|
|
std::unordered_map<uint16_t, std::shared_ptr<UDPConvo> > m_Sessions; // maps i2p port -> local udp convo
|
2016-09-03 16:38:53 +03:00
|
|
|
const std::string m_RemoteDest;
|
|
|
|
std::shared_ptr<i2p::client::ClientDestination> m_LocalDest;
|
|
|
|
const boost::asio::ip::udp::endpoint m_LocalEndpoint;
|
|
|
|
i2p::data::IdentHash * m_RemoteIdent;
|
|
|
|
std::thread * m_ResolveThread;
|
2022-05-09 10:59:25 +03:00
|
|
|
std::unique_ptr<boost::asio::ip::udp::socket> m_LocalSocket;
|
2017-10-04 20:15:29 +03:00
|
|
|
boost::asio::ip::udp::endpoint m_RecvEndpoint;
|
|
|
|
uint8_t m_RecvBuff[I2P_UDP_MAX_MTU];
|
2020-06-07 23:24:11 +03:00
|
|
|
uint16_t RemotePort, m_LastPort;
|
2016-09-03 16:38:53 +03:00
|
|
|
bool m_cancel_resolve;
|
2022-05-09 10:59:25 +03:00
|
|
|
bool m_Gzip;
|
2020-06-07 23:24:11 +03:00
|
|
|
std::shared_ptr<UDPConvo> m_LastSession;
|
2021-09-03 23:25:47 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
bool isUpdated; // transient, used during reload only
|
2016-09-03 16:38:53 +03:00
|
|
|
};
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2015-01-07 21:09:59 +03:00
|
|
|
class I2PServerTunnel: public I2PService
|
2014-08-20 23:03:10 +04:00
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
I2PServerTunnel (const std::string& name, const std::string& address, int port,
|
|
|
|
std::shared_ptr<ClientDestination> localDestination, int inport = 0, bool gzip = true);
|
2014-08-20 23:03:10 +04:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
void SetAccessList (const std::set<i2p::data::IdentHash>& accessList);
|
2015-03-16 21:52:42 +03:00
|
|
|
|
2017-01-13 00:17:11 +03:00
|
|
|
void SetUniqueLocal (bool isUniqueLocal) { m_IsUniqueLocal = isUniqueLocal; }
|
2017-01-13 21:47:51 +03:00
|
|
|
bool IsUniqueLocal () const { return m_IsUniqueLocal; }
|
2016-12-25 16:56:47 +03:00
|
|
|
|
2021-02-19 23:15:58 +03:00
|
|
|
void SetLocalAddress (const std::string& localAddress);
|
2021-11-27 23:30:35 +03:00
|
|
|
|
2015-06-02 20:03:22 +03:00
|
|
|
const std::string& GetAddress() const { return m_Address; }
|
|
|
|
int GetPort () const { return m_Port; };
|
2016-01-18 02:55:09 +03:00
|
|
|
uint16_t GetLocalPort () const { return m_PortDestination->GetLocalPort (); };
|
2015-06-02 20:03:22 +03:00
|
|
|
const boost::asio::ip::tcp::endpoint& GetEndpoint () const { return m_Endpoint; }
|
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
const char* GetName() { return m_Name.c_str (); }
|
2016-07-28 18:16:29 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
void HandleResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
2015-06-02 20:18:41 +03:00
|
|
|
std::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
|
|
|
|
2014-08-20 23:03:10 +04:00
|
|
|
void Accept ();
|
2014-11-23 19:33:58 +03:00
|
|
|
void HandleAccept (std::shared_ptr<i2p::stream::Stream> stream);
|
2017-01-13 21:47:51 +03:00
|
|
|
virtual std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
|
2014-08-20 23:03:10 +04:00
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-01-13 00:17:11 +03:00
|
|
|
bool m_IsUniqueLocal;
|
2016-01-14 04:21:53 +03:00
|
|
|
std::string m_Name, m_Address;
|
2015-06-02 20:03:22 +03:00
|
|
|
int m_Port;
|
2017-04-08 19:51:35 +03:00
|
|
|
boost::asio::ip::tcp::endpoint m_Endpoint;
|
2015-03-16 21:52:42 +03:00
|
|
|
std::shared_ptr<i2p::stream::StreamingDestination> m_PortDestination;
|
|
|
|
std::set<i2p::data::IdentHash> m_AccessList;
|
2016-08-21 22:02:17 +03:00
|
|
|
bool m_IsAccessList;
|
2021-02-19 23:15:58 +03:00
|
|
|
std::unique_ptr<boost::asio::ip::address> m_LocalAddress;
|
2014-08-20 23:03:10 +04:00
|
|
|
};
|
2015-05-20 23:00:09 +03:00
|
|
|
|
|
|
|
class I2PServerTunnelHTTP: public I2PServerTunnel
|
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-04-08 19:51:35 +03:00
|
|
|
I2PServerTunnelHTTP (const std::string& name, const std::string& address, int port,
|
2016-02-26 04:32:05 +03:00
|
|
|
std::shared_ptr<ClientDestination> localDestination, const std::string& host,
|
2017-10-04 20:15:29 +03:00
|
|
|
int inport = 0, bool gzip = true);
|
2015-06-02 20:03:22 +03:00
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-01-13 21:47:51 +03:00
|
|
|
std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
|
2016-02-26 04:32:05 +03:00
|
|
|
|
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2016-02-26 04:32:05 +03:00
|
|
|
std::string m_Host;
|
2015-05-20 23:00:09 +03:00
|
|
|
};
|
2017-04-08 19:51:35 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
class I2PServerTunnelIRC: public I2PServerTunnel
|
|
|
|
{
|
|
|
|
public:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
I2PServerTunnelIRC (const std::string& name, const std::string& address, int port,
|
|
|
|
std::shared_ptr<ClientDestination> localDestination, const std::string& webircpass,
|
|
|
|
int inport = 0, bool gzip = true);
|
2016-02-22 22:33:21 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
|
2016-02-22 22:33:21 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
private:
|
2020-03-01 13:25:50 +03:00
|
|
|
|
2017-10-04 20:15:29 +03:00
|
|
|
std::string m_WebircPass;
|
|
|
|
};
|
2015-01-07 21:09:59 +03:00
|
|
|
}
|
2017-04-08 19:51:35 +03:00
|
|
|
}
|
2014-08-13 05:14:19 +04:00
|
|
|
|
|
|
|
#endif
|