i2pd/I2PTunnel.cpp

306 lines
8.1 KiB
C++
Raw Normal View History

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 (I2PTunnel * owner,
boost::asio::ip::tcp::socket * socket, const i2p::data::LeaseSet * leaseSet):
m_Socket (socket), m_Owner (owner), m_RemoteEndpoint (socket->remote_endpoint ()),
m_IsQuiet (true)
2014-08-13 05:14:19 +04:00
{
m_Stream = m_Owner->GetLocalDestination ()->CreateStream (*leaseSet);
2014-08-13 05:14:19 +04:00
}
2014-11-23 19:33:58 +03:00
I2PTunnelConnection::I2PTunnelConnection (I2PTunnel * owner, std::shared_ptr<i2p::stream::Stream> stream,
boost::asio::ip::tcp::socket * socket, const boost::asio::ip::tcp::endpoint& target, bool quiet):
m_Socket (socket), m_Stream (stream), m_Owner (owner), m_RemoteEndpoint (target), m_IsQuiet (quiet)
2014-08-20 23:03:10 +04:00
{
}
2014-08-13 05:14:19 +04:00
I2PTunnelConnection::~I2PTunnelConnection ()
{
delete m_Socket;
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
{
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 ()
{
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 ();
if (m_Owner)
2014-11-24 06:23:17 +03:00
m_Owner->RemoveConnection (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)
{
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)
2014-10-02 05:18:41 +04:00
m_Stream->Send (m_Buffer, bytes_transferred);
2014-08-13 23:25:52 +04:00
Receive ();
}
}
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
{
boost::asio::async_write (*m_Socket, boost::asio::buffer (m_StreamBuffer, bytes_transferred),
2014-11-24 06:23:17 +03:00
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 ();
}
}
I2PTunnel::I2PTunnel (ClientDestination * localDestination) :
m_LocalDestination (localDestination ? localDestination :
i2p::client::context.CreateNewLocalDestination (false, I2P_TUNNEL_DEFAULT_KEY_TYPE))
{
}
2014-11-24 06:23:17 +03:00
void I2PTunnel::AddConnection (std::shared_ptr<I2PTunnelConnection> conn)
{
m_Connections.insert (conn);
}
2014-11-24 06:23:17 +03:00
void I2PTunnel::RemoveConnection (std::shared_ptr<I2PTunnelConnection> conn)
{
m_Connections.erase (conn);
}
void I2PTunnel::ClearConnections ()
{
m_Connections.clear ();
}
I2PClientTunnel::I2PClientTunnel (const std::string& destination, int port, ClientDestination * localDestination):
I2PTunnel (localDestination),
m_Acceptor (GetService (), boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)),
m_Timer (GetService ()), m_Destination (destination), m_DestinationIdentHash (nullptr),
2014-10-15 20:07:06 +04:00
m_RemoteLeaseSet (nullptr)
2014-08-13 05:14:19 +04:00
{
}
2014-08-13 23:25:52 +04:00
I2PClientTunnel::~I2PClientTunnel ()
{
Stop ();
}
2014-08-13 05:14:19 +04:00
2014-08-13 23:25:52 +04:00
void I2PClientTunnel::Start ()
{
GetIdentHash();
2014-08-13 23:25:52 +04:00
m_Acceptor.listen ();
Accept ();
}
void I2PClientTunnel::Stop ()
{
m_Acceptor.close();
2014-10-15 20:07:06 +04:00
m_Timer.cancel ();
ClearConnections ();
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 ("Remote destination ", m_Destination, " not found");
}
return m_DestinationIdentHash;
}
2014-08-13 05:14:19 +04:00
void I2PClientTunnel::Accept ()
{
auto newSocket = new boost::asio::ip::tcp::socket (GetService ());
2014-11-24 06:23:17 +03:00
m_Acceptor.async_accept (*newSocket, std::bind (&I2PClientTunnel::HandleAccept, this,
std::placeholders::_1, newSocket));
2014-08-13 05:14:19 +04:00
}
void I2PClientTunnel::HandleAccept (const boost::system::error_code& ecode, boost::asio::ip::tcp::socket * socket)
{
if (!ecode)
{
const i2p::data::IdentHash *identHash = GetIdentHash();
if (identHash)
2014-10-15 20:30:20 +04:00
{
// try to get a LeaseSet
m_RemoteLeaseSet = GetLocalDestination ()->FindLeaseSet (*identHash);
2014-10-15 20:30:20 +04:00
if (m_RemoteLeaseSet && m_RemoteLeaseSet->HasNonExpiredLeases ())
CreateConnection (socket);
else
{
GetLocalDestination ()->RequestDestination (*identHash,
2014-12-27 18:09:55 +03:00
std::bind (&I2PClientTunnel::HandleLeaseSetRequestComplete,
2014-11-24 06:23:17 +03:00
this, std::placeholders::_1, socket));
}
}
2014-08-13 05:14:19 +04:00
else
2014-10-15 20:30:20 +04:00
delete socket;
2014-08-13 05:14:19 +04:00
Accept ();
}
else
delete socket;
}
2014-08-20 23:03:10 +04:00
2014-12-27 18:09:55 +03:00
void I2PClientTunnel::HandleLeaseSetRequestComplete (bool success, boost::asio::ip::tcp::socket * socket)
2014-10-15 20:07:06 +04:00
{
2014-12-27 18:09:55 +03:00
if (success)
2014-10-15 20:07:06 +04:00
{
const i2p::data::IdentHash *identHash = GetIdentHash();
if (identHash)
2014-10-15 20:07:06 +04:00
{
m_RemoteLeaseSet = GetLocalDestination ()->FindLeaseSet (*identHash);
2014-10-15 20:07:06 +04:00
CreateConnection (socket);
return;
}
}
delete socket;
}
void I2PClientTunnel::CreateConnection (boost::asio::ip::tcp::socket * socket)
{
if (m_RemoteLeaseSet) // leaseSet found
{
LogPrint ("New I2PTunnel connection");
2014-11-24 06:23:17 +03:00
auto connection = std::make_shared<I2PTunnelConnection>(this, socket, m_RemoteLeaseSet);
2014-10-15 20:07:06 +04:00
AddConnection (connection);
2014-11-24 06:23:17 +03:00
connection->I2PConnect ();
2014-10-15 20:07:06 +04:00
}
else
{
LogPrint ("LeaseSet for I2PTunnel destination not found");
delete socket;
}
}
I2PServerTunnel::I2PServerTunnel (const std::string& address, int port, ClientDestination * localDestination):
I2PTunnel (localDestination), m_Endpoint (boost::asio::ip::address::from_string (address), port)
2014-08-20 23:03:10 +04:00
{
}
void I2PServerTunnel::Start ()
{
Accept ();
}
void I2PServerTunnel::Stop ()
{
ClearConnections ();
2014-08-20 23:03:10 +04:00
}
void I2PServerTunnel::Accept ()
{
auto localDestination = GetLocalDestination ();
if (localDestination)
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
{
auto conn = std::make_shared<I2PTunnelConnection> (this, stream, new boost::asio::ip::tcp::socket (GetService ()), m_Endpoint);
AddConnection (conn);
conn->Connect ();
}
2014-08-20 23:03:10 +04:00
}
2014-08-13 05:14:19 +04:00
}
}