mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
871c3e3281
* wintun vpn platform for windows * bundle config snippets into nsis installer for exit node, keyfile persisting, reduced hops mode. * use wintun for vpn platform * isolate all windows platform specific code into their own compilation units and libraries * split up internal libraries into more specific components * rename liblokinet.a target to liblokinet-amalgum.a to elimiate ambiguity with liblokinet.so * DNS platform for win32 * rename llarp/ev/ev_libuv.{c,h}pp to llarp/ev/libuv.{c,h}pp as the old name was idiotic * split up net platform into win32 and posix specific compilation units * rename lokinet_init.c to easter_eggs.cpp as that is what they are for and it does not need to be a c compilation target * add cmake option STRIP_SYMBOLS for seperating out debug symbols for windows builds * intercept dns traffic on all interfaces on windows using windivert and feed it into lokinet
242 lines
6.5 KiB
C++
242 lines
6.5 KiB
C++
#include "endpoint.hpp"
|
|
|
|
#include <llarp/handlers/exit.hpp>
|
|
#include <llarp/path/path_context.hpp>
|
|
#include <llarp/router/abstractrouter.hpp>
|
|
#include <llarp/quic/tunnel.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace exit
|
|
{
|
|
Endpoint::Endpoint(
|
|
const llarp::PubKey& remoteIdent,
|
|
const llarp::path::HopHandler_ptr& beginPath,
|
|
bool rewriteIP,
|
|
huint128_t ip,
|
|
llarp::handlers::ExitEndpoint* parent)
|
|
: createdAt{parent->Now()}
|
|
, m_Parent{parent}
|
|
, m_remoteSignKey{remoteIdent}
|
|
, m_CurrentPath{beginPath}
|
|
, m_IP{ip}
|
|
, m_RewriteSource{rewriteIP}
|
|
{
|
|
m_LastActive = parent->Now();
|
|
}
|
|
|
|
Endpoint::~Endpoint()
|
|
{
|
|
if (m_CurrentPath)
|
|
m_Parent->DelEndpointInfo(m_CurrentPath->RXID());
|
|
}
|
|
|
|
void
|
|
Endpoint::Close()
|
|
{
|
|
m_Parent->RemoveExit(this);
|
|
}
|
|
|
|
util::StatusObject
|
|
Endpoint::ExtractStatus() const
|
|
{
|
|
auto now = m_Parent->Now();
|
|
util::StatusObject obj{
|
|
{"identity", m_remoteSignKey.ToString()},
|
|
{"ip", m_IP.ToString()},
|
|
{"txRate", m_TxRate},
|
|
{"rxRate", m_RxRate},
|
|
{"createdAt", to_json(createdAt)},
|
|
{"exiting", !m_RewriteSource},
|
|
{"looksDead", LooksDead(now)},
|
|
{"expiresSoon", ExpiresSoon(now)},
|
|
{"expired", IsExpired(now)}};
|
|
return obj;
|
|
}
|
|
|
|
bool
|
|
Endpoint::UpdateLocalPath(const llarp::PathID_t& nextPath)
|
|
{
|
|
if (!m_Parent->UpdateEndpointPath(m_remoteSignKey, nextPath))
|
|
return false;
|
|
const RouterID us{m_Parent->GetRouter()->pubkey()};
|
|
m_CurrentPath = m_Parent->GetRouter()->pathContext().GetByUpstream(us, nextPath);
|
|
return true;
|
|
}
|
|
|
|
void
|
|
Endpoint::Tick(llarp_time_t now)
|
|
{
|
|
(void)now;
|
|
m_RxRate = 0;
|
|
m_TxRate = 0;
|
|
}
|
|
|
|
bool
|
|
Endpoint::IsExpired(llarp_time_t now) const
|
|
{
|
|
auto path = GetCurrentPath();
|
|
if (path)
|
|
{
|
|
return path->Expired(now);
|
|
}
|
|
// if we don't have an underlying path we are considered expired
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Endpoint::ExpiresSoon(llarp_time_t now, llarp_time_t dlt) const
|
|
{
|
|
if (m_CurrentPath)
|
|
return m_CurrentPath->ExpiresSoon(now, dlt);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Endpoint::LooksDead(llarp_time_t now, llarp_time_t timeout) const
|
|
{
|
|
if (ExpiresSoon(now, timeout))
|
|
return true;
|
|
auto path = GetCurrentPath();
|
|
if (not path)
|
|
return true;
|
|
auto lastPing = path->LastRemoteActivityAt();
|
|
if (lastPing == 0s || (now > lastPing && now - lastPing > timeout))
|
|
return now > m_LastActive && now - m_LastActive > timeout;
|
|
else if (lastPing > 0s) // NOLINT
|
|
return now > lastPing && now - lastPing > timeout;
|
|
return lastPing > 0s;
|
|
}
|
|
|
|
bool
|
|
Endpoint::QueueOutboundTraffic(
|
|
PathID_t path, std::vector<byte_t> buf, uint64_t counter, service::ProtocolType t)
|
|
{
|
|
const service::ConvoTag tag{path.as_array()};
|
|
if (t == service::ProtocolType::QUIC)
|
|
{
|
|
auto quic = m_Parent->GetQUICTunnel();
|
|
if (not quic)
|
|
return false;
|
|
m_TxRate += buf.size();
|
|
quic->receive_packet(tag, std::move(buf));
|
|
m_LastActive = m_Parent->Now();
|
|
return true;
|
|
}
|
|
// queue overflow
|
|
if (m_UpstreamQueue.size() > MaxUpstreamQueueSize)
|
|
return false;
|
|
|
|
llarp::net::IPPacket pkt{std::move(buf)};
|
|
if (pkt.empty())
|
|
return false;
|
|
|
|
if (pkt.IsV6() && m_Parent->SupportsV6())
|
|
{
|
|
huint128_t dst;
|
|
if (m_RewriteSource)
|
|
dst = m_Parent->GetIfAddr();
|
|
else
|
|
dst = pkt.dstv6();
|
|
pkt.UpdateIPv6Address(m_IP, dst);
|
|
}
|
|
else if (pkt.IsV4() && !m_Parent->SupportsV6())
|
|
{
|
|
huint32_t dst;
|
|
if (m_RewriteSource)
|
|
dst = net::TruncateV6(m_Parent->GetIfAddr());
|
|
else
|
|
dst = pkt.dstv4();
|
|
pkt.UpdateIPv4Address(xhtonl(net::TruncateV6(m_IP)), xhtonl(dst));
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
m_TxRate += pkt.size();
|
|
m_UpstreamQueue.emplace(std::move(pkt), counter);
|
|
m_LastActive = m_Parent->Now();
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Endpoint::QueueInboundTraffic(std::vector<byte_t> buf, service::ProtocolType type)
|
|
{
|
|
if (type != service::ProtocolType::QUIC)
|
|
{
|
|
llarp::net::IPPacket pkt{std::move(buf)};
|
|
if (pkt.empty())
|
|
return false;
|
|
|
|
huint128_t src;
|
|
if (m_RewriteSource)
|
|
src = m_Parent->GetIfAddr();
|
|
else
|
|
src = pkt.srcv6();
|
|
if (pkt.IsV6())
|
|
pkt.UpdateIPv6Address(src, m_IP);
|
|
else
|
|
pkt.UpdateIPv4Address(xhtonl(net::TruncateV6(src)), xhtonl(net::TruncateV6(m_IP)));
|
|
|
|
buf = pkt.steal();
|
|
}
|
|
|
|
const uint8_t queue_idx = buf.size() / llarp::routing::ExitPadSize;
|
|
if (m_DownstreamQueues.find(queue_idx) == m_DownstreamQueues.end())
|
|
m_DownstreamQueues.emplace(queue_idx, InboundTrafficQueue_t{});
|
|
auto& queue = m_DownstreamQueues.at(queue_idx);
|
|
if (queue.size() == 0)
|
|
{
|
|
queue.emplace_back();
|
|
queue.back().protocol = type;
|
|
return queue.back().PutBuffer(std::move(buf), m_Counter++);
|
|
}
|
|
auto& msg = queue.back();
|
|
if (msg.Size() + buf.size() > llarp::routing::ExitPadSize)
|
|
{
|
|
queue.emplace_back();
|
|
queue.back().protocol = type;
|
|
return queue.back().PutBuffer(std::move(buf), m_Counter++);
|
|
}
|
|
msg.protocol = type;
|
|
return msg.PutBuffer(std::move(buf), m_Counter++);
|
|
}
|
|
|
|
bool
|
|
Endpoint::Flush()
|
|
{
|
|
// flush upstream queue
|
|
while (m_UpstreamQueue.size())
|
|
{
|
|
m_Parent->QueueOutboundTraffic(
|
|
const_cast<net::IPPacket&>(m_UpstreamQueue.top().pkt).steal());
|
|
m_UpstreamQueue.pop();
|
|
}
|
|
// flush downstream queue
|
|
auto path = GetCurrentPath();
|
|
bool sent = path != nullptr;
|
|
if (path)
|
|
{
|
|
for (auto& item : m_DownstreamQueues)
|
|
{
|
|
auto& queue = item.second;
|
|
while (queue.size())
|
|
{
|
|
auto& msg = queue.front();
|
|
msg.S = path->NextSeqNo();
|
|
if (path->SendRoutingMessage(msg, m_Parent->GetRouter()))
|
|
{
|
|
m_RxRate += msg.Size();
|
|
sent = true;
|
|
}
|
|
queue.pop_front();
|
|
}
|
|
}
|
|
}
|
|
for (auto& item : m_DownstreamQueues)
|
|
item.second.clear();
|
|
return sent;
|
|
}
|
|
} // namespace exit
|
|
} // namespace llarp
|