mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Fix stalled consensus detection to prevent false positives in situations where there are no disputed transactions. Stalled consensus detection was added to 2.5.0 in response to a network consensus halt that caused a round to run for over an hour. However, it has a flaw that makes it very easy to have false positives. Those false positives are usually mitigated by other checks that prevent them from having an effect, but there have been several instances of validators "running ahead" because there are circumstances where the other checks are "successful", allowing the stall state to be checked.
251 lines
8.2 KiB
C++
251 lines
8.2 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012-2017 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <xrpld/app/consensus/RCLValidations.h>
|
|
#include <xrpld/app/ledger/InboundLedger.h>
|
|
#include <xrpld/app/ledger/InboundLedgers.h>
|
|
#include <xrpld/app/ledger/LedgerMaster.h>
|
|
#include <xrpld/app/main/Application.h>
|
|
#include <xrpld/app/misc/ValidatorList.h>
|
|
#include <xrpld/core/JobQueue.h>
|
|
#include <xrpld/core/TimeKeeper.h>
|
|
#include <xrpld/perflog/PerfLog.h>
|
|
|
|
#include <xrpl/basics/Log.h>
|
|
#include <xrpl/basics/chrono.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace ripple {
|
|
|
|
RCLValidatedLedger::RCLValidatedLedger(MakeGenesis)
|
|
: ledgerID_{0}, ledgerSeq_{0}, j_{beast::Journal::getNullSink()}
|
|
{
|
|
}
|
|
|
|
RCLValidatedLedger::RCLValidatedLedger(
|
|
std::shared_ptr<Ledger const> const& ledger,
|
|
beast::Journal j)
|
|
: ledgerID_{ledger->info().hash}, ledgerSeq_{ledger->seq()}, j_{j}
|
|
{
|
|
auto const hashIndex = ledger->read(keylet::skip());
|
|
if (hashIndex)
|
|
{
|
|
XRPL_ASSERT(
|
|
hashIndex->getFieldU32(sfLastLedgerSequence) == (seq() - 1),
|
|
"ripple::RCLValidatedLedger::RCLValidatedLedger(Ledger) : valid "
|
|
"last ledger sequence");
|
|
ancestors_ = hashIndex->getFieldV256(sfHashes).value();
|
|
}
|
|
else
|
|
JLOG(j_.warn()) << "Ledger " << ledgerSeq_ << ":" << ledgerID_
|
|
<< " missing recent ancestor hashes";
|
|
}
|
|
|
|
auto
|
|
RCLValidatedLedger::minSeq() const -> Seq
|
|
{
|
|
return seq() - std::min(seq(), static_cast<Seq>(ancestors_.size()));
|
|
}
|
|
|
|
auto
|
|
RCLValidatedLedger::seq() const -> Seq
|
|
{
|
|
return ledgerSeq_;
|
|
}
|
|
auto
|
|
RCLValidatedLedger::id() const -> ID
|
|
{
|
|
return ledgerID_;
|
|
}
|
|
|
|
auto
|
|
RCLValidatedLedger::operator[](Seq const& s) const -> ID
|
|
{
|
|
if (s >= minSeq() && s <= seq())
|
|
{
|
|
if (s == seq())
|
|
return ledgerID_;
|
|
Seq const diff = seq() - s;
|
|
return ancestors_[ancestors_.size() - diff];
|
|
}
|
|
|
|
JLOG(j_.warn()) << "Unable to determine hash of ancestor seq=" << s
|
|
<< " from ledger hash=" << ledgerID_
|
|
<< " seq=" << ledgerSeq_ << " (available: " << minSeq()
|
|
<< "-" << seq() << ")";
|
|
// Default ID that is less than all others
|
|
return ID{0};
|
|
}
|
|
|
|
// Return the sequence number of the earliest possible mismatching ancestor
|
|
RCLValidatedLedger::Seq
|
|
mismatch(RCLValidatedLedger const& a, RCLValidatedLedger const& b)
|
|
{
|
|
using Seq = RCLValidatedLedger::Seq;
|
|
|
|
// Find overlapping interval for known sequence for the ledgers
|
|
Seq const lower = std::max(a.minSeq(), b.minSeq());
|
|
Seq const upper = std::min(a.seq(), b.seq());
|
|
|
|
Seq curr = upper;
|
|
while (curr != Seq{0} && a[curr] != b[curr] && curr >= lower)
|
|
--curr;
|
|
|
|
// If the searchable interval mismatches entirely, then we have to
|
|
// assume the ledgers mismatch starting post genesis ledger
|
|
return (curr < lower) ? Seq{1} : (curr + Seq{1});
|
|
}
|
|
|
|
RCLValidationsAdaptor::RCLValidationsAdaptor(Application& app, beast::Journal j)
|
|
: app_(app), j_(j)
|
|
{
|
|
}
|
|
|
|
NetClock::time_point
|
|
RCLValidationsAdaptor::now() const
|
|
{
|
|
return app_.timeKeeper().closeTime();
|
|
}
|
|
|
|
std::optional<RCLValidatedLedger>
|
|
RCLValidationsAdaptor::acquire(LedgerHash const& hash)
|
|
{
|
|
using namespace std::chrono_literals;
|
|
auto ledger = perf::measureDurationAndLog(
|
|
[&]() { return app_.getLedgerMaster().getLedgerByHash(hash); },
|
|
"getLedgerByHash",
|
|
10ms,
|
|
j_);
|
|
|
|
if (!ledger)
|
|
{
|
|
JLOG(j_.warn())
|
|
<< "Need validated ledger for preferred ledger analysis " << hash;
|
|
|
|
Application* pApp = &app_;
|
|
|
|
app_.getJobQueue().addJob(
|
|
jtADVANCE, "getConsensusLedger2", [pApp, hash, this]() {
|
|
JLOG(j_.debug())
|
|
<< "JOB advanceLedger getConsensusLedger2 started";
|
|
pApp->getInboundLedgers().acquireAsync(
|
|
hash, 0, InboundLedger::Reason::CONSENSUS);
|
|
});
|
|
return std::nullopt;
|
|
}
|
|
|
|
XRPL_ASSERT(
|
|
!ledger->open() && ledger->isImmutable(),
|
|
"ripple::RCLValidationsAdaptor::acquire : valid ledger state");
|
|
XRPL_ASSERT(
|
|
ledger->info().hash == hash,
|
|
"ripple::RCLValidationsAdaptor::acquire : ledger hash match");
|
|
|
|
return RCLValidatedLedger(std::move(ledger), j_);
|
|
}
|
|
|
|
void
|
|
handleNewValidation(
|
|
Application& app,
|
|
std::shared_ptr<STValidation> const& val,
|
|
std::string const& source,
|
|
BypassAccept const bypassAccept,
|
|
std::optional<beast::Journal> j)
|
|
{
|
|
auto const& signingKey = val->getSignerPublic();
|
|
auto const& hash = val->getLedgerHash();
|
|
auto const seq = val->getFieldU32(sfLedgerSequence);
|
|
|
|
// Ensure validation is marked as trusted if signer currently trusted
|
|
auto masterKey = app.validators().getTrustedKey(signingKey);
|
|
|
|
if (!val->isTrusted() && masterKey)
|
|
val->setTrusted();
|
|
|
|
// If not currently trusted, see if signer is currently listed
|
|
if (!masterKey)
|
|
masterKey = app.validators().getListedKey(signingKey);
|
|
|
|
auto& validations = app.getValidations();
|
|
|
|
// masterKey is seated only if validator is trusted or listed
|
|
auto const outcome =
|
|
validations.add(calcNodeID(masterKey.value_or(signingKey)), val);
|
|
|
|
if (outcome == ValStatus::current)
|
|
{
|
|
if (val->isTrusted())
|
|
{
|
|
if (bypassAccept == BypassAccept::yes)
|
|
{
|
|
XRPL_ASSERT(
|
|
j, "ripple::handleNewValidation : journal is available");
|
|
if (j.has_value())
|
|
{
|
|
JLOG(j->trace()) << "Bypassing checkAccept for validation "
|
|
<< val->getLedgerHash();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
app.getLedgerMaster().checkAccept(hash, seq);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Ensure that problematic validations from validators we trust are
|
|
// logged at the highest possible level.
|
|
//
|
|
// One might think that we should more than just log: we ought to also
|
|
// not relay validations that fail these checks. Alas, and somewhat
|
|
// counterintuitively, we *especially* want to forward such validations,
|
|
// so that our peers will also observe them and take independent notice of
|
|
// such validators, informing their operators.
|
|
if (auto const ls = val->isTrusted()
|
|
? validations.adaptor().journal().error()
|
|
: validations.adaptor().journal().info();
|
|
ls.active())
|
|
{
|
|
auto const id = [&masterKey, &signingKey]() {
|
|
auto ret = toBase58(TokenType::NodePublic, signingKey);
|
|
|
|
if (masterKey && masterKey != signingKey)
|
|
ret += ":" + toBase58(TokenType::NodePublic, *masterKey);
|
|
|
|
return ret;
|
|
}();
|
|
|
|
if (outcome == ValStatus::conflicting)
|
|
ls << "Byzantine Behavior Detector: "
|
|
<< (val->isTrusted() ? "trusted " : "untrusted ") << id
|
|
<< ": Conflicting validation for " << seq << "!\n["
|
|
<< val->getSerializer().slice() << "]";
|
|
|
|
if (outcome == ValStatus::multiple)
|
|
ls << "Byzantine Behavior Detector: "
|
|
<< (val->isTrusted() ? "trusted " : "untrusted ") << id
|
|
<< ": Multiple validations for " << seq << "/" << hash << "!\n["
|
|
<< val->getSerializer().slice() << "]";
|
|
}
|
|
}
|
|
|
|
} // namespace ripple
|