mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
229 lines
5.3 KiB
C++
229 lines
5.3 KiB
C++
#ifndef LLARP_EXIT_SESSION_HPP
|
|
#define LLARP_EXIT_SESSION_HPP
|
|
|
|
#include <exit/exit_messages.hpp>
|
|
#include <net/ip.hpp>
|
|
#include <path/pathbuilder.hpp>
|
|
#include <routing/transfer_traffic_message.hpp>
|
|
|
|
#include <deque>
|
|
#include <queue>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace exit
|
|
{
|
|
struct BaseSession;
|
|
|
|
using BaseSession_ptr = std::shared_ptr<BaseSession>;
|
|
|
|
using SessionReadyFunc = std::function<void(BaseSession_ptr)>;
|
|
|
|
static constexpr auto LifeSpan = path::default_lifetime;
|
|
|
|
/// a persisting exit session with an exit router
|
|
struct BaseSession : public llarp::path::Builder,
|
|
public std::enable_shared_from_this<BaseSession>
|
|
{
|
|
static constexpr size_t MaxUpstreamQueueLength = 256;
|
|
|
|
BaseSession(
|
|
const llarp::RouterID& exitRouter,
|
|
std::function<bool(const llarp_buffer_t&)> writepkt,
|
|
AbstractRouter* r,
|
|
size_t numpaths,
|
|
size_t hoplen,
|
|
bool bundleRC);
|
|
|
|
~BaseSession() override;
|
|
|
|
std::shared_ptr<path::PathSet>
|
|
GetSelf() override
|
|
{
|
|
return shared_from_this();
|
|
}
|
|
|
|
void
|
|
BlacklistSnode(const RouterID snode);
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const;
|
|
|
|
bool
|
|
ShouldBundleRC() const override
|
|
{
|
|
return m_BundleRC;
|
|
}
|
|
|
|
void
|
|
ResetInternalState() override;
|
|
|
|
bool UrgentBuild(llarp_time_t) const override;
|
|
|
|
void
|
|
HandlePathDied(llarp::path::Path_ptr p) override;
|
|
|
|
bool
|
|
CheckPathDead(path::Path_ptr p, llarp_time_t dlt);
|
|
|
|
bool
|
|
SelectHop(
|
|
llarp_nodedb* db,
|
|
const std::set<RouterID>& prev,
|
|
RouterContact& cur,
|
|
size_t hop,
|
|
llarp::path::PathRole roles) override;
|
|
|
|
bool
|
|
ShouldBuildMore(llarp_time_t now) const override;
|
|
|
|
void
|
|
HandlePathBuilt(llarp::path::Path_ptr p) override;
|
|
|
|
bool
|
|
QueueUpstreamTraffic(llarp::net::IPPacket pkt, const size_t packSize);
|
|
|
|
/// flush upstream to exit via paths
|
|
bool
|
|
FlushUpstream();
|
|
|
|
/// flush downstream to user via tun
|
|
void
|
|
FlushDownstream();
|
|
|
|
path::PathRole
|
|
GetRoles() const override
|
|
{
|
|
return path::ePathRoleExit;
|
|
}
|
|
|
|
/// send close and stop session
|
|
bool
|
|
Stop() override;
|
|
|
|
bool
|
|
IsReady() const;
|
|
|
|
const llarp::RouterID
|
|
Endpoint() const
|
|
{
|
|
return m_ExitRouter;
|
|
}
|
|
|
|
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;
|
|
|
|
bool
|
|
HandleTrafficDrop(llarp::path::Path_ptr p, const llarp::PathID_t& path, uint64_t s);
|
|
|
|
bool
|
|
HandleGotExit(llarp::path::Path_ptr p, llarp_time_t b);
|
|
|
|
bool
|
|
HandleTraffic(llarp::path::Path_ptr p, const llarp_buffer_t& buf, uint64_t seqno);
|
|
|
|
private:
|
|
std::set<RouterID> m_SnodeBlacklist;
|
|
|
|
using UpstreamTrafficQueue_t = std::deque<llarp::routing::TransferTrafficMessage>;
|
|
using TieredQueue_t = std::map<uint8_t, UpstreamTrafficQueue_t>;
|
|
TieredQueue_t m_Upstream;
|
|
|
|
using DownstreamPkt = std::pair<uint64_t, llarp::net::IPPacket>;
|
|
|
|
struct DownstreamPktSorter
|
|
{
|
|
bool
|
|
operator()(const DownstreamPkt& left, const DownstreamPkt& right) const
|
|
{
|
|
return left.first < right.first;
|
|
}
|
|
};
|
|
|
|
using DownstreamTrafficQueue_t =
|
|
std::priority_queue<DownstreamPkt, std::vector<DownstreamPkt>, DownstreamPktSorter>;
|
|
DownstreamTrafficQueue_t m_Downstream;
|
|
|
|
uint64_t m_Counter;
|
|
llarp_time_t m_LastUse;
|
|
|
|
std::vector<SessionReadyFunc> m_PendingCallbacks;
|
|
const bool m_BundleRC;
|
|
|
|
void
|
|
CallPendingCallbacks(bool success);
|
|
};
|
|
|
|
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,
|
|
bool bundleRC)
|
|
: BaseSession(snodeRouter, writepkt, r, numpaths, hoplen, bundleRC)
|
|
{
|
|
}
|
|
|
|
~ExitSession() override = default;
|
|
|
|
std::string
|
|
Name() const override;
|
|
|
|
protected:
|
|
void
|
|
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
|
|
{
|
|
// 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,
|
|
bool bundleRC);
|
|
|
|
~SNodeSession() override = default;
|
|
|
|
std::string
|
|
Name() const override;
|
|
|
|
protected:
|
|
void
|
|
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
|
|
{
|
|
// TODO: set expiration time
|
|
msg.X = 0;
|
|
msg.E = 0;
|
|
}
|
|
};
|
|
|
|
} // namespace exit
|
|
} // namespace llarp
|
|
|
|
#endif
|