2018-11-12 16:43:40 +00:00
|
|
|
#ifndef LLARP_EXIT_SESSION_HPP
|
|
|
|
#define LLARP_EXIT_SESSION_HPP
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2019-06-15 14:55:14 +00:00
|
|
|
#include <exit/exit_messages.hpp>
|
2020-05-20 19:02:48 +00:00
|
|
|
#include <net/ip_packet.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <path/pathbuilder.hpp>
|
2019-06-19 22:30:07 +00:00
|
|
|
#include <routing/transfer_traffic_message.hpp>
|
2020-05-20 19:25:57 +00:00
|
|
|
#include <constants/path.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-11-28 16:38:20 +00:00
|
|
|
#include <deque>
|
2018-12-20 12:41:17 +00:00
|
|
|
#include <queue>
|
2018-11-12 16:43:40 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace exit
|
|
|
|
{
|
2019-03-01 19:10:42 +00:00
|
|
|
struct BaseSession;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
using BaseSession_ptr = std::shared_ptr<BaseSession>;
|
2019-04-23 16:13:22 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
using SessionReadyFunc = std::function<void(BaseSession_ptr)>;
|
2019-03-01 19:10:42 +00:00
|
|
|
|
2020-02-24 19:40:45 +00:00
|
|
|
static constexpr auto LifeSpan = path::default_lifetime;
|
|
|
|
|
2019-02-01 01:58:06 +00:00
|
|
|
/// a persisting exit session with an exit router
|
2019-04-23 16:13:22 +00:00
|
|
|
struct BaseSession : public llarp::path::Builder,
|
2020-04-07 18:38:56 +00:00
|
|
|
public std::enable_shared_from_this<BaseSession>
|
2018-11-12 16:43:40 +00:00
|
|
|
{
|
2018-11-29 13:12:35 +00:00
|
|
|
static constexpr size_t MaxUpstreamQueueLength = 256;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
BaseSession(
|
|
|
|
const llarp::RouterID& exitRouter,
|
|
|
|
std::function<bool(const llarp_buffer_t&)> writepkt,
|
|
|
|
AbstractRouter* r,
|
|
|
|
size_t numpaths,
|
|
|
|
size_t hoplen,
|
|
|
|
bool bundleRC);
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
~BaseSession() override;
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::shared_ptr<path::PathSet>
|
2019-04-23 16:13:22 +00:00
|
|
|
GetSelf() override
|
|
|
|
{
|
|
|
|
return shared_from_this();
|
|
|
|
}
|
|
|
|
|
2019-05-10 16:19:33 +00:00
|
|
|
void
|
|
|
|
BlacklistSnode(const RouterID snode);
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
2019-04-19 15:10:26 +00:00
|
|
|
ExtractStatus() const;
|
2019-02-08 19:43:25 +00:00
|
|
|
|
2019-04-18 11:49:54 +00:00
|
|
|
bool
|
|
|
|
ShouldBundleRC() const override
|
|
|
|
{
|
2019-05-02 18:11:44 +00:00
|
|
|
return m_BundleRC;
|
2019-04-18 11:49:54 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
void
|
2019-05-07 18:15:22 +00:00
|
|
|
ResetInternalState() override;
|
|
|
|
|
2019-05-07 17:46:38 +00:00
|
|
|
bool UrgentBuild(llarp_time_t) const override;
|
2019-05-07 15:08:57 +00:00
|
|
|
|
2019-03-30 13:02:10 +00:00
|
|
|
void
|
2019-04-23 14:28:59 +00:00
|
|
|
HandlePathDied(llarp::path::Path_ptr p) override;
|
2019-03-30 13:02:10 +00:00
|
|
|
|
2019-04-16 19:39:58 +00:00
|
|
|
bool
|
2019-04-23 14:28:59 +00:00
|
|
|
CheckPathDead(path::Path_ptr p, llarp_time_t dlt);
|
2019-04-16 19:39:58 +00:00
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
SelectHop(
|
|
|
|
llarp_nodedb* db,
|
|
|
|
const std::set<RouterID>& prev,
|
|
|
|
RouterContact& cur,
|
|
|
|
size_t hop,
|
|
|
|
llarp::path::PathRole roles) override;
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2018-11-16 14:03:13 +00:00
|
|
|
bool
|
|
|
|
ShouldBuildMore(llarp_time_t now) const override;
|
|
|
|
|
2018-11-14 19:34:17 +00:00
|
|
|
void
|
2019-04-23 14:28:59 +00:00
|
|
|
HandlePathBuilt(llarp::path::Path_ptr p) override;
|
2018-11-14 19:34:17 +00:00
|
|
|
|
|
|
|
bool
|
2019-06-11 16:44:05 +00:00
|
|
|
QueueUpstreamTraffic(llarp::net::IPPacket pkt, const size_t packSize);
|
2018-11-28 16:38:20 +00:00
|
|
|
|
2019-04-30 13:56:39 +00:00
|
|
|
/// flush upstream to exit via paths
|
2018-11-28 16:38:20 +00:00
|
|
|
bool
|
2019-04-30 13:56:39 +00:00
|
|
|
FlushUpstream();
|
|
|
|
|
|
|
|
/// flush downstream to user via tun
|
|
|
|
void
|
|
|
|
FlushDownstream();
|
2018-11-28 16:38:20 +00:00
|
|
|
|
2019-03-07 15:17:29 +00:00
|
|
|
path::PathRole
|
|
|
|
GetRoles() const override
|
|
|
|
{
|
|
|
|
return path::ePathRoleExit;
|
|
|
|
}
|
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// send close and stop session
|
|
|
|
bool
|
|
|
|
Stop() override;
|
|
|
|
|
2018-12-02 18:07:07 +00:00
|
|
|
bool
|
2018-11-29 13:12:35 +00:00
|
|
|
IsReady() const;
|
|
|
|
|
2018-12-10 15:44:18 +00:00
|
|
|
const llarp::RouterID
|
|
|
|
Endpoint() const
|
|
|
|
{
|
|
|
|
return m_ExitRouter;
|
|
|
|
}
|
|
|
|
|
2018-12-13 12:27:14 +00:00
|
|
|
bool
|
|
|
|
IsExpired(llarp_time_t now) const;
|
|
|
|
|
2018-12-13 16:14:44 +00:00
|
|
|
bool
|
|
|
|
LoadIdentityFromFile(const char* fname);
|
|
|
|
|
2019-03-01 19:10:42 +00:00
|
|
|
void
|
|
|
|
AddReadyHook(SessionReadyFunc func);
|
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
protected:
|
|
|
|
llarp::RouterID m_ExitRouter;
|
2018-12-13 16:14:44 +00:00
|
|
|
llarp::SecretKey m_ExitIdentity;
|
2020-04-07 18:38:56 +00:00
|
|
|
std::function<bool(const llarp_buffer_t&)> m_WritePacket;
|
2018-12-02 18:07:07 +00:00
|
|
|
|
|
|
|
virtual void
|
|
|
|
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const = 0;
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2018-11-14 19:34:17 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
HandleTrafficDrop(llarp::path::Path_ptr p, const llarp::PathID_t& path, uint64_t s);
|
2018-11-12 16:43:40 +00:00
|
|
|
|
2018-11-14 19:34:17 +00:00
|
|
|
bool
|
2019-04-23 14:28:59 +00:00
|
|
|
HandleGotExit(llarp::path::Path_ptr p, llarp_time_t b);
|
2018-11-14 19:34:17 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
HandleTraffic(llarp::path::Path_ptr p, const llarp_buffer_t& buf, uint64_t seqno);
|
2018-11-14 19:34:17 +00:00
|
|
|
|
2018-12-02 18:07:07 +00:00
|
|
|
private:
|
2020-04-07 18:38:56 +00:00
|
|
|
std::set<RouterID> m_SnodeBlacklist;
|
2019-05-10 16:19:33 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
using UpstreamTrafficQueue_t = std::deque<llarp::routing::TransferTrafficMessage>;
|
|
|
|
using TieredQueue_t = std::map<uint8_t, UpstreamTrafficQueue_t>;
|
2018-11-29 15:45:27 +00:00
|
|
|
TieredQueue_t m_Upstream;
|
2018-12-20 12:41:17 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
using DownstreamPkt = std::pair<uint64_t, llarp::net::IPPacket>;
|
2018-12-20 12:41:17 +00:00
|
|
|
|
|
|
|
struct DownstreamPktSorter
|
|
|
|
{
|
|
|
|
bool
|
|
|
|
operator()(const DownstreamPkt& left, const DownstreamPkt& right) const
|
|
|
|
{
|
2018-12-20 13:06:36 +00:00
|
|
|
return left.first < right.first;
|
2018-12-20 12:41:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using DownstreamTrafficQueue_t =
|
2020-04-07 18:38:56 +00:00
|
|
|
std::priority_queue<DownstreamPkt, std::vector<DownstreamPkt>, DownstreamPktSorter>;
|
2018-12-20 12:41:17 +00:00
|
|
|
DownstreamTrafficQueue_t m_Downstream;
|
|
|
|
|
2018-11-29 21:19:20 +00:00
|
|
|
uint64_t m_Counter;
|
2018-12-13 12:27:14 +00:00
|
|
|
llarp_time_t m_LastUse;
|
2019-03-01 19:10:42 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::vector<SessionReadyFunc> m_PendingCallbacks;
|
2019-05-02 18:11:44 +00:00
|
|
|
const bool m_BundleRC;
|
2019-03-07 15:17:29 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
CallPendingCallbacks(bool success);
|
2018-11-12 16:43:40 +00:00
|
|
|
};
|
|
|
|
|
2018-11-29 13:12:35 +00:00
|
|
|
struct ExitSession final : public BaseSession
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
ExitSession(
|
|
|
|
const llarp::RouterID& snodeRouter,
|
|
|
|
std::function<bool(const llarp_buffer_t&)> writepkt,
|
|
|
|
AbstractRouter* r,
|
|
|
|
size_t numpaths,
|
|
|
|
size_t hoplen,
|
|
|
|
bool bundleRC)
|
2019-05-02 18:11:44 +00:00
|
|
|
: BaseSession(snodeRouter, writepkt, r, numpaths, hoplen, bundleRC)
|
2019-04-24 23:27:31 +00:00
|
|
|
{
|
|
|
|
}
|
2018-12-02 18:07:07 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
~ExitSession() override = default;
|
2018-12-02 18:07:07 +00:00
|
|
|
|
2019-03-22 14:10:30 +00:00
|
|
|
std::string
|
|
|
|
Name() const override;
|
|
|
|
|
2018-12-02 18:07:07 +00:00
|
|
|
protected:
|
2019-07-30 23:42:13 +00:00
|
|
|
void
|
2018-12-02 18:07:07 +00:00
|
|
|
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
|
2018-11-29 13:12:35 +00:00
|
|
|
{
|
|
|
|
// TODO: set expiration time
|
|
|
|
msg.X = 0;
|
|
|
|
msg.E = 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SNodeSession final : public BaseSession
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
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);
|
2018-11-29 13:12:35 +00:00
|
|
|
|
2019-07-30 23:42:13 +00:00
|
|
|
~SNodeSession() override = default;
|
2018-11-29 13:12:35 +00:00
|
|
|
|
2019-03-22 14:10:30 +00:00
|
|
|
std::string
|
|
|
|
Name() const override;
|
|
|
|
|
2018-12-02 18:07:07 +00:00
|
|
|
protected:
|
|
|
|
void
|
|
|
|
PopulateRequest(llarp::routing::ObtainExitMessage& msg) const override
|
2018-11-29 13:12:35 +00:00
|
|
|
{
|
|
|
|
// TODO: set expiration time
|
|
|
|
msg.X = 0;
|
|
|
|
msg.E = 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-12 16:43:40 +00:00
|
|
|
} // namespace exit
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-12-10 15:44:18 +00:00
|
|
|
#endif
|