mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
27aea62994
We're removing the notion of find/lookup a singular RC, so this gets rid of all functions which did that and replaces their usages with something sensible.
313 lines
7.5 KiB
C++
313 lines
7.5 KiB
C++
#pragma once
|
|
|
|
#include "abstracthophandler.hpp"
|
|
#include "path_types.hpp"
|
|
#include "pathset.hpp"
|
|
|
|
#include <llarp/constants/path.hpp>
|
|
#include <llarp/crypto/types.hpp>
|
|
#include <llarp/router_id.hpp>
|
|
#include <llarp/service/intro.hpp>
|
|
#include <llarp/util/aligned.hpp>
|
|
#include <llarp/util/compare_ptr.hpp>
|
|
#include <llarp/util/thread/threading.hpp>
|
|
#include <llarp/util/time.hpp>
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include <list>
|
|
#include <map>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Router;
|
|
|
|
namespace path
|
|
{
|
|
struct TransitHop;
|
|
struct TransitHopInfo;
|
|
struct PathHopConfig;
|
|
|
|
struct Ptr_hash;
|
|
|
|
struct Endpoint_Hash;
|
|
struct endpoint_comparator;
|
|
|
|
/// unordered set of paths with unique endpoints
|
|
using UniqueEndpointSet_t = std::unordered_set<Path_ptr, Endpoint_Hash, endpoint_comparator>;
|
|
|
|
/// A path we made
|
|
struct Path final : public AbstractHopHandler, public std::enable_shared_from_this<Path>
|
|
{
|
|
using BuildResultHookFunc = std::function<void(Path_ptr)>;
|
|
using CheckForDeadFunc = std::function<bool(Path_ptr, llarp_time_t)>;
|
|
using DropHandlerFunc = std::function<bool(Path_ptr, const PathID_t&, uint64_t)>;
|
|
using HopList = std::vector<PathHopConfig>;
|
|
// using DataHandlerFunc = std::function<bool(Path_ptr, const
|
|
// service::ProtocolFrameMessage&)>;
|
|
using ExitUpdatedFunc = std::function<bool(Path_ptr)>;
|
|
using ExitClosedFunc = std::function<bool(Path_ptr)>;
|
|
using ExitTrafficHandlerFunc =
|
|
std::function<bool(Path_ptr, const llarp_buffer_t&, uint64_t, service::ProtocolType)>;
|
|
/// (path, backoff) backoff is 0 on success
|
|
using ObtainedExitHandler = std::function<bool(Path_ptr, llarp_time_t)>;
|
|
|
|
HopList hops;
|
|
|
|
std::weak_ptr<PathSet> m_PathSet;
|
|
|
|
service::Introduction intro;
|
|
|
|
llarp_time_t buildStarted = 0s;
|
|
|
|
Path(
|
|
Router* rtr,
|
|
const std::vector<RemoteRC>& routers,
|
|
std::weak_ptr<PathSet> parent,
|
|
PathRole startingRoles,
|
|
std::string shortName);
|
|
|
|
util::StatusObject
|
|
ExtractStatus() const;
|
|
|
|
PathRole
|
|
Role() const
|
|
{
|
|
return _role;
|
|
}
|
|
|
|
bool
|
|
operator<(const Path& other) const
|
|
{
|
|
return hops < other.hops;
|
|
}
|
|
|
|
void
|
|
MarkActive(llarp_time_t now)
|
|
{
|
|
m_LastRecvMessage = std::max(now, m_LastRecvMessage);
|
|
}
|
|
|
|
/// return true if ALL of the specified roles are supported
|
|
bool
|
|
SupportsAllRoles(PathRole roles) const
|
|
{
|
|
return (_role & roles) == roles;
|
|
}
|
|
|
|
/// return true if ANY of the specified roles are supported
|
|
bool
|
|
SupportsAnyRoles(PathRole roles) const
|
|
{
|
|
return roles == ePathRoleAny || (_role | roles) != 0;
|
|
}
|
|
|
|
/// clear role bits
|
|
void
|
|
ClearRoles(PathRole roles)
|
|
{
|
|
_role &= ~roles;
|
|
}
|
|
|
|
PathStatus
|
|
Status() const
|
|
{
|
|
return _status;
|
|
}
|
|
|
|
const std::string&
|
|
ShortName() const;
|
|
|
|
std::string
|
|
HopsString() const;
|
|
|
|
llarp_time_t
|
|
LastRemoteActivityAt() const override
|
|
{
|
|
return m_LastRecvMessage;
|
|
}
|
|
|
|
void
|
|
EnterState(PathStatus st, llarp_time_t now = 0s);
|
|
|
|
llarp_time_t
|
|
ExpireTime() const
|
|
{
|
|
return buildStarted + hops[0].lifetime;
|
|
}
|
|
|
|
bool
|
|
ExpiresSoon(llarp_time_t now, llarp_time_t dlt = 5s) const override
|
|
{
|
|
return now >= (ExpireTime() - dlt);
|
|
}
|
|
|
|
void
|
|
enable_exit_traffic()
|
|
{
|
|
log::info(path_cat, "{} {} granted exit", name(), Endpoint());
|
|
_role |= ePathRoleExit;
|
|
}
|
|
|
|
void
|
|
mark_exit_closed()
|
|
{
|
|
log::info(path_cat, "{} hd its exit closed", name());
|
|
_role &= ePathRoleExit;
|
|
}
|
|
|
|
bool
|
|
update_exit(uint64_t tx_id);
|
|
|
|
bool
|
|
Expired(llarp_time_t now) const override;
|
|
|
|
/// build a new path on the same set of hops as us
|
|
/// regenerates keys
|
|
void
|
|
Rebuild();
|
|
|
|
void
|
|
Tick(llarp_time_t now, Router* r);
|
|
|
|
bool
|
|
find_name(std::string name, std::function<void(std::string)> func = nullptr);
|
|
|
|
bool
|
|
find_intro(
|
|
const dht::Key_t& location,
|
|
bool is_relayed = false,
|
|
uint64_t order = 0,
|
|
std::function<void(std::string)> func = nullptr);
|
|
|
|
bool
|
|
close_exit(SecretKey sk, std::string tx_id, std::function<void(std::string)> func = nullptr);
|
|
|
|
bool
|
|
obtain_exit(
|
|
SecretKey sk,
|
|
uint64_t flag,
|
|
std::string tx_id,
|
|
std::function<void(std::string)> func = nullptr);
|
|
|
|
/// sends a control request along a path
|
|
///
|
|
/// performs the necessary onion encryption before sending.
|
|
/// func will be called when a timeout occurs or a response is received.
|
|
/// if a response is received, onion decryption is performed before func is called.
|
|
///
|
|
/// func is called with a bt-encoded response string (if applicable), and
|
|
/// a timeout flag (if set, response string will be empty)
|
|
bool
|
|
send_path_control_message(
|
|
std::string method,
|
|
std::string body,
|
|
std::function<void(std::string)> func = nullptr) override;
|
|
|
|
bool
|
|
IsReady() const;
|
|
|
|
// Is this deprecated?
|
|
// nope not deprecated :^DDDD
|
|
PathID_t
|
|
TXID() const;
|
|
|
|
RouterID
|
|
Endpoint() const;
|
|
|
|
PubKey
|
|
EndpointPubKey() const;
|
|
|
|
bool
|
|
is_endpoint(const RouterID& router, const PathID_t& path) const;
|
|
|
|
PathID_t
|
|
RXID() const override;
|
|
|
|
RouterID
|
|
upstream() const;
|
|
|
|
std::string
|
|
name() const;
|
|
|
|
private:
|
|
bool
|
|
SendLatencyMessage(Router* r);
|
|
|
|
/// call obtained exit hooks
|
|
bool
|
|
InformExitResult(llarp_time_t b);
|
|
|
|
Router& router;
|
|
llarp_time_t m_LastRecvMessage = 0s;
|
|
llarp_time_t m_LastLatencyTestTime = 0s;
|
|
uint64_t m_LastLatencyTestID = 0;
|
|
uint64_t m_UpdateExitTX = 0;
|
|
uint64_t m_CloseExitTX = 0;
|
|
uint64_t m_ExitObtainTX = 0;
|
|
PathStatus _status;
|
|
PathRole _role;
|
|
uint64_t m_LastRXRate = 0;
|
|
uint64_t m_RXRate = 0;
|
|
uint64_t m_LastTXRate = 0;
|
|
uint64_t m_TXRate = 0;
|
|
std::deque<llarp_time_t> m_LatencySamples;
|
|
const std::string m_shortName;
|
|
};
|
|
|
|
struct Hash
|
|
{
|
|
size_t
|
|
operator()(const Path& p) const
|
|
{
|
|
const auto& tx = p.hops[0].txID;
|
|
const auto& rx = p.hops[0].rxID;
|
|
const auto& r = p.hops[0].upstream;
|
|
const size_t rhash = std::accumulate(r.begin(), r.end(), 0, std::bit_xor{});
|
|
return std::accumulate(
|
|
rx.begin(),
|
|
rx.begin(),
|
|
std::accumulate(tx.begin(), tx.end(), rhash, std::bit_xor{}),
|
|
std::bit_xor{});
|
|
}
|
|
};
|
|
|
|
/// hash for std::shared_ptr<Path>
|
|
struct Ptr_Hash
|
|
{
|
|
size_t
|
|
operator()(const Path_ptr& p) const
|
|
{
|
|
if (p == nullptr)
|
|
return 0;
|
|
return Hash{}(*p);
|
|
}
|
|
};
|
|
|
|
/// hash for std::shared_ptr<Path> by path endpoint
|
|
struct Endpoint_Hash
|
|
{
|
|
size_t
|
|
operator()(const Path_ptr& p) const
|
|
{
|
|
if (p == nullptr)
|
|
return 0;
|
|
return std::hash<RouterID>{}(p->Endpoint());
|
|
}
|
|
};
|
|
|
|
/// comparision for equal endpoints
|
|
struct endpoint_comparator
|
|
{
|
|
bool
|
|
operator()(const Path_ptr& left, const Path_ptr& right) const
|
|
{
|
|
return left && right && left->Endpoint() == left->Endpoint();
|
|
}
|
|
};
|
|
} // namespace path
|
|
} // namespace llarp
|