i2pd/I2PTunnel.cpp

381 lines
11 KiB
C++
Raw Normal View History

2015-01-07 01:51:10 +03:00
#include <cassert>
2014-08-13 23:25:52 +04:00
#include "base64.h"
#include "Log.h"
#include "Destination.h"
2014-10-16 04:52:17 +04:00
#include "ClientContext.h"
2014-08-13 05:14:19 +04:00
#include "I2PTunnel.h"
namespace i2p
{
namespace client
2014-08-13 05:14:19 +04:00
{
I2PTunnelConnection::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):
I2PServiceHandler(owner), m_Socket (socket), m_RemoteEndpoint (socket->remote_endpoint ()),
m_IsQuiet (true)
2014-08-13 05:14:19 +04:00
{
2015-03-13 20:29:27 +03:00
m_Stream = GetOwner()->GetLocalDestination ()->CreateStream (leaseSet, port);
2014-08-13 05:14:19 +04:00
}
I2PTunnelConnection::I2PTunnelConnection (I2PService * owner,
std::shared_ptr<boost::asio::ip::tcp::socket> socket, std::shared_ptr<i2p::stream::Stream> stream):
I2PServiceHandler(owner), m_Socket (socket), m_Stream (stream),
m_RemoteEndpoint (socket->remote_endpoint ()), m_IsQuiet (true)
{
}
I2PTunnelConnection::I2PTunnelConnection (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, bool quiet):
I2PServiceHandler(owner), m_Socket (socket), m_Stream (stream),
m_RemoteEndpoint (target), m_IsQuiet (quiet)
2014-08-20 23:03:10 +04:00
{
}
2014-08-13 05:14:19 +04:00
I2PTunnelConnection::~I2PTunnelConnection ()
{
2014-08-14 05:04:23 +04:00
}
void I2PTunnelConnection::I2PConnect (const uint8_t * msg, size_t len)
2014-11-24 06:23:17 +03:00
{
2015-01-07 01:51:10 +03:00
if (m_Stream)
{
if (msg)
m_Stream->Send (msg, len); // connect and send
else
m_Stream->Send (m_Buffer, 0); // connect
}
2014-11-24 06:23:17 +03:00
StreamReceive ();
Receive ();
}
void I2PTunnelConnection::Connect ()
{
if (m_Socket)
m_Socket->async_connect (m_RemoteEndpoint, std::bind (&I2PTunnelConnection::HandleConnect,
shared_from_this (), std::placeholders::_1));
}
2014-08-14 05:04:23 +04:00
void I2PTunnelConnection::Terminate ()
{
if (Kill()) return;
2014-10-09 03:44:12 +04:00
if (m_Stream)
{
m_Stream->Close ();
2014-11-23 19:33:58 +03:00
m_Stream.reset ();
2014-10-09 03:44:12 +04:00
}
2014-08-18 03:14:40 +04:00
m_Socket->close ();
Done(shared_from_this ());
2014-08-13 23:25:52 +04:00
}
void I2PTunnelConnection::Receive ()
{
m_Socket->async_read_some (boost::asio::buffer(m_Buffer, I2P_TUNNEL_CONNECTION_BUFFER_SIZE),
2014-11-24 06:23:17 +03:00
std::bind(&I2PTunnelConnection::HandleReceived, shared_from_this (),
std::placeholders::_1, std::placeholders::_2));
2014-08-13 23:25:52 +04:00
}
void I2PTunnelConnection::HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred)
{
if (ecode)
2015-01-03 05:57:37 +03:00
{
2014-08-13 23:25:52 +04:00
LogPrint ("I2PTunnel read error: ", ecode.message ());
2014-10-09 03:44:12 +04:00
if (ecode != boost::asio::error::operation_aborted)
Terminate ();
2014-08-13 23:25:52 +04:00
}
else
2014-08-14 05:04:23 +04:00
{
2014-08-13 23:25:52 +04:00
if (m_Stream)
2015-04-10 01:40:23 +03:00
{
auto s = shared_from_this ();
m_Stream->AsyncSend (m_Buffer, bytes_transferred,
[s](const boost::system::error_code& ecode)
{
if (!ecode)
s->Receive ();
else
s->Terminate ();
});
}
2014-08-13 23:25:52 +04:00
}
}
void I2PTunnelConnection::HandleWrite (const boost::system::error_code& ecode)
{
2014-08-18 03:14:40 +04:00
if (ecode)
{
LogPrint ("I2PTunnel write error: ", ecode.message ());
2014-10-09 03:44:12 +04:00
if (ecode != boost::asio::error::operation_aborted)
Terminate ();
2014-08-18 03:14:40 +04:00
}
else
StreamReceive ();
2014-08-13 23:25:52 +04:00
}
void I2PTunnelConnection::StreamReceive ()
{
if (m_Stream)
m_Stream->AsyncReceive (boost::asio::buffer (m_StreamBuffer, I2P_TUNNEL_CONNECTION_BUFFER_SIZE),
2014-11-24 06:23:17 +03:00
std::bind (&I2PTunnelConnection::HandleStreamReceive, shared_from_this (),
std::placeholders::_1, std::placeholders::_2),
2014-08-13 23:25:52 +04:00
I2P_TUNNEL_CONNECTION_MAX_IDLE);
2014-08-13 05:14:19 +04:00
}
2014-08-13 23:25:52 +04:00
void I2PTunnelConnection::HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred)
{
if (ecode)
{
LogPrint ("I2PTunnel stream read error: ", ecode.message ());
2014-10-09 03:44:12 +04:00
if (ecode != boost::asio::error::operation_aborted)
Terminate ();
2014-08-13 23:25:52 +04:00
}
else
2015-06-02 20:03:22 +03:00
Write (m_StreamBuffer, bytes_transferred);
}
void I2PTunnelConnection::Write (const uint8_t * buf, size_t len)
{
m_Socket->async_send (boost::asio::buffer (buf, len),
std::bind (&I2PTunnelConnection::HandleWrite, shared_from_this (), std::placeholders::_1));
2014-08-13 23:25:52 +04:00
}
2014-08-20 23:03:10 +04:00
void I2PTunnelConnection::HandleConnect (const boost::system::error_code& ecode)
{
if (ecode)
{
LogPrint ("I2PTunnel connect error: ", ecode.message ());
2014-11-24 06:23:17 +03:00
Terminate ();
2014-08-20 23:03:10 +04:00
}
else
{
LogPrint ("I2PTunnel connected");
if (m_IsQuiet)
StreamReceive ();
else
{
// send destination first like received from I2P
std::string dest = m_Stream->GetRemoteIdentity ().ToBase64 ();
dest += "\n";
memcpy (m_StreamBuffer, dest.c_str (), dest.size ());
HandleStreamReceive (boost::system::error_code (), dest.size ());
}
2014-08-20 23:03:10 +04:00
Receive ();
}
}
2015-06-02 20:03:22 +03:00
I2PTunnelConnectionHTTP::I2PTunnelConnectionHTTP (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& host):
I2PTunnelConnection (owner, stream, socket, target), m_HeaderSent (false)
2015-06-02 20:03:22 +03:00
{
}
void I2PTunnelConnectionHTTP::Write (const uint8_t * buf, size_t len)
{
if (m_HeaderSent)
I2PTunnelConnection::Write (buf, len);
else
{
m_Header.write ((const char *)buf, len);
I2PTunnelConnection::Write ((uint8_t *)m_Header.str ().c_str (), m_Header.str ().length ());
m_HeaderSent = true;
}
}
/* This handler tries to stablish a connection with the desired server and dies if it fails to do so */
class I2PClientTunnelHandler: public I2PServiceHandler, public std::enable_shared_from_this<I2PClientTunnelHandler>
{
public:
I2PClientTunnelHandler (I2PClientTunnel * parent, i2p::data::IdentHash destination,
int destinationPort, std::shared_ptr<boost::asio::ip::tcp::socket> socket):
2015-03-13 20:29:27 +03:00
I2PServiceHandler(parent), m_DestinationIdentHash(destination),
m_DestinationPort (destinationPort), m_Socket(socket) {};
void Handle();
void Terminate();
private:
void HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream);
i2p::data::IdentHash m_DestinationIdentHash;
2015-03-13 20:29:27 +03:00
int m_DestinationPort;
std::shared_ptr<boost::asio::ip::tcp::socket> m_Socket;
};
void I2PClientTunnelHandler::Handle()
{
2015-03-13 20:29:27 +03:00
GetOwner()->GetLocalDestination ()->CreateStream (
std::bind (&I2PClientTunnelHandler::HandleStreamRequestComplete, shared_from_this(), std::placeholders::_1),
m_DestinationIdentHash, m_DestinationPort);
}
void I2PClientTunnelHandler::HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream)
{
if (stream)
{
if (Kill()) return;
LogPrint (eLogInfo,"New I2PTunnel connection");
auto connection = std::make_shared<I2PTunnelConnection>(GetOwner(), m_Socket, stream);
GetOwner()->AddHandler (connection);
connection->I2PConnect ();
Done(shared_from_this());
}
else
{
LogPrint (eLogError,"I2P Client Tunnel Issue when creating the stream, check the previous warnings for more info.");
Terminate();
}
}
void I2PClientTunnelHandler::Terminate()
{
if (Kill()) return;
if (m_Socket)
{
m_Socket->close();
m_Socket = nullptr;
}
Done(shared_from_this());
}
2015-03-13 20:29:27 +03:00
I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, std::shared_ptr<ClientDestination> localDestination, int destinationPort):
TCPIPAcceptor (port,localDestination), m_Destination (destination), m_DestinationIdentHash (nullptr), m_DestinationPort (destinationPort)
2015-01-08 05:49:35 +03:00
{}
2014-08-13 05:14:19 +04:00
2014-08-13 23:25:52 +04:00
void I2PClientTunnel::Start ()
{
TCPIPAcceptor::Start ();
GetIdentHash();
2014-08-13 23:25:52 +04:00
}
void I2PClientTunnel::Stop ()
{
2015-01-08 05:49:35 +03:00
TCPIPAcceptor::Stop();
2015-01-03 04:07:55 +03:00
auto *originalIdentHash = m_DestinationIdentHash;
2014-08-13 23:25:52 +04:00
m_DestinationIdentHash = nullptr;
2015-01-03 04:07:55 +03:00
delete originalIdentHash;
2014-08-13 23:25:52 +04:00
}
/* HACK: maybe we should create a caching IdentHash provider in AddressBook */
const i2p::data::IdentHash * I2PClientTunnel::GetIdentHash ()
{
if (!m_DestinationIdentHash)
{
i2p::data::IdentHash identHash;
if (i2p::client::context.GetAddressBook ().GetIdentHash (m_Destination, identHash))
m_DestinationIdentHash = new i2p::data::IdentHash (identHash);
else
LogPrint (eLogWarning,"Remote destination ", m_Destination, " not found");
}
return m_DestinationIdentHash;
}
std::shared_ptr<I2PServiceHandler> I2PClientTunnel::CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket)
2014-08-13 05:14:19 +04:00
{
2015-01-08 05:49:35 +03:00
const i2p::data::IdentHash *identHash = GetIdentHash();
if (identHash)
2015-03-13 20:29:27 +03:00
return std::make_shared<I2PClientTunnelHandler>(this, *identHash, m_DestinationPort, socket);
2014-08-13 05:14:19 +04:00
else
2015-01-08 05:49:35 +03:00
return nullptr;
2014-10-15 20:07:06 +04:00
}
I2PServerTunnel::I2PServerTunnel (const std::string& address, int port,
std::shared_ptr<ClientDestination> localDestination, int inport):
2015-06-02 20:03:22 +03:00
I2PService (localDestination), m_Address (address), m_Port (port), m_IsAccessList (false)
2014-08-20 23:03:10 +04:00
{
m_PortDestination = localDestination->CreateStreamingDestination (inport > 0 ? inport : port);
2014-08-20 23:03:10 +04:00
}
void I2PServerTunnel::Start ()
{
m_Endpoint.port (m_Port);
boost::system::error_code ec;
auto addr = boost::asio::ip::address::from_string (m_Address, ec);
if (!ec)
{
m_Endpoint.address (addr);
Accept ();
}
else
{
auto resolver = std::make_shared<boost::asio::ip::tcp::resolver>(GetService ());
resolver->async_resolve (boost::asio::ip::tcp::resolver::query (m_Address, ""),
std::bind (&I2PServerTunnel::HandleResolve, this,
std::placeholders::_1, std::placeholders::_2, resolver));
}
2014-08-20 23:03:10 +04:00
}
void I2PServerTunnel::Stop ()
{
ClearHandlers ();
2014-08-20 23:03:10 +04:00
}
void I2PServerTunnel::HandleResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
std::shared_ptr<boost::asio::ip::tcp::resolver> resolver)
{
if (!ecode)
{
auto addr = (*it).endpoint ().address ();
LogPrint (eLogInfo, "server tunnel ", (*it).host_name (), " has been resolved to ", addr);
m_Endpoint.address (addr);
Accept ();
}
else
LogPrint (eLogError, "Unable to resolve server tunnel address: ", ecode.message ());
}
2015-03-16 21:52:42 +03:00
void I2PServerTunnel::SetAccessList (const std::set<i2p::data::IdentHash>& accessList)
{
m_AccessList = accessList;
m_IsAccessList = true;
}
2014-08-20 23:03:10 +04:00
void I2PServerTunnel::Accept ()
{
if (m_PortDestination)
m_PortDestination->SetAcceptor (std::bind (&I2PServerTunnel::HandleAccept, this, std::placeholders::_1));
auto localDestination = GetLocalDestination ();
if (localDestination)
{
if (!localDestination->IsAcceptingStreams ()) // set it as default if not set yet
localDestination->AcceptStreams (std::bind (&I2PServerTunnel::HandleAccept, this, std::placeholders::_1));
}
else
LogPrint ("Local destination not set for server tunnel");
2014-08-20 23:03:10 +04:00
}
2014-11-23 19:33:58 +03:00
void I2PServerTunnel::HandleAccept (std::shared_ptr<i2p::stream::Stream> stream)
2014-08-20 23:03:10 +04:00
{
if (stream)
2014-11-24 06:23:17 +03:00
{
2015-03-16 21:52:42 +03:00
if (m_IsAccessList)
{
if (!m_AccessList.count (stream->GetRemoteIdentity ().GetIdentHash ()))
{
LogPrint (eLogWarning, "Address ", stream->GetRemoteIdentity ().GetIdentHash ().ToBase32 (), " is not in white list. Incoming connection dropped");
stream->Close ();
return;
}
}
2015-06-02 20:03:22 +03:00
CreateI2PConnection (stream);
2014-11-24 06:23:17 +03:00
}
2014-08-20 23:03:10 +04:00
}
2015-05-20 23:00:09 +03:00
2015-06-02 20:03:22 +03:00
void I2PServerTunnel::CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream)
{
auto conn = std::make_shared<I2PTunnelConnection> (this, stream, std::make_shared<boost::asio::ip::tcp::socket> (GetService ()), GetEndpoint ());
AddHandler (conn);
conn->Connect ();
}
I2PServerTunnelHTTP::I2PServerTunnelHTTP (const std::string& address, int port, std::shared_ptr<ClientDestination> localDestination, int inport):
I2PServerTunnel (address, port, localDestination, inport)
{
}
void I2PServerTunnelHTTP::CreateI2PConnection (std::shared_ptr<i2p::stream::Stream> stream)
2015-05-20 23:00:09 +03:00
{
2015-06-02 20:03:22 +03:00
auto conn = std::make_shared<I2PTunnelConnectionHTTP> (this, stream, std::make_shared<boost::asio::ip::tcp::socket> (GetService ()), GetEndpoint (), GetAddress ());
AddHandler (conn);
conn->Connect ();
2015-05-20 23:00:09 +03:00
}
2014-08-13 05:14:19 +04:00
}
}