2014-09-24 18:59:03 +00:00
|
|
|
#include <string.h>
|
2014-09-30 15:08:38 +00:00
|
|
|
#include <stdio.h>
|
2014-10-27 21:53:01 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Base.h"
|
2014-09-25 17:58:09 +00:00
|
|
|
#include "Identity.h"
|
2014-09-24 16:01:26 +00:00
|
|
|
#include "Log.h"
|
2014-10-05 12:54:59 +00:00
|
|
|
#include "Destination.h"
|
2014-10-16 00:52:17 +00:00
|
|
|
#include "ClientContext.h"
|
2016-11-04 01:31:21 +00:00
|
|
|
#include "util.h"
|
2014-09-24 16:01:26 +00:00
|
|
|
#include "SAM.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-10-16 14:28:44 +00:00
|
|
|
namespace client
|
2014-09-24 16:01:26 +00:00
|
|
|
{
|
2014-09-24 18:59:03 +00:00
|
|
|
SAMSocket::SAMSocket (SAMBridge& owner):
|
2014-10-02 16:42:28 +00:00
|
|
|
m_Owner (owner), m_Socket (m_Owner.GetService ()), m_Timer (m_Owner.GetService ()),
|
2015-03-27 18:02:27 +00:00
|
|
|
m_BufferOffset (0), m_SocketType (eSAMSocketTypeUnknown), m_IsSilent (false),
|
|
|
|
m_Stream (nullptr), m_Session (nullptr)
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SAMSocket::~SAMSocket ()
|
|
|
|
{
|
2014-11-23 02:56:59 +00:00
|
|
|
Terminate ();
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-23 02:56:59 +00:00
|
|
|
void SAMSocket::CloseStream ()
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
|
|
|
if (m_Stream)
|
2014-11-23 02:56:59 +00:00
|
|
|
{
|
2014-09-24 18:59:03 +00:00
|
|
|
m_Stream->Close ();
|
2014-11-23 16:33:58 +00:00
|
|
|
m_Stream.reset ();
|
2014-11-23 02:56:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::Terminate ()
|
|
|
|
{
|
|
|
|
CloseStream ();
|
2014-11-22 21:35:58 +00:00
|
|
|
|
2014-09-26 19:40:57 +00:00
|
|
|
switch (m_SocketType)
|
2014-09-25 17:58:09 +00:00
|
|
|
{
|
2014-09-26 19:40:57 +00:00
|
|
|
case eSAMSocketTypeSession:
|
|
|
|
m_Owner.CloseSession (m_ID);
|
|
|
|
break;
|
|
|
|
case eSAMSocketTypeStream:
|
|
|
|
{
|
2016-04-03 02:16:49 +00:00
|
|
|
if (m_Session)
|
2016-04-01 15:36:56 +00:00
|
|
|
m_Session->DelSocket (shared_from_this ());
|
2014-09-26 19:40:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case eSAMSocketTypeAcceptor:
|
|
|
|
{
|
2014-11-23 02:56:59 +00:00
|
|
|
if (m_Session)
|
2016-04-03 02:16:49 +00:00
|
|
|
{
|
2016-04-01 15:36:56 +00:00
|
|
|
m_Session->DelSocket (shared_from_this ());
|
2016-04-02 12:05:14 +00:00
|
|
|
if (m_Session->localDestination)
|
|
|
|
m_Session->localDestination->StopAcceptingStreams ();
|
2014-09-26 19:40:57 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
;
|
2014-09-25 17:58:09 +00:00
|
|
|
}
|
2014-11-23 02:56:59 +00:00
|
|
|
m_SocketType = eSAMSocketTypeTerminated;
|
2016-04-01 15:36:56 +00:00
|
|
|
if (m_Socket.is_open()) m_Socket.close ();
|
2016-04-03 02:16:49 +00:00
|
|
|
m_Session = nullptr;
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::ReceiveHandshake ()
|
|
|
|
{
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE),
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind(&SAMSocket::HandleHandshakeReceived, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2));
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::HandleHandshakeReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: handshake read error: ", ecode.message ());
|
2014-09-24 18:59:03 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Buffer[bytes_transferred] = 0;
|
2015-06-15 21:55:21 +00:00
|
|
|
char * eol = (char *)memchr (m_Buffer, '\n', bytes_transferred);
|
|
|
|
if (eol)
|
|
|
|
*eol = 0;
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: handshake ", m_Buffer);
|
2014-12-16 20:54:02 +00:00
|
|
|
char * separator = strchr (m_Buffer, ' ');
|
|
|
|
if (separator)
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
2014-12-16 20:54:02 +00:00
|
|
|
separator = strchr (separator + 1, ' ');
|
|
|
|
if (separator)
|
|
|
|
*separator = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp (m_Buffer, SAM_HANDSHAKE))
|
|
|
|
{
|
|
|
|
std::string version("3.0");
|
|
|
|
// try to find MIN and MAX, 3.0 if not found
|
|
|
|
if (separator)
|
|
|
|
{
|
|
|
|
separator++;
|
|
|
|
std::map<std::string, std::string> params;
|
2015-03-27 01:23:59 +00:00
|
|
|
ExtractParams (separator, params);
|
2014-12-16 20:54:02 +00:00
|
|
|
auto it = params.find (SAM_PARAM_MAX);
|
|
|
|
// TODO: check MIN as well
|
|
|
|
if (it != params.end ())
|
|
|
|
version = it->second;
|
|
|
|
}
|
|
|
|
if (version[0] == '3') // we support v3 (3.0 and 3.1) only
|
|
|
|
{
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
size_t l = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_HANDSHAKE_REPLY, version.c_str ());
|
|
|
|
#else
|
|
|
|
size_t l = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_HANDSHAKE_REPLY, version.c_str ());
|
|
|
|
#endif
|
2014-12-17 00:04:13 +00:00
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_Buffer, l), boost::asio::transfer_all (),
|
|
|
|
std::bind(&SAMSocket::HandleHandshakeReplySent, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2));
|
2014-12-16 20:54:02 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
SendMessageReply (SAM_HANDSHAKE_I2P_ERROR, strlen (SAM_HANDSHAKE_I2P_ERROR), true);
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: handshake mismatch");
|
2014-09-24 18:59:03 +00:00
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::HandleHandshakeReplySent (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: handshake reply send error: ", ecode.message ());
|
2014-09-24 18:59:03 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
else
|
2014-09-25 17:22:25 +00:00
|
|
|
{
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE),
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind(&SAMSocket::HandleMessage, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2));
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::SendMessageReply (const char * msg, size_t len, bool close)
|
|
|
|
{
|
2015-02-01 02:49:54 +00:00
|
|
|
if (!m_IsSilent)
|
2014-09-29 18:18:06 +00:00
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (msg, len), boost::asio::transfer_all (),
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind(&SAMSocket::HandleMessageReplySent, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2, close));
|
2014-09-29 18:18:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (close)
|
|
|
|
Terminate ();
|
|
|
|
else
|
|
|
|
Receive ();
|
|
|
|
}
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::HandleMessageReplySent (const boost::system::error_code& ecode, std::size_t bytes_transferred, bool close)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: reply send error: ", ecode.message ());
|
2014-09-25 17:22:25 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (close)
|
|
|
|
Terminate ();
|
|
|
|
else
|
|
|
|
Receive ();
|
|
|
|
}
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
2014-09-25 17:22:25 +00:00
|
|
|
void SAMSocket::HandleMessage (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: read error: ", ecode.message ());
|
2014-09-25 17:22:25 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
2015-11-03 14:15:49 +00:00
|
|
|
else if (m_SocketType == eSAMSocketTypeStream)
|
|
|
|
HandleReceived (ecode, bytes_transferred);
|
2014-09-25 17:22:25 +00:00
|
|
|
else
|
|
|
|
{
|
2015-03-27 18:02:27 +00:00
|
|
|
bytes_transferred += m_BufferOffset;
|
|
|
|
m_BufferOffset = 0;
|
2014-09-25 17:22:25 +00:00
|
|
|
m_Buffer[bytes_transferred] = 0;
|
2015-03-27 19:22:56 +00:00
|
|
|
char * eol = (char *)memchr (m_Buffer, '\n', bytes_transferred);
|
2014-09-25 17:22:25 +00:00
|
|
|
if (eol)
|
|
|
|
{
|
|
|
|
*eol = 0;
|
2014-09-28 13:05:37 +00:00
|
|
|
char * separator = strchr (m_Buffer, ' ');
|
|
|
|
if (separator)
|
2014-09-30 15:08:38 +00:00
|
|
|
{
|
|
|
|
separator = strchr (separator + 1, ' ');
|
|
|
|
if (separator)
|
|
|
|
*separator = 0;
|
|
|
|
else
|
|
|
|
separator = eol;
|
|
|
|
|
2014-09-28 13:05:37 +00:00
|
|
|
if (!strcmp (m_Buffer, SAM_SESSION_CREATE))
|
|
|
|
ProcessSessionCreate (separator + 1, bytes_transferred - (separator - m_Buffer) - 1);
|
|
|
|
else if (!strcmp (m_Buffer, SAM_STREAM_CONNECT))
|
|
|
|
ProcessStreamConnect (separator + 1, bytes_transferred - (separator - m_Buffer) - 1);
|
|
|
|
else if (!strcmp (m_Buffer, SAM_STREAM_ACCEPT))
|
|
|
|
ProcessStreamAccept (separator + 1, bytes_transferred - (separator - m_Buffer) - 1);
|
2014-09-30 15:08:38 +00:00
|
|
|
else if (!strcmp (m_Buffer, SAM_DEST_GENERATE))
|
|
|
|
ProcessDestGenerate ();
|
2014-10-02 20:55:01 +00:00
|
|
|
else if (!strcmp (m_Buffer, SAM_NAMING_LOOKUP))
|
|
|
|
ProcessNamingLookup (separator + 1, bytes_transferred - (separator - m_Buffer) - 1);
|
2015-03-27 18:02:27 +00:00
|
|
|
else if (!strcmp (m_Buffer, SAM_DATAGRAM_SEND))
|
|
|
|
{
|
2015-03-27 20:31:53 +00:00
|
|
|
size_t len = bytes_transferred - (separator - m_Buffer) - 1;
|
|
|
|
size_t processed = ProcessDatagramSend (separator + 1, len, eol + 1);
|
|
|
|
if (processed < len)
|
2015-03-27 18:02:27 +00:00
|
|
|
{
|
2015-03-27 20:31:53 +00:00
|
|
|
m_BufferOffset = len - processed;
|
2015-03-27 18:36:54 +00:00
|
|
|
if (processed > 0)
|
2015-03-27 20:31:53 +00:00
|
|
|
memmove (m_Buffer, separator + 1 + processed, m_BufferOffset);
|
2015-03-27 19:29:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// restore string back
|
|
|
|
*separator = ' ';
|
|
|
|
*eol = '\n';
|
|
|
|
}
|
2015-03-27 18:02:27 +00:00
|
|
|
}
|
|
|
|
// since it's SAM v1 reply is not expected
|
|
|
|
Receive ();
|
|
|
|
}
|
2014-09-28 13:05:37 +00:00
|
|
|
else
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: unexpected message ", m_Buffer);
|
2014-09-28 13:05:37 +00:00
|
|
|
Terminate ();
|
|
|
|
}
|
2014-09-30 15:08:38 +00:00
|
|
|
}
|
2014-09-28 13:05:37 +00:00
|
|
|
else
|
2014-09-30 15:08:38 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: malformed message ", m_Buffer);
|
2014-09-25 17:22:25 +00:00
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogWarning, "SAM: incomplete message ", bytes_transferred);
|
2015-03-27 18:58:26 +00:00
|
|
|
m_BufferOffset = bytes_transferred;
|
|
|
|
// try to receive remaining message
|
|
|
|
Receive ();
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::ProcessSessionCreate (char * buf, size_t len)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: session create: ", buf);
|
2014-09-25 17:22:25 +00:00
|
|
|
std::map<std::string, std::string> params;
|
2015-03-27 01:23:59 +00:00
|
|
|
ExtractParams (buf, params);
|
2014-10-22 20:42:26 +00:00
|
|
|
std::string& style = params[SAM_PARAM_STYLE];
|
2014-09-25 17:22:25 +00:00
|
|
|
std::string& id = params[SAM_PARAM_ID];
|
|
|
|
std::string& destination = params[SAM_PARAM_DESTINATION];
|
2014-12-16 21:23:42 +00:00
|
|
|
m_ID = id;
|
2014-10-01 18:52:32 +00:00
|
|
|
if (m_Owner.FindSession (id))
|
|
|
|
{
|
|
|
|
// session exists
|
|
|
|
SendMessageReply (SAM_SESSION_CREATE_DUPLICATED_ID, strlen(SAM_SESSION_CREATE_DUPLICATED_ID), true);
|
|
|
|
return;
|
|
|
|
}
|
2014-12-16 21:23:42 +00:00
|
|
|
|
|
|
|
// create destination
|
2014-11-30 15:51:22 +00:00
|
|
|
m_Session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination, ¶ms);
|
2014-10-03 01:40:15 +00:00
|
|
|
if (m_Session)
|
2014-09-25 17:22:25 +00:00
|
|
|
{
|
2014-09-25 17:58:09 +00:00
|
|
|
m_SocketType = eSAMSocketTypeSession;
|
2015-03-26 15:15:29 +00:00
|
|
|
if (style == SAM_VALUE_DATAGRAM)
|
2014-10-22 20:42:26 +00:00
|
|
|
{
|
2015-03-26 15:15:29 +00:00
|
|
|
auto dest = m_Session->localDestination->CreateDatagramDestination ();
|
|
|
|
dest->SetReceiver (std::bind (&SAMSocket::HandleI2PDatagramReceive, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5));
|
2014-10-22 20:42:26 +00:00
|
|
|
}
|
2015-03-26 15:15:29 +00:00
|
|
|
|
|
|
|
if (m_Session->localDestination->IsReady ())
|
|
|
|
SendSessionCreateReplyOk ();
|
2014-10-16 20:36:12 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SAM_SESSION_READINESS_CHECK_INTERVAL));
|
2014-11-23 22:00:45 +00:00
|
|
|
m_Timer.async_wait (std::bind (&SAMSocket::HandleSessionReadinessCheckTimer,
|
|
|
|
shared_from_this (), std::placeholders::_1));
|
2014-10-16 20:36:12 +00:00
|
|
|
}
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
else
|
2014-10-01 18:52:32 +00:00
|
|
|
SendMessageReply (SAM_SESSION_CREATE_DUPLICATED_DEST, strlen(SAM_SESSION_CREATE_DUPLICATED_DEST), true);
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 20:36:12 +00:00
|
|
|
void SAMSocket::HandleSessionReadinessCheckTimer (const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
{
|
|
|
|
if (m_Session->localDestination->IsReady ())
|
|
|
|
SendSessionCreateReplyOk ();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Timer.expires_from_now (boost::posix_time::seconds(SAM_SESSION_READINESS_CHECK_INTERVAL));
|
2014-11-23 22:00:45 +00:00
|
|
|
m_Timer.async_wait (std::bind (&SAMSocket::HandleSessionReadinessCheckTimer,
|
|
|
|
shared_from_this (), std::placeholders::_1));
|
2014-10-16 20:36:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::SendSessionCreateReplyOk ()
|
|
|
|
{
|
|
|
|
uint8_t buf[1024];
|
|
|
|
char priv[1024];
|
|
|
|
size_t l = m_Session->localDestination->GetPrivateKeys ().ToBuffer (buf, 1024);
|
|
|
|
size_t l1 = i2p::data::ByteStreamToBase64 (buf, l, priv, 1024);
|
|
|
|
priv[l1] = 0;
|
2014-10-27 21:53:01 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
size_t l2 = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_SESSION_CREATE_REPLY_OK, priv);
|
2014-10-23 23:04:46 +00:00
|
|
|
#else
|
2014-10-16 20:36:12 +00:00
|
|
|
size_t l2 = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_SESSION_CREATE_REPLY_OK, priv);
|
2014-10-27 21:53:01 +00:00
|
|
|
#endif
|
2014-10-16 20:36:12 +00:00
|
|
|
SendMessageReply (m_Buffer, l2, false);
|
|
|
|
}
|
|
|
|
|
2014-09-25 17:22:25 +00:00
|
|
|
void SAMSocket::ProcessStreamConnect (char * buf, size_t len)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: stream connect: ", buf);
|
2014-09-25 17:58:09 +00:00
|
|
|
std::map<std::string, std::string> params;
|
2015-03-27 01:23:59 +00:00
|
|
|
ExtractParams (buf, params);
|
2014-09-25 17:58:09 +00:00
|
|
|
std::string& id = params[SAM_PARAM_ID];
|
|
|
|
std::string& destination = params[SAM_PARAM_DESTINATION];
|
2014-09-29 18:18:06 +00:00
|
|
|
std::string& silent = params[SAM_PARAM_SILENT];
|
|
|
|
if (silent == SAM_VALUE_TRUE) m_IsSilent = true;
|
2014-09-25 17:58:09 +00:00
|
|
|
m_ID = id;
|
2014-10-07 16:07:10 +00:00
|
|
|
m_Session = m_Owner.FindSession (id);
|
|
|
|
if (m_Session)
|
2014-09-25 17:58:09 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
auto dest = std::make_shared<i2p::data::IdentityEx> ();
|
|
|
|
size_t len = dest->FromBase64(destination);
|
2015-06-24 19:19:10 +00:00
|
|
|
if (len > 0)
|
2014-09-25 17:58:09 +00:00
|
|
|
{
|
2015-06-24 19:19:10 +00:00
|
|
|
context.GetAddressBook().InsertAddress(dest);
|
2015-11-03 14:15:49 +00:00
|
|
|
auto leaseSet = m_Session->localDestination->FindLeaseSet(dest->GetIdentHash());
|
2015-06-24 19:19:10 +00:00
|
|
|
if (leaseSet)
|
|
|
|
Connect(leaseSet);
|
|
|
|
else
|
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
m_Session->localDestination->RequestDestination(dest->GetIdentHash(),
|
2015-06-24 19:19:10 +00:00
|
|
|
std::bind(&SAMSocket::HandleConnectLeaseSetRequestComplete,
|
|
|
|
shared_from_this(), std::placeholders::_1));
|
|
|
|
}
|
2014-09-25 17:58:09 +00:00
|
|
|
}
|
2015-06-24 19:19:10 +00:00
|
|
|
else
|
|
|
|
SendMessageReply(SAM_SESSION_STATUS_INVALID_KEY, strlen(SAM_SESSION_STATUS_INVALID_KEY), true);
|
2014-10-02 16:42:28 +00:00
|
|
|
}
|
2015-06-24 19:19:10 +00:00
|
|
|
else
|
2014-10-02 16:42:28 +00:00
|
|
|
SendMessageReply (SAM_STREAM_STATUS_INVALID_ID, strlen(SAM_STREAM_STATUS_INVALID_ID), true);
|
|
|
|
}
|
|
|
|
|
2015-01-27 16:27:58 +00:00
|
|
|
void SAMSocket::Connect (std::shared_ptr<const i2p::data::LeaseSet> remote)
|
2014-10-02 16:42:28 +00:00
|
|
|
{
|
|
|
|
m_SocketType = eSAMSocketTypeStream;
|
2016-04-01 15:36:56 +00:00
|
|
|
m_Session->AddSocket (shared_from_this ());
|
2014-10-22 18:01:23 +00:00
|
|
|
m_Stream = m_Session->localDestination->CreateStream (remote);
|
2014-10-02 16:42:28 +00:00
|
|
|
m_Stream->Send ((uint8_t *)m_Buffer, 0); // connect
|
|
|
|
I2PReceive ();
|
|
|
|
SendMessageReply (SAM_STREAM_STATUS_OK, strlen(SAM_STREAM_STATUS_OK), false);
|
|
|
|
}
|
|
|
|
|
2015-04-07 16:02:25 +00:00
|
|
|
void SAMSocket::HandleConnectLeaseSetRequestComplete (std::shared_ptr<i2p::data::LeaseSet> leaseSet)
|
2014-10-02 16:42:28 +00:00
|
|
|
{
|
2014-12-27 02:06:24 +00:00
|
|
|
if (leaseSet)
|
2015-01-27 16:27:58 +00:00
|
|
|
Connect (leaseSet);
|
2014-12-27 02:06:24 +00:00
|
|
|
else
|
2014-10-02 16:42:28 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: destination to connect not found");
|
2014-12-27 02:06:24 +00:00
|
|
|
SendMessageReply (SAM_STREAM_STATUS_CANT_REACH_PEER, strlen(SAM_STREAM_STATUS_CANT_REACH_PEER), true);
|
2014-09-25 17:58:09 +00:00
|
|
|
}
|
2014-09-26 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::ProcessStreamAccept (char * buf, size_t len)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: stream accept: ", buf);
|
2014-09-26 19:40:57 +00:00
|
|
|
std::map<std::string, std::string> params;
|
2015-03-27 01:23:59 +00:00
|
|
|
ExtractParams (buf, params);
|
2014-09-26 19:40:57 +00:00
|
|
|
std::string& id = params[SAM_PARAM_ID];
|
2014-09-29 18:18:06 +00:00
|
|
|
std::string& silent = params[SAM_PARAM_SILENT];
|
|
|
|
if (silent == SAM_VALUE_TRUE) m_IsSilent = true;
|
2014-09-26 19:40:57 +00:00
|
|
|
m_ID = id;
|
2014-10-07 16:07:10 +00:00
|
|
|
m_Session = m_Owner.FindSession (id);
|
|
|
|
if (m_Session)
|
2014-09-26 19:40:57 +00:00
|
|
|
{
|
2014-10-22 18:01:23 +00:00
|
|
|
if (!m_Session->localDestination->IsAcceptingStreams ())
|
2014-09-26 19:40:57 +00:00
|
|
|
{
|
|
|
|
m_SocketType = eSAMSocketTypeAcceptor;
|
2016-04-01 15:36:56 +00:00
|
|
|
m_Session->AddSocket (shared_from_this ());
|
2014-11-22 21:35:58 +00:00
|
|
|
m_Session->localDestination->AcceptStreams (std::bind (&SAMSocket::HandleI2PAccept, shared_from_this (), std::placeholders::_1));
|
2014-09-28 13:05:37 +00:00
|
|
|
SendMessageReply (SAM_STREAM_STATUS_OK, strlen(SAM_STREAM_STATUS_OK), false);
|
2014-09-26 19:40:57 +00:00
|
|
|
}
|
|
|
|
else
|
2014-09-28 13:05:37 +00:00
|
|
|
SendMessageReply (SAM_STREAM_STATUS_I2P_ERROR, strlen(SAM_STREAM_STATUS_I2P_ERROR), true);
|
2014-09-26 19:40:57 +00:00
|
|
|
}
|
|
|
|
else
|
2014-09-28 13:05:37 +00:00
|
|
|
SendMessageReply (SAM_STREAM_STATUS_INVALID_ID, strlen(SAM_STREAM_STATUS_INVALID_ID), true);
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
|
2015-03-27 18:02:27 +00:00
|
|
|
size_t SAMSocket::ProcessDatagramSend (char * buf, size_t len, const char * data)
|
2015-03-27 01:23:59 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: datagram send: ", buf, " ", len);
|
2015-03-27 01:23:59 +00:00
|
|
|
std::map<std::string, std::string> params;
|
|
|
|
ExtractParams (buf, params);
|
2016-11-04 00:00:00 +00:00
|
|
|
size_t size = std::stoi(params[SAM_PARAM_SIZE]), offset = data - buf;
|
2015-03-27 19:50:24 +00:00
|
|
|
if (offset + size <= len)
|
2015-03-27 01:23:59 +00:00
|
|
|
{
|
|
|
|
if (m_Session)
|
|
|
|
{
|
|
|
|
auto d = m_Session->localDestination->GetDatagramDestination ();
|
|
|
|
if (d)
|
|
|
|
{
|
|
|
|
i2p::data::IdentityEx dest;
|
|
|
|
dest.FromBase64 (params[SAM_PARAM_DESTINATION]);
|
|
|
|
d->SendDatagramTo ((const uint8_t *)data, size, dest.GetIdentHash ());
|
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: missing datagram destination");
|
2015-03-27 01:23:59 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: session is not created from DATAGRAM SEND");
|
2015-03-27 01:23:59 +00:00
|
|
|
}
|
|
|
|
else
|
2015-03-27 18:36:54 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogWarning, "SAM: sent datagram size ", size, " exceeds buffer ", len - offset);
|
2015-03-27 18:36:54 +00:00
|
|
|
return 0; // try to receive more
|
|
|
|
}
|
2015-03-27 18:02:27 +00:00
|
|
|
return offset + size;
|
2015-03-27 01:23:59 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 15:08:38 +00:00
|
|
|
void SAMSocket::ProcessDestGenerate ()
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: dest generate");
|
2015-03-25 23:13:30 +00:00
|
|
|
auto keys = i2p::data::PrivateKeys::CreateRandomKeys ();
|
2014-10-27 21:53:01 +00:00
|
|
|
#ifdef _MSC_VER
|
2015-03-25 23:13:30 +00:00
|
|
|
size_t len = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_DEST_REPLY,
|
2015-11-11 19:21:52 +00:00
|
|
|
keys.GetPublic ()->ToBase64 ().c_str (), keys.ToBase64 ().c_str ());
|
2014-10-23 23:04:46 +00:00
|
|
|
#else
|
2015-03-25 23:13:30 +00:00
|
|
|
size_t len = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_DEST_REPLY,
|
2015-11-03 14:15:49 +00:00
|
|
|
keys.GetPublic ()->ToBase64 ().c_str (), keys.ToBase64 ().c_str ());
|
2014-10-27 21:53:01 +00:00
|
|
|
#endif
|
2015-03-25 23:13:30 +00:00
|
|
|
SendMessageReply (m_Buffer, len, false);
|
2014-09-30 15:08:38 +00:00
|
|
|
}
|
|
|
|
|
2014-10-02 20:55:01 +00:00
|
|
|
void SAMSocket::ProcessNamingLookup (char * buf, size_t len)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: naming lookup: ", buf);
|
2014-10-02 20:55:01 +00:00
|
|
|
std::map<std::string, std::string> params;
|
2015-03-27 01:23:59 +00:00
|
|
|
ExtractParams (buf, params);
|
2014-10-02 20:55:01 +00:00
|
|
|
std::string& name = params[SAM_PARAM_NAME];
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> identity;
|
2015-01-24 20:34:46 +00:00
|
|
|
i2p::data::IdentHash ident;
|
2014-10-03 19:08:41 +00:00
|
|
|
if (name == "ME")
|
2015-01-24 20:34:46 +00:00
|
|
|
SendNamingLookupReply (m_Session->localDestination->GetIdentity ());
|
2015-11-03 14:15:49 +00:00
|
|
|
else if ((identity = context.GetAddressBook ().GetAddress (name)) != nullptr)
|
2014-11-26 21:51:36 +00:00
|
|
|
SendNamingLookupReply (identity);
|
2015-01-25 15:05:19 +00:00
|
|
|
else if (m_Session && m_Session->localDestination &&
|
|
|
|
context.GetAddressBook ().GetIdentHash (name, ident))
|
2015-01-24 20:34:46 +00:00
|
|
|
{
|
2015-01-27 16:27:58 +00:00
|
|
|
auto leaseSet = m_Session->localDestination->FindLeaseSet (ident);
|
2015-01-24 20:34:46 +00:00
|
|
|
if (leaseSet)
|
|
|
|
SendNamingLookupReply (leaseSet->GetIdentity ());
|
|
|
|
else
|
|
|
|
m_Session->localDestination->RequestDestination (ident,
|
|
|
|
std::bind (&SAMSocket::HandleNamingLookupLeaseSetRequestComplete,
|
|
|
|
shared_from_this (), std::placeholders::_1, ident));
|
|
|
|
}
|
2014-11-28 20:08:23 +00:00
|
|
|
else
|
2014-10-02 20:55:01 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: naming failed, unknown address ", name);
|
2014-10-27 21:53:01 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
size_t len = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY_INVALID_KEY, name.c_str());
|
2014-10-23 23:04:46 +00:00
|
|
|
#else
|
2014-10-02 20:55:01 +00:00
|
|
|
size_t len = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY_INVALID_KEY, name.c_str());
|
2014-10-27 21:53:01 +00:00
|
|
|
#endif
|
2014-10-03 19:08:41 +00:00
|
|
|
SendMessageReply (m_Buffer, len, false);
|
2014-10-02 20:55:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 16:02:25 +00:00
|
|
|
void SAMSocket::HandleNamingLookupLeaseSetRequestComplete (std::shared_ptr<i2p::data::LeaseSet> leaseSet, i2p::data::IdentHash ident)
|
2014-11-26 21:51:36 +00:00
|
|
|
{
|
|
|
|
if (leaseSet)
|
2015-01-24 20:34:46 +00:00
|
|
|
{
|
|
|
|
context.GetAddressBook ().InsertAddress (leaseSet->GetIdentity ());
|
|
|
|
SendNamingLookupReply (leaseSet->GetIdentity ());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: naming lookup failed. LeaseSet for ", ident.ToBase32 (), " not found");
|
2015-01-24 20:34:46 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
size_t len = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY_INVALID_KEY,
|
|
|
|
context.GetAddressBook ().ToAddress (ident).c_str());
|
|
|
|
#else
|
|
|
|
size_t len = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY_INVALID_KEY,
|
|
|
|
context.GetAddressBook ().ToAddress (ident).c_str());
|
|
|
|
#endif
|
|
|
|
SendMessageReply (m_Buffer, len, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
void SAMSocket::SendNamingLookupReply (std::shared_ptr<const i2p::data::IdentityEx> identity)
|
2014-10-03 19:08:41 +00:00
|
|
|
{
|
2015-11-03 14:15:49 +00:00
|
|
|
auto base64 = identity->ToBase64 ();
|
2014-10-27 21:53:01 +00:00
|
|
|
#ifdef _MSC_VER
|
2014-12-01 19:50:10 +00:00
|
|
|
size_t l = sprintf_s (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY, base64.c_str ());
|
2014-10-23 23:04:46 +00:00
|
|
|
#else
|
2014-12-01 19:50:10 +00:00
|
|
|
size_t l = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_NAMING_REPLY, base64.c_str ());
|
2014-10-27 21:53:01 +00:00
|
|
|
#endif
|
2014-12-01 19:50:10 +00:00
|
|
|
SendMessageReply (m_Buffer, l, false);
|
2014-10-03 19:08:41 +00:00
|
|
|
}
|
|
|
|
|
2015-03-27 01:23:59 +00:00
|
|
|
void SAMSocket::ExtractParams (char * buf, std::map<std::string, std::string>& params)
|
2014-09-25 17:22:25 +00:00
|
|
|
{
|
2014-10-03 13:43:18 +00:00
|
|
|
char * separator;
|
|
|
|
do
|
2014-09-25 17:22:25 +00:00
|
|
|
{
|
2014-10-03 13:43:18 +00:00
|
|
|
separator = strchr (buf, ' ');
|
|
|
|
if (separator) *separator = 0;
|
2014-09-25 17:22:25 +00:00
|
|
|
char * value = strchr (buf, '=');
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
*value = 0;
|
|
|
|
value++;
|
|
|
|
params[buf] = value;
|
|
|
|
}
|
2014-09-28 13:05:37 +00:00
|
|
|
buf = separator + 1;
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
2014-10-03 13:43:18 +00:00
|
|
|
while (separator);
|
2014-09-25 17:22:25 +00:00
|
|
|
}
|
|
|
|
|
2014-09-24 18:59:03 +00:00
|
|
|
void SAMSocket::Receive ()
|
|
|
|
{
|
2015-03-27 18:36:54 +00:00
|
|
|
if (m_BufferOffset >= SAM_SOCKET_BUFFER_SIZE)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: Buffer is full, terminate");
|
2015-03-27 18:36:54 +00:00
|
|
|
Terminate ();
|
|
|
|
return;
|
|
|
|
}
|
2015-03-27 18:02:27 +00:00
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer + m_BufferOffset, SAM_SOCKET_BUFFER_SIZE - m_BufferOffset),
|
2015-03-26 02:23:41 +00:00
|
|
|
std::bind((m_SocketType == eSAMSocketTypeStream) ? &SAMSocket::HandleReceived : &SAMSocket::HandleMessage,
|
2014-11-23 22:00:45 +00:00
|
|
|
shared_from_this (), std::placeholders::_1, std::placeholders::_2));
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSocket::HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: read error: ", ecode.message ());
|
2014-09-24 18:59:03 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_Stream)
|
2015-04-09 22:40:23 +00:00
|
|
|
{
|
|
|
|
auto s = shared_from_this ();
|
|
|
|
m_Stream->AsyncSend ((uint8_t *)m_Buffer, bytes_transferred,
|
|
|
|
[s](const boost::system::error_code& ecode)
|
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
s->Receive ();
|
2016-12-18 15:11:40 +00:00
|
|
|
else
|
|
|
|
s->m_Owner.GetService ().post ([s] { s->Terminate (); });
|
2015-04-09 22:40:23 +00:00
|
|
|
});
|
|
|
|
}
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:40:57 +00:00
|
|
|
void SAMSocket::I2PReceive ()
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
|
|
|
if (m_Stream)
|
2016-10-28 15:33:11 +00:00
|
|
|
{
|
|
|
|
if (m_Stream->GetStatus () == i2p::stream::eStreamStatusNew ||
|
|
|
|
m_Stream->GetStatus () == i2p::stream::eStreamStatusOpen) // regular
|
|
|
|
{
|
|
|
|
m_Stream->AsyncReceive (boost::asio::buffer (m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE),
|
|
|
|
std::bind (&SAMSocket::HandleI2PReceive, shared_from_this (),
|
|
|
|
std::placeholders::_1, std::placeholders::_2),
|
|
|
|
SAM_SOCKET_CONNECTION_MAX_IDLE);
|
|
|
|
}
|
|
|
|
else // closed by peer
|
|
|
|
{
|
|
|
|
// get remaning data
|
|
|
|
auto len = m_Stream->ReadSome (m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE);
|
|
|
|
if (len > 0) // still some data
|
|
|
|
{
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, len),
|
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1));
|
|
|
|
}
|
|
|
|
else // no more data
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
}
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 19:40:57 +00:00
|
|
|
void SAMSocket::HandleI2PReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: stream read error: ", ecode.message ());
|
2014-10-04 02:46:20 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
2016-10-28 15:33:11 +00:00
|
|
|
{
|
|
|
|
if (bytes_transferred > 0)
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, bytes_transferred),
|
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1)); // postpone termination
|
|
|
|
else
|
2016-12-18 14:40:52 +00:00
|
|
|
{
|
|
|
|
auto s = shared_from_this ();
|
|
|
|
m_Owner.GetService ().post ([s] { s->Terminate (); });
|
|
|
|
}
|
2016-10-28 15:33:11 +00:00
|
|
|
}
|
|
|
|
else
|
2016-12-18 14:40:52 +00:00
|
|
|
{
|
|
|
|
auto s = shared_from_this ();
|
|
|
|
m_Owner.GetService ().post ([s] { s->Terminate (); });
|
|
|
|
}
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, bytes_transferred),
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1));
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:40:57 +00:00
|
|
|
void SAMSocket::HandleWriteI2PData (const boost::system::error_code& ecode)
|
2014-09-24 18:59:03 +00:00
|
|
|
{
|
|
|
|
if (ecode)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: socket write error: ", ecode.message ());
|
2014-09-24 18:59:03 +00:00
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Terminate ();
|
|
|
|
}
|
|
|
|
else
|
2014-09-26 19:40:57 +00:00
|
|
|
I2PReceive ();
|
2014-09-24 18:59:03 +00:00
|
|
|
}
|
|
|
|
|
2014-11-23 16:33:58 +00:00
|
|
|
void SAMSocket::HandleI2PAccept (std::shared_ptr<i2p::stream::Stream> stream)
|
2014-09-26 19:40:57 +00:00
|
|
|
{
|
2014-09-29 18:18:06 +00:00
|
|
|
if (stream)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: incoming I2P connection for session ", m_ID);
|
2014-09-29 18:18:06 +00:00
|
|
|
m_Stream = stream;
|
2014-11-28 20:08:23 +00:00
|
|
|
context.GetAddressBook ().InsertAddress (stream->GetRemoteIdentity ());
|
2014-09-29 18:18:06 +00:00
|
|
|
auto session = m_Owner.FindSession (m_ID);
|
|
|
|
if (session)
|
2014-10-22 18:01:23 +00:00
|
|
|
session->localDestination->StopAcceptingStreams ();
|
2015-03-26 02:23:41 +00:00
|
|
|
m_SocketType = eSAMSocketTypeStream;
|
2014-09-29 18:18:06 +00:00
|
|
|
if (!m_IsSilent)
|
|
|
|
{
|
2016-02-05 13:44:09 +00:00
|
|
|
// get remote peer address
|
|
|
|
auto ident_ptr = stream->GetRemoteIdentity();
|
2016-02-05 17:39:17 +00:00
|
|
|
const size_t ident_len = ident_ptr->GetFullLen();
|
2016-02-05 13:44:09 +00:00
|
|
|
uint8_t* ident = new uint8_t[ident_len];
|
|
|
|
|
|
|
|
// send remote peer address as base64
|
2016-02-05 17:39:17 +00:00
|
|
|
const size_t l = ident_ptr->ToBuffer (ident, ident_len);
|
|
|
|
const size_t l1 = i2p::data::ByteStreamToBase64 (ident, l, (char *)m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE);
|
2016-02-05 13:44:09 +00:00
|
|
|
delete[] ident;
|
2015-02-01 02:49:54 +00:00
|
|
|
m_StreamBuffer[l1] = '\n';
|
|
|
|
HandleI2PReceive (boost::system::error_code (), l1 +1); // we send identity like it has been received from stream
|
2014-09-29 18:18:06 +00:00
|
|
|
}
|
2015-02-01 02:49:54 +00:00
|
|
|
else
|
|
|
|
I2PReceive ();
|
2014-09-29 18:18:06 +00:00
|
|
|
}
|
2015-02-01 14:34:32 +00:00
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogWarning, "SAM: I2P acceptor has been reset");
|
2014-09-26 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 20:31:49 +00:00
|
|
|
void SAMSocket::HandleI2PDatagramReceive (const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len)
|
2014-10-31 20:44:44 +00:00
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: datagram received ", len);
|
2015-03-03 20:31:49 +00:00
|
|
|
auto base64 = from.ToBase64 ();
|
2014-10-31 20:44:44 +00:00
|
|
|
#ifdef _MSC_VER
|
2014-12-01 19:50:10 +00:00
|
|
|
size_t l = sprintf_s ((char *)m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE, SAM_DATAGRAM_RECEIVED, base64.c_str (), len);
|
2014-10-31 20:44:44 +00:00
|
|
|
#else
|
2014-12-01 19:50:10 +00:00
|
|
|
size_t l = snprintf ((char *)m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE, SAM_DATAGRAM_RECEIVED, base64.c_str (), len);
|
2014-10-31 20:44:44 +00:00
|
|
|
#endif
|
2014-12-01 19:50:10 +00:00
|
|
|
if (len < SAM_SOCKET_BUFFER_SIZE - l)
|
2014-10-31 20:44:44 +00:00
|
|
|
{
|
2014-12-01 19:50:10 +00:00
|
|
|
memcpy (m_StreamBuffer + l, buf, len);
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, len + l),
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1));
|
2014-10-31 20:44:44 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogWarning, "SAM: received datagram size ", len," exceeds buffer");
|
2014-10-31 20:44:44 +00:00
|
|
|
}
|
|
|
|
|
2015-02-24 20:40:50 +00:00
|
|
|
SAMSession::SAMSession (std::shared_ptr<ClientDestination> dest):
|
2014-12-18 00:02:16 +00:00
|
|
|
localDestination (dest)
|
2014-12-17 20:21:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SAMSession::~SAMSession ()
|
|
|
|
{
|
2016-04-01 15:36:56 +00:00
|
|
|
CloseStreams();
|
2014-12-17 20:21:50 +00:00
|
|
|
i2p::client::context.DeleteLocalDestination (localDestination);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMSession::CloseStreams ()
|
|
|
|
{
|
2016-04-01 15:36:56 +00:00
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(m_SocketsMutex);
|
2016-08-08 22:53:37 +00:00
|
|
|
for (auto& sock : m_Sockets) {
|
2016-04-01 15:36:56 +00:00
|
|
|
sock->CloseStream();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// XXX: should this be done inside locked parts?
|
|
|
|
m_Sockets.clear();
|
2014-12-17 20:21:50 +00:00
|
|
|
}
|
|
|
|
|
2015-11-30 14:44:32 +00:00
|
|
|
SAMBridge::SAMBridge (const std::string& address, int port):
|
2014-09-24 16:01:26 +00:00
|
|
|
m_IsRunning (false), m_Thread (nullptr),
|
2015-11-30 14:44:32 +00:00
|
|
|
m_Acceptor (m_Service, boost::asio::ip::tcp::endpoint(boost::asio::ip::address::from_string(address), port)),
|
|
|
|
m_DatagramEndpoint (boost::asio::ip::address::from_string(address), port-1), m_DatagramSocket (m_Service, m_DatagramEndpoint)
|
2014-09-24 16:01:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SAMBridge::~SAMBridge ()
|
|
|
|
{
|
2014-12-18 00:02:16 +00:00
|
|
|
if (m_IsRunning)
|
|
|
|
Stop ();
|
2014-09-24 16:01:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::Start ()
|
|
|
|
{
|
|
|
|
Accept ();
|
2014-10-22 20:42:26 +00:00
|
|
|
ReceiveDatagram ();
|
2014-09-28 13:05:37 +00:00
|
|
|
m_IsRunning = true;
|
2014-09-24 16:01:26 +00:00
|
|
|
m_Thread = new std::thread (std::bind (&SAMBridge::Run, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::Stop ()
|
|
|
|
{
|
|
|
|
m_IsRunning = false;
|
2014-12-17 20:21:50 +00:00
|
|
|
m_Acceptor.cancel ();
|
2016-08-08 22:53:37 +00:00
|
|
|
for (auto& it: m_Sessions)
|
2016-04-03 02:16:49 +00:00
|
|
|
it.second->CloseStreams ();
|
2014-12-17 20:21:50 +00:00
|
|
|
m_Sessions.clear ();
|
2014-09-24 16:01:26 +00:00
|
|
|
m_Service.stop ();
|
|
|
|
if (m_Thread)
|
|
|
|
{
|
|
|
|
m_Thread->join ();
|
|
|
|
delete m_Thread;
|
|
|
|
m_Thread = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::Run ()
|
|
|
|
{
|
|
|
|
while (m_IsRunning)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
m_Service.run ();
|
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: runtime exception: ", ex.what ());
|
2014-09-24 16:01:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::Accept ()
|
|
|
|
{
|
2014-11-22 21:35:58 +00:00
|
|
|
auto newSocket = std::make_shared<SAMSocket> (*this);
|
2014-11-23 22:00:45 +00:00
|
|
|
m_Acceptor.async_accept (newSocket->GetSocket (), std::bind (&SAMBridge::HandleAccept, this,
|
|
|
|
std::placeholders::_1, newSocket));
|
2014-09-24 16:01:26 +00:00
|
|
|
}
|
|
|
|
|
2014-11-22 21:35:58 +00:00
|
|
|
void SAMBridge::HandleAccept(const boost::system::error_code& ecode, std::shared_ptr<SAMSocket> socket)
|
2014-09-24 16:01:26 +00:00
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
{
|
2015-02-22 22:04:42 +00:00
|
|
|
boost::system::error_code ec;
|
|
|
|
auto ep = socket->GetSocket ().remote_endpoint (ec);
|
|
|
|
if (!ec)
|
|
|
|
{
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: new connection from ", ep);
|
2015-02-22 22:04:42 +00:00
|
|
|
socket->ReceiveHandshake ();
|
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: incoming connection error ", ec.message ());
|
2014-09-24 16:01:26 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: accept error: ", ecode.message ());
|
2014-09-24 16:01:26 +00:00
|
|
|
|
|
|
|
if (ecode != boost::asio::error::operation_aborted)
|
|
|
|
Accept ();
|
|
|
|
}
|
2014-09-24 20:39:31 +00:00
|
|
|
|
2016-04-03 02:16:49 +00:00
|
|
|
std::shared_ptr<SAMSession> SAMBridge::CreateSession (const std::string& id, const std::string& destination,
|
2014-11-30 15:51:22 +00:00
|
|
|
const std::map<std::string, std::string> * params)
|
2014-09-24 20:39:31 +00:00
|
|
|
{
|
2015-02-24 20:40:50 +00:00
|
|
|
std::shared_ptr<ClientDestination> localDestination = nullptr;
|
2014-09-25 17:22:25 +00:00
|
|
|
if (destination != "")
|
2014-09-24 20:39:31 +00:00
|
|
|
{
|
|
|
|
i2p::data::PrivateKeys keys;
|
2014-12-01 19:50:10 +00:00
|
|
|
keys.FromBase64 (destination);
|
2014-11-30 15:51:22 +00:00
|
|
|
localDestination = i2p::client::context.CreateNewLocalDestination (keys, true, params);
|
2014-09-24 20:39:31 +00:00
|
|
|
}
|
|
|
|
else // transient
|
2014-12-16 21:23:42 +00:00
|
|
|
{
|
|
|
|
// extract signature type
|
|
|
|
i2p::data::SigningKeyType signatureType = i2p::data::SIGNING_KEY_TYPE_DSA_SHA1;
|
|
|
|
if (params)
|
|
|
|
{
|
|
|
|
auto it = params->find (SAM_PARAM_SIGNATURE_TYPE);
|
|
|
|
if (it != params->end ())
|
|
|
|
// TODO: extract string values
|
2016-11-04 00:00:00 +00:00
|
|
|
signatureType = std::stoi(it->second);
|
2014-12-16 21:23:42 +00:00
|
|
|
}
|
2015-02-01 14:34:32 +00:00
|
|
|
localDestination = i2p::client::context.CreateNewLocalDestination (true, signatureType, params);
|
2014-12-16 21:23:42 +00:00
|
|
|
}
|
2014-09-24 20:39:31 +00:00
|
|
|
if (localDestination)
|
|
|
|
{
|
2016-04-03 02:16:49 +00:00
|
|
|
auto session = std::make_shared<SAMSession>(localDestination);
|
2014-10-06 01:59:05 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_SessionsMutex);
|
2016-04-03 02:16:49 +00:00
|
|
|
auto ret = m_Sessions.insert (std::make_pair(id, session));
|
2014-10-01 18:52:32 +00:00
|
|
|
if (!ret.second)
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogWarning, "SAM: Session ", id, " already exists");
|
2014-12-18 00:02:16 +00:00
|
|
|
return ret.first->second;
|
2014-09-24 20:39:31 +00:00
|
|
|
}
|
2014-09-25 17:22:25 +00:00
|
|
|
return nullptr;
|
2014-09-24 20:39:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::CloseSession (const std::string& id)
|
|
|
|
{
|
2016-04-03 02:16:49 +00:00
|
|
|
std::shared_ptr<SAMSession> session;
|
2014-09-24 20:39:31 +00:00
|
|
|
{
|
2016-04-03 02:16:49 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_SessionsMutex);
|
|
|
|
auto it = m_Sessions.find (id);
|
|
|
|
if (it != m_Sessions.end ())
|
|
|
|
{
|
|
|
|
session = it->second;
|
|
|
|
m_Sessions.erase (it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (session)
|
|
|
|
{
|
2015-02-01 14:34:32 +00:00
|
|
|
session->localDestination->StopAcceptingStreams ();
|
2014-12-18 00:02:16 +00:00
|
|
|
session->CloseStreams ();
|
2014-09-24 20:39:31 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-25 17:22:25 +00:00
|
|
|
|
2016-04-03 02:16:49 +00:00
|
|
|
std::shared_ptr<SAMSession> SAMBridge::FindSession (const std::string& id) const
|
2014-09-25 17:22:25 +00:00
|
|
|
{
|
2014-10-06 01:59:05 +00:00
|
|
|
std::unique_lock<std::mutex> l(m_SessionsMutex);
|
2014-09-25 17:22:25 +00:00
|
|
|
auto it = m_Sessions.find (id);
|
|
|
|
if (it != m_Sessions.end ())
|
2014-12-18 00:02:16 +00:00
|
|
|
return it->second;
|
2014-09-25 17:22:25 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2014-10-22 20:42:26 +00:00
|
|
|
|
|
|
|
void SAMBridge::ReceiveDatagram ()
|
|
|
|
{
|
|
|
|
m_DatagramSocket.async_receive_from (
|
|
|
|
boost::asio::buffer (m_DatagramReceiveBuffer, i2p::datagram::MAX_DATAGRAM_SIZE),
|
|
|
|
m_SenderEndpoint,
|
2014-11-23 22:00:45 +00:00
|
|
|
std::bind (&SAMBridge::HandleReceivedDatagram, this, std::placeholders::_1, std::placeholders::_2));
|
2014-10-22 20:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SAMBridge::HandleReceivedDatagram (const boost::system::error_code& ecode, std::size_t bytes_transferred)
|
|
|
|
{
|
|
|
|
if (!ecode)
|
|
|
|
{
|
2014-10-24 01:14:17 +00:00
|
|
|
m_DatagramReceiveBuffer[bytes_transferred] = 0;
|
|
|
|
char * eol = strchr ((char *)m_DatagramReceiveBuffer, '\n');
|
|
|
|
*eol = 0; eol++;
|
|
|
|
size_t payloadLen = bytes_transferred - ((uint8_t *)eol - m_DatagramReceiveBuffer);
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogDebug, "SAM: datagram received ", m_DatagramReceiveBuffer," size=", payloadLen);
|
2014-10-24 01:14:17 +00:00
|
|
|
char * sessionID = strchr ((char *)m_DatagramReceiveBuffer, ' ');
|
|
|
|
if (sessionID)
|
|
|
|
{
|
|
|
|
sessionID++;
|
|
|
|
char * destination = strchr (sessionID, ' ');
|
|
|
|
if (destination)
|
|
|
|
{
|
|
|
|
*destination = 0; destination++;
|
|
|
|
auto session = FindSession (sessionID);
|
|
|
|
if (session)
|
|
|
|
{
|
|
|
|
i2p::data::IdentityEx dest;
|
2014-12-01 19:50:10 +00:00
|
|
|
dest.FromBase64 (destination);
|
2015-03-27 01:23:59 +00:00
|
|
|
session->localDestination->GetDatagramDestination ()->
|
|
|
|
SendDatagramTo ((uint8_t *)eol, payloadLen, dest.GetIdentHash ());
|
2014-10-24 01:14:17 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: Session ", sessionID, " not found");
|
2014-10-24 01:14:17 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: Missing destination key");
|
2014-10-24 01:14:17 +00:00
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: Missing sessionID");
|
2014-10-22 20:42:26 +00:00
|
|
|
ReceiveDatagram ();
|
|
|
|
}
|
|
|
|
else
|
2015-12-18 06:50:12 +00:00
|
|
|
LogPrint (eLogError, "SAM: datagram receive error: ", ecode.message ());
|
2014-10-22 20:42:26 +00:00
|
|
|
}
|
2014-09-24 16:01:26 +00:00
|
|
|
}
|
|
|
|
}
|