2018-07-09 17:32:11 +00:00
|
|
|
#ifndef LLARP_PATHBUILDER_HPP_
|
|
|
|
#define LLARP_PATHBUILDER_HPP_
|
2018-08-30 18:48:43 +00:00
|
|
|
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <pathset.hpp>
|
2018-12-24 16:09:05 +00:00
|
|
|
#include <atomic>
|
2018-06-18 22:03:50 +00:00
|
|
|
|
2018-08-30 18:48:43 +00:00
|
|
|
namespace llarp
|
2018-06-18 22:03:50 +00:00
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
namespace path
|
|
|
|
{
|
2018-09-26 13:04:25 +00:00
|
|
|
// milliseconds waiting between builds on a path
|
2018-10-04 16:05:07 +00:00
|
|
|
constexpr llarp_time_t MIN_PATH_BUILD_INTERVAL = 10 * 1000;
|
2018-09-26 13:04:25 +00:00
|
|
|
|
2018-08-30 18:48:43 +00:00
|
|
|
struct Builder : public PathSet
|
|
|
|
{
|
2018-12-24 16:09:05 +00:00
|
|
|
protected:
|
|
|
|
/// flag for PathSet::Stop()
|
|
|
|
std::atomic< bool > _run;
|
|
|
|
|
|
|
|
public:
|
2018-12-10 16:26:46 +00:00
|
|
|
llarp::Router* router;
|
2018-08-30 18:48:43 +00:00
|
|
|
struct llarp_dht_context* dht;
|
|
|
|
llarp::SecretKey enckey;
|
|
|
|
size_t numHops;
|
2018-09-26 13:04:25 +00:00
|
|
|
llarp_time_t lastBuild = 0;
|
|
|
|
llarp_time_t buildIntervalLimit = MIN_PATH_BUILD_INTERVAL;
|
2018-12-24 16:09:05 +00:00
|
|
|
|
|
|
|
// how many keygens are currently happening
|
|
|
|
std::atomic< uint8_t > keygens;
|
|
|
|
|
2018-08-30 18:48:43 +00:00
|
|
|
/// construct
|
2018-12-10 16:26:46 +00:00
|
|
|
Builder(llarp::Router* p_router, struct llarp_dht_context* p_dht,
|
2018-08-30 18:48:43 +00:00
|
|
|
size_t numPaths, size_t numHops);
|
|
|
|
|
|
|
|
virtual ~Builder();
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
SelectHop(llarp_nodedb* db, const RouterContact& prev, RouterContact& cur,
|
2018-11-14 18:02:27 +00:00
|
|
|
size_t hop, PathRole roles);
|
2018-08-30 18:48:43 +00:00
|
|
|
|
|
|
|
virtual bool
|
2018-10-29 16:48:36 +00:00
|
|
|
ShouldBuildMore(llarp_time_t now) const;
|
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
virtual bool
|
|
|
|
Stop();
|
|
|
|
|
|
|
|
bool
|
|
|
|
ShouldRemove() const override;
|
|
|
|
|
2018-10-29 16:48:36 +00:00
|
|
|
llarp_time_t
|
|
|
|
Now() const;
|
2018-08-30 18:48:43 +00:00
|
|
|
|
|
|
|
void
|
2018-11-14 18:02:27 +00:00
|
|
|
BuildOne(PathRole roles = ePathRoleAny);
|
2018-08-30 18:48:43 +00:00
|
|
|
|
2018-09-28 15:46:47 +00:00
|
|
|
void
|
2018-11-14 18:02:27 +00:00
|
|
|
Build(const std::vector< RouterContact >& hops,
|
|
|
|
PathRole roles = ePathRoleAny);
|
2018-09-28 15:46:47 +00:00
|
|
|
|
|
|
|
bool
|
2018-11-14 18:02:27 +00:00
|
|
|
SelectHops(llarp_nodedb* db, std::vector< RouterContact >& hops,
|
|
|
|
PathRole roles = ePathRoleAny);
|
2018-09-28 15:46:47 +00:00
|
|
|
|
2018-08-30 18:48:43 +00:00
|
|
|
void
|
2018-11-14 18:02:27 +00:00
|
|
|
ManualRebuild(size_t N, PathRole roles = ePathRoleAny);
|
2018-08-30 18:48:43 +00:00
|
|
|
|
|
|
|
virtual const byte_t*
|
|
|
|
GetTunnelEncryptionSecretKey() const;
|
2018-09-26 13:04:25 +00:00
|
|
|
|
|
|
|
virtual void
|
|
|
|
HandlePathBuilt(Path* p);
|
|
|
|
|
|
|
|
virtual void
|
|
|
|
HandlePathBuildTimeout(Path* p);
|
2018-08-30 18:48:43 +00:00
|
|
|
};
|
|
|
|
} // namespace path
|
|
|
|
|
|
|
|
} // namespace llarp
|
2018-06-18 22:03:50 +00:00
|
|
|
#endif
|