mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
147 lines
3.3 KiB
C++
147 lines
3.3 KiB
C++
#ifndef LLARP_EXIT_ENDPOINT_HPP
|
|
#define LLARP_EXIT_ENDPOINT_HPP
|
|
|
|
#include <crypto/types.hpp>
|
|
#include <net/ip.hpp>
|
|
#include <path/path.hpp>
|
|
#include <util/time.hpp>
|
|
|
|
#include <queue>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace handlers
|
|
{
|
|
// forward declare
|
|
struct ExitEndpoint;
|
|
} // namespace handlers
|
|
|
|
namespace exit
|
|
{
|
|
/// persistant exit state for 1 identity on the exit node
|
|
struct Endpoint : public util::IStateful
|
|
{
|
|
static constexpr size_t MaxUpstreamQueueSize = 256;
|
|
|
|
Endpoint(const llarp::PubKey& remoteIdent,
|
|
const llarp::PathID_t& beginPath, bool rewriteIP, huint32_t ip,
|
|
llarp::handlers::ExitEndpoint* parent);
|
|
|
|
~Endpoint();
|
|
|
|
/// close ourselves
|
|
void
|
|
Close();
|
|
|
|
/// implement istateful
|
|
util::StatusObject
|
|
ExtractStatus() const override;
|
|
|
|
/// return true if we are expired right now
|
|
bool
|
|
IsExpired(llarp_time_t now) const;
|
|
|
|
bool
|
|
ExpiresSoon(llarp_time_t now, llarp_time_t dlt = 5000) const;
|
|
|
|
/// return true if this endpoint looks dead right now
|
|
bool
|
|
LooksDead(llarp_time_t now, llarp_time_t timeout = 10000) const;
|
|
|
|
/// tick ourself, reset tx/rx rates
|
|
void
|
|
Tick(llarp_time_t now);
|
|
|
|
/// queue traffic from service node / internet to be transmitted
|
|
bool
|
|
QueueInboundTraffic(ManagedBuffer buff);
|
|
|
|
/// flush inbound and outbound traffic queues
|
|
bool
|
|
Flush();
|
|
|
|
/// queue outbound traffic
|
|
/// does ip rewrite here
|
|
bool
|
|
QueueOutboundTraffic(ManagedBuffer pkt, uint64_t counter);
|
|
|
|
/// update local path id and cascade information to parent
|
|
/// return true if success
|
|
bool
|
|
UpdateLocalPath(const llarp::PathID_t& nextPath);
|
|
|
|
llarp::path::IHopHandler*
|
|
GetCurrentPath() const;
|
|
|
|
const llarp::PubKey&
|
|
PubKey() const
|
|
{
|
|
return m_remoteSignKey;
|
|
}
|
|
|
|
const llarp::PathID_t&
|
|
LocalPath() const
|
|
{
|
|
return m_CurrentPath;
|
|
}
|
|
|
|
uint64_t
|
|
TxRate() const
|
|
{
|
|
return m_TxRate;
|
|
}
|
|
|
|
uint64_t
|
|
RxRate() const
|
|
{
|
|
return m_RxRate;
|
|
}
|
|
|
|
huint32_t
|
|
LocalIP() const
|
|
{
|
|
return m_IP;
|
|
}
|
|
|
|
const llarp_time_t createdAt;
|
|
|
|
private:
|
|
llarp::handlers::ExitEndpoint* m_Parent;
|
|
llarp::PubKey m_remoteSignKey;
|
|
llarp::PathID_t m_CurrentPath;
|
|
llarp::huint32_t m_IP;
|
|
uint64_t m_TxRate, m_RxRate;
|
|
llarp_time_t m_LastActive;
|
|
bool m_RewriteSource;
|
|
using InboundTrafficQueue_t =
|
|
std::deque< llarp::routing::TransferTrafficMessage >;
|
|
using TieredQueue = std::map< uint8_t, InboundTrafficQueue_t >;
|
|
// maps number of fragments the message will fit in to the queue for it
|
|
TieredQueue m_DownstreamQueues;
|
|
|
|
struct UpstreamBuffer
|
|
{
|
|
UpstreamBuffer(const llarp::net::IPv4Packet& p, uint64_t c)
|
|
: pkt(p), counter(c)
|
|
{
|
|
}
|
|
|
|
llarp::net::IPv4Packet pkt;
|
|
uint64_t counter;
|
|
|
|
bool
|
|
operator<(const UpstreamBuffer& other) const
|
|
{
|
|
return counter < other.counter;
|
|
}
|
|
};
|
|
|
|
using UpstreamQueue_t = std::priority_queue< UpstreamBuffer >;
|
|
UpstreamQueue_t m_UpstreamQueue;
|
|
uint64_t m_Counter;
|
|
};
|
|
} // namespace exit
|
|
} // namespace llarp
|
|
|
|
#endif
|