|
|
@ -9,7 +9,8 @@ namespace i2p |
|
|
|
namespace stream |
|
|
|
namespace stream |
|
|
|
{ |
|
|
|
{ |
|
|
|
SAMSocket::SAMSocket (SAMBridge& owner): |
|
|
|
SAMSocket::SAMSocket (SAMBridge& owner): |
|
|
|
m_Owner (owner), m_Socket (m_Owner.GetService ()), m_Stream (nullptr) |
|
|
|
m_Owner (owner), m_Socket (m_Owner.GetService ()), m_SocketType (eSAMSocketTypeUnknown), |
|
|
|
|
|
|
|
m_Stream (nullptr) |
|
|
|
{ |
|
|
|
{ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -30,6 +31,8 @@ namespace stream |
|
|
|
DeleteStream (m_Stream); |
|
|
|
DeleteStream (m_Stream); |
|
|
|
m_Stream = nullptr; |
|
|
|
m_Stream = nullptr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (m_SocketType == eSAMSocketTypeSession) |
|
|
|
|
|
|
|
m_Owner.CloseSession (m_ID); |
|
|
|
delete this; |
|
|
|
delete this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -76,7 +79,110 @@ namespace stream |
|
|
|
Terminate (); |
|
|
|
Terminate (); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
Receive (); |
|
|
|
{ |
|
|
|
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE), |
|
|
|
|
|
|
|
boost::bind(&SAMSocket::HandleMessage, this, |
|
|
|
|
|
|
|
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::SendMessageReply (const char * msg, size_t len, bool close) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (msg, len), boost::asio::transfer_all (), |
|
|
|
|
|
|
|
boost::bind(&SAMSocket::HandleMessageReplySent, this, |
|
|
|
|
|
|
|
boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred, close)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleMessageReplySent (const boost::system::error_code& ecode, std::size_t bytes_transferred, bool close) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (ecode) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint ("SAM reply send error: ", ecode.message ()); |
|
|
|
|
|
|
|
if (ecode != boost::asio::error::operation_aborted) |
|
|
|
|
|
|
|
Terminate (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (close) |
|
|
|
|
|
|
|
Terminate (); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
Receive (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleMessage (const boost::system::error_code& ecode, std::size_t bytes_transferred) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (ecode) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint ("SAM read error: ", ecode.message ()); |
|
|
|
|
|
|
|
if (ecode != boost::asio::error::operation_aborted) |
|
|
|
|
|
|
|
Terminate (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
m_Buffer[bytes_transferred] = 0; |
|
|
|
|
|
|
|
char * eol = strchr (m_Buffer, '\n'); |
|
|
|
|
|
|
|
if (eol) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
*eol = 0; |
|
|
|
|
|
|
|
if (!strcmp (m_Buffer, SAM_SESSION_CREATE)) |
|
|
|
|
|
|
|
ProcessSessionCreate (eol + 1, bytes_transferred - (eol - m_Buffer) - 1); |
|
|
|
|
|
|
|
else if (!strcmp (m_Buffer, SAM_STREAM_CONNECT)) |
|
|
|
|
|
|
|
ProcessStreamConnect (eol + 1, bytes_transferred - (eol - m_Buffer) - 1); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint ("SAM unexpected message ", m_Buffer); |
|
|
|
|
|
|
|
Terminate (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint ("SAM malformed message"); |
|
|
|
|
|
|
|
Terminate (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::ProcessSessionCreate (char * buf, size_t len) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
std::map<std::string, std::string> params; |
|
|
|
|
|
|
|
ExtractParams (buf, len, params); |
|
|
|
|
|
|
|
std::string& id = params[SAM_PARAM_ID]; |
|
|
|
|
|
|
|
std::string& destination = params[SAM_PARAM_DESTINATION]; |
|
|
|
|
|
|
|
m_ID = id; |
|
|
|
|
|
|
|
auto session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination); |
|
|
|
|
|
|
|
if (session) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
memcpy (m_Buffer, SAM_SESSION_CREATE_REPLY_OK, sizeof (SAM_SESSION_CREATE_REPLY_OK)); |
|
|
|
|
|
|
|
uint8_t ident[1024]; |
|
|
|
|
|
|
|
size_t l = session->localDestination->GetPrivateKeys ().ToBuffer (ident, 1024); |
|
|
|
|
|
|
|
size_t l1 = i2p::data::ByteStreamToBase64 (ident, l, m_Buffer + sizeof (SAM_SESSION_CREATE_REPLY_OK), |
|
|
|
|
|
|
|
SAM_SOCKET_BUFFER_SIZE - sizeof (SAM_SESSION_CREATE_REPLY_OK)); |
|
|
|
|
|
|
|
SendMessageReply (m_Buffer, sizeof (SAM_SESSION_CREATE_REPLY_OK) + l1, false); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
SendMessageReply (SAM_SESSION_CREATE_DUPLICATED_ID, sizeof(SAM_SESSION_CREATE_DUPLICATED_ID), true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::ProcessStreamConnect (char * buf, size_t len) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
Receive (); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::ExtractParams (char * buf, size_t len, std::map<std::string, std::string>& params) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
while (char * eol = strchr (buf, '\n')) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
*eol = 0; |
|
|
|
|
|
|
|
char * value = strchr (buf, '='); |
|
|
|
|
|
|
|
if (value) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
*value = 0; |
|
|
|
|
|
|
|
value++; |
|
|
|
|
|
|
|
params[buf] = value; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
buf = eol + 1; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void SAMSocket::Receive () |
|
|
|
void SAMSocket::Receive () |
|
|
@ -207,16 +313,16 @@ namespace stream |
|
|
|
Accept (); |
|
|
|
Accept (); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool SAMBridge::CreateSession (const std::string& id, const char * destination, size_t len) |
|
|
|
SAMSession * SAMBridge::CreateSession (const std::string& id, const std::string& destination) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (m_Sessions.find (id) != m_Sessions.end ()) // session exists
|
|
|
|
if (m_Sessions.find (id) != m_Sessions.end ()) // session exists
|
|
|
|
return false; |
|
|
|
return nullptr; |
|
|
|
|
|
|
|
|
|
|
|
StreamingDestination * localDestination = nullptr; |
|
|
|
StreamingDestination * localDestination = nullptr; |
|
|
|
if (destination) |
|
|
|
if (destination != "") |
|
|
|
{ |
|
|
|
{ |
|
|
|
uint8_t * buf = new uint8_t[len]; |
|
|
|
uint8_t * buf = new uint8_t[destination.length ()]; |
|
|
|
size_t l = i2p::data::Base64ToByteStream (destination, len, buf, len); |
|
|
|
size_t l = i2p::data::Base64ToByteStream (destination.c_str (), destination.length (), buf, destination.length ()); |
|
|
|
i2p::data::PrivateKeys keys; |
|
|
|
i2p::data::PrivateKeys keys; |
|
|
|
keys.FromBuffer (buf, l); |
|
|
|
keys.FromBuffer (buf, l); |
|
|
|
delete[] buf; |
|
|
|
delete[] buf; |
|
|
@ -228,11 +334,11 @@ namespace stream |
|
|
|
{ |
|
|
|
{ |
|
|
|
SAMSession session; |
|
|
|
SAMSession session; |
|
|
|
session.localDestination = localDestination; |
|
|
|
session.localDestination = localDestination; |
|
|
|
session.isTransient = !destination; |
|
|
|
session.isTransient = destination == ""; |
|
|
|
m_Sessions[id] = session; |
|
|
|
m_Sessions[id] = session; |
|
|
|
return true; |
|
|
|
return &m_Sessions[id]; |
|
|
|
} |
|
|
|
} |
|
|
|
return false; |
|
|
|
return nullptr; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void SAMBridge::CloseSession (const std::string& id) |
|
|
|
void SAMBridge::CloseSession (const std::string& id) |
|
|
@ -248,5 +354,13 @@ namespace stream |
|
|
|
m_Sessions.erase (it); |
|
|
|
m_Sessions.erase (it); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SAMSession * SAMBridge::FindSession (const std::string& id) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
auto it = m_Sessions.find (id); |
|
|
|
|
|
|
|
if (it != m_Sessions.end ()) |
|
|
|
|
|
|
|
return &it->second; |
|
|
|
|
|
|
|
return nullptr; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|