2018-06-25 15:12:08 +00:00
|
|
|
#ifndef LLARP_PATHSET_HPP
|
|
|
|
#define LLARP_PATHSET_HPP
|
2018-11-19 22:45:37 +00:00
|
|
|
#include <llarp/time.hpp>
|
2018-07-12 18:21:44 +00:00
|
|
|
#include <functional>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <list>
|
2018-06-25 15:12:08 +00:00
|
|
|
#include <llarp/path_types.hpp>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <llarp/router_id.hpp>
|
2018-07-18 03:10:21 +00:00
|
|
|
#include <llarp/routing/message.hpp>
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <llarp/service/IntroSet.hpp>
|
2018-07-18 03:10:21 +00:00
|
|
|
#include <llarp/service/lookup.hpp>
|
2018-08-30 18:48:43 +00:00
|
|
|
#include <llarp/dht/messages/all.hpp>
|
2018-06-25 15:12:08 +00:00
|
|
|
#include <map>
|
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-07-09 17:32:11 +00:00
|
|
|
namespace dht
|
|
|
|
{
|
|
|
|
struct GotIntroMessage;
|
|
|
|
}
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
namespace path
|
|
|
|
{
|
2018-11-14 18:02:27 +00:00
|
|
|
/// status of a path
|
2018-06-25 15:12:08 +00:00
|
|
|
enum PathStatus
|
|
|
|
{
|
|
|
|
ePathBuilding,
|
|
|
|
ePathEstablished,
|
|
|
|
ePathTimeout,
|
|
|
|
ePathExpired
|
|
|
|
};
|
2018-11-14 18:02:27 +00:00
|
|
|
|
|
|
|
/// the role of this path can fuffill
|
|
|
|
using PathRole = int;
|
|
|
|
|
|
|
|
/// capable of any role
|
|
|
|
constexpr PathRole ePathRoleAny = 0;
|
|
|
|
/// outbound hs traffic capabale
|
|
|
|
constexpr PathRole ePathRoleOutboundHS = (1 << 0);
|
|
|
|
/// inbound hs traffic capable
|
|
|
|
constexpr PathRole ePathRoleInboundHS = (1 << 1);
|
|
|
|
/// exit traffic capable
|
|
|
|
constexpr PathRole ePathRoleExit = (1 << 2);
|
2018-11-21 12:31:36 +00:00
|
|
|
/// service node capable
|
|
|
|
constexpr PathRole ePathRoleSVC = (1 << 3);
|
2018-11-14 18:02:27 +00:00
|
|
|
/// dht message capable
|
2018-11-21 12:31:36 +00:00
|
|
|
constexpr PathRole ePathRoleDHT = (1 << 4);
|
2018-11-14 18:02:27 +00:00
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
// forward declare
|
|
|
|
struct Path;
|
|
|
|
|
|
|
|
/// a set of paths owned by an entity
|
|
|
|
struct PathSet
|
|
|
|
{
|
|
|
|
/// construct
|
|
|
|
/// @params numPaths the number of paths to maintain
|
|
|
|
PathSet(size_t numPaths);
|
|
|
|
|
2018-06-29 16:02:39 +00:00
|
|
|
/// tick owned paths
|
|
|
|
void
|
|
|
|
Tick(llarp_time_t now, llarp_router* r);
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
RemovePath(Path* path);
|
|
|
|
|
2018-08-02 00:48:43 +00:00
|
|
|
virtual void
|
2018-11-07 15:30:22 +00:00
|
|
|
HandlePathBuilt(__attribute__((unused)) Path* path);
|
2018-06-25 15:12:08 +00:00
|
|
|
|
2018-09-26 13:04:25 +00:00
|
|
|
virtual void
|
2018-11-07 15:30:22 +00:00
|
|
|
HandlePathBuildTimeout(__attribute__((unused)) Path* path);
|
2018-09-26 13:04:25 +00:00
|
|
|
|
2018-09-27 10:51:30 +00:00
|
|
|
bool
|
|
|
|
GetNewestIntro(service::Introduction& intro) const;
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
void
|
|
|
|
AddPath(Path* path);
|
|
|
|
|
|
|
|
Path*
|
2018-08-01 22:10:38 +00:00
|
|
|
GetByUpstream(const RouterID& remote, const PathID_t& rxid) const;
|
2018-06-25 15:12:08 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
ExpirePaths(llarp_time_t now);
|
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
/// get the number of paths in this status
|
2018-06-25 15:12:08 +00:00
|
|
|
size_t
|
|
|
|
NumInStatus(PathStatus st) const;
|
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
/// get the number of paths that match the role that are available
|
|
|
|
size_t
|
|
|
|
AvailablePaths(PathRole role) const;
|
|
|
|
|
2018-10-29 16:48:36 +00:00
|
|
|
/// get time from event loop
|
|
|
|
virtual llarp_time_t
|
|
|
|
Now() const = 0;
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
/// return true if we should build another path
|
2018-08-23 15:19:16 +00:00
|
|
|
virtual bool
|
2018-10-29 16:48:36 +00:00
|
|
|
ShouldBuildMore(llarp_time_t now) const;
|
2018-06-25 15:12:08 +00:00
|
|
|
|
2018-11-14 18:02:27 +00:00
|
|
|
/// return true if we need another path with the given path roles
|
|
|
|
virtual bool
|
|
|
|
ShouldBuildMoreForRoles(llarp_time_t now, PathRole roles) const;
|
|
|
|
|
|
|
|
/// return the minimum number of paths we want for given roles
|
|
|
|
virtual size_t
|
|
|
|
MinRequiredForRoles(PathRole roles) const;
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
/// return true if we should publish a new hidden service descriptor
|
2018-07-18 03:10:21 +00:00
|
|
|
virtual bool
|
2018-11-07 15:30:22 +00:00
|
|
|
ShouldPublishDescriptors(__attribute__((unused)) llarp_time_t now) const
|
2018-07-18 03:10:21 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-07-17 06:17:13 +00:00
|
|
|
/// override me in subtype
|
2018-07-11 16:11:19 +00:00
|
|
|
virtual bool
|
2018-11-07 15:30:22 +00:00
|
|
|
HandleGotIntroMessage(__attribute__((unused))
|
|
|
|
const llarp::dht::GotIntroMessage* msg)
|
2018-07-11 16:11:19 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
/// override me in subtype
|
|
|
|
virtual bool
|
2018-11-07 15:30:22 +00:00
|
|
|
HandleGotRouterMessage(__attribute__((unused))
|
|
|
|
const llarp::dht::GotRouterMessage* msg)
|
2018-08-10 21:34:11 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual routing::IMessageHandler*
|
|
|
|
GetDHTHandler()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
Path*
|
2018-11-14 18:02:27 +00:00
|
|
|
GetEstablishedPathClosestTo(const RouterID& router,
|
|
|
|
PathRole roles = ePathRoleAny) const;
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-07-22 23:14:29 +00:00
|
|
|
Path*
|
2018-11-14 18:02:27 +00:00
|
|
|
PickRandomEstablishedPath(PathRole roles = ePathRoleAny) const;
|
2018-08-01 22:10:38 +00:00
|
|
|
|
|
|
|
Path*
|
2018-11-14 18:02:27 +00:00
|
|
|
GetPathByRouter(const RouterID& router,
|
|
|
|
PathRole roles = ePathRoleAny) const;
|
2018-07-22 23:14:29 +00:00
|
|
|
|
2018-09-18 23:56:26 +00:00
|
|
|
Path*
|
2018-11-14 18:02:27 +00:00
|
|
|
GetNewestPathByRouter(const RouterID& router,
|
|
|
|
PathRole roles = ePathRoleAny) const;
|
2018-09-18 23:56:26 +00:00
|
|
|
|
2018-08-10 21:34:11 +00:00
|
|
|
Path*
|
|
|
|
GetPathByID(const PathID_t& id) const;
|
|
|
|
|
2018-10-01 14:18:17 +00:00
|
|
|
bool
|
|
|
|
GetCurrentIntroductionsWithFilter(
|
|
|
|
std::set< llarp::service::Introduction >& intros,
|
|
|
|
std::function< bool(const llarp::service::Introduction&) > filter)
|
|
|
|
const;
|
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
bool
|
|
|
|
GetCurrentIntroductions(
|
2018-07-19 04:58:39 +00:00
|
|
|
std::set< llarp::service::Introduction >& intros) const;
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-07-18 03:10:21 +00:00
|
|
|
virtual bool
|
2018-11-07 15:30:22 +00:00
|
|
|
PublishIntroSet(__attribute__((unused)) llarp_router* r)
|
2018-07-18 03:10:21 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-07-17 06:17:13 +00:00
|
|
|
|
2018-07-19 21:08:11 +00:00
|
|
|
virtual bool
|
2018-08-30 18:48:43 +00:00
|
|
|
SelectHop(llarp_nodedb* db, const RouterContact& prev, RouterContact& cur,
|
2018-11-14 18:02:27 +00:00
|
|
|
size_t hop, PathRole roles) = 0;
|
2018-07-19 21:08:11 +00:00
|
|
|
|
2018-09-27 10:51:30 +00:00
|
|
|
protected:
|
|
|
|
size_t m_NumPaths;
|
|
|
|
|
2018-06-25 15:12:08 +00:00
|
|
|
private:
|
2018-11-22 23:59:03 +00:00
|
|
|
using PathInfo_t = std::pair< RouterID, PathID_t >;
|
2018-10-03 18:17:34 +00:00
|
|
|
|
|
|
|
struct PathInfoHash
|
|
|
|
{
|
2018-10-05 07:57:48 +00:00
|
|
|
size_t
|
|
|
|
operator()(const PathInfo_t& i) const
|
2018-10-03 18:17:34 +00:00
|
|
|
{
|
|
|
|
return *i.first.data_l() ^ *i.second.data_l();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-22 23:59:03 +00:00
|
|
|
using PathMap_t = std::unordered_map< PathInfo_t, Path*, PathInfoHash >;
|
2018-06-26 14:52:19 +00:00
|
|
|
PathMap_t m_Paths;
|
2018-06-25 15:12:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace path
|
|
|
|
} // namespace llarp
|
|
|
|
|
2018-08-18 14:01:21 +00:00
|
|
|
#endif
|