2021-03-09 22:24:35 +00:00
|
|
|
#include "outbound_message_handler.hpp"
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/messages/link_message.hpp>
|
2021-11-09 23:46:09 +00:00
|
|
|
#include "router.hpp"
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/constants/link_layer.hpp>
|
|
|
|
#include <llarp/util/meta/memfn.hpp>
|
|
|
|
#include <llarp/util/status.hpp>
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2019-10-30 00:07:20 +00:00
|
|
|
const PathID_t OutboundMessageHandler::zeroID;
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
OutboundMessageHandler::OutboundMessageHandler(size_t maxQueueSize)
|
2021-04-29 22:54:43 +00:00
|
|
|
: outboundQueue(maxQueueSize), recentlyRemovedPaths(5s), removedSomePaths(false)
|
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-10-25 21:13:11 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
OutboundMessageHandler::QueueMessage(
|
2023-08-29 14:26:59 +00:00
|
|
|
const RouterID& remote, const AbstractLinkMessage& msg, SendStatusHandler callback)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
// if the destination is invalid, callback with failure and return
|
2023-09-15 14:55:32 +00:00
|
|
|
if (not _router->link_manager().have_client_connection_to(remote)
|
|
|
|
and not _router->rc_lookup_handler().is_session_allowed(remote))
|
2020-11-10 14:24:58 +00:00
|
|
|
{
|
|
|
|
DoCallback(callback, SendStatus::InvalidRouter);
|
|
|
|
return true;
|
|
|
|
}
|
2022-03-30 20:21:57 +00:00
|
|
|
MessageQueueEntry ent;
|
|
|
|
ent.router = remote;
|
|
|
|
ent.inform = std::move(callback);
|
|
|
|
ent.pathid = msg.pathid;
|
2023-08-29 14:26:59 +00:00
|
|
|
ent.priority = msg.priority();
|
2022-03-30 20:21:57 +00:00
|
|
|
|
2023-09-13 15:57:29 +00:00
|
|
|
std::string _buf;
|
|
|
|
_buf.reserve(MAX_LINK_MSG_SIZE);
|
2023-08-29 14:26:59 +00:00
|
|
|
|
|
|
|
if (!EncodeBuffer(msg, _buf))
|
2019-06-26 21:39:29 +00:00
|
|
|
return false;
|
|
|
|
|
2023-08-29 14:26:59 +00:00
|
|
|
ent.message.resize(_buf.size());
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2023-08-29 14:26:59 +00:00
|
|
|
std::copy_n(_buf.data(), _buf.size(), ent.message.data());
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// if we have a session to the destination, queue the message and return
|
2023-09-15 14:55:32 +00:00
|
|
|
if (_router->link_manager().have_connection_to(remote))
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
QueueOutboundMessage(std::move(ent));
|
2019-06-26 21:39:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// if we don't have a session to the destination, queue the message onto
|
|
|
|
// a special pending session queue for that destination, and then create
|
|
|
|
// that pending session if there is not already a session establish attempt
|
|
|
|
// in progress.
|
2019-06-26 21:39:29 +00:00
|
|
|
bool shouldCreateSession = false;
|
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
util::Lock l{_mutex};
|
2019-06-26 21:39:29 +00:00
|
|
|
|
|
|
|
// create queue for <remote> if it doesn't exist, and get iterator
|
2021-04-29 22:54:43 +00:00
|
|
|
auto [queue_itr, is_new] = pendingSessionMessageQueues.emplace(remote, MessageQueue());
|
2022-03-30 20:21:57 +00:00
|
|
|
queue_itr->second.push(std::move(ent));
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
shouldCreateSession = is_new;
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (shouldCreateSession)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
|
|
|
QueueSessionCreation(remote);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
void
|
2021-11-11 14:17:48 +00:00
|
|
|
OutboundMessageHandler::Pump()
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
m_Killer.TryAccess([this]() {
|
|
|
|
recentlyRemovedPaths.Decay();
|
|
|
|
ProcessOutboundQueue();
|
2022-05-02 20:12:27 +00:00
|
|
|
// TODO: this probably shouldn't be pumping, as it defeats the purpose
|
|
|
|
// of having a limit on sends per tick, but chaning it is potentially bad
|
|
|
|
// and requires testing so it should be changed later.
|
|
|
|
if (/*bool more = */ SendRoundRobin())
|
2021-11-12 13:51:39 +00:00
|
|
|
_router->TriggerPump();
|
2019-11-14 18:50:45 +00:00
|
|
|
});
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-04-29 22:54:43 +00:00
|
|
|
OutboundMessageHandler::RemovePath(const PathID_t& pathid)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
m_Killer.TryAccess([this, pathid]() {
|
|
|
|
/* add the path id to a list of recently removed paths to act as a filter
|
|
|
|
* for messages that are queued but haven't been sorted into path queues yet.
|
|
|
|
*
|
|
|
|
* otherwise these messages would re-create the path queue we just removed, and
|
|
|
|
* those path queues would be leaked / never removed.
|
|
|
|
*/
|
|
|
|
recentlyRemovedPaths.Insert(pathid);
|
|
|
|
auto itr = outboundMessageQueues.find(pathid);
|
|
|
|
if (itr != outboundMessageQueues.end())
|
2020-01-21 17:28:23 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
outboundMessageQueues.erase(itr);
|
2020-01-21 17:28:23 +00:00
|
|
|
}
|
2021-04-29 22:54:43 +00:00
|
|
|
removedSomePaths = true;
|
2020-01-21 17:28:23 +00:00
|
|
|
});
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
util::StatusObject
|
|
|
|
OutboundMessageHandler::ExtractStatus() const
|
|
|
|
{
|
2021-03-05 17:31:52 +00:00
|
|
|
util::StatusObject status{
|
|
|
|
"queueStats",
|
|
|
|
{{"queued", m_queueStats.queued},
|
|
|
|
{"dropped", m_queueStats.dropped},
|
|
|
|
{"sent", m_queueStats.sent},
|
|
|
|
{"queueWatermark", m_queueStats.queueWatermark},
|
|
|
|
{"perTickMax", m_queueStats.perTickMax},
|
|
|
|
{"numTicks", m_queueStats.numTicks}}};
|
2020-01-17 17:14:24 +00:00
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2023-09-15 14:55:32 +00:00
|
|
|
OutboundMessageHandler::Init(Router* router)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2021-11-09 23:46:09 +00:00
|
|
|
_router = router;
|
2019-10-25 21:13:11 +00:00
|
|
|
outboundMessageQueues.emplace(zeroID, MessageQueue());
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-05 16:37:54 +00:00
|
|
|
static inline SendStatus
|
2021-07-05 13:06:46 +00:00
|
|
|
ToSendStatus(const SessionResult result)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
switch (result)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
|
|
|
case SessionResult::Establish:
|
2021-07-05 13:06:46 +00:00
|
|
|
return SendStatus::Success;
|
2019-06-26 21:39:29 +00:00
|
|
|
case SessionResult::Timeout:
|
2021-07-05 13:06:46 +00:00
|
|
|
case SessionResult::EstablishFail:
|
|
|
|
return SendStatus::Timeout;
|
2019-06-26 21:39:29 +00:00
|
|
|
case SessionResult::RouterNotFound:
|
2021-07-05 13:06:46 +00:00
|
|
|
return SendStatus::RouterNotFound;
|
2019-06-26 21:39:29 +00:00
|
|
|
case SessionResult::InvalidRouter:
|
2021-07-05 13:06:46 +00:00
|
|
|
return SendStatus::InvalidRouter;
|
2019-06-26 21:39:29 +00:00
|
|
|
case SessionResult::NoLink:
|
2021-07-05 13:06:46 +00:00
|
|
|
return SendStatus::NoLink;
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
2021-07-05 13:18:28 +00:00
|
|
|
throw std::invalid_argument{
|
2022-07-16 00:41:14 +00:00
|
|
|
fmt::format("SessionResult {} has no corresponding SendStatus when transforming", result)};
|
2021-07-05 13:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
OutboundMessageHandler::OnSessionResult(const RouterID& router, const SessionResult result)
|
|
|
|
{
|
|
|
|
FinalizeSessionRequest(router, ToSendStatus(result));
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
OutboundMessageHandler::DoCallback(SendStatusHandler callback, SendStatus status)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (callback)
|
2021-11-09 23:46:09 +00:00
|
|
|
_router->loop()->call([f = std::move(callback), status] { f(status); });
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
2023-08-29 14:26:59 +00:00
|
|
|
// TODO: still necessary/desired?
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
OutboundMessageHandler::QueueSessionCreation(const RouterID& remote)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2023-09-15 14:55:32 +00:00
|
|
|
_router->link_manager().Connect(remote);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 16:28:02 +00:00
|
|
|
/** Note: This is where AbstractLinkMessage::bt_encode() is called. Contextually, this is
|
|
|
|
different than how the other Abstract message types invoke ::bt_encode(), namely that
|
|
|
|
there is no bt_dict_producer already being appended to. As a result, this use case
|
|
|
|
likely requires a span backport and/or re-designed llarp_buffer. Until then, the
|
|
|
|
::bt_encode() override that returns an std::string upon destruction of its bt_dict_producer
|
|
|
|
will be used
|
|
|
|
*/
|
2019-06-26 21:39:29 +00:00
|
|
|
bool
|
2023-09-13 15:57:29 +00:00
|
|
|
OutboundMessageHandler::EncodeBuffer(const AbstractLinkMessage& msg, std::string& buf)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2023-09-13 15:57:29 +00:00
|
|
|
if (buf = msg.bt_encode(); not buf.empty())
|
2023-08-29 14:26:59 +00:00
|
|
|
return true;
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2023-08-29 14:26:59 +00:00
|
|
|
log::error(link_cat, "Error: OutboundMessageHandler failed to encode outbound message!");
|
|
|
|
return false;
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2022-03-30 20:21:57 +00:00
|
|
|
OutboundMessageHandler::Send(const MessageQueueEntry& ent)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
const llarp_buffer_t buf{ent.message};
|
2020-01-17 17:14:24 +00:00
|
|
|
m_queueStats.sent++;
|
2022-03-30 20:21:57 +00:00
|
|
|
SendStatusHandler callback = ent.inform;
|
2023-09-15 14:55:32 +00:00
|
|
|
return _router->link_manager().send_to(
|
2022-03-30 20:21:57 +00:00
|
|
|
ent.router,
|
|
|
|
buf,
|
2023-08-29 14:26:59 +00:00
|
|
|
[this, callback](AbstractLinkSession::DeliveryStatus status) {
|
|
|
|
if (status == AbstractLinkSession::DeliveryStatus::eDeliverySuccess)
|
2022-03-30 20:21:57 +00:00
|
|
|
DoCallback(callback, SendStatus::Success);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DoCallback(callback, SendStatus::Congestion);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ent.priority);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2022-03-30 20:21:57 +00:00
|
|
|
OutboundMessageHandler::SendIfSession(const MessageQueueEntry& ent)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2023-09-15 14:55:32 +00:00
|
|
|
if (_router->link_manager().have_connection_to(ent.router))
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
return Send(ent);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
bool
|
2022-03-30 20:21:57 +00:00
|
|
|
OutboundMessageHandler::QueueOutboundMessage(MessageQueueEntry entry)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
// copy callback in case we need to call it, so we can std::move(entry)
|
2022-03-30 20:21:57 +00:00
|
|
|
auto callback = entry.inform;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (outboundQueue.tryPushBack(std::move(entry)) != llarp::thread::QueueReturn::Success)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2020-01-17 17:14:24 +00:00
|
|
|
m_queueStats.dropped++;
|
2022-03-30 20:21:57 +00:00
|
|
|
DoCallback(callback, SendStatus::Congestion);
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
2020-01-17 17:14:24 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_queueStats.queued++;
|
2020-01-17 18:19:53 +00:00
|
|
|
uint32_t queueSize = outboundQueue.size();
|
2020-04-07 18:38:56 +00:00
|
|
|
m_queueStats.queueWatermark = std::max(queueSize, m_queueStats.queueWatermark);
|
2020-01-17 17:14:24 +00:00
|
|
|
}
|
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-26 21:39:29 +00:00
|
|
|
void
|
2019-10-25 21:13:11 +00:00
|
|
|
OutboundMessageHandler::ProcessOutboundQueue()
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
while (not outboundQueue.empty())
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
MessageQueueEntry entry = outboundQueue.popFront();
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// messages may still be queued for processing when a pathid is removed,
|
|
|
|
// so check here if the pathid was recently removed.
|
|
|
|
if (recentlyRemovedPaths.Contains(entry.pathid))
|
|
|
|
{
|
2021-11-09 23:47:29 +00:00
|
|
|
continue;
|
2021-04-29 22:54:43 +00:00
|
|
|
}
|
2019-10-25 21:13:11 +00:00
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
auto [queue_itr, is_new] = outboundMessageQueues.emplace(entry.pathid, MessageQueue());
|
|
|
|
|
|
|
|
if (is_new && !entry.pathid.IsZero())
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
roundRobinOrder.push(entry.pathid);
|
|
|
|
}
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
MessageQueue& path_queue = queue_itr->second;
|
2020-01-18 21:59:50 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (path_queue.size() < MAX_PATH_QUEUE_SIZE || entry.pathid.IsZero())
|
2020-01-18 21:59:50 +00:00
|
|
|
{
|
|
|
|
path_queue.push(std::move(entry));
|
|
|
|
}
|
|
|
|
else
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
DoCallback(entry.inform, SendStatus::Congestion);
|
2020-01-17 17:14:24 +00:00
|
|
|
m_queueStats.dropped++;
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 23:46:09 +00:00
|
|
|
bool
|
2019-10-25 21:13:11 +00:00
|
|
|
OutboundMessageHandler::SendRoundRobin()
|
|
|
|
{
|
2020-01-17 17:14:24 +00:00
|
|
|
m_queueStats.numTicks++;
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// send routing messages first priority
|
|
|
|
auto& routing_mq = outboundMessageQueues[zeroID];
|
|
|
|
while (not routing_mq.empty())
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2021-04-29 22:54:43 +00:00
|
|
|
const MessageQueueEntry& entry = routing_mq.top();
|
2022-03-30 20:21:57 +00:00
|
|
|
Send(entry);
|
2021-04-29 22:54:43 +00:00
|
|
|
routing_mq.pop();
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
size_t num_queues = roundRobinOrder.size();
|
2019-10-25 21:13:11 +00:00
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// if any paths have been removed since last tick, remove any stale
|
|
|
|
// entries from the round-robin ordering
|
2020-04-07 18:38:56 +00:00
|
|
|
if (removedSomePaths)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
for (size_t i = 0; i < num_queues; i++)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
PathID_t pathid = std::move(roundRobinOrder.front());
|
|
|
|
roundRobinOrder.pop();
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (outboundMessageQueues.find(pathid) != outboundMessageQueues.end())
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
roundRobinOrder.push(std::move(pathid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-29 22:54:43 +00:00
|
|
|
removedSomePaths = false;
|
2019-10-25 21:13:11 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
num_queues = roundRobinOrder.size();
|
2021-11-09 23:46:09 +00:00
|
|
|
if (num_queues == 0)
|
2019-10-30 00:07:20 +00:00
|
|
|
{
|
2021-11-09 23:46:09 +00:00
|
|
|
return false;
|
2019-10-30 00:07:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 22:54:43 +00:00
|
|
|
// send messages for each pathid in roundRobinOrder, stopping when
|
|
|
|
// either every path's queue is empty or a set maximum amount of
|
|
|
|
// messages have been sent.
|
2021-11-09 23:46:09 +00:00
|
|
|
size_t consecutive_empty = 0;
|
|
|
|
for (size_t sent_count = 0; sent_count < MAX_OUTBOUND_MESSAGES_PER_TICK;)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
PathID_t pathid = std::move(roundRobinOrder.front());
|
|
|
|
roundRobinOrder.pop();
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
auto& message_queue = outboundMessageQueues[pathid];
|
|
|
|
if (message_queue.size() > 0)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
const MessageQueueEntry& entry = message_queue.top();
|
2019-10-25 21:13:11 +00:00
|
|
|
|
2022-03-30 20:21:57 +00:00
|
|
|
Send(entry);
|
2020-01-17 16:33:37 +00:00
|
|
|
message_queue.pop();
|
|
|
|
|
2021-11-09 23:46:09 +00:00
|
|
|
consecutive_empty = 0;
|
|
|
|
consecutive_empty++;
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-09 23:46:09 +00:00
|
|
|
consecutive_empty++;
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
roundRobinOrder.push(std::move(pathid));
|
|
|
|
|
|
|
|
// if num_queues empty queues in a row, all queues empty.
|
2021-11-09 23:46:09 +00:00
|
|
|
if (consecutive_empty == num_queues)
|
2019-10-25 21:13:11 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-01-17 17:14:24 +00:00
|
|
|
|
2021-11-09 23:46:09 +00:00
|
|
|
m_queueStats.perTickMax = std::max((uint32_t)consecutive_empty, m_queueStats.perTickMax);
|
|
|
|
|
|
|
|
return consecutive_empty != num_queues;
|
2019-10-25 21:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
OutboundMessageHandler::FinalizeSessionRequest(const RouterID& router, SendStatus status)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
|
|
|
MessageQueue movedMessages;
|
|
|
|
{
|
De-abseil, part 2: mutex, locks, (most) time
- util::Mutex is now a std::shared_timed_mutex, which is capable of
exclusive and shared locks.
- util::Lock is still present as a std::lock_guard<util::Mutex>.
- the locking annotations are preserved, but updated to the latest
supported by clang rather than using abseil's older/deprecated ones.
- ACQUIRE_LOCK macro is gone since we don't pass mutexes by pointer into
locks anymore (WTF abseil).
- ReleasableLock is gone. Instead there are now some llarp::util helper
methods to obtain unique and/or shared locks:
- `auto lock = util::unique_lock(mutex);` gets an RAII-but-also
unlockable object (std::unique_lock<T>, with T inferred from
`mutex`).
- `auto lock = util::shared_lock(mutex);` gets an RAII shared (i.e.
"reader") lock of the mutex.
- `auto lock = util::unique_locks(mutex1, mutex2, mutex3);` can be
used to atomically lock multiple mutexes at once (returning a
tuple of the locks).
This are templated on the mutex which makes them a bit more flexible
than using a concrete type: they can be used for any type of lockable
mutex, not only util::Mutex. (Some of the code here uses them for
getting locks around a std::mutex). Until C++17, using the RAII types
is painfully verbose:
```C++
// pre-C++17 - needing to figure out the mutex type here is annoying:
std::unique_lock<util::Mutex> lock(mutex);
// pre-C++17 and even more verbose (but at least the type isn't needed):
std::unique_lock<decltype(mutex)> lock(mutex);
// our compromise:
auto lock = util::unique_lock(mutex);
// C++17:
std::unique_lock lock(mutex);
```
All of these functions will also warn (under gcc or clang) if you
discard the return value. You can also do fancy things like
`auto l = util::unique_lock(mutex, std::adopt_lock)` (which lets a
lock take over an already-locked mutex).
- metrics code is gone, which also removes a big pile of code that was
only used by metrics:
- llarp::util::Scheduler
- llarp::thread::TimerQueue
- llarp::util::Stopwatch
2020-02-21 17:21:11 +00:00
|
|
|
util::Lock l(_mutex);
|
2019-10-25 21:13:11 +00:00
|
|
|
auto itr = pendingSessionMessageQueues.find(router);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (itr == pendingSessionMessageQueues.end())
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
movedMessages.swap(itr->second);
|
2019-06-26 21:39:29 +00:00
|
|
|
|
2019-10-25 21:13:11 +00:00
|
|
|
pendingSessionMessageQueues.erase(itr);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
while (!movedMessages.empty())
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
const MessageQueueEntry& entry = movedMessages.top();
|
2019-10-25 21:13:11 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
if (status == SendStatus::Success)
|
2019-06-26 21:39:29 +00:00
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
Send(entry);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-03-30 20:21:57 +00:00
|
|
|
DoCallback(entry.inform, status);
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
2020-01-17 16:33:37 +00:00
|
|
|
movedMessages.pop();
|
2019-06-26 21:39:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace llarp
|