|
|
|
@ -15,31 +15,60 @@ namespace i2p
@@ -15,31 +15,60 @@ namespace i2p
|
|
|
|
|
{ |
|
|
|
|
namespace client |
|
|
|
|
{ |
|
|
|
|
SAMSocket::SAMSocket (SAMBridge& owner): |
|
|
|
|
m_Owner (owner), m_Socket (m_Owner.GetService ()), m_Timer (m_Owner.GetService ()), |
|
|
|
|
m_BufferOffset (0), m_SocketType (eSAMSocketTypeUnknown), m_IsSilent (false), |
|
|
|
|
m_IsAccepting (false), m_Stream (nullptr), m_Session (nullptr) |
|
|
|
|
SAMSocket::SAMSocket (SAMBridge& owner, std::shared_ptr<Socket_t> socket): |
|
|
|
|
m_Owner (owner), m_Socket(socket), m_Timer (m_Owner.GetService ()), |
|
|
|
|
m_BufferOffset (0), |
|
|
|
|
m_SocketType (eSAMSocketTypeUnknown), m_IsSilent (false), |
|
|
|
|
m_IsAccepting (false), m_Stream (nullptr) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
SAMSocket::~SAMSocket () |
|
|
|
|
{ |
|
|
|
|
Terminate ("~SAMSocket()"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::CloseStream (const char* reason) |
|
|
|
|
{ |
|
|
|
|
LogPrint (eLogDebug, "SAMSocket::CloseStream, reason: ", reason); |
|
|
|
|
if(m_Stream) |
|
|
|
|
{ |
|
|
|
|
m_Stream->Close (); |
|
|
|
|
m_Stream.reset (); |
|
|
|
|
} |
|
|
|
|
auto Session = m_Owner.FindSession(m_ID); |
|
|
|
|
|
|
|
|
|
switch (m_SocketType) |
|
|
|
|
{ |
|
|
|
|
case eSAMSocketTypeSession: |
|
|
|
|
m_Owner.CloseSession (m_ID); |
|
|
|
|
break; |
|
|
|
|
case eSAMSocketTypeStream: |
|
|
|
|
{ |
|
|
|
|
if (Session) |
|
|
|
|
Session->DelSocket (this); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case eSAMSocketTypeAcceptor: |
|
|
|
|
{ |
|
|
|
|
if (Session) |
|
|
|
|
{ |
|
|
|
|
Session->DelSocket (this); |
|
|
|
|
if (m_IsAccepting && Session->localDestination) |
|
|
|
|
Session->localDestination->StopAcceptingStreams (); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
default: |
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
m_SocketType = eSAMSocketTypeTerminated; |
|
|
|
|
if (m_Socket && m_Socket->is_open()) m_Socket->close (); |
|
|
|
|
m_Socket.reset (); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::Terminate (const char* reason) |
|
|
|
|
{ |
|
|
|
|
CloseStream (reason); |
|
|
|
|
if(m_Stream) |
|
|
|
|
{ |
|
|
|
|
m_Stream->Close (); |
|
|
|
|
m_Stream.reset (); |
|
|
|
|
} |
|
|
|
|
auto Session = m_Owner.FindSession(m_ID); |
|
|
|
|
|
|
|
|
|
switch (m_SocketType) |
|
|
|
|
{ |
|
|
|
@ -48,17 +77,17 @@ namespace client
@@ -48,17 +77,17 @@ namespace client
|
|
|
|
|
break; |
|
|
|
|
case eSAMSocketTypeStream: |
|
|
|
|
{ |
|
|
|
|
if (m_Session) |
|
|
|
|
m_Session->DelSocket (shared_from_this ()); |
|
|
|
|
if (Session) |
|
|
|
|
Session->DelSocket (this); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case eSAMSocketTypeAcceptor: |
|
|
|
|
{ |
|
|
|
|
if (m_Session) |
|
|
|
|
if (Session) |
|
|
|
|
{ |
|
|
|
|
m_Session->DelSocket (shared_from_this ()); |
|
|
|
|
if (m_IsAccepting && m_Session->localDestination) |
|
|
|
|
m_Session->localDestination->StopAcceptingStreams (); |
|
|
|
|
Session->DelSocket (this); |
|
|
|
|
if (m_IsAccepting && Session->localDestination) |
|
|
|
|
Session->localDestination->StopAcceptingStreams (); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
@ -66,13 +95,14 @@ namespace client
@@ -66,13 +95,14 @@ namespace client
|
|
|
|
|
; |
|
|
|
|
} |
|
|
|
|
m_SocketType = eSAMSocketTypeTerminated; |
|
|
|
|
if (m_Socket.is_open()) m_Socket.close (); |
|
|
|
|
m_Session = nullptr; |
|
|
|
|
if (m_Socket && m_Socket->is_open()) m_Socket->close (); |
|
|
|
|
m_Socket.reset (); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::ReceiveHandshake () |
|
|
|
|
{ |
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE), |
|
|
|
|
if(m_Socket) |
|
|
|
|
m_Socket->async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE), |
|
|
|
|
std::bind(&SAMSocket::HandleHandshakeReceived, shared_from_this (), |
|
|
|
|
std::placeholders::_1, std::placeholders::_2)); |
|
|
|
|
} |
|
|
|
@ -121,7 +151,7 @@ namespace client
@@ -121,7 +151,7 @@ namespace client
|
|
|
|
|
#else |
|
|
|
|
size_t l = snprintf (m_Buffer, SAM_SOCKET_BUFFER_SIZE, SAM_HANDSHAKE_REPLY, version.c_str ()); |
|
|
|
|
#endif |
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_Buffer, l), boost::asio::transfer_all (), |
|
|
|
|
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)); |
|
|
|
|
} |
|
|
|
@ -144,9 +174,9 @@ namespace client
@@ -144,9 +174,9 @@ namespace client
|
|
|
|
|
if (ecode != boost::asio::error::operation_aborted) |
|
|
|
|
Terminate ("SAM: handshake reply send error"); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
else if(m_Socket) |
|
|
|
|
{ |
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE), |
|
|
|
|
m_Socket->async_read_some (boost::asio::buffer(m_Buffer, SAM_SOCKET_BUFFER_SIZE), |
|
|
|
|
std::bind(&SAMSocket::HandleMessage, shared_from_this (), |
|
|
|
|
std::placeholders::_1, std::placeholders::_2)); |
|
|
|
|
} |
|
|
|
@ -157,7 +187,7 @@ namespace client
@@ -157,7 +187,7 @@ namespace client
|
|
|
|
|
LogPrint (eLogDebug, "SAMSocket::SendMessageReply, close=",close?"true":"false", " reason: ", msg); |
|
|
|
|
|
|
|
|
|
if (!m_IsSilent) |
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (msg, len), boost::asio::transfer_all (), |
|
|
|
|
boost::asio::async_write (*m_Socket, boost::asio::buffer (msg, len), boost::asio::transfer_all (), |
|
|
|
|
std::bind(&SAMSocket::HandleMessageReplySent, shared_from_this (), |
|
|
|
|
std::placeholders::_1, std::placeholders::_2, close)); |
|
|
|
|
else |
|
|
|
@ -306,19 +336,19 @@ namespace client
@@ -306,19 +336,19 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// create destination
|
|
|
|
|
m_Session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination, ¶ms); |
|
|
|
|
if (m_Session) |
|
|
|
|
auto session = m_Owner.CreateSession (id, destination == SAM_VALUE_TRANSIENT ? "" : destination, ¶ms); |
|
|
|
|
if (session) |
|
|
|
|
{ |
|
|
|
|
m_SocketType = eSAMSocketTypeSession; |
|
|
|
|
if (style == SAM_VALUE_DATAGRAM) |
|
|
|
|
{ |
|
|
|
|
m_Session->UDPEndpoint = forward; |
|
|
|
|
auto dest = m_Session->localDestination->CreateDatagramDestination (); |
|
|
|
|
session->UDPEndpoint = forward; |
|
|
|
|
auto dest = 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)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (m_Session->localDestination->IsReady ()) |
|
|
|
|
if (session->localDestination->IsReady ()) |
|
|
|
|
SendSessionCreateReplyOk (); |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
@ -335,7 +365,10 @@ namespace client
@@ -335,7 +365,10 @@ namespace client
|
|
|
|
|
{ |
|
|
|
|
if (ecode != boost::asio::error::operation_aborted) |
|
|
|
|
{ |
|
|
|
|
if (m_Session->localDestination->IsReady ()) |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
if(session) |
|
|
|
|
{ |
|
|
|
|
if (session->localDestination->IsReady ()) |
|
|
|
|
SendSessionCreateReplyOk (); |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
@ -345,12 +378,16 @@ namespace client
@@ -345,12 +378,16 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::SendSessionCreateReplyOk () |
|
|
|
|
{ |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
if (session) |
|
|
|
|
{ |
|
|
|
|
uint8_t buf[1024]; |
|
|
|
|
char priv[1024]; |
|
|
|
|
size_t l = m_Session->localDestination->GetPrivateKeys ().ToBuffer (buf, 1024); |
|
|
|
|
size_t l = session->localDestination->GetPrivateKeys ().ToBuffer (buf, 1024); |
|
|
|
|
size_t l1 = i2p::data::ByteStreamToBase64 (buf, l, priv, 1024); |
|
|
|
|
priv[l1] = 0; |
|
|
|
|
#ifdef _MSC_VER |
|
|
|
@ -360,6 +397,7 @@ namespace client
@@ -360,6 +397,7 @@ namespace client
|
|
|
|
|
#endif |
|
|
|
|
SendMessageReply (m_Buffer, l2, false); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::ProcessStreamConnect (char * buf, size_t len, size_t rem) |
|
|
|
|
{ |
|
|
|
@ -371,8 +409,8 @@ namespace client
@@ -371,8 +409,8 @@ namespace client
|
|
|
|
|
std::string& silent = params[SAM_PARAM_SILENT]; |
|
|
|
|
if (silent == SAM_VALUE_TRUE) m_IsSilent = true; |
|
|
|
|
m_ID = id; |
|
|
|
|
m_Session = m_Owner.FindSession (id); |
|
|
|
|
if (m_Session) |
|
|
|
|
auto session = m_Owner.FindSession (id); |
|
|
|
|
if (session) |
|
|
|
|
{ |
|
|
|
|
if (rem > 0) // handle follow on data
|
|
|
|
|
{ |
|
|
|
@ -387,12 +425,12 @@ namespace client
@@ -387,12 +425,12 @@ namespace client
|
|
|
|
|
if (l > 0) |
|
|
|
|
{ |
|
|
|
|
context.GetAddressBook().InsertAddress(dest); |
|
|
|
|
auto leaseSet = m_Session->localDestination->FindLeaseSet(dest->GetIdentHash()); |
|
|
|
|
auto leaseSet = session->localDestination->FindLeaseSet(dest->GetIdentHash()); |
|
|
|
|
if (leaseSet) |
|
|
|
|
Connect(leaseSet); |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
m_Session->localDestination->RequestDestination(dest->GetIdentHash(), |
|
|
|
|
session->localDestination->RequestDestination(dest->GetIdentHash(), |
|
|
|
|
std::bind(&SAMSocket::HandleConnectLeaseSetRequestComplete, |
|
|
|
|
shared_from_this(), std::placeholders::_1)); |
|
|
|
|
} |
|
|
|
@ -405,15 +443,19 @@ namespace client
@@ -405,15 +443,19 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::Connect (std::shared_ptr<const i2p::data::LeaseSet> remote) |
|
|
|
|
{ |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
if(session) |
|
|
|
|
{ |
|
|
|
|
m_SocketType = eSAMSocketTypeStream; |
|
|
|
|
m_Session->AddSocket (shared_from_this ()); |
|
|
|
|
m_Stream = m_Session->localDestination->CreateStream (remote); |
|
|
|
|
session->AddSocket (shared_from_this ()); |
|
|
|
|
m_Stream = session->localDestination->CreateStream (remote); |
|
|
|
|
m_Stream->Send ((uint8_t *)m_Buffer, m_BufferOffset); // connect and send
|
|
|
|
|
m_BufferOffset = 0; |
|
|
|
|
I2PReceive (); |
|
|
|
|
SendMessageReply (SAM_STREAM_STATUS_OK, strlen(SAM_STREAM_STATUS_OK), false); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleConnectLeaseSetRequestComplete (std::shared_ptr<i2p::data::LeaseSet> leaseSet) |
|
|
|
|
{ |
|
|
|
@ -435,15 +477,15 @@ namespace client
@@ -435,15 +477,15 @@ namespace client
|
|
|
|
|
std::string& silent = params[SAM_PARAM_SILENT]; |
|
|
|
|
if (silent == SAM_VALUE_TRUE) m_IsSilent = true; |
|
|
|
|
m_ID = id; |
|
|
|
|
m_Session = m_Owner.FindSession (id); |
|
|
|
|
if (m_Session) |
|
|
|
|
auto session = m_Owner.FindSession (id); |
|
|
|
|
if (session) |
|
|
|
|
{ |
|
|
|
|
m_SocketType = eSAMSocketTypeAcceptor; |
|
|
|
|
m_Session->AddSocket (shared_from_this ()); |
|
|
|
|
if (!m_Session->localDestination->IsAcceptingStreams ()) |
|
|
|
|
session->AddSocket (shared_from_this ()); |
|
|
|
|
if (!session->localDestination->IsAcceptingStreams ()) |
|
|
|
|
{ |
|
|
|
|
m_IsAccepting = true; |
|
|
|
|
m_Session->localDestination->AcceptOnce (std::bind (&SAMSocket::HandleI2PAccept, shared_from_this (), std::placeholders::_1)); |
|
|
|
|
session->localDestination->AcceptOnce (std::bind (&SAMSocket::HandleI2PAccept, shared_from_this (), std::placeholders::_1)); |
|
|
|
|
} |
|
|
|
|
SendMessageReply (SAM_STREAM_STATUS_OK, strlen(SAM_STREAM_STATUS_OK), false); |
|
|
|
|
} |
|
|
|
@ -459,9 +501,10 @@ namespace client
@@ -459,9 +501,10 @@ namespace client
|
|
|
|
|
size_t size = std::stoi(params[SAM_PARAM_SIZE]), offset = data - buf; |
|
|
|
|
if (offset + size <= len) |
|
|
|
|
{ |
|
|
|
|
if (m_Session) |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
if (session) |
|
|
|
|
{ |
|
|
|
|
auto d = m_Session->localDestination->GetDatagramDestination (); |
|
|
|
|
auto d = session->localDestination->GetDatagramDestination (); |
|
|
|
|
if (d) |
|
|
|
|
{ |
|
|
|
|
i2p::data::IdentityEx dest; |
|
|
|
@ -516,7 +559,8 @@ namespace client
@@ -516,7 +559,8 @@ namespace client
|
|
|
|
|
std::string& name = params[SAM_PARAM_NAME]; |
|
|
|
|
std::shared_ptr<const i2p::data::IdentityEx> identity; |
|
|
|
|
i2p::data::IdentHash ident; |
|
|
|
|
auto dest = m_Session == nullptr ? context.GetSharedLocalDestination() : m_Session->localDestination; |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
auto dest = session == nullptr ? context.GetSharedLocalDestination() : session->localDestination; |
|
|
|
|
if (name == "ME") |
|
|
|
|
SendNamingLookupReply (dest->GetIdentity ()); |
|
|
|
|
else if ((identity = context.GetAddressBook ().GetAddress (name)) != nullptr) |
|
|
|
@ -612,10 +656,12 @@ namespace client
@@ -612,10 +656,12 @@ namespace client
|
|
|
|
|
LogPrint (eLogError, "SAM: Buffer is full, terminate"); |
|
|
|
|
Terminate ("Buffer is full"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
m_Socket.async_read_some (boost::asio::buffer(m_Buffer + m_BufferOffset, SAM_SOCKET_BUFFER_SIZE - m_BufferOffset), |
|
|
|
|
} else if (m_Socket) |
|
|
|
|
m_Socket->async_read_some (boost::asio::buffer(m_Buffer + m_BufferOffset, SAM_SOCKET_BUFFER_SIZE - m_BufferOffset), |
|
|
|
|
std::bind((m_SocketType == eSAMSocketTypeStream) ? &SAMSocket::HandleReceived : &SAMSocket::HandleMessage, |
|
|
|
|
shared_from_this (), std::placeholders::_1, std::placeholders::_2)); |
|
|
|
|
else |
|
|
|
|
LogPrint(eLogError, "SAM: receive with no native socket"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleReceived (const boost::system::error_code& ecode, std::size_t bytes_transferred) |
|
|
|
@ -637,7 +683,7 @@ namespace client
@@ -637,7 +683,7 @@ namespace client
|
|
|
|
|
[s](const boost::system::error_code& ecode) |
|
|
|
|
{ |
|
|
|
|
if (!ecode) |
|
|
|
|
s->Receive (); |
|
|
|
|
s->m_Owner.GetService ().post ([s] { s->Receive (); }); |
|
|
|
|
else |
|
|
|
|
s->m_Owner.GetService ().post ([s] { s->Terminate ("AsyncSend failed"); }); |
|
|
|
|
}); |
|
|
|
@ -659,12 +705,12 @@ namespace client
@@ -659,12 +705,12 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
else // closed by peer
|
|
|
|
|
{ |
|
|
|
|
uint8_t * buff = new uint8_t[SAM_SOCKET_BUFFER_SIZE]; |
|
|
|
|
// get remaning data
|
|
|
|
|
auto len = m_Stream->ReadSome (m_StreamBuffer, SAM_SOCKET_BUFFER_SIZE); |
|
|
|
|
auto len = m_Stream->ReadSome (buff, 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)); |
|
|
|
|
WriteI2PDataImmediate(buff, len); |
|
|
|
|
} |
|
|
|
|
else // no more data
|
|
|
|
|
Terminate ("no more data"); |
|
|
|
@ -672,6 +718,30 @@ namespace client
@@ -672,6 +718,30 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::WriteI2PDataImmediate(uint8_t * buff, size_t sz) |
|
|
|
|
{ |
|
|
|
|
if(m_Socket) |
|
|
|
|
boost::asio::async_write ( |
|
|
|
|
*m_Socket, |
|
|
|
|
boost::asio::buffer (buff, sz), |
|
|
|
|
boost::asio::transfer_all(), |
|
|
|
|
std::bind (&SAMSocket::HandleWriteI2PDataImmediate, shared_from_this (), std::placeholders::_1, buff)); // postpone termination
|
|
|
|
|
else |
|
|
|
|
LogPrint(eLogError, "SAM: no native socket"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleWriteI2PDataImmediate(const boost::system::error_code & ec, uint8_t * buff) |
|
|
|
|
{ |
|
|
|
|
delete [] buff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::WriteI2PData(size_t sz) |
|
|
|
|
{ |
|
|
|
|
uint8_t * sendbuff = new uint8_t[sz]; |
|
|
|
|
memcpy(sendbuff, m_StreamBuffer, sz); |
|
|
|
|
WriteI2PDataImmediate(sendbuff, sz); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleI2PReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred) |
|
|
|
|
{ |
|
|
|
|
if (ecode) |
|
|
|
@ -680,8 +750,9 @@ namespace client
@@ -680,8 +750,9 @@ namespace client
|
|
|
|
|
if (ecode != boost::asio::error::operation_aborted) |
|
|
|
|
{ |
|
|
|
|
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
|
|
|
|
|
{ |
|
|
|
|
WriteI2PData(bytes_transferred); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
auto s = shared_from_this (); |
|
|
|
@ -696,13 +767,18 @@ namespace client
@@ -696,13 +767,18 @@ namespace client
|
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
if (m_SocketType != eSAMSocketTypeTerminated) // check for possible race condition with Terminate()
|
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, bytes_transferred), |
|
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1)); |
|
|
|
|
if (m_SocketType != eSAMSocketTypeTerminated) |
|
|
|
|
{ |
|
|
|
|
if (bytes_transferred > 0) |
|
|
|
|
{ |
|
|
|
|
WriteI2PData(bytes_transferred); |
|
|
|
|
} |
|
|
|
|
I2PReceive(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleWriteI2PData (const boost::system::error_code& ecode) |
|
|
|
|
void SAMSocket::HandleWriteI2PData (const boost::system::error_code& ecode, size_t bytes_transferred) |
|
|
|
|
{ |
|
|
|
|
if (ecode) |
|
|
|
|
{ |
|
|
|
@ -711,8 +787,10 @@ namespace client
@@ -711,8 +787,10 @@ namespace client
|
|
|
|
|
Terminate ("socket write error at HandleWriteI2PData"); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
I2PReceive (); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void SAMSocket::HandleI2PAccept (std::shared_ptr<i2p::stream::Stream> stream) |
|
|
|
|
{ |
|
|
|
@ -760,7 +838,10 @@ namespace client
@@ -760,7 +838,10 @@ namespace client
|
|
|
|
|
{ |
|
|
|
|
LogPrint (eLogDebug, "SAM: datagram received ", len); |
|
|
|
|
auto base64 = from.ToBase64 (); |
|
|
|
|
auto ep = m_Session->UDPEndpoint; |
|
|
|
|
auto session = m_Owner.FindSession(m_ID); |
|
|
|
|
if(session) |
|
|
|
|
{ |
|
|
|
|
auto ep = session->UDPEndpoint; |
|
|
|
|
if (ep) |
|
|
|
|
{ |
|
|
|
|
// udp forward enabled
|
|
|
|
@ -788,13 +869,13 @@ namespace client
@@ -788,13 +869,13 @@ namespace client
|
|
|
|
|
if (len < SAM_SOCKET_BUFFER_SIZE - l) |
|
|
|
|
{ |
|
|
|
|
memcpy (m_StreamBuffer + l, buf, len); |
|
|
|
|
boost::asio::async_write (m_Socket, boost::asio::buffer (m_StreamBuffer, len + l), |
|
|
|
|
std::bind (&SAMSocket::HandleWriteI2PData, shared_from_this (), std::placeholders::_1)); |
|
|
|
|
WriteI2PData(len + l); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
LogPrint (eLogWarning, "SAM: received datagram size ", len," exceeds buffer"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
SAMSession::SAMSession (std::shared_ptr<ClientDestination> dest): |
|
|
|
|
localDestination (dest), |
|
|
|
@ -875,8 +956,9 @@ namespace client
@@ -875,8 +956,9 @@ namespace client
|
|
|
|
|
|
|
|
|
|
void SAMBridge::Accept () |
|
|
|
|
{ |
|
|
|
|
auto newSocket = std::make_shared<SAMSocket> (*this); |
|
|
|
|
m_Acceptor.async_accept (newSocket->GetSocket (), std::bind (&SAMBridge::HandleAccept, this, |
|
|
|
|
auto native = std::make_shared<boost::asio::ip::tcp::socket>(m_Service); |
|
|
|
|
auto newSocket = std::make_shared<SAMSocket> (*this, native); |
|
|
|
|
m_Acceptor.async_accept (*native, std::bind (&SAMBridge::HandleAccept, this, |
|
|
|
|
std::placeholders::_1, newSocket)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|