1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/transit_hop.cpp

160 lines
4.5 KiB
C++
Raw Normal View History

2018-06-22 02:25:30 +02:00
#include <llarp/path.hpp>
2018-06-26 18:23:43 +02:00
#include <llarp/routing/handler.hpp>
2018-06-22 02:25:30 +02:00
#include "buffer.hpp"
#include "router.hpp"
namespace llarp
{
namespace path
2018-06-22 02:25:30 +02:00
{
2018-06-26 18:23:43 +02:00
TransitHop::TransitHop()
{
}
bool
TransitHop::Expired(llarp_time_t now) const
{
return now - started > lifetime;
}
2018-06-22 02:25:30 +02:00
TransitHopInfo::TransitHopInfo(const TransitHopInfo& other)
: txID(other.txID)
, rxID(other.rxID)
, upstream(other.upstream)
, downstream(other.downstream)
{
}
2018-06-22 02:25:30 +02:00
TransitHopInfo::TransitHopInfo(const RouterID& down,
const LR_CommitRecord& record)
: txID(record.txid)
, rxID(record.rxid)
, upstream(record.nextHop)
, downstream(down)
{
}
2018-06-22 02:25:30 +02:00
TransitHop::TransitHop(const TransitHop& other)
: info(other.info)
, pathKey(other.pathKey)
, started(other.started)
, lifetime(other.lifetime)
, version(other.version)
2018-06-22 02:25:30 +02:00
{
}
bool
TransitHop::SendRoutingMessage(llarp::routing::IMessage* msg,
llarp_router* r)
{
msg->S = m_SequenceNum++;
2018-08-14 23:17:18 +02:00
byte_t tmp[MAX_LINK_MSG_SIZE - 1024];
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
if(!msg->BEncode(&buf))
{
llarp::LogError("failed to encode routing message");
return false;
}
TunnelNonce N;
N.Randomize();
buf.sz = buf.cur - buf.base;
// pad smaller messages
if(buf.sz < MESSAGE_PAD_SIZE)
{
// randomize padding
r->crypto.randbytes(buf.cur, MESSAGE_PAD_SIZE - buf.sz);
buf.sz = MESSAGE_PAD_SIZE;
}
buf.cur = buf.base;
return HandleDownstream(buf, N, r);
}
2018-06-22 02:25:30 +02:00
bool
TransitHop::HandleDownstream(llarp_buffer_t buf, const TunnelNonce& Y,
llarp_router* r)
{
RelayDownstreamMessage* msg = new RelayDownstreamMessage;
msg->pathid = info.rxID;
msg->Y = Y ^ nonceXOR;
r->crypto.xchacha20(buf, pathKey, Y);
msg->X = buf;
llarp::LogDebug("relay ", msg->X.size(), " bytes downstream from ",
info.upstream, " to ", info.downstream);
return r->SendToOrQueue(info.downstream, msg);
}
2018-06-22 02:25:30 +02:00
bool
TransitHop::HandleUpstream(llarp_buffer_t buf, const TunnelNonce& Y,
llarp_router* r)
{
r->crypto.xchacha20(buf, pathKey, Y);
2018-06-26 18:23:43 +02:00
if(info.upstream == RouterID(r->pubkey()))
{
return m_MessageParser.ParseMessageBuffer(buf, this, info.rxID, r);
2018-06-26 18:23:43 +02:00
}
else
{
RelayUpstreamMessage* msg = new RelayUpstreamMessage;
msg->pathid = info.txID;
msg->Y = Y ^ nonceXOR;
2018-06-26 18:23:43 +02:00
msg->X = buf;
llarp::LogDebug("relay ", msg->X.size(), " bytes upstream from ",
info.downstream, " to ", info.upstream);
2018-06-26 18:23:43 +02:00
return r->SendToOrQueue(info.upstream, msg);
}
}
bool
TransitHop::HandleDHTMessage(const llarp::dht::IMessage* msg,
llarp_router* r)
{
return r->dht->impl.RelayRequestForPath(info.rxID, msg);
2018-06-26 18:23:43 +02:00
}
bool
TransitHop::HandlePathLatencyMessage(
const llarp::routing::PathLatencyMessage* msg, llarp_router* r)
{
llarp::routing::PathLatencyMessage reply;
reply.L = msg->T;
return SendRoutingMessage(&reply, r);
}
2018-06-26 18:23:43 +02:00
bool
TransitHop::HandlePathConfirmMessage(
const llarp::routing::PathConfirmMessage* msg, llarp_router* r)
{
llarp::LogWarn("unwarrented path confirm message on ", info);
2018-06-26 18:23:43 +02:00
return false;
}
bool
TransitHop::HandlePathTransferMessage(
const llarp::routing::PathTransferMessage* msg, llarp_router* r)
{
2018-08-12 19:22:29 +02:00
auto path = r->paths.GetByUpstream(r->pubkey(), msg->P);
if(!path)
{
llarp::LogWarn("No such path for path transfer pathid=", msg->P);
return false;
}
byte_t tmp[service::MAX_PROTOCOL_MESSAGE_SIZE];
auto buf = llarp::StackBuffer< decltype(tmp) >(tmp);
if(!msg->T.BEncode(&buf))
{
llarp::LogWarn("failed to transfer data message, encode failed");
return false;
}
// rewind0
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
// send
llarp::LogInfo("Transfer ", buf.sz, " bytes", " to ", msg->P);
return path->HandleDownstream(buf, msg->Y, r);
2018-06-26 18:23:43 +02:00
}
} // namespace path
2018-06-22 07:44:19 +02:00
} // namespace llarp