2014-08-13 01:14:19 +00:00
|
|
|
#include <boost/bind.hpp>
|
2014-08-13 19:25:52 +00:00
|
|
|
#include "base64.h"
|
|
|
|
#include "Log.h"
|
|
|
|
#include "NetDb.h"
|
2014-10-05 12:54:59 +00:00
|
|
|
#include "Destination.h"
|
2014-10-16 00:52:17 +00:00
|
|
|
#include "ClientContext.h"
|
2014-08-13 01:14:19 +00:00
|
|
|
#include "I2PTunnel.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-10-16 14:28:44 +00:00
|
|
|
namespace client
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
2014-09-10 02:40:12 +00:00
|
|
|
I2PTunnelConnection::I2PTunnelConnection (I2PTunnel * owner,
|
|
|
|
boost::asio::ip::tcp::socket * socket, const i2p::data::LeaseSet * leaseSet):
|
|
|
|
m_Socket (socket), m_Owner (owner)
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
2014-10-01 14:58:28 +00:00
|
|
|
m_Stream = m_Owner->GetLocalDestination ()->CreateNewOutgoingStream (*leaseSet);
|
2014-10-02 01:18:41 +00:00
|
|
|
m_Stream->Send (m_Buffer, 0); // connect
|
2014-08-13 19:25:52 +00:00
|
|
|
StreamReceive ();
|
|
|
|
Receive ();
|
2014-08-13 01:14:19 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 14:28:44 +00:00
|
|
|
I2PTunnelConnection::I2PTunnelConnection (I2PTunnel * owner, i2p::stream::Stream * stream,
|
2014-09-10 02:40:12 +00:00
|
|
|
boost::asio::ip::tcp::socket * socket, const boost::asio::ip::tcp::endpoint& target):
|
|
|
|
m_Socket (socket), m_Stream (stream), m_Owner (owner)
|
2014-08-20 19:03:10 +00:00
|
|
|
{
|
|
|
|
if (m_Socket)
|
|
|
|
m_Socket->async_connect (target, boost::bind (&I2PTunnelConnection::HandleConnect,
|
|
|
|
this, boost::asio::placeholders::error));
|
|
|
|
}
|
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
I2PTunnelConnection::~I2PTunnelConnection ()
|
|
|
|
{
|
|
|
|
delete m_Socket;
|
2014-08-14 01:04:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnelConnection::Terminate ()
|
|
|
|
{
|
2014-10-08 23:44:12 +00:00
|
|
|
if (m_Stream)
|
|
|
|
{
|
|
|
|
m_Stream->Close ();
|
2014-10-15 22:24:40 +00:00
|
|
|
m_Owner->GetLocalDestination ()->DeleteStream (m_Stream);
|
2014-10-08 23:44:12 +00:00
|
|
|
m_Stream = nullptr;
|
|
|
|
}
|
2014-08-17 23:14:40 +00:00
|
|
|
m_Socket->close ();
|
2014-09-10 02:40:12 +00:00
|
|
|
if (m_Owner)
|
|
|
|
m_Owner->RemoveConnection (this);
|
2014-10-15 00:52:40 +00:00
|
|
|
//delete this;
|
2014-08-13 19:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnelConnection::Receive ()
|
|
|
|
{
|
|
|
|
m_Socket->async_read_some (boost::asio::buffer(m_Buffer, I2P_TUNNEL_CONNECTION_BUFFER_SIZE),
|
|
|
|
boost::bind(&I2PTunnelConnection::HandleReceived, this,
|
|
|
|
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnelConnection::HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
|
|
|
LogPrint ("I2PTunnel read error: ", ecode.message ());
|
2014-10-08 23:44:12 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
2014-08-13 19:25:52 +00:00
|
|
|
}
|
|
|
|
else
|
2014-08-14 01:04:23 +00:00
|
|
|
{
|
2014-08-13 19:25:52 +00:00
|
|
|
if (m_Stream)
|
2014-10-02 01:18:41 +00:00
|
|
|
m_Stream->Send (m_Buffer, bytes_transferred);
|
2014-08-13 19:25:52 +00:00
|
|
|
Receive ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnelConnection::HandleWrite (const boost::system::error_code& ecode)
|
|
|
|
{
|
2014-08-17 23:14:40 +00:00
|
|
|
if (ecode)
|
|
|
|
{
|
|
|
|
LogPrint ("I2PTunnel write error: ", ecode.message ());
|
2014-10-08 23:44:12 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
2014-08-17 23:14:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
StreamReceive ();
|
2014-08-13 19:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnelConnection::StreamReceive ()
|
|
|
|
{
|
|
|
|
if (m_Stream)
|
|
|
|
m_Stream->AsyncReceive (boost::asio::buffer (m_StreamBuffer, I2P_TUNNEL_CONNECTION_BUFFER_SIZE),
|
|
|
|
boost::bind (&I2PTunnelConnection::HandleStreamReceive, this,
|
|
|
|
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred),
|
|
|
|
I2P_TUNNEL_CONNECTION_MAX_IDLE);
|
2014-08-13 01:14:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-13 19:25:52 +00: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-08 23:44:12 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
2014-08-13 19:25:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
boost::asio::async_write (*m_Socket, boost::asio::buffer (m_StreamBuffer, bytes_transferred),
|
|
|
|
boost::bind (&I2PTunnelConnection::HandleWrite, this, boost::asio::placeholders::error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-20 19:03:10 +00:00
|
|
|
void I2PTunnelConnection::HandleConnect (const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
|
|
|
LogPrint ("I2PTunnel connect error: ", ecode.message ());
|
2014-10-08 23:44:12 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
{
|
|
|
|
if (m_Stream) m_Stream->Close ();
|
2014-10-15 22:24:40 +00:00
|
|
|
m_Owner->GetLocalDestination ()->DeleteStream (m_Stream);
|
2014-10-08 23:44:12 +00:00
|
|
|
m_Stream = nullptr;
|
|
|
|
}
|
2014-08-20 19:03:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint ("I2PTunnel connected");
|
|
|
|
StreamReceive ();
|
|
|
|
Receive ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-10 02:40:12 +00:00
|
|
|
void I2PTunnel::AddConnection (I2PTunnelConnection * conn)
|
|
|
|
{
|
|
|
|
m_Connections.insert (conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnel::RemoveConnection (I2PTunnelConnection * conn)
|
|
|
|
{
|
|
|
|
m_Connections.erase (conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PTunnel::ClearConnections ()
|
|
|
|
{
|
|
|
|
for (auto it: m_Connections)
|
|
|
|
delete it;
|
|
|
|
m_Connections.clear ();
|
|
|
|
}
|
|
|
|
|
2014-10-01 14:58:28 +00:00
|
|
|
I2PClientTunnel::I2PClientTunnel (boost::asio::io_service& service, const std::string& destination,
|
2014-10-16 14:28:44 +00:00
|
|
|
int port, i2p::stream::StreamingDestination * localDestination):
|
2014-10-15 18:32:19 +00:00
|
|
|
I2PTunnel (service, localDestination ? localDestination :
|
2014-10-16 14:28:44 +00:00
|
|
|
i2p::client::context.CreateNewLocalDestination (false, i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA256_P256)),
|
2014-10-01 14:58:28 +00:00
|
|
|
m_Acceptor (service, boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port)),
|
2014-10-15 16:07:06 +00:00
|
|
|
m_Timer (service), m_Destination (destination), m_DestinationIdentHash (nullptr),
|
|
|
|
m_RemoteLeaseSet (nullptr)
|
2014-08-13 01:14:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-13 19:25:52 +00:00
|
|
|
I2PClientTunnel::~I2PClientTunnel ()
|
|
|
|
{
|
|
|
|
Stop ();
|
|
|
|
}
|
2014-08-13 01:14:19 +00:00
|
|
|
|
2014-08-13 19:25:52 +00:00
|
|
|
void I2PClientTunnel::Start ()
|
|
|
|
{
|
2014-10-03 18:22:32 +00:00
|
|
|
i2p::data::IdentHash identHash;
|
|
|
|
if (i2p::data::netdb.GetAddressBook ().GetIdentHash (m_Destination, identHash))
|
|
|
|
m_DestinationIdentHash = new i2p::data::IdentHash (identHash);
|
2014-10-15 16:07:06 +00:00
|
|
|
if (!m_DestinationIdentHash)
|
2014-08-13 19:25:52 +00:00
|
|
|
LogPrint ("I2PTunnel unknown destination ", m_Destination);
|
|
|
|
m_Acceptor.listen ();
|
|
|
|
Accept ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PClientTunnel::Stop ()
|
|
|
|
{
|
|
|
|
m_Acceptor.close();
|
2014-10-15 16:07:06 +00:00
|
|
|
m_Timer.cancel ();
|
2014-09-10 02:40:12 +00:00
|
|
|
ClearConnections ();
|
2014-08-13 19:25:52 +00:00
|
|
|
m_DestinationIdentHash = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
void I2PClientTunnel::Accept ()
|
|
|
|
{
|
2014-09-10 02:40:12 +00:00
|
|
|
auto newSocket = new boost::asio::ip::tcp::socket (GetService ());
|
2014-08-13 01:14:19 +00:00
|
|
|
m_Acceptor.async_accept (*newSocket, boost::bind (&I2PClientTunnel::HandleAccept, this,
|
|
|
|
boost::asio::placeholders::error, newSocket));
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PClientTunnel::HandleAccept (const boost::system::error_code& ecode, boost::asio::ip::tcp::socket * socket)
|
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
{
|
2014-10-15 16:30:20 +00:00
|
|
|
if (!m_DestinationIdentHash)
|
2014-08-14 18:32:00 +00:00
|
|
|
{
|
2014-10-15 16:30:20 +00:00
|
|
|
i2p::data::IdentHash identHash;
|
|
|
|
if (i2p::data::netdb.GetAddressBook ().GetIdentHash (m_Destination, identHash))
|
|
|
|
m_DestinationIdentHash = new i2p::data::IdentHash (identHash);
|
|
|
|
}
|
|
|
|
if (m_DestinationIdentHash)
|
|
|
|
{
|
|
|
|
// try to get a LeaseSet
|
|
|
|
m_RemoteLeaseSet = GetLocalDestination ()->FindLeaseSet (*m_DestinationIdentHash);
|
|
|
|
if (m_RemoteLeaseSet && m_RemoteLeaseSet->HasNonExpiredLeases ())
|
|
|
|
CreateConnection (socket);
|
2014-08-14 18:32:00 +00:00
|
|
|
else
|
|
|
|
{
|
2014-10-15 16:45:32 +00:00
|
|
|
i2p::data::netdb.RequestDestination (*m_DestinationIdentHash, true, GetLocalDestination ()->GetTunnelPool ());
|
2014-10-15 16:30:20 +00:00
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds (I2P_TUNNEL_DESTINATION_REQUEST_TIMEOUT));
|
|
|
|
m_Timer.async_wait (boost::bind (&I2PClientTunnel::HandleDestinationRequestTimer,
|
|
|
|
this, boost::asio::placeholders::error, socket));
|
2014-08-14 18:32:00 +00:00
|
|
|
}
|
2014-10-15 16:30:20 +00:00
|
|
|
}
|
2014-08-13 01:14:19 +00:00
|
|
|
else
|
2014-10-15 16:30:20 +00:00
|
|
|
{
|
|
|
|
LogPrint ("Remote destination ", m_Destination, " not found");
|
|
|
|
delete socket;
|
|
|
|
}
|
|
|
|
|
2014-08-13 01:14:19 +00:00
|
|
|
Accept ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
delete socket;
|
|
|
|
}
|
2014-08-20 19:03:10 +00:00
|
|
|
|
2014-10-15 16:07:06 +00:00
|
|
|
void I2PClientTunnel::HandleDestinationRequestTimer (const boost::system::error_code& ecode, boost::asio::ip::tcp::socket * socket)
|
|
|
|
{
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
{
|
|
|
|
if (m_DestinationIdentHash)
|
|
|
|
{
|
|
|
|
m_RemoteLeaseSet = GetLocalDestination ()->FindLeaseSet (*m_DestinationIdentHash);
|
|
|
|
CreateConnection (socket);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete socket;
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PClientTunnel::CreateConnection (boost::asio::ip::tcp::socket * socket)
|
|
|
|
{
|
|
|
|
if (m_RemoteLeaseSet) // leaseSet found
|
|
|
|
{
|
|
|
|
LogPrint ("New I2PTunnel connection");
|
|
|
|
auto connection = new I2PTunnelConnection (this, socket, m_RemoteLeaseSet);
|
|
|
|
AddConnection (connection);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint ("LeaseSet for I2PTunnel destination not found");
|
|
|
|
delete socket;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-20 19:03:10 +00:00
|
|
|
I2PServerTunnel::I2PServerTunnel (boost::asio::io_service& service, const std::string& address, int port,
|
2014-10-16 14:28:44 +00:00
|
|
|
i2p::stream::StreamingDestination * localDestination): I2PTunnel (service, localDestination),
|
2014-08-20 19:03:10 +00:00
|
|
|
m_Endpoint (boost::asio::ip::address::from_string (address), port)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PServerTunnel::Start ()
|
|
|
|
{
|
|
|
|
Accept ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void I2PServerTunnel::Stop ()
|
|
|
|
{
|
2014-09-10 02:40:12 +00:00
|
|
|
ClearConnections ();
|
2014-08-20 19:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I2PServerTunnel::Accept ()
|
|
|
|
{
|
2014-10-01 14:58:28 +00:00
|
|
|
auto localDestination = GetLocalDestination ();
|
|
|
|
if (localDestination)
|
|
|
|
localDestination->SetAcceptor (std::bind (&I2PServerTunnel::HandleAccept, this, std::placeholders::_1));
|
|
|
|
else
|
|
|
|
LogPrint ("Local destination not set for server tunnel");
|
2014-08-20 19:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I2PServerTunnel::HandleAccept (i2p::stream::Stream * stream)
|
|
|
|
{
|
|
|
|
if (stream)
|
2014-09-10 02:40:12 +00:00
|
|
|
new I2PTunnelConnection (this, stream, new boost::asio::ip::tcp::socket (GetService ()), m_Endpoint);
|
2014-08-20 19:03:10 +00:00
|
|
|
}
|
2014-08-13 01:14:19 +00:00
|
|
|
}
|
|
|
|
}
|