#ifndef LLARP_EXIT_SESSION_HPP #define LLARP_EXIT_SESSION_HPP #include #include #include #include #include #include #include namespace llarp { namespace exit { struct BaseSession; using BaseSession_ptr = std::shared_ptr; using SessionReadyFunc = std::function; 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 { static constexpr size_t MaxUpstreamQueueLength = 256; BaseSession( const llarp::RouterID& exitRouter, std::function writepkt, AbstractRouter* r, size_t numpaths, size_t hoplen, bool bundleRC); ~BaseSession() override; std::shared_ptr GetSelf() override { return shared_from_this(); } void BlacklistSNode(const RouterID snode) override; 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& 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 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 m_SnodeBlacklist; using UpstreamTrafficQueue_t = std::deque; using TieredQueue_t = std::map; TieredQueue_t m_Upstream; using DownstreamPkt = std::pair; struct DownstreamPktSorter { bool operator()(const DownstreamPkt& left, const DownstreamPkt& right) const { return left.first < right.first; } }; using DownstreamTrafficQueue_t = std::priority_queue, DownstreamPktSorter>; DownstreamTrafficQueue_t m_Downstream; uint64_t m_Counter; llarp_time_t m_LastUse; std::vector m_PendingCallbacks; const bool m_BundleRC; void CallPendingCallbacks(bool success); }; struct ExitSession final : public BaseSession { ExitSession( const llarp::RouterID& snodeRouter, std::function 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; virtual void SendPacketToRemote(const llarp_buffer_t& pkt) 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 writepkt, AbstractRouter* r, size_t numpaths, size_t hoplen, bool useRouterSNodeKey, bool bundleRC); ~SNodeSession() override = default; std::string Name() const override; virtual void SendPacketToRemote(const llarp_buffer_t& pkt) 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