llarp/path/pathset.hpp
Namespaces
| Name |
|---|
| std STL namespace. |
| llarp [crypto.hpp] |
| llarp::dht |
| llarp::path |
Classes
| Name | |
|---|---|
| struct | std::hash< std::pair< llarp::RouterID, llarp::PathID_t > > |
| struct | llarp::path::BuildStats Stats about all our path builds. |
| struct | llarp::path::PathSet a set of paths owned by an entity |
Source code
#pragma once
#include "path_types.hpp"
#include <llarp/service/protocol_type.hpp>
#include <llarp/router_id.hpp>
#include <llarp/routing/message.hpp>
#include <llarp/service/intro_set.hpp>
#include <llarp/util/thread/threading.hpp>
#include <llarp/util/time.hpp>
#include <functional>
#include <list>
#include <map>
#include <tuple>
#include <unordered_set>
#include <unordered_map>
namespace std
{
template <>
struct hash<std::pair<llarp::RouterID, llarp::PathID_t>>
{
size_t
operator()(const std::pair<llarp::RouterID, llarp::PathID_t>& i) const
{
return hash<llarp::RouterID>{}(i.first) ^ hash<llarp::PathID_t>{}(i.second);
}
};
} // namespace std
namespace llarp
{
struct RouterContact;
class NodeDB;
namespace dht
{
struct GotIntroMessage;
struct GotRouterMessage;
struct GotNameMessage;
} // namespace dht
namespace path
{
enum PathStatus
{
ePathBuilding,
ePathEstablished,
ePathTimeout,
ePathFailed,
ePathIgnore,
ePathExpired
};
struct BuildStats
{
static constexpr double MinGoodRatio = 0.25;
uint64_t attempts = 0;
uint64_t success = 0;
uint64_t fails = 0;
uint64_t timeouts = 0;
double
SuccessRatio() const;
std::string
ToString() const;
};
using PathRole = int;
constexpr PathRole ePathRoleAny = 0;
constexpr PathRole ePathRoleOutboundHS = (1 << 0);
constexpr PathRole ePathRoleInboundHS = (1 << 1);
constexpr PathRole ePathRoleExit = (1 << 2);
constexpr PathRole ePathRoleSVC = (1 << 3);
constexpr PathRole ePathRoleDHT = (1 << 4);
// forward declare
struct Path;
using Path_ptr = std::shared_ptr<Path>;
struct PathSet;
using PathSet_ptr = std::shared_ptr<PathSet>;
struct PathSet
{
static constexpr size_t max_paths = 32;
PathSet(size_t numDesiredPaths);
virtual PathSet_ptr
GetSelf() = 0;
virtual std::weak_ptr<PathSet>
GetWeak() = 0;
virtual void
BuildOne(PathRole roles = ePathRoleAny) = 0;
virtual void
Build(std::vector<RouterContact> hops, PathRole roles = ePathRoleAny) = 0;
virtual void
Tick(llarp_time_t now);
size_t
NumPathsExistingAt(llarp_time_t futureTime) const;
virtual void
HandlePathBuilt(Path_ptr path) = 0;
virtual void
HandlePathBuildTimeout(Path_ptr path);
virtual void
HandlePathBuildFailedAt(Path_ptr path, RouterID hop);
virtual void
PathBuildStarted(Path_ptr path);
virtual void
HandlePathDied(Path_ptr path);
bool
GetNewestIntro(service::Introduction& intro) const;
void
AddPath(Path_ptr path);
Path_ptr
GetByUpstream(RouterID remote, PathID_t rxid) const;
void
ExpirePaths(llarp_time_t now, AbstractRouter* router);
size_t
NumInStatus(PathStatus st) const;
size_t
AvailablePaths(PathRole role) const;
virtual llarp_time_t
Now() const = 0;
virtual bool
Stop() = 0;
virtual bool
IsStopped() const = 0;
virtual std::string
Name() const = 0;
virtual bool
ShouldRemove() const = 0;
virtual bool
ShouldBuildMore(llarp_time_t now) const;
virtual bool
ShouldBuildMoreForRoles(llarp_time_t now, PathRole roles) const;
virtual size_t
MinRequiredForRoles(PathRole roles) const;
virtual bool
ShouldPublishDescriptors([[maybe_unused]] llarp_time_t now) const
{
return false;
}
virtual void
BlacklistSNode(const RouterID) = 0;
virtual bool
HandleGotIntroMessage(std::shared_ptr<const dht::GotIntroMessage>)
{
return false;
}
virtual bool
HandleGotRouterMessage(std::shared_ptr<const dht::GotRouterMessage>)
{
return false;
}
virtual bool
HandleGotNameMessage(std::shared_ptr<const dht::GotNameMessage>)
{
return false;
}
virtual routing::IMessageHandler*
GetDHTHandler()
{
return nullptr;
}
Path_ptr
GetEstablishedPathClosestTo(
RouterID router,
std::unordered_set<RouterID> excluding = {},
PathRole roles = ePathRoleAny) const;
Path_ptr
PickEstablishedPath(PathRole roles = ePathRoleAny) const;
Path_ptr
PickRandomEstablishedPath(PathRole roles = ePathRoleAny) const;
Path_ptr
GetPathByRouter(RouterID router, PathRole roles = ePathRoleAny) const;
Path_ptr
GetNewestPathByRouter(RouterID router, PathRole roles = ePathRoleAny) const;
Path_ptr
GetRandomPathByRouter(RouterID router, PathRole roles = ePathRoleAny) const;
Path_ptr
GetPathByID(PathID_t id) const;
Path_ptr
GetByEndpointWithID(RouterID router, PathID_t id) const;
std::optional<std::set<service::Introduction>>
GetCurrentIntroductionsWithFilter(
std::function<bool(const service::Introduction&)> filter) const;
virtual bool
PublishIntroSet(const service::EncryptedIntroSet&, AbstractRouter*)
{
return false;
}
virtual void
ResetInternalState() = 0;
virtual bool
BuildOneAlignedTo(const RouterID endpoint) = 0;
virtual void
SendPacketToRemote(const llarp_buffer_t& pkt, service::ProtocolType t) = 0;
virtual std::optional<std::vector<RouterContact>>
GetHopsForBuild() = 0;
void
ForEachPath(std::function<void(const Path_ptr&)> visit) const
{
Lock_t lock(m_PathsMutex);
auto itr = m_Paths.begin();
while (itr != m_Paths.end())
{
visit(itr->second);
++itr;
}
}
void
UpstreamFlush(AbstractRouter* r);
void
DownstreamFlush(AbstractRouter* r);
size_t numDesiredPaths;
protected:
BuildStats m_BuildStats;
void
TickPaths(AbstractRouter* r);
using Mtx_t = util::NullMutex;
using Lock_t = util::NullLock;
using PathMap_t = std::unordered_map<std::pair<RouterID, PathID_t>, Path_ptr>;
mutable Mtx_t m_PathsMutex;
PathMap_t m_Paths;
private:
std::unordered_map<RouterID, std::weak_ptr<path::Path>> m_PathCache;
};
} // namespace path
template <>
constexpr inline bool IsToStringFormattable<path::BuildStats> = true;
} // namespace llarp
Updated on 2026-01-10 at 22:49:45 +0000