2019-04-19 16:02:32 +00:00
|
|
|
#include <service/sendcontext.hpp>
|
|
|
|
|
|
|
|
#include <messages/path_transfer.hpp>
|
|
|
|
#include <service/endpoint.hpp>
|
|
|
|
#include <router/abstractrouter.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
SendContext::SendContext(const ServiceInfo& ident,
|
|
|
|
const Introduction& intro, path::PathSet* send,
|
|
|
|
Endpoint* ep)
|
|
|
|
: remoteIdent(ident)
|
|
|
|
, remoteIntro(intro)
|
|
|
|
, m_PathSet(send)
|
|
|
|
, m_DataHandler(ep)
|
|
|
|
, m_Endpoint(ep)
|
|
|
|
{
|
|
|
|
createdAt = ep->Now();
|
|
|
|
currentConvoTag.Zero();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SendContext::Send(const ProtocolFrame& msg)
|
|
|
|
{
|
|
|
|
auto path = m_PathSet->GetByEndpointWithID(remoteIntro.router, msg.F);
|
|
|
|
if(path)
|
|
|
|
{
|
|
|
|
const routing::PathTransferMessage transfer(msg, remoteIntro.pathID);
|
2019-04-22 17:38:29 +00:00
|
|
|
if(path->SendRoutingMessage(transfer, m_Endpoint->Router()))
|
2019-04-19 16:02:32 +00:00
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogInfo("sent intro to ", remoteIntro.pathID, " on ",
|
|
|
|
remoteIntro.router, " seqno=", sequenceNo);
|
2019-04-19 16:02:32 +00:00
|
|
|
lastGoodSend = m_Endpoint->Now();
|
|
|
|
++sequenceNo;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2019-04-22 18:35:19 +00:00
|
|
|
LogError("Failed to send frame on path");
|
2019-04-19 16:02:32 +00:00
|
|
|
}
|
|
|
|
else
|
2019-04-22 18:35:19 +00:00
|
|
|
LogError("cannot send because we have no path to ", remoteIntro.router);
|
2019-04-19 16:02:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// send on an established convo tag
|
|
|
|
void
|
|
|
|
SendContext::EncryptAndSendTo(const llarp_buffer_t& payload, ProtocolType t)
|
|
|
|
{
|
|
|
|
auto crypto = m_Endpoint->Router()->crypto();
|
|
|
|
SharedSecret shared;
|
|
|
|
routing::PathTransferMessage msg;
|
|
|
|
ProtocolFrame& f = msg.T;
|
|
|
|
f.N.Randomize();
|
|
|
|
f.T = currentConvoTag;
|
|
|
|
f.S = m_Endpoint->GetSeqNoForConvo(f.T);
|
|
|
|
|
|
|
|
auto now = m_Endpoint->Now();
|
|
|
|
if(remoteIntro.ExpiresSoon(now))
|
|
|
|
{
|
|
|
|
// shift intro
|
|
|
|
if(MarkCurrentIntroBad(now))
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogInfo("intro shifted");
|
2019-04-19 16:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
auto path = m_PathSet->GetNewestPathByRouter(remoteIntro.router);
|
|
|
|
if(!path)
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogError("cannot encrypt and send: no path for intro ", remoteIntro);
|
2019-04-19 16:02:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_DataHandler->GetCachedSessionKeyFor(f.T, shared))
|
|
|
|
{
|
|
|
|
ProtocolMessage m;
|
|
|
|
m_DataHandler->PutIntroFor(f.T, remoteIntro);
|
|
|
|
m_DataHandler->PutReplyIntroFor(f.T, path->intro);
|
|
|
|
m.proto = t;
|
|
|
|
m.introReply = path->intro;
|
|
|
|
f.F = m.introReply.pathID;
|
|
|
|
m.sender = m_Endpoint->GetIdentity().pub;
|
|
|
|
m.tag = f.T;
|
|
|
|
m.PutBuffer(payload);
|
|
|
|
if(!f.EncryptAndSign(crypto, m, shared, m_Endpoint->GetIdentity()))
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogError("failed to sign");
|
2019-04-19 16:02:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogError("No cached session key");
|
2019-04-19 16:02:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg.P = remoteIntro.pathID;
|
|
|
|
msg.Y.Randomize();
|
2019-04-22 17:38:29 +00:00
|
|
|
if(path->SendRoutingMessage(msg, m_Endpoint->Router()))
|
2019-04-19 16:02:32 +00:00
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogDebug("sent message via ", remoteIntro.pathID, " on ",
|
|
|
|
remoteIntro.router);
|
2019-04-19 16:02:32 +00:00
|
|
|
++sequenceNo;
|
|
|
|
lastGoodSend = now;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogWarn("Failed to send routing message for data");
|
2019-04-19 16:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SendContext::AsyncEncryptAndSendTo(const llarp_buffer_t& data,
|
|
|
|
ProtocolType protocol)
|
|
|
|
{
|
|
|
|
auto now = m_Endpoint->Now();
|
|
|
|
if(remoteIntro.ExpiresSoon(now))
|
|
|
|
{
|
|
|
|
if(!MarkCurrentIntroBad(now))
|
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
LogWarn("no good path yet, your message may drop");
|
2019-04-19 16:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(sequenceNo)
|
|
|
|
{
|
|
|
|
EncryptAndSendTo(data, protocol);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AsyncGenIntro(data, protocol);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace service
|
|
|
|
|
|
|
|
} // namespace llarp
|