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

163 lines
4.2 KiB
C++
Raw Normal View History

#ifndef LLARP_EXIT_SESSION_HPP
#define LLARP_EXIT_SESSION_HPP
#include <messages/exit.hpp>
#include <messages/transfer_traffic.hpp>
#include <net/ip.hpp>
2019-01-11 02:19:36 +01:00
#include <path/pathbuilder.hpp>
2018-11-28 17:38:20 +01:00
#include <deque>
2018-12-20 13:41:17 +01:00
#include <queue>
namespace llarp
{
namespace exit
{
struct BaseSession;
using SessionReadyFunc = std::function< void(BaseSession*) >;
/// a persisting exit session with an exit router
struct BaseSession : public llarp::path::Builder
{
2018-11-29 14:12:35 +01:00
static constexpr size_t MaxUpstreamQueueLength = 256;
2018-12-13 13:27:14 +01:00
static constexpr llarp_time_t LifeSpan = 60 * 10 * 1000;
2018-11-29 14:12:35 +01:00
2018-11-14 20:34:17 +01:00
BaseSession(const llarp::RouterID& exitRouter,
std::function< bool(const llarp_buffer_t&) > writepkt,
AbstractRouter* r, size_t numpaths, size_t hoplen);
2018-11-29 14:12:35 +01:00
virtual ~BaseSession();
2019-02-11 18:14:43 +01:00
util::StatusObject
ExtractStatus() const override;
2019-02-08 20:43:25 +01:00
bool
SelectHop(llarp_nodedb* db, const RouterContact& prev, RouterContact& cur,
2018-11-14 19:02:27 +01:00
size_t hop, llarp::path::PathRole roles) override;
bool
ShouldBuildMore(llarp_time_t now) const override;
2018-11-14 20:34:17 +01:00
void
HandlePathBuilt(llarp::path::Path* p) override;
bool
2018-11-28 17:38:20 +01:00
QueueUpstreamTraffic(llarp::net::IPv4Packet pkt, const size_t packSize);
2018-12-20 13:41:17 +01:00
/// flush upstream and downstream traffic
2018-11-28 17:38:20 +01:00
bool
2018-12-20 13:41:17 +01:00
Flush();
2018-11-28 17:38:20 +01:00
/// send close and stop session
bool
Stop() override;
bool
2018-11-29 14:12:35 +01:00
IsReady() const;
2018-12-10 16:44:18 +01:00
const llarp::RouterID
Endpoint() const
{
return m_ExitRouter;
}
2018-12-13 13:27:14 +01:00
bool
IsExpired(llarp_time_t now) const;
bool
LoadIdentityFromFile(const char* fname);
void
AddReadyHook(SessionReadyFunc func);
protected:
llarp::RouterID m_ExitRouter;
llarp::SecretKey m_ExitIdentity;
std::function< bool(const llarp_buffer_t&) > m_WritePacket;
virtual void
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const = 0;
2018-11-14 20:34:17 +01:00
bool
HandleTrafficDrop(llarp::path::Path* p, const llarp::PathID_t& path,
uint64_t s);
2018-11-14 20:34:17 +01:00
bool
HandleGotExit(llarp::path::Path* p, llarp_time_t b);
bool
HandleTraffic(llarp::path::Path* p, const llarp_buffer_t& buf,
uint64_t seqno);
2018-11-14 20:34:17 +01:00
private:
using UpstreamTrafficQueue_t =
std::deque< llarp::routing::TransferTrafficMessage >;
using TieredQueue_t = std::map< uint8_t, UpstreamTrafficQueue_t >;
TieredQueue_t m_Upstream;
2018-12-20 13:41:17 +01:00
using DownstreamPkt = std::pair< uint64_t, llarp::net::IPv4Packet >;
struct DownstreamPktSorter
{
bool
operator()(const DownstreamPkt& left, const DownstreamPkt& right) const
{
2018-12-20 14:06:36 +01:00
return left.first < right.first;
2018-12-20 13:41:17 +01:00
}
};
using DownstreamTrafficQueue_t =
std::priority_queue< DownstreamPkt, std::vector< DownstreamPkt >,
DownstreamPktSorter >;
DownstreamTrafficQueue_t m_Downstream;
2018-11-29 22:19:20 +01:00
uint64_t m_Counter;
2018-12-13 13:27:14 +01:00
llarp_time_t m_LastUse;
std::vector< SessionReadyFunc > m_PendingCallbacks;
};
2018-11-29 14:12:35 +01:00
struct ExitSession final : public BaseSession
{
ExitSession(const llarp::RouterID& snodeRouter,
std::function< bool(const llarp_buffer_t&) > writepkt,
AbstractRouter* r, size_t numpaths, size_t hoplen)
: BaseSession(snodeRouter, writepkt, r, numpaths, hoplen){};
~ExitSession(){};
protected:
virtual void
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
2018-11-29 14:12:35 +01:00
{
// TODO: set expiration time
msg.X = 0;
msg.E = 1;
}
};
struct SNodeSession final : public BaseSession
{
SNodeSession(const llarp::RouterID& snodeRouter,
std::function< bool(const llarp_buffer_t&) > writepkt,
AbstractRouter* r, size_t numpaths, size_t hoplen,
bool useRouterSNodeKey = false);
2018-11-29 14:12:35 +01:00
~SNodeSession(){};
2018-11-29 14:12:35 +01:00
protected:
void
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
2018-11-29 14:12:35 +01:00
{
// TODO: set expiration time
msg.X = 0;
msg.E = 0;
}
};
} // namespace exit
} // namespace llarp
2018-12-10 16:44:18 +01:00
#endif