mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
af6caf776a
* Config file API/comment improvements API improvements: ================= Make the config API use position-independent tag parameters (Required, Default{123}, MultiValue) rather than a sequence of bools with overloads. For example, instead of: conf.defineOption<int>("a", "b", false, true, 123, [] { ... }); you now write: conf.defineOption<int>("a", "b", MultiValue, Default{123}, [] { ... }); The tags are: - Required - MultiValue - Default{value} plus new abilities (see below): - Hidden - RelayOnly - ClientOnly - Comment{"line1", "line2", "line3"} Made option definition more powerful: ===================================== - `Hidden` allows you to define an option that won't show up in the generated config file if it isn't set. - `RelayOnly`/`ClientOnly` sets up an option that is only accepted and only shows up for relay or client configs. (If neither is specified the option shows up in both modes). - `Comment{...}` lets the option comments be specified as part of the defineOption. Comment improvements ==================== - Rewrote comments for various options to expand on details. - Inlined all the comments with the option definitions. - Several options that were missing comments got comments added. - Made various options for deprecated and or internal options hidden by default so that they don't show up in a default config file. - show the section comment (but not option comments) *after* the [section] tag instead of before it as it makes more sense that way (particularly for the [bind] section which has a new long comment to describe how it works). Disable profiling by default ============================ We had this weird state where we use and store profiling by default but never *load* it when starting up. This commit makes us just not use profiling at all unless explicitly enabled. Other misc changes: =================== - change default worker threads to 0 (= num cpus) instead of 1, and fix it to allow 0. - Actually apply worker-threads option - fixed default data-dir value erroneously having quotes around it - reordered ifname/ifaddr/mapaddr (was previously mapaddr/ifaddr/ifname) as mapaddr is a sort of specialization of ifaddr and so makes more sense to come after it (particularly because it now references ifaddr in its help message). - removed peer-stats option (since we always require it for relays and never use it for clients) - removed router profiles filename option (this doesn't need to be configurable) - removed defunct `service-node-seed` option - Change default logging output file to "" (which means stdout), and also made "-" work for stdout. * Router hive compilation fixes * Comments for SNApp SRV settings in ini file * Add extra blank line after section comments * Better deprecated option handling Allow {client,relay}-only options in {relay,client} configs to be specified as implicitly deprecated options: they warn, and don't set anything. Add an explicit `Deprecated` tag and move deprecated option handling into definition.cpp. * Move backwards compat options into section definitions Keep the "addBackwardsCompatibleConfigOptions" only for options in sections that no longer exist. * Fix INI parsing issues & C++17-ify - don't allow inline comments because it seems they aren't allowed in ini formats in general, and is going to cause problems if there is a comment character in a value (e.g. an exit auth string). Additionally it was breaking on a line such as: # some comment; see? because it was treating only `; see?` as the comment and then producing an error message about the rest of the line being invalid. - make section parsing stricter: the `[` and `]` have to be at the beginning at end of the line now (after stripping whitespace). - Move whitespace stripping to the top since everything in here does it. - chop off string_view suffix/prefix rather than maintaining position values - fix potential infinite loop/segfault when given a line such as `]foo[` * Make config parsing failure fatal Load() LogError's and returns false on failure, so we weren't aborting on config file errors. * Formatting: allow `{}` for empty functions/structs Instead of using two lines when empty: { } * Make default dns bind 127.0.0.1 on non-Linux * Don't show empty section; fix tests We can conceivably have sections that only make sense for clients or relays, and so want to completely omit that section if we have no options for the type of config being generated. Also fixes missing empty lines between tests. Co-authored-by: Thomas Winget <tewinget@gmail.com>
363 lines
9.2 KiB
C++
363 lines
9.2 KiB
C++
#include <path/path_context.hpp>
|
|
|
|
#include <messages/relay_commit.hpp>
|
|
#include <path/path.hpp>
|
|
#include <router/abstractrouter.hpp>
|
|
#include <router/i_outbound_message_handler.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace path
|
|
{
|
|
static constexpr auto DefaultPathBuildLimit = 500ms;
|
|
|
|
PathContext::PathContext(AbstractRouter* router)
|
|
: m_Router(router), m_AllowTransit(false), m_PathLimits(DefaultPathBuildLimit)
|
|
{}
|
|
|
|
void
|
|
PathContext::AllowTransit()
|
|
{
|
|
m_AllowTransit = true;
|
|
}
|
|
|
|
bool
|
|
PathContext::AllowingTransit() const
|
|
{
|
|
return m_AllowTransit;
|
|
}
|
|
|
|
bool
|
|
PathContext::CheckPathLimitHitByIP(const IpAddress& ip)
|
|
{
|
|
#ifdef TESTNET
|
|
return false;
|
|
#else
|
|
IpAddress remote = ip;
|
|
// null out the port -- we don't care about it for path limiting purposes
|
|
remote.setPort(0);
|
|
// try inserting remote address by ip into decaying hash set
|
|
// if it cannot insert it has hit a limit
|
|
return not m_PathLimits.Insert(remote);
|
|
#endif
|
|
}
|
|
|
|
std::shared_ptr<Logic>
|
|
PathContext::logic()
|
|
{
|
|
return m_Router->logic();
|
|
}
|
|
|
|
const SecretKey&
|
|
PathContext::EncryptionSecretKey()
|
|
{
|
|
return m_Router->encryption();
|
|
}
|
|
|
|
bool
|
|
PathContext::HopIsUs(const RouterID& k) const
|
|
{
|
|
return std::equal(m_Router->pubkey(), m_Router->pubkey() + PUBKEYSIZE, k.begin());
|
|
}
|
|
|
|
PathContext::EndpointPathPtrSet
|
|
PathContext::FindOwnedPathsWithEndpoint(const RouterID& r)
|
|
{
|
|
EndpointPathPtrSet found;
|
|
m_OurPaths.ForEach([&](const Path_ptr& p) {
|
|
if (p->Endpoint() == r && p->IsReady())
|
|
found.insert(p);
|
|
});
|
|
return found;
|
|
}
|
|
|
|
bool
|
|
PathContext::ForwardLRCM(
|
|
const RouterID& nextHop,
|
|
const std::array<EncryptedFrame, 8>& frames,
|
|
SendStatusHandler handler)
|
|
{
|
|
if (handler == nullptr)
|
|
{
|
|
LogError("Calling ForwardLRCM without passing result handler");
|
|
return false;
|
|
}
|
|
|
|
auto msg = std::make_shared<const LR_CommitMessage>(frames);
|
|
|
|
LogDebug("forwarding LRCM to ", nextHop);
|
|
|
|
return m_Router->SendToOrQueue(nextHop, msg.get(), handler);
|
|
}
|
|
|
|
template <
|
|
typename Lock_t,
|
|
typename Map_t,
|
|
typename Key_t,
|
|
typename CheckValue_t,
|
|
typename GetFunc_t>
|
|
HopHandler_ptr
|
|
MapGet(Map_t& map, const Key_t& k, CheckValue_t check, GetFunc_t get)
|
|
{
|
|
Lock_t lock(map.first);
|
|
auto range = map.second.equal_range(k);
|
|
for (auto i = range.first; i != range.second; ++i)
|
|
{
|
|
if (check(i->second))
|
|
return get(i->second);
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
template <typename Lock_t, typename Map_t, typename Key_t, typename CheckValue_t>
|
|
bool
|
|
MapHas(Map_t& map, const Key_t& k, CheckValue_t check)
|
|
{
|
|
Lock_t lock(map.first);
|
|
auto range = map.second.equal_range(k);
|
|
for (auto i = range.first; i != range.second; ++i)
|
|
{
|
|
if (check(i->second))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
template <typename Lock_t, typename Map_t, typename Key_t, typename Value_t>
|
|
void
|
|
MapPut(Map_t& map, const Key_t& k, const Value_t& v)
|
|
{
|
|
Lock_t lock(map.first);
|
|
map.second.emplace(k, v);
|
|
}
|
|
|
|
template <typename Lock_t, typename Map_t, typename Visit_t>
|
|
void
|
|
MapIter(Map_t& map, Visit_t v)
|
|
{
|
|
Lock_t lock(map.first);
|
|
for (const auto& item : map.second)
|
|
v(item);
|
|
}
|
|
|
|
template <typename Lock_t, typename Map_t, typename Key_t, typename Check_t>
|
|
void
|
|
MapDel(Map_t& map, const Key_t& k, Check_t check)
|
|
{
|
|
Lock_t lock(map.first);
|
|
auto range = map.second.equal_range(k);
|
|
for (auto i = range.first; i != range.second;)
|
|
{
|
|
if (check(i->second))
|
|
i = map.second.erase(i);
|
|
else
|
|
++i;
|
|
}
|
|
}
|
|
|
|
void
|
|
PathContext::AddOwnPath(PathSet_ptr set, Path_ptr path)
|
|
{
|
|
set->AddPath(path);
|
|
MapPut<util::Lock>(m_OurPaths, path->TXID(), path);
|
|
MapPut<util::Lock>(m_OurPaths, path->RXID(), path);
|
|
}
|
|
|
|
bool
|
|
PathContext::HasTransitHop(const TransitHopInfo& info)
|
|
{
|
|
return MapHas<SyncTransitMap_t::Lock_t>(
|
|
m_TransitPaths, info.txID, [info](const std::shared_ptr<TransitHop>& hop) -> bool {
|
|
return info == hop->info;
|
|
});
|
|
}
|
|
|
|
HopHandler_ptr
|
|
PathContext::GetByUpstream(const RouterID& remote, const PathID_t& id)
|
|
{
|
|
auto own = MapGet<util::Lock>(
|
|
m_OurPaths,
|
|
id,
|
|
[](const Path_ptr) -> bool {
|
|
// TODO: is this right?
|
|
return true;
|
|
},
|
|
[](Path_ptr p) -> HopHandler_ptr { return p; });
|
|
if (own)
|
|
return own;
|
|
|
|
return MapGet<SyncTransitMap_t::Lock_t>(
|
|
m_TransitPaths,
|
|
id,
|
|
[remote](const std::shared_ptr<TransitHop>& hop) -> bool {
|
|
return hop->info.upstream == remote;
|
|
},
|
|
[](const std::shared_ptr<TransitHop>& h) -> HopHandler_ptr { return h; });
|
|
}
|
|
|
|
bool
|
|
PathContext::TransitHopPreviousIsRouter(const PathID_t& path, const RouterID& otherRouter)
|
|
{
|
|
SyncTransitMap_t::Lock_t lock(m_TransitPaths.first);
|
|
auto itr = m_TransitPaths.second.find(path);
|
|
if (itr == m_TransitPaths.second.end())
|
|
return false;
|
|
return itr->second->info.downstream == otherRouter;
|
|
}
|
|
|
|
HopHandler_ptr
|
|
PathContext::GetByDownstream(const RouterID& remote, const PathID_t& id)
|
|
{
|
|
return MapGet<SyncTransitMap_t::Lock_t>(
|
|
m_TransitPaths,
|
|
id,
|
|
[remote](const std::shared_ptr<TransitHop>& hop) -> bool {
|
|
return hop->info.downstream == remote;
|
|
},
|
|
[](const std::shared_ptr<TransitHop>& h) -> HopHandler_ptr { return h; });
|
|
}
|
|
|
|
PathSet_ptr
|
|
PathContext::GetLocalPathSet(const PathID_t& id)
|
|
{
|
|
auto& map = m_OurPaths;
|
|
util::Lock lock(map.first);
|
|
auto itr = map.second.find(id);
|
|
if (itr != map.second.end())
|
|
{
|
|
return itr->second->m_PathSet->GetSelf();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
const byte_t*
|
|
PathContext::OurRouterID() const
|
|
{
|
|
return m_Router->pubkey();
|
|
}
|
|
|
|
AbstractRouter*
|
|
PathContext::Router()
|
|
{
|
|
return m_Router;
|
|
}
|
|
|
|
TransitHop_ptr
|
|
PathContext::GetPathForTransfer(const PathID_t& id)
|
|
{
|
|
const RouterID us(OurRouterID());
|
|
auto& map = m_TransitPaths;
|
|
{
|
|
SyncTransitMap_t::Lock_t lock(map.first);
|
|
auto range = map.second.equal_range(id);
|
|
for (auto i = range.first; i != range.second; ++i)
|
|
{
|
|
if (i->second->info.upstream == us)
|
|
return i->second;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void
|
|
PathContext::PumpUpstream()
|
|
{
|
|
m_TransitPaths.ForEach([&](auto& ptr) { ptr->FlushUpstream(m_Router); });
|
|
m_OurPaths.ForEach([&](auto& ptr) { ptr->FlushUpstream(m_Router); });
|
|
}
|
|
|
|
void
|
|
PathContext::PumpDownstream()
|
|
{
|
|
m_TransitPaths.ForEach([&](auto& ptr) { ptr->FlushDownstream(m_Router); });
|
|
m_OurPaths.ForEach([&](auto& ptr) { ptr->FlushDownstream(m_Router); });
|
|
}
|
|
|
|
uint64_t
|
|
PathContext::CurrentTransitPaths()
|
|
{
|
|
SyncTransitMap_t::Lock_t lock(m_TransitPaths.first);
|
|
auto& map = m_TransitPaths.second;
|
|
return map.size() / 2;
|
|
}
|
|
|
|
void
|
|
PathContext::PutTransitHop(std::shared_ptr<TransitHop> hop)
|
|
{
|
|
MapPut<SyncTransitMap_t::Lock_t>(m_TransitPaths, hop->info.txID, hop);
|
|
MapPut<SyncTransitMap_t::Lock_t>(m_TransitPaths, hop->info.rxID, hop);
|
|
}
|
|
|
|
void
|
|
PathContext::ExpirePaths(llarp_time_t now)
|
|
{
|
|
// decay limits
|
|
m_PathLimits.Decay(now);
|
|
|
|
{
|
|
SyncTransitMap_t::Lock_t lock(m_TransitPaths.first);
|
|
auto& map = m_TransitPaths.second;
|
|
auto itr = map.begin();
|
|
while (itr != map.end())
|
|
{
|
|
if (itr->second->Expired(now))
|
|
{
|
|
m_Router->outboundMessageHandler().QueueRemoveEmptyPath(itr->first);
|
|
itr = map.erase(itr);
|
|
}
|
|
else
|
|
{
|
|
itr->second->DecayFilters(now);
|
|
++itr;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
util::Lock lock(m_OurPaths.first);
|
|
auto& map = m_OurPaths.second;
|
|
auto itr = map.begin();
|
|
while (itr != map.end())
|
|
{
|
|
if (itr->second->Expired(now))
|
|
{
|
|
itr = map.erase(itr);
|
|
}
|
|
else
|
|
{
|
|
itr->second->DecayFilters(now);
|
|
++itr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
routing::MessageHandler_ptr
|
|
PathContext::GetHandler(const PathID_t& id)
|
|
{
|
|
routing::MessageHandler_ptr h = nullptr;
|
|
auto pathset = GetLocalPathSet(id);
|
|
if (pathset)
|
|
{
|
|
h = pathset->GetPathByID(id);
|
|
}
|
|
if (h)
|
|
return h;
|
|
const RouterID us(OurRouterID());
|
|
auto& map = m_TransitPaths;
|
|
{
|
|
SyncTransitMap_t::Lock_t lock(map.first);
|
|
auto range = map.second.equal_range(id);
|
|
for (auto i = range.first; i != range.second; ++i)
|
|
{
|
|
if (i->second->info.upstream == us)
|
|
return i->second;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void PathContext::RemovePathSet(PathSet_ptr)
|
|
{}
|
|
} // namespace path
|
|
} // namespace llarp
|