i2pd/libi2pd_client/I2PTunnel.h

270 lines
8.6 KiB
C
Raw Normal View History

/*
* Copyright (c) 2013-2023, The PurpleI2P Project
*
* 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>
#include <tuple>
2014-11-23 19:33:58 +03:00
#include <memory>
#include <sstream>
2014-08-13 05:14:19 +04:00
#include <boost/asio.hpp>
2022-10-09 04:41:28 +03:00
#include <boost/asio/ssl.hpp>
2014-08-13 05:14:19 +04:00
#include "Identity.h"
#include "Destination.h"
2014-08-13 05:14:19 +04:00
#include "Streaming.h"
#include "I2PService.h"
2019-03-28 17:17:03 +03:00
#include "AddressBook.h"
2014-08-13 05:14:19 +04:00
namespace i2p
{
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;
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
// for HTTP tunnels
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
2022-08-24 02:06:28 +03:00
const int I2P_TUNNEL_HTTP_MAX_HEADER_SIZE = 8192;
class I2PTunnelConnection: public I2PServiceHandler, public std::enable_shared_from_this<I2PTunnelConnection>
2014-08-13 05:14:19 +04:00
{
public:
I2PTunnelConnection (I2PService * owner, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
std::shared_ptr<const i2p::data::LeaseSet> leaseSet, uint16_t port = 0); // to I2P
I2PTunnelConnection (I2PService * owner, std::shared_ptr<boost::asio::ip::tcp::socket> socket,
std::shared_ptr<i2p::stream::Stream> stream); // to I2P using simplified API
2022-10-09 04:41:28 +03:00
I2PTunnelConnection (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream,
const boost::asio::ip::tcp::endpoint& target, bool quiet = true,
std::shared_ptr<boost::asio::ssl::context> sslCtx = nullptr); // from I2P
2014-08-13 05:14:19 +04:00
~I2PTunnelConnection ();
void I2PConnect (const uint8_t * msg = nullptr, size_t len = 0);
void Connect (bool isUniqueLocal = true);
2021-02-19 23:15:58 +03:00
void Connect (const boost::asio::ip::address& localAddress);
2015-06-02 20:03:22 +03:00
protected:
void Terminate ();
2014-08-13 23:25:52 +04:00
void Receive ();
2022-10-09 04:41:28 +03:00
void StreamReceive ();
2015-06-02 20:03:22 +03:00
virtual void Write (const uint8_t * buf, size_t len); // can be overloaded
2020-10-06 23:22:40 +03:00
virtual void WriteToStream (const uint8_t * buf, size_t len); // can be overloaded
2022-10-09 04:41:28 +03:00
std::shared_ptr<boost::asio::ip::tcp::socket> GetSocket () const { return m_Socket; };
std::shared_ptr<boost::asio::ssl::stream<boost::asio::ip::tcp::socket&> > GetSSL () const { return m_SSL; };
2014-08-13 23:25:52 +04:00
2022-10-09 04:41:28 +03:00
private:
2017-01-20 18:02:16 +03:00
2022-10-09 04:41:28 +03:00
void HandleConnect (const boost::system::error_code& ecode);
void HandleHandshake (const boost::system::error_code& ecode);
void Established ();
void HandleReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
void HandleWrite (const boost::system::error_code& ecode);
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
2014-08-13 23:25:52 +04:00
private:
2014-08-13 23:25:52 +04:00
uint8_t m_Buffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE], m_StreamBuffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE];
std::shared_ptr<boost::asio::ip::tcp::socket> m_Socket;
2022-10-09 04:41:28 +03:00
std::shared_ptr<boost::asio::ssl::stream<boost::asio::ip::tcp::socket&> > m_SSL;
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;
bool m_IsQuiet; // don't send destination
};
2017-02-07 05:39:15 +03:00
class I2PClientTunnelConnectionHTTP: public I2PTunnelConnection
{
public:
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:
void Write (const uint8_t * buf, size_t len);
private:
2017-02-07 05:39:15 +03:00
std::stringstream m_InHeader, m_OutHeader;
bool m_HeaderSent, m_ConnectionSent, m_ProxyConnectionSent;
};
2017-02-07 05:39:15 +03:00
class I2PServerTunnelConnectionHTTP: public I2PTunnelConnection
2015-06-02 20:03:22 +03:00
{
public:
2017-02-07 05:39:15 +03:00
I2PServerTunnelConnectionHTTP (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream,
2022-10-09 04:41:28 +03:00
const boost::asio::ip::tcp::endpoint& target, const std::string& host,
std::shared_ptr<boost::asio::ssl::context> sslCtx = nullptr);
protected:
void Write (const uint8_t * buf, size_t len);
void WriteToStream (const uint8_t * buf, size_t len);
private:
2015-06-03 19:30:15 +03:00
std::string m_Host;
2022-05-29 23:59:15 +03:00
std::stringstream m_InHeader, m_OutHeader;
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
{
public:
I2PTunnelConnectionIRC (I2PService * owner, std::shared_ptr<i2p::stream::Stream> stream,
2022-10-10 18:02:19 +03:00
const boost::asio::ip::tcp::endpoint& target, const std::string& m_WebircPass,
std::shared_ptr<boost::asio::ssl::context> sslCtx = nullptr);
2016-02-22 22:33:21 +03:00
protected:
void Write (const uint8_t * buf, size_t len);
private:
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;
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:
2015-01-08 05:49:35 +03:00
// Implements TCPIPAcceptor
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:
I2PClientTunnel (const std::string& name, const std::string& destination,
const std::string& address, uint16_t port, std::shared_ptr<ClientDestination> localDestination, uint16_t destinationPort = 0);
2015-01-08 05:49:35 +03:00
~I2PClientTunnel () {}
2014-08-13 23:25:52 +04:00
void Start ();
void Stop ();
const char* GetName() { return m_Name.c_str (); }
void SetKeepAliveInterval (uint32_t keepAliveInterval);
2014-08-13 05:14:19 +04:00
private:
2019-03-28 17:17:03 +03:00
std::shared_ptr<const Address> GetAddress ();
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:
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;
uint16_t m_DestinationPort;
uint32_t m_KeepAliveInterval;
std::unique_ptr<boost::asio::deadline_timer> m_KeepAliveTimer;
2016-08-21 22:02:17 +03:00
};
class I2PServerTunnel: public I2PService
2014-08-20 23:03:10 +04:00
{
public:
I2PServerTunnel (const std::string& name, const std::string& address, uint16_t port,
std::shared_ptr<ClientDestination> localDestination, uint16_t inport = 0, bool gzip = true);
2014-08-20 23:03:10 +04:00
void Start ();
void Stop ();
void SetAccessList (const std::set<i2p::data::IdentHash>& accessList);
2015-03-16 21:52:42 +03:00
void SetUniqueLocal (bool isUniqueLocal) { m_IsUniqueLocal = isUniqueLocal; }
bool IsUniqueLocal () const { return m_IsUniqueLocal; }
void SetSSL (bool ssl);
2022-10-09 04:41:28 +03:00
std::shared_ptr<boost::asio::ssl::context> GetSSLCtx () const { return m_SSLCtx; };
2021-02-19 23:15:58 +03:00
void SetLocalAddress (const std::string& localAddress);
2015-06-02 20:03:22 +03:00
const std::string& GetAddress() const { return m_Address; }
uint16_t GetPort () const { return m_Port; };
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; }
const char* GetName() { return m_Name.c_str (); }
2016-07-28 18:16:29 +03:00
private:
void HandleResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
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);
virtual std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
2014-08-20 23:03:10 +04:00
private:
bool m_IsUniqueLocal;
2016-01-14 04:21:53 +03:00
std::string m_Name, m_Address;
uint16_t m_Port;
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;
2022-10-09 04:41:28 +03:00
std::shared_ptr<boost::asio::ssl::context> m_SSLCtx;
2014-08-20 23:03:10 +04:00
};
2015-05-20 23:00:09 +03:00
class I2PServerTunnelHTTP: public I2PServerTunnel
{
public:
I2PServerTunnelHTTP (const std::string& name, const std::string& address, uint16_t port,
2016-02-26 04:32:05 +03:00
std::shared_ptr<ClientDestination> localDestination, const std::string& host,
uint16_t inport = 0, bool gzip = true);
2015-06-02 20:03:22 +03:00
private:
std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
2016-02-26 04:32:05 +03:00
private:
2016-02-26 04:32:05 +03:00
std::string m_Host;
2015-05-20 23:00:09 +03:00
};
class I2PServerTunnelIRC: public I2PServerTunnel
{
public:
I2PServerTunnelIRC (const std::string& name, const std::string& address, uint16_t port,
std::shared_ptr<ClientDestination> localDestination, const std::string& webircpass,
uint16_t inport = 0, bool gzip = true);
2016-02-22 22:33:21 +03:00
private:
std::shared_ptr<I2PTunnelConnection> CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream);
2016-02-22 22:33:21 +03:00
private:
std::string m_WebircPass;
};
2022-10-25 22:30:12 +03:00
boost::asio::ip::address GetLoopbackAddressFor(const i2p::data::IdentHash & addr);
}
}
2014-08-13 05:14:19 +04:00
#endif