1#include <xrpld/app/consensus/RCLValidations.h>
2#include <xrpld/app/ledger/Ledger.h>
3#include <xrpld/app/ledger/LedgerMaster.h>
4#include <xrpld/app/ledger/LedgerReplayer.h>
5#include <xrpld/app/ledger/OpenLedger.h>
6#include <xrpld/app/ledger/OrderBookDB.h>
7#include <xrpld/app/ledger/PendingSaves.h>
8#include <xrpld/app/main/Application.h>
9#include <xrpld/app/misc/AmendmentTable.h>
10#include <xrpld/app/misc/LoadFeeTrack.h>
11#include <xrpld/app/misc/NetworkOPs.h>
12#include <xrpld/app/misc/SHAMapStore.h>
13#include <xrpld/app/misc/Transaction.h>
14#include <xrpld/app/misc/TxQ.h>
15#include <xrpld/app/misc/ValidatorList.h>
16#include <xrpld/app/paths/PathRequests.h>
17#include <xrpld/app/rdb/RelationalDatabase.h>
18#include <xrpld/core/TimeKeeper.h>
19#include <xrpld/overlay/Overlay.h>
20#include <xrpld/overlay/Peer.h>
22#include <xrpl/basics/Log.h>
23#include <xrpl/basics/MathUtilities.h>
24#include <xrpl/basics/UptimeClock.h>
25#include <xrpl/basics/contract.h>
26#include <xrpl/basics/safe_cast.h>
27#include <xrpl/basics/scope.h>
28#include <xrpl/beast/utility/instrumentation.h>
29#include <xrpl/protocol/BuildInfo.h>
30#include <xrpl/protocol/HashPrefix.h>
31#include <xrpl/protocol/digest.h>
32#include <xrpl/resource/Fees.h>
61 bool const ret = [&]() {
63 if (candidateLedger >= currentLedger)
67 if (currentLedger - candidateLedger <= ledgerHistory)
72 return minimumOnline.
has_value() && candidateLedger >= *minimumOnline;
75 JLOG(j.
trace()) <<
"Missing ledger " << candidateLedger << (ret ?
" should" :
" should NOT") <<
" be acquired";
86 , mLedgerHistory(collector, app)
87 , standalone_(app_.config().standalone())
88 , fetch_depth_(app_.getSHAMapStore().clampFetchDepth(app_.config().FETCH_DEPTH))
89 , ledger_history_(app_.config().LEDGER_HISTORY)
91 , fetch_packs_(
"FetchPack", 65536,
std::chrono::seconds{45},
stopwatch, app_.journal(
"TaggedCache"))
113 if (validLedger && !
areCompatible(*validLedger, view, s, reason))
134 using namespace std::chrono_literals;
144 ret = (ret > 0s) ? ret : 0s;
158 using namespace std::chrono_literals;
169 ret = (ret > 0s) ? ret : 0s;
183 using namespace std::chrono_literals;
187 reason =
"No recently-published ledger";
192 if (!validClose || !pubClose)
194 reason =
"No published ledger";
197 if (validClose > (pubClose + 90))
199 reason =
"Published ledger lags validated ledger";
215 times.
reserve(validations.size());
216 for (
auto const& val : validations)
219 if (!validations.empty())
220 consensusHash = validations.front()->getConsensusHash();
229 auto const t0 = times[(times.
size() - 1) / 2];
230 auto const t1 = times[times.
size() / 2];
231 signTime = t0 + (t1 - t0) / 2;
235 signTime = l->header().closeTime;
243 "xrpl::LedgerMaster::setValidLedger : valid ledger sequence");
256 "activated: server blocked.";
273 "reached majority. Upgrade before "
275 <<
" to prevent your server from "
276 "becoming amendment blocked.";
306 XRPL_ASSERT(ledger,
"xrpl::LedgerMaster::canBeCurrent : non-null input");
312 if (validLedger && (ledger->header().seq < validLedger->header().seq))
314 JLOG(
m_journal.
trace()) <<
"Candidate for current ledger has low seq " << ledger->header().seq <<
" < "
315 << validLedger->header().seq;
325 auto ledgerClose = ledger->header().parentCloseTime;
327 using namespace std::chrono_literals;
328 if ((validLedger || (ledger->header().seq > 10)) &&
329 ((
std::max(closeTime, ledgerClose) -
std::min(closeTime, ledgerClose)) > 5min))
332 <<
" at network time " <<
to_string(closeTime) <<
" seq " << ledger->header().seq;
343 LedgerIndex maxSeq = validLedger->header().seq + 10;
345 if (closeTime > validLedger->header().parentCloseTime)
347 std::chrono::duration_cast<std::chrono::seconds>(closeTime - validLedger->header().parentCloseTime)
351 if (ledger->header().seq > maxSeq)
353 JLOG(
m_journal.
warn()) <<
"Candidate for current ledger has high seq " << ledger->header().seq <<
" > "
358 JLOG(
m_journal.
trace()) <<
"Acceptable seq range: " << validLedger->header().seq
359 <<
" <= " << ledger->header().seq <<
" <= " << maxSeq;
368 XRPL_ASSERT(lastClosed,
"xrpl::LedgerMaster::switchLCL : non-null input");
369 if (!lastClosed->isImmutable())
372 if (lastClosed->open())
373 LogicError(
"The new last closed ledger is open!");
400 bool validated = ledger->header().validated;
476 XRPL_ASSERT(hash->isNonZero(),
"xrpl::LedgerMaster::isValidated : nonzero hash");
518 minVal = 1 + *maybeMin;
535 if (!pendingSaves.empty() && ((minVal != 0) || (maxVal != 0)))
540 while (pendingSaves.count(maxVal) > 0)
542 while (pendingSaves.count(minVal) > 0)
546 for (
auto v : pendingSaves)
548 if ((v.first >= minVal) && (v.first <= maxVal))
550 if (v.first > ((minVal + maxVal) / 2))
551 maxVal = v.first - 1;
553 minVal = v.first + 1;
583 uint256 prevHash = ledger->header().parentHash;
602 auto it(ledgerHashes.
find(seq));
604 if (it == ledgerHashes.
end())
615 it = ledgerHashes.
find(seq);
617 if (it == ledgerHashes.
end())
620 if (!nodeStore.fetchNodeObject(ledgerHashes.
begin()->second.ledgerHash, ledgerHashes.
begin()->first))
623 JLOG(
m_journal.
warn()) <<
"SQL DB ledger sequence " << seq <<
" mismatches node store";
628 if (it->second.ledgerHash != prevHash)
631 prevHash = it->second.parentHash;
653 if (!haveHash || haveHash->isZero())
655 JLOG(
m_journal.
error()) <<
"No hash for fetch pack. Missing Index " << missing;
665 for (
auto const& peer : peerList)
667 if (peer->hasRange(missing, missing + 1))
669 int score = peer->getScore(
true);
670 if (!target || (score > maxScore))
681 protocol::TMGetObjectByHash tmBH;
682 tmBH.set_query(
true);
683 tmBH.set_type(protocol::TMGetObjectByHash::otFETCH_PACK);
684 tmBH.set_ledgerhash(haveHash->begin(), 32);
687 target->send(packet);
688 JLOG(
m_journal.
trace()) <<
"Requested fetch pack for " << missing;
710 JLOG(
m_journal.
warn()) <<
"fixMismatch encounters partial ledger. Exception: " << ex.
what();
720 if (otherLedger && (otherLedger->header().hash == *hash))
726 <<
"Match at " << lSeq <<
", " << invalidate <<
" prior ledgers invalidated";
741 JLOG(
m_journal.
warn()) <<
"All " << invalidate <<
" prior ledgers invalidated";
749 JLOG(
m_journal.
debug()) <<
"Ledger " << ledger->header().seq <<
" accepted :" << ledger->header().hash;
751 ledger->stateMap().getHash().isNonZero(),
"xrpl::LedgerMaster::setFullLedger : nonzero ledger state hash");
753 ledger->setValidated();
763 if (prevHash.
isNonZero() && prevHash != ledger->header().parentHash)
785 if (ledger->header().seq != 0 &&
haveLedger(ledger->header().seq - 1))
790 if (!prevLedger || (prevLedger->header().hash != ledger->header().parentHash))
792 JLOG(
m_journal.
warn()) <<
"Acquired ledger invalidates previous ledger: "
793 << (prevLedger ?
"hashMismatch" :
"missingLedger");
821 valCount = validations.size();
886 auto const tvc = validations.size();
889 JLOG(
m_journal.
trace()) <<
"Only " << tvc <<
" validations for " << ledger->header().hash;
893 JLOG(
m_journal.
info()) <<
"Advancing accepted ledger to " << ledger->header().seq <<
" with >= " << minVal
896 ledger->setValidated();
910 fees.reserve(fees.size() + fees2.size());
920 s <<
"Received fees from validations: (" << fees.size() <<
") ";
921 for (
auto const fee1 : fees)
927 fee = fees[fees.size() / 2];
938 if (ledger->seq() % 256 == 0)
949 bool needPrint =
false;
960 for (
auto const& v : vals)
962 if (v->isFieldPresent(sfServerVersion))
964 auto version = v->getFieldU64(sfServerVersion);
973 if (higherVersionCount > 0 && rippledCount > 0)
978 needPrint = unlSize > 0 &&
calculatePercent(vals.size(), unlSize) >= reportingPercent &&
995 auto const upgradeMsg =
996 "Check for upgrade: "
997 "A majority of trusted validators are "
998 "running a newer version.";
1024 JLOG(stream) <<
"Consensus built old ledger: " << ledger->header().seq <<
" <= " <<
mValidLedgerSeq;
1034 JLOG(stream) <<
"Consensus ledger fully validated";
1047 valSeq() : valCount_(0), ledgerSeq_(0)
1058 if (ledgerSeq_ == 0)
1068 for (
auto const& v : validations)
1070 valSeq& vs = count[v->getLedgerHash()];
1071 vs.mergeValidation(v->getFieldU32(sfLedgerSequence));
1076 auto maxLedger = ledger->header().hash;
1080 for (
auto& v : count)
1081 if (v.second.valCount_ > neededValidations)
1084 if (v.second.ledgerSeq_ == 0)
1087 v.second.ledgerSeq_ = l->header().seq;
1090 if (v.second.ledgerSeq_ > maxSeq)
1092 maxSeq = v.second.ledgerSeq_;
1093 maxLedger = v.first;
1100 JLOG(stream) <<
"Consensus triggered check of ledger";
1112 if (l && l->header().seq >= index)
1135 JLOG(
m_journal.
trace()) <<
"No valid journal, nothing to publish.";
1159 JLOG(
m_journal.
trace()) <<
"No valid journal, nothing to publish.";
1174 JLOG(
m_journal.
trace()) <<
"Trying to fetch/publish valid ledger " << seq;
1188 else if (hash->isZero())
1191 JLOG(
m_journal.
fatal()) <<
"Ledger: " << valSeq <<
" does not have hash for " << seq;
1193 "xrpl::LedgerMaster::findNewLedgersToPublish : ledger "
1210 if (ledger && (ledger->header().seq == pubSeq))
1212 ledger->setValidated();
1222 JLOG(
m_journal.
error()) <<
"Exception while trying to find ledgers to publish: " << ex.
what();
1234 auto finishLedger = valLedger;
1235 while (startLedger->seq() + 1 < finishLedger->seq())
1239 finishLedger = parent;
1243 auto numberLedgers = finishLedger->seq() - startLedger->seq() + 1;
1244 JLOG(
m_journal.
debug()) <<
"Publish LedgerReplays " << numberLedgers
1245 <<
" ledgers, from seq=" << startLedger->header().seq <<
", "
1246 << startLedger->header().hash <<
" to seq=" << finishLedger->header().seq
1247 <<
", " << finishLedger->header().hash;
1299 JLOG(
m_journal.
debug()) <<
"Need network ledger for updating paths";
1335 JLOG(
m_journal.
debug()) <<
"Published ledger too old for updating paths";
1348 if (!pathRequests.requestsPending())
1352 JLOG(
m_journal.
debug()) <<
"No path requests found. Nothing to do for updating "
1359 pathRequests.updateAll(lastLedger);
1362 if (!pathRequests.requestsPending())
1364 JLOG(
m_journal.
debug()) <<
"No path requests left. No need for further updating "
1374 if (lastLedger->open())
1463 return ledger->rules();
1495 if (nodeObject && (nodeObject->getData().size() >= 120))
1497 SerialIter it(nodeObject->getData().data(), nodeObject->getData().size());
1515 if (
hash.isNonZero())
1538 if (!referenceLedger || (referenceLedger->header().seq < index))
1553 XRPL_ASSERT(refHash,
"xrpl::LedgerMaster::walkHashBySeq : found ledger");
1579 "xrpl::LedgerMaster::walkHashBySeq : has complete "
1595 if (
valid->header().seq == index)
1616 if (ret && (ret->header().seq == index))
1630 if (ret && (ret->header().hash ==
hash))
1692 XRPL_ASSERT(
hash->isNonZero(),
"xrpl::LedgerMaster::fetchForHistory : found ledger");
1701 JLOG(
m_journal.
trace()) <<
"fetchForHistory want fetch pack " << missing;
1706 JLOG(
m_journal.
trace()) <<
"fetchForHistory no fetch pack for " << missing;
1709 JLOG(
m_journal.
debug()) <<
"fetchForHistory found failed acquire";
1713 auto seq = ledger->header().seq;
1714 XRPL_ASSERT(seq == missing,
"xrpl::LedgerMaster::fetchForHistory : sequence match");
1723 if (fillInProgress == 0 &&
1751 "xrpl::LedgerMaster::fetchForHistory : "
1752 "prefetched ledger");
1765 JLOG(
m_journal.
fatal()) <<
"Can't find ledger following prevMissing " << missing;
1782 bool progress =
false;
1785 if (pubLedgers.empty())
1802 JLOG(
m_journal.
trace()) <<
"tryAdvance discovered missing " << *missing;
1821 JLOG(
m_journal.
debug()) <<
"tryAdvance found last valid changed";
1834 JLOG(
m_journal.
trace()) <<
"tryAdvance found " << pubLedgers.size() <<
" ledgers to publish";
1835 for (
auto const& ledger : pubLedgers)
1839 JLOG(
m_journal.
debug()) <<
"tryAdvance publishing seq " << ledger->header().seq;
1852 progress =
newPFWork(
"PthFindNewLed", sl);
1920 protocol::TMGetObjectByHash* into,
1922 bool withLeaves =
true)
1924 XRPL_ASSERT(cnt,
"xrpl::populateFetchPack : nonzero count input");
1929 if (!withLeaves && n.
isLeaf())
1937 protocol::TMIndexedObject* obj = into->add_objects();
1938 obj->set_ledgerseq(seq);
1939 obj->set_hash(
hash.data(),
hash.size());
1953 using namespace std::chrono_literals;
1966 auto peer = wPeer.
lock();
1975 JLOG(
m_journal.
info()) <<
"Peer requests fetch pack for ledger we don't have: " << have;
1982 JLOG(
m_journal.
warn()) <<
"Peer requests fetch pack from open ledger: " << have;
1989 JLOG(
m_journal.
debug()) <<
"Peer requests fetch pack that is too early";
1998 JLOG(
m_journal.
info()) <<
"Peer requests fetch pack for ledger whose predecessor we "
1999 <<
"don't have: " << have;
2008 protocol::TMGetObjectByHash reply;
2009 reply.set_query(
false);
2011 if (request->has_seq())
2012 reply.set_seq(request->seq());
2014 reply.set_ledgerhash(request->ledgerhash());
2015 reply.set_type(protocol::TMGetObjectByHash::otFETCH_PACK);
2034 addRaw(want->header(), hdr);
2037 protocol::TMIndexedObject* obj = reply.add_objects();
2038 obj->set_hash(want->header().hash.data(), want->header().hash.size());
2040 obj->set_ledgerseq(lSeq);
2047 if (want->header().txHash.isNonZero())
2050 if (reply.objects().size() >= 512)
2053 have = std::move(want);
2059 JLOG(
m_journal.
info()) <<
"Built fetch pack with " << reply.objects().size() <<
" nodes ("
2060 << msg->getBufferSize() <<
" bytes)";
2066 JLOG(
m_journal.
warn()) <<
"Exception building fetch pack. Exception: " << ex.
what();
2092 if (!lgr || lgr->txs.empty())
2095 for (
auto it = lgr->txs.begin(); it != lgr->txs.end(); ++it)
2096 if (it->first && it->second && it->second->isFieldPresent(sfTransactionIndex) &&
2097 it->second->getFieldU32(sfTransactionIndex) == txnIndex)
2098 return it->first->getTransactionID();
T back_inserter(T... args)
Provide a light-weight way to check active() before string formatting.
A generic endpoint for log messages.
Stream trace() const
Severity stream access functions.
typename Clock::time_point time_point
virtual bool hasUnsupportedEnabled() const =0
returns true if one or more amendments on the network have been enabled that this server does not sup...
void doValidatedLedger(std::shared_ptr< ReadView const > const &lastValidatedLedger)
Called when a new fully-validated ledger is accepted.
virtual std::optional< NetClock::time_point > firstUnsupportedExpected() const =0
virtual Config & config()=0
virtual InboundLedgers & getInboundLedgers()=0
virtual PendingSaves & pendingSaves()=0
virtual LoadFeeTrack & getFeeTrack()=0
virtual LedgerMaster & getLedgerMaster()=0
virtual LedgerIndex getMaxDisallowedLedger()=0
Ensure that a newly-started validator does not sign proposals older than the last ledger it persisted...
virtual LedgerReplayer & getLedgerReplayer()=0
virtual beast::Journal journal(std::string const &name)=0
virtual NodeStore::Database & getNodeStore()=0
virtual TimeKeeper & timeKeeper()=0
virtual PathRequests & getPathRequests()=0
virtual OpenLedger & openLedger()=0
virtual RCLValidations & getValidations()=0
virtual AmendmentTable & getAmendmentTable()=0
virtual SHAMapStore & getSHAMapStore()=0
virtual OrderBookDB & getOrderBookDB()=0
virtual Overlay & overlay()=0
virtual JobQueue & getJobQueue()=0
virtual RelationalDatabase & getRelationalDatabase()=0
virtual bool isStopping() const =0
virtual ValidatorList & validators()=0
virtual NetworkOPs & getOPs()=0
Holds transactions which were deferred to the next pass of consensus.
void insert(std::shared_ptr< STTx const > const &txn)
std::shared_ptr< STTx const > popAcctTransaction(std::shared_ptr< STTx const > const &tx)
std::unordered_set< uint256, beast::uhash<> > features
virtual bool isFailure(uint256 const &h)=0
virtual std::shared_ptr< Ledger const > acquire(uint256 const &hash, std::uint32_t seq, InboundLedger::Reason)=0
bool addJob(JobType type, std::string const &name, JobHandler &&jobHandler)
Adds a job to the JobQueue.
int getJobCount(JobType t) const
Jobs waiting at this priority.
void validatedLedger(std::shared_ptr< Ledger const > const &, std::optional< uint256 > const &consensusHash)
Report that we have validated a particular ledger.
bool insert(std::shared_ptr< Ledger const > const &ledger, bool validated)
Track a ledger.
float getCacheHitRate()
Get the ledgers_by_hash cache hit rate.
LedgerHash getLedgerHash(LedgerIndex ledgerIndex)
Get a ledger's hash given its sequence number.
bool fixIndex(LedgerIndex ledgerIndex, LedgerHash const &ledgerHash)
Repair a hash to index mapping.
std::shared_ptr< Ledger const > getLedgerByHash(LedgerHash const &ledgerHash)
Retrieve a ledger given its hash.
void sweep()
Remove stale cache entries.
void builtLedger(std::shared_ptr< Ledger const > const &, uint256 const &consensusHash, Json::Value)
Report that we have locally built a particular ledger.
std::shared_ptr< Ledger const > getLedgerBySeq(LedgerIndex ledgerIndex)
Get a ledger given its sequence number.
void clearLedgerCachePrior(LedgerIndex seq)
void set(std::shared_ptr< Ledger const > ledger)
std::shared_ptr< Ledger const > get()
std::optional< LedgerIndex > minSqlSeq()
std::atomic< LedgerIndex > mValidLedgerSeq
void consensusBuilt(std::shared_ptr< Ledger const > const &ledger, uint256 const &consensusHash, Json::Value consensus)
Report that the consensus process built a particular ledger.
bool haveLedger(std::uint32_t seq)
TaggedCache< uint256, Blob > fetch_packs_
std::size_t getNeededValidations()
Determines how many validations are needed to fully validate a ledger.
bool isCompatible(ReadView const &, beast::Journal::Stream, char const *reason)
std::shared_ptr< STTx const > popAcctTransaction(std::shared_ptr< STTx const > const &tx)
Get the next transaction held for a particular account if any.
void setValidLedger(std::shared_ptr< Ledger const > const &l)
void switchLCL(std::shared_ptr< Ledger const > const &lastClosed)
std::recursive_mutex & peekMutex()
std::chrono::seconds getValidatedLedgerAge()
TimeKeeper::time_point upgradeWarningPrevTime_
LedgerIndex getCurrentLedgerIndex()
bool fixIndex(LedgerIndex ledgerIndex, LedgerHash const &ledgerHash)
bool getValidatedRange(std::uint32_t &minVal, std::uint32_t &maxVal)
void applyHeldTransactions()
Apply held transactions to the open ledger This is normally called as we close the ledger.
bool storeLedger(std::shared_ptr< Ledger const > ledger)
void gotFetchPack(bool progress, std::uint32_t seq)
void tryFill(std::shared_ptr< Ledger const > ledger)
std::shared_ptr< Ledger const > getLedgerBySeq(std::uint32_t index)
void setPubLedger(std::shared_ptr< Ledger const > const &l)
bool newPFWork(char const *name, std::unique_lock< std::recursive_mutex > &)
A thread needs to be dispatched to handle pathfinding work of some kind.
void setFullLedger(std::shared_ptr< Ledger const > const &ledger, bool isSynchronous, bool isCurrent)
void clearPriorLedgers(LedgerIndex seq)
LedgerIndex const max_ledger_difference_
CanonicalTXSet mHeldTransactions
std::uint32_t const ledger_fetch_size_
void setBuildingLedger(LedgerIndex index)
std::pair< uint256, LedgerIndex > mLastValidLedger
bool isCaughtUp(std::string &reason)
std::size_t getFetchPackCacheSize() const
std::optional< Blob > getFetchPack(uint256 const &hash) override
Retrieves partial ledger data of the corresponding hash from peers.
std::vector< std::shared_ptr< Ledger const > > findNewLedgersToPublish(std::unique_lock< std::recursive_mutex > &)
std::atomic< std::uint32_t > mPubLedgerClose
std::optional< NetClock::time_point > getCloseTimeByHash(LedgerHash const &ledgerHash, LedgerIndex ledgerIndex)
std::uint32_t const fetch_depth_
std::atomic< LedgerIndex > mPubLedgerSeq
void clearLedger(std::uint32_t seq)
void clearLedgerCachePrior(LedgerIndex seq)
std::atomic_flag mGotFetchPackThread
uint256 getHashBySeq(std::uint32_t index)
Get a ledger's hash by sequence number using the cache.
std::shared_ptr< Ledger const > getClosedLedger()
void setLedgerRangePresent(std::uint32_t minV, std::uint32_t maxV)
std::optional< NetClock::time_point > getCloseTimeBySeq(LedgerIndex ledgerIndex)
std::string getCompleteLedgers()
std::shared_ptr< Ledger const > getValidatedLedger()
void fetchForHistory(std::uint32_t missing, bool &progress, InboundLedger::Reason reason, std::unique_lock< std::recursive_mutex > &)
std::uint32_t const ledger_history_
bool isValidated(ReadView const &ledger)
void fixMismatch(ReadView const &ledger)
void makeFetchPack(std::weak_ptr< Peer > const &wPeer, std::shared_ptr< protocol::TMGetObjectByHash > const &request, uint256 haveLedgerHash, UptimeClock::time_point uptime)
LedgerIndex getValidLedgerIndex()
std::shared_ptr< Ledger const > mPathLedger
std::shared_ptr< ReadView const > getPublishedLedger()
Rules getValidatedRules()
std::shared_ptr< Ledger const > mHistLedger
std::optional< LedgerHash > walkHashBySeq(std::uint32_t index, InboundLedger::Reason reason)
Walk to a ledger's hash using the skip list.
LedgerHistory mLedgerHistory
LedgerMaster(Application &app, Stopwatch &stopwatch, beast::insight::Collector::ptr const &collector, beast::Journal journal)
std::atomic< std::uint32_t > mValidLedgerSign
std::chrono::seconds getPublishedLedgerAge()
std::optional< uint256 > txnIdFromIndex(uint32_t ledgerSeq, uint32_t txnIndex)
bool canBeCurrent(std::shared_ptr< Ledger const > const &ledger)
Check the sequence number and parent close time of a ledger against our clock and last validated ledg...
void addFetchPack(uint256 const &hash, std::shared_ptr< Blob > data)
bool getFullValidatedRange(std::uint32_t &minVal, std::uint32_t &maxVal)
std::optional< LedgerHash > getLedgerHashForHistory(LedgerIndex index, InboundLedger::Reason reason)
RangeSet< std::uint32_t > mCompleteLedgers
LedgerHolder mValidLedger
void checkAccept(std::shared_ptr< Ledger const > const &ledger)
LedgerHolder mClosedLedger
void doAdvance(std::unique_lock< std::recursive_mutex > &)
void addHeldTransaction(std::shared_ptr< Transaction > const &trans)
std::shared_ptr< ReadView const > getCurrentLedger()
void takeReplay(std::unique_ptr< LedgerReplay > replay)
std::unique_ptr< LedgerReplay > replayData
std::unique_ptr< LedgerReplay > releaseReplay()
std::shared_ptr< Ledger const > getLedgerByHash(uint256 const &hash)
std::uint32_t getEarliestFetch()
std::recursive_mutex m_mutex
std::shared_ptr< Ledger const > mPubLedger
void failedSave(std::uint32_t seq, uint256 const &hash)
std::atomic< LedgerIndex > mBuildingLedgerSeq
std::recursive_mutex mCompleteLock
void replay(InboundLedger::Reason r, uint256 const &finishLedgerHash, std::uint32_t totalNumLedgers)
Replay a range of ledgers.
void setRemoteFee(std::uint32_t f)
bool isLoadedLocal() const
std::uint32_t getLoadBase() const
virtual void setAmendmentBlocked()=0
virtual bool isBlocked()=0
virtual void processTransactionSet(CanonicalTXSet const &set)=0
Process a set of transactions synchronously, and ensuring that they are processed in one batch.
virtual void updateLocalTx(ReadView const &newValidLedger)=0
virtual void clearAmendmentWarned()=0
virtual bool isAmendmentWarned()=0
virtual void pubLedger(std::shared_ptr< ReadView const > const &lpAccepted)=0
virtual bool isNeedNetworkLedger()=0
virtual void clearNeedNetworkLedger()=0
virtual void setAmendmentWarned()=0
Persistency layer for NodeObject.
std::uint32_t earliestLedgerSeq() const noexcept
std::shared_ptr< NodeObject > fetchNodeObject(uint256 const &hash, std::uint32_t ledgerSeq=0, FetchType fetchType=FetchType::synchronous, bool duplicate=false)
Fetch a node object.
virtual std::int32_t getWriteLoad() const =0
Retrieve the estimated number of pending write operations.
std::shared_ptr< OpenView const > current() const
Returns a view to the current open ledger.
void setup(std::shared_ptr< ReadView const > const &ledger)
virtual void checkTracking(std::uint32_t index)=0
Calls the checkTracking function on each peer.
virtual PeerSequence getActivePeers() const =0
Returns a sequence representing the current list of peers.
bool requestsPending() const
std::map< LedgerIndex, bool > getSnapshot() const
Get a snapshot of the pending saves.
virtual LedgerHeader const & header() const =0
Returns information about the ledger.
virtual bool open() const =0
Returns true if this reflects an open ledger.
virtual uint256 getHashByIndex(LedgerIndex ledgerIndex)=0
getHashByIndex Returns the hash of the ledger with the given sequence.
virtual std::optional< LedgerIndex > getMinLedgerSeq()=0
getMinLedgerSeq Returns the minimum ledger sequence in the Ledgers table.
virtual std::optional< LedgerHashPair > getHashesByIndex(LedgerIndex ledgerIndex)=0
getHashesByIndex Returns the hashes of the ledger and its parent as specified by the ledgerIndex.
Rules controlling protocol behavior.
uint256 const & as_uint256() const
virtual std::optional< LedgerIndex > minimumOnline() const =0
The minimum ledger to try and maintain in our database.
virtual void onLedgerClosed(std::shared_ptr< Ledger const > const &ledger)=0
Called by LedgerMaster every time a ledger validates.
SHAMapHash const & getHash() const
Return the hash of this node.
virtual void serializeWithPrefix(Serializer &) const =0
Serialize the node in a format appropriate for hashing.
virtual bool isLeaf() const =0
Determines if this is a leaf node.
A SHAMap is both a radix tree with a fan-out of 16 and a Merkle tree.
void visitDifferences(SHAMap const *have, std::function< bool(SHAMapTreeNode const &)> const &) const
Visit every node in this SHAMap that is not present in the specified SHAMap.
void const * getDataPtr() const
time_point now() const override
Returns the current time, using the server's clock.
time_point closeTime() const
Returns the predicted close time, in network time.
std::vector< WrappedValidationType > getTrustedForLedger(ID const &ledgerID, Seq const &seq)
Get trusted full validations for a specific ledger.
std::vector< WrappedValidationType > currentTrusted()
Get the currently trusted full validations.
std::vector< std::uint32_t > fees(ID const &ledgerID, std::uint32_t baseFee)
Returns fees reported by trusted full validators in the given ledger.
QuorumKeys getQuorumKeys() const
Get the quorum and all of the trusted keys.
std::size_t quorum() const
Get quorum value for current trusted key set.
std::vector< std::shared_ptr< STValidation > > negativeUNLFilter(std::vector< std::shared_ptr< STValidation > > &&validations) const
Remove validations that are from validators on the negative UNL.
Automatically unlocks and re-locks a unique_lock object.
bool isNewerVersion(std::uint64_t version)
Check if the version is newer than the local node's rippled software version.
bool isRippledVersion(std::uint64_t version)
Check if the encoded software version is a rippled software version.
Charge const feeMalformedRequest
Schedule of fees charged for imposing load on the server.
Charge const feeRequestNoReply
TER valid(STTx const &tx, ReadView const &view, AccountID const &src, beast::Journal j)
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
bool set(T &target, std::string const &name, Section const §ion)
Set a value from a configuration Section If the named value is not found or doesn't parse as a T,...
bool isCurrent(ValidationParms const &p, NetClock::time_point now, NetClock::time_point signTime, NetClock::time_point seenTime)
Whether a validation is still current.
void LogicError(std::string const &how) noexcept
Called when faulty logic causes a broken invariant.
std::optional< T > prevMissing(RangeSet< T > const &rs, T t, T minVal=0)
Find the largest value not in the set that is less than a given value.
static constexpr std::chrono::minutes MAX_LEDGER_AGE_ACQUIRE
sha512_half_hasher::result_type sha512Half(Args const &... args)
Returns the SHA512-Half of a series of objects.
Stopwatch & stopwatch()
Returns an instance of a wall clock.
ClosedInterval< T > range(T low, T high)
Create a closed range interval.
std::string to_string(base_uint< Bits, Tag > const &a)
constexpr std::size_t calculatePercent(std::size_t count, std::size_t total)
Calculate one number divided by another number in percentage.
static void populateFetchPack(SHAMap const &want, SHAMap const *have, std::uint32_t cnt, protocol::TMGetObjectByHash *into, std::uint32_t seq, bool withLeaves=true)
Populate a fetch pack with data from the map the recipient wants.
bool pendSaveValidated(Application &app, std::shared_ptr< Ledger const > const &ledger, bool isSynchronous, bool isCurrent)
Save, or arrange to save, a fully-validated ledger Returns false on error.
bool areCompatible(ReadView const &validLedger, ReadView const &testLedger, beast::Journal::Stream &s, char const *reason)
Return false if the test ledger is provably incompatible with the valid ledger, that is,...
LedgerIndex getCandidateLedger(LedgerIndex requested)
Find a ledger index from which we could easily get the requested ledger.
std::optional< uint256 > hashOfSeq(ReadView const &ledger, LedgerIndex seq, beast::Journal journal)
Return the hash of a ledger by sequence.
void addRaw(LedgerHeader const &, Serializer &, bool includeHash=false)
static constexpr int MAX_LEDGER_GAP
@ ledgerMaster
ledger master data for signing
std::enable_if_t< std::is_same< T, char >::value||std::is_same< T, unsigned char >::value, Slice > makeSlice(std::array< T, N > const &a)
static constexpr int MAX_WRITE_LOAD_ACQUIRE
static bool shouldAcquire(std::uint32_t const currentLedger, std::uint32_t const ledgerHistory, std::optional< LedgerIndex > const minimumOnline, std::uint32_t const candidateLedger, beast::Journal j)
T test_and_set(T... args)
T time_since_epoch(T... args)