2014-08-13 01:14:19 +00:00
|
|
|
#ifndef I2PTUNNEL_H__
|
|
|
|
#define I2PTUNNEL_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string>
|
2014-08-13 19:25:52 +00:00
|
|
|
#include <set>
|
2014-11-23 16:33:58 +00:00
|
|
|
#include <memory>
|
2014-08-13 01:14:19 +00:00
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include "Identity.h"
|
2014-10-22 15:46:54 +00:00
|
|
|
#include "Destination.h"
|
2014-08-13 01:14:19 +00:00
|
|
|
#include "Streaming.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-10-16 14:28:44 +00:00
|
|
|
namespace client
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
2014-08-13 19:25:52 +00:00
|
|
|
const size_t I2P_TUNNEL_CONNECTION_BUFFER_SIZE = 8192;
|
|
|
|
const int I2P_TUNNEL_CONNECTION_MAX_IDLE = 3600; // in seconds
|
2014-10-15 16:07:06 +00:00
|
|
|
const int I2P_TUNNEL_DESTINATION_REQUEST_TIMEOUT = 10; // in seconds
|
2015-01-02 00:21:18 +00:00
|
|
|
const i2p::data::SigningKeyType I2P_TUNNEL_DEFAULT_KEY_TYPE = i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA256_P256;
|
2014-09-10 02:40:12 +00:00
|
|
|
|
|
|
|
class I2PTunnel;
|
2014-11-24 03:23:17 +00:00
|
|
|
class I2PTunnelConnection: public std::enable_shared_from_this<I2PTunnelConnection>
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-09-10 02:40:12 +00:00
|
|
|
I2PTunnelConnection (I2PTunnel * owner, boost::asio::ip::tcp::socket * socket,
|
2014-12-05 19:46:59 +00:00
|
|
|
const i2p::data::LeaseSet * leaseSet); // to I2P
|
2015-01-03 01:43:59 +00:00
|
|
|
I2PTunnelConnection (I2PTunnel * owner, boost::asio::ip::tcp::socket * socket,
|
|
|
|
std::shared_ptr<i2p::stream::Stream> stream); // to I2P using simplified API :)
|
2014-11-23 16:33:58 +00:00
|
|
|
I2PTunnelConnection (I2PTunnel * owner, std::shared_ptr<i2p::stream::Stream> stream, boost::asio::ip::tcp::socket * socket,
|
2014-12-05 19:46:59 +00:00
|
|
|
const boost::asio::ip::tcp::endpoint& target, bool quiet = true); // from I2P
|
2014-08-13 01:14:19 +00:00
|
|
|
~I2PTunnelConnection ();
|
2014-08-13 19:25:52 +00:00
|
|
|
|
2014-12-04 01:37:20 +00:00
|
|
|
void I2PConnect (const uint8_t * msg = nullptr, size_t len = 0);
|
2014-11-24 03:23:17 +00:00
|
|
|
void Connect ();
|
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
private:
|
|
|
|
|
2014-08-13 19:25:52 +00:00
|
|
|
void Terminate ();
|
|
|
|
|
|
|
|
void Receive ();
|
|
|
|
void HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
|
|
|
void HandleWrite (const boost::system::error_code& ecode);
|
|
|
|
|
|
|
|
void StreamReceive ();
|
|
|
|
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-08-20 19:03:10 +00:00
|
|
|
void HandleConnect (const boost::system::error_code& ecode);
|
2014-08-13 19:25:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
uint8_t m_Buffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE], m_StreamBuffer[I2P_TUNNEL_CONNECTION_BUFFER_SIZE];
|
2014-08-13 01:14:19 +00:00
|
|
|
boost::asio::ip::tcp::socket * m_Socket;
|
2014-11-23 16:33:58 +00:00
|
|
|
std::shared_ptr<i2p::stream::Stream> m_Stream;
|
2014-09-10 02:40:12 +00:00
|
|
|
I2PTunnel * m_Owner;
|
2014-11-24 03:23:17 +00:00
|
|
|
boost::asio::ip::tcp::endpoint m_RemoteEndpoint;
|
2014-12-05 19:46:59 +00:00
|
|
|
bool m_IsQuiet; // don't send destination
|
2014-09-10 02:40:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class I2PTunnel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-01-01 23:56:21 +00:00
|
|
|
I2PTunnel (ClientDestination * localDestination = nullptr);
|
2014-09-10 02:40:12 +00:00
|
|
|
virtual ~I2PTunnel () { ClearConnections (); };
|
|
|
|
|
2014-11-24 03:23:17 +00:00
|
|
|
void AddConnection (std::shared_ptr<I2PTunnelConnection> conn);
|
|
|
|
void RemoveConnection (std::shared_ptr<I2PTunnelConnection> conn);
|
2014-09-10 02:40:12 +00:00
|
|
|
void ClearConnections ();
|
2014-10-22 15:46:54 +00:00
|
|
|
ClientDestination * GetLocalDestination () { return m_LocalDestination; };
|
|
|
|
void SetLocalDestination (ClientDestination * dest) { m_LocalDestination = dest; };
|
2014-10-01 14:58:28 +00:00
|
|
|
|
2014-12-29 19:29:55 +00:00
|
|
|
boost::asio::io_service& GetService () { return m_LocalDestination->GetService (); };
|
2014-09-10 02:40:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-10-22 15:46:54 +00:00
|
|
|
ClientDestination * m_LocalDestination;
|
2014-11-24 03:23:17 +00:00
|
|
|
std::set<std::shared_ptr<I2PTunnelConnection> > m_Connections;
|
2014-08-13 01:14:19 +00:00
|
|
|
};
|
|
|
|
|
2014-09-10 02:40:12 +00:00
|
|
|
class I2PClientTunnel: public I2PTunnel
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-12-29 19:29:55 +00:00
|
|
|
I2PClientTunnel (const std::string& destination, int port, ClientDestination * localDestination = nullptr);
|
2014-08-13 19:25:52 +00:00
|
|
|
~I2PClientTunnel ();
|
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
private:
|
|
|
|
|
2015-01-03 01:17:01 +00:00
|
|
|
const i2p::data::IdentHash * GetIdentHash ();
|
2014-08-13 01:14:19 +00:00
|
|
|
void Accept ();
|
|
|
|
void HandleAccept (const boost::system::error_code& ecode, boost::asio::ip::tcp::socket * socket);
|
2015-01-03 01:43:59 +00:00
|
|
|
void HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream, boost::asio::ip::tcp::socket * socket);
|
2014-10-15 16:07:06 +00:00
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
boost::asio::ip::tcp::acceptor m_Acceptor;
|
2014-10-15 16:07:06 +00:00
|
|
|
boost::asio::deadline_timer m_Timer;
|
2014-08-13 01:14:19 +00:00
|
|
|
std::string m_Destination;
|
2014-08-13 19:25:52 +00:00
|
|
|
const i2p::data::IdentHash * m_DestinationIdentHash;
|
2014-08-13 01:14:19 +00:00
|
|
|
};
|
2014-08-20 19:03:10 +00:00
|
|
|
|
2014-09-10 02:40:12 +00:00
|
|
|
class I2PServerTunnel: public I2PTunnel
|
2014-08-20 19:03:10 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-12-29 19:29:55 +00:00
|
|
|
I2PServerTunnel (const std::string& address, int port, ClientDestination * localDestination);
|
2014-08-20 19:03:10 +00:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void Accept ();
|
2014-11-23 16:33:58 +00:00
|
|
|
void HandleAccept (std::shared_ptr<i2p::stream::Stream> stream);
|
2014-08-20 19:03:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
boost::asio::ip::tcp::endpoint m_Endpoint;
|
|
|
|
};
|
2014-08-13 01:14:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|