2021-03-09 22:24:35 +00:00
|
|
|
#include "relay_status.hpp"
|
2019-06-04 18:31:17 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/crypto/crypto.hpp>
|
|
|
|
#include <llarp/path/path_context.hpp>
|
|
|
|
#include <llarp/path/ihophandler.hpp>
|
|
|
|
#include <llarp/router/abstractrouter.hpp>
|
|
|
|
#include <llarp/routing/path_confirm_message.hpp>
|
|
|
|
#include <llarp/util/bencode.hpp>
|
|
|
|
#include <llarp/util/buffer.hpp>
|
2022-07-16 00:41:14 +00:00
|
|
|
#include <llarp/util/logging.hpp>
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/util/meta/memfn.hpp>
|
|
|
|
#include <llarp/tooling/path_event.hpp>
|
2019-06-04 18:31:17 +00:00
|
|
|
|
|
|
|
#include <functional>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <utility>
|
2019-06-04 18:31:17 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
struct LRSM_AsyncHandler : public std::enable_shared_from_this<LRSM_AsyncHandler>
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
using HopHandler_ptr = std::shared_ptr<llarp::path::IHopHandler>;
|
2019-06-04 18:31:17 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
std::array<EncryptedFrame, 8> frames;
|
2019-06-04 18:31:17 +00:00
|
|
|
uint64_t status = 0;
|
2021-06-07 12:39:38 +00:00
|
|
|
HopHandler_ptr hop;
|
2019-06-04 18:31:17 +00:00
|
|
|
AbstractRouter* router;
|
2020-03-03 05:26:25 +00:00
|
|
|
PathID_t pathid;
|
2019-06-04 18:31:17 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
LRSM_AsyncHandler(
|
|
|
|
std::array<EncryptedFrame, 8> _frames,
|
|
|
|
uint64_t _status,
|
2021-06-07 12:39:38 +00:00
|
|
|
HopHandler_ptr _hop,
|
2020-04-07 18:38:56 +00:00
|
|
|
AbstractRouter* _router,
|
2021-11-10 01:03:36 +00:00
|
|
|
PathID_t pathid)
|
2021-06-07 12:39:38 +00:00
|
|
|
: frames{std::move(_frames)}
|
|
|
|
, status{_status}
|
|
|
|
, hop{std::move(_hop)}
|
|
|
|
, router{_router}
|
2021-11-10 01:03:36 +00:00
|
|
|
, pathid{std::move(pathid)}
|
Config file improvements (#1397)
* 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>
2020-10-07 22:22:58 +00:00
|
|
|
{}
|
2019-06-04 18:31:17 +00:00
|
|
|
|
|
|
|
~LRSM_AsyncHandler() = default;
|
|
|
|
|
|
|
|
void
|
|
|
|
handle()
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
router->NotifyRouterEvent<tooling::PathStatusReceivedEvent>(router->pubkey(), pathid, status);
|
2021-06-07 12:39:38 +00:00
|
|
|
hop->HandleLRSM(status, frames, router);
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
queue_handle()
|
|
|
|
{
|
2021-11-10 01:03:36 +00:00
|
|
|
auto func = [self = shared_from_this()] { self->handle(); };
|
2020-06-11 11:44:02 +00:00
|
|
|
router->QueueWork(func);
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusMessage::DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf)
|
|
|
|
{
|
|
|
|
bool read = false;
|
2022-09-09 21:48:38 +00:00
|
|
|
if (key.startswith("c"))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
return BEncodeReadArray(frames, buf);
|
|
|
|
}
|
2022-09-09 21:48:38 +00:00
|
|
|
if (key.startswith("p"))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictEntry("p", pathid, read, key, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-09-09 21:48:38 +00:00
|
|
|
else if (key.startswith("s"))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictInt("s", status, read, key, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-09-09 21:48:38 +00:00
|
|
|
else if (key.startswith("v"))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2022-05-26 15:59:44 +00:00
|
|
|
if (!BEncodeMaybeVerifyVersion("v", version, llarp::constants::proto_version, read, key, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LR_StatusMessage::Clear()
|
|
|
|
{
|
|
|
|
std::for_each(frames.begin(), frames.end(), [](auto& f) { f.Clear(); });
|
2019-11-03 15:31:01 +00:00
|
|
|
version = 0;
|
2020-04-07 18:38:56 +00:00
|
|
|
status = 0;
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusMessage::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!bencode_start_dict(buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
// msg type
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictMsgType(buf, "a", "s"))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
// frames
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictArray("c", frames, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
// path id
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictEntry("p", pathid, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
// status (for now, only success bit is relevant)
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictInt("s", status, buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
// version
|
2022-05-26 15:59:44 +00:00
|
|
|
if (!bencode_write_uint64_entry(buf, "v", 1, llarp::constants::proto_version))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusMessage::HandleMessage(AbstractRouter* router) const
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp::LogDebug("Received LR_Status message from (", session->GetPubKey(), ")");
|
|
|
|
if (frames.size() != path::max_len)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp::LogError("LRSM invalid number of records, ", frames.size(), "!=", path::max_len);
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
auto path = router->pathContext().GetByUpstream(session->GetPubKey(), pathid);
|
2021-06-07 12:39:38 +00:00
|
|
|
if (not path)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
llarp::LogWarn("unhandled LR_Status message: no associated path found pathid=", pathid);
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-07 18:38:56 +00:00
|
|
|
auto handler = std::make_shared<LRSM_AsyncHandler>(frames, status, path, router, pathid);
|
2019-06-04 18:31:17 +00:00
|
|
|
handler->queue_handle();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
LR_StatusMessage::SetDummyFrames()
|
|
|
|
{
|
2022-05-02 12:20:08 +00:00
|
|
|
for (auto& f : frames)
|
|
|
|
f.Randomize();
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// call this from a worker thread
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
LR_StatusMessage::CreateAndSend(
|
|
|
|
AbstractRouter* router,
|
2021-06-07 12:39:38 +00:00
|
|
|
std::shared_ptr<path::TransitHop> hop,
|
2020-04-07 18:38:56 +00:00
|
|
|
const PathID_t pathid,
|
|
|
|
const RouterID nextHop,
|
|
|
|
const SharedSecret pathKey,
|
|
|
|
uint64_t status)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
auto message = std::make_shared<LR_StatusMessage>();
|
2019-06-04 18:31:17 +00:00
|
|
|
|
2020-01-21 17:31:48 +00:00
|
|
|
message->status = status;
|
2019-06-04 18:31:17 +00:00
|
|
|
message->pathid = pathid;
|
|
|
|
|
|
|
|
message->SetDummyFrames();
|
|
|
|
|
2021-06-07 12:39:38 +00:00
|
|
|
message->AddFrame(pathKey, status);
|
2019-06-04 18:31:17 +00:00
|
|
|
|
2021-06-07 12:39:38 +00:00
|
|
|
QueueSendMessage(router, nextHop, message, hop);
|
2019-06-04 18:31:17 +00:00
|
|
|
return true; // can't guarantee delivery here, as far as we know it's fine
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-08-01 07:44:26 +00:00
|
|
|
LR_StatusMessage::AddFrame(const SharedSecret& pathKey, uint64_t newStatus)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
frames[7] = frames[6];
|
|
|
|
frames[6] = frames[5];
|
|
|
|
frames[5] = frames[4];
|
|
|
|
frames[4] = frames[3];
|
|
|
|
frames[3] = frames[2];
|
|
|
|
frames[2] = frames[1];
|
|
|
|
frames[1] = frames[0];
|
|
|
|
|
|
|
|
auto& frame = frames[0];
|
|
|
|
|
|
|
|
frame.Randomize();
|
|
|
|
|
|
|
|
LR_StatusRecord record;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
record.status = newStatus;
|
2022-05-26 15:59:44 +00:00
|
|
|
record.version = llarp::constants::proto_version;
|
2019-06-04 18:31:17 +00:00
|
|
|
|
|
|
|
llarp_buffer_t buf(frame.data(), frame.size());
|
|
|
|
buf.cur = buf.base + EncryptedFrameOverheadSize;
|
|
|
|
// encode record
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!record.BEncode(&buf))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
// failed to encode?
|
|
|
|
LogError(Name(), " Failed to generate Status Record");
|
|
|
|
DumpBuffer(buf);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// use ephemeral keypair for frame
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!frame.DoEncrypt(pathKey, true))
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
LogError(Name(), " Failed to encrypt LRSR");
|
|
|
|
DumpBuffer(buf);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
LR_StatusMessage::QueueSendMessage(
|
2021-06-07 12:39:38 +00:00
|
|
|
AbstractRouter* router,
|
|
|
|
const RouterID nextHop,
|
|
|
|
std::shared_ptr<LR_StatusMessage> msg,
|
|
|
|
std::shared_ptr<path::TransitHop> hop)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
2021-06-07 12:39:38 +00:00
|
|
|
router->loop()->call([router, nextHop, msg = std::move(msg), hop = std::move(hop)] {
|
2022-04-12 15:41:37 +00:00
|
|
|
SendMessage(router, nextHop, msg, hop);
|
2021-06-07 12:39:38 +00:00
|
|
|
});
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
LR_StatusMessage::SendMessage(
|
2022-04-12 15:41:37 +00:00
|
|
|
AbstractRouter* router,
|
|
|
|
const RouterID nextHop,
|
|
|
|
std::shared_ptr<LR_StatusMessage> msg,
|
|
|
|
std::shared_ptr<path::TransitHop> hop)
|
2019-06-04 18:31:17 +00:00
|
|
|
{
|
|
|
|
llarp::LogDebug("Attempting to send LR_Status message to (", nextHop, ")");
|
2022-04-12 15:41:37 +00:00
|
|
|
|
|
|
|
auto resultCallback = [hop, router, msg, nextHop](auto status) {
|
|
|
|
if ((msg->status & LR_StatusRecord::SUCCESS) != LR_StatusRecord::SUCCESS
|
|
|
|
or status != SendStatus::Success)
|
|
|
|
{
|
|
|
|
llarp::LogError("Failed to propagate LR_Status message to ", nextHop);
|
|
|
|
hop->QueueDestroySelf(router);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// send the status message to previous hop
|
|
|
|
// if it fails we are hitting a failure case we can't cope with so ... drop.
|
|
|
|
if (not router->SendToOrQueue(nextHop, *msg, resultCallback))
|
|
|
|
resultCallback(SendStatus::Congestion);
|
|
|
|
|
|
|
|
// trigger idempotent pump to make sure stuff gets sent
|
|
|
|
router->TriggerPump();
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusRecord::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
|
|
|
return bencode_start_dict(buf) && BEncodeWriteDictInt("s", status, buf)
|
2022-05-26 15:59:44 +00:00
|
|
|
&& bencode_write_uint64_entry(buf, "v", 1, llarp::constants::proto_version)
|
|
|
|
&& bencode_end(buf);
|
2019-06-04 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusRecord::OnKey(llarp_buffer_t* buffer, llarp_buffer_t* key)
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!key)
|
2019-06-04 18:31:17 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
bool read = false;
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictInt("s", status, read, *key, buffer))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
2022-05-26 15:59:44 +00:00
|
|
|
if (!BEncodeMaybeVerifyVersion(
|
|
|
|
"v", version, llarp::constants::proto_version, read, *key, buffer))
|
2019-06-04 18:31:17 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusRecord::BDecode(llarp_buffer_t* buf)
|
|
|
|
{
|
|
|
|
return bencode_read_dict(util::memFn(&LR_StatusRecord::OnKey, this), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
LR_StatusRecord::operator==(const LR_StatusRecord& other) const
|
|
|
|
{
|
|
|
|
return status == other.status;
|
|
|
|
}
|
|
|
|
|
2022-07-16 00:41:14 +00:00
|
|
|
using namespace std::literals;
|
|
|
|
static constexpr std::array code_strings = {
|
|
|
|
std::make_pair(LR_StatusRecord::SUCCESS, "success"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_TIMEOUT, "timeout"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_CONGESTION, "congestion"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_DEST_UNKNOWN, "destination unknown"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_DECRYPT_ERROR, "decrypt error"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_MALFORMED_RECORD, "malformed record"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_DEST_INVALID, "destination invalid"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_CANNOT_CONNECT, "cannot connect"sv),
|
|
|
|
std::make_pair(LR_StatusRecord::FAIL_DUPLICATE_HOP, "duplicate hop"sv)};
|
|
|
|
|
2021-06-04 13:03:18 +00:00
|
|
|
std::string
|
|
|
|
LRStatusCodeToString(uint64_t status)
|
|
|
|
{
|
2022-07-16 00:41:14 +00:00
|
|
|
std::string s = "[";
|
|
|
|
for (const auto& [val, message] : code_strings)
|
2021-06-04 13:03:18 +00:00
|
|
|
{
|
|
|
|
if ((status & val) == val)
|
|
|
|
{
|
2022-07-16 00:41:14 +00:00
|
|
|
if (s.size() > 1)
|
|
|
|
s += ", ";
|
|
|
|
s += message;
|
2021-06-04 13:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-16 00:41:14 +00:00
|
|
|
s += ']';
|
|
|
|
return s;
|
2021-06-04 13:03:18 +00:00
|
|
|
}
|
|
|
|
|
2019-06-04 18:31:17 +00:00
|
|
|
} // namespace llarp
|