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
76 << (ret ?
" should" :
" should NOT") <<
" be acquired";
87 , mLedgerHistory(collector, app)
88 , standalone_(app_.config().standalone())
90 app_.getSHAMapStore().clampFetchDepth(app_.config().FETCH_DEPTH))
91 , ledger_history_(app_.config().LEDGER_HISTORY)
96 std::chrono::seconds{45},
98 app_.journal(
"TaggedCache"))
123 if (validLedger && !
areCompatible(*validLedger, view, s, reason))
149 using namespace std::chrono_literals;
159 ret = (ret > 0s) ? ret : 0s;
173 using namespace std::chrono_literals;
184 ret = (ret > 0s) ? ret : 0s;
198 using namespace std::chrono_literals;
202 reason =
"No recently-published ledger";
207 if (!validClose || !pubClose)
209 reason =
"No published ledger";
212 if (validClose > (pubClose + 90))
214 reason =
"Published ledger lags validated ledger";
230 l->info().hash, l->info().seq));
231 times.
reserve(validations.size());
232 for (
auto const& val : validations)
235 if (!validations.empty())
236 consensusHash = validations.front()->getConsensusHash();
245 auto const t0 = times[(times.
size() - 1) / 2];
246 auto const t1 = times[times.
size() / 2];
247 signTime = t0 + (t1 - t0) / 2;
251 signTime = l->info().closeTime;
260 "ripple::LedgerMaster::setValidLedger : valid ledger sequence");
273 "activated: server blocked.";
287 if (
auto const first =
291 "reached majority. Upgrade before "
293 <<
" to prevent your server from "
294 "becoming amendment blocked.";
325 XRPL_ASSERT(ledger,
"ripple::LedgerMaster::canBeCurrent : non-null input");
331 if (validLedger && (ledger->info().seq < validLedger->info().seq))
334 <<
"Candidate for current ledger has low seq " << ledger->info().seq
335 <<
" < " << validLedger->info().seq;
345 auto ledgerClose = ledger->info().parentCloseTime;
347 using namespace std::chrono_literals;
348 if ((validLedger || (ledger->info().seq > 10)) &&
353 <<
"Candidate for current ledger has close time "
354 <<
to_string(ledgerClose) <<
" at network time "
355 <<
to_string(closeTime) <<
" seq " << ledger->info().seq;
368 if (closeTime > validLedger->info().parentCloseTime)
369 maxSeq += std::chrono::duration_cast<std::chrono::seconds>(
370 closeTime - validLedger->info().parentCloseTime)
374 if (ledger->info().seq > maxSeq)
377 <<
"Candidate for current ledger has high seq "
378 << ledger->info().seq <<
" > " << maxSeq;
383 <<
"Acceptable seq range: " << validLedger->info().seq
384 <<
" <= " << ledger->info().seq <<
" <= " << maxSeq;
393 XRPL_ASSERT(lastClosed,
"ripple::LedgerMaster::switchLCL : non-null input");
394 if (!lastClosed->isImmutable())
397 if (lastClosed->open())
398 LogicError(
"The new last closed ledger is open!");
425 bool validated = ledger->info().validated;
488 auto const seq = ledger.
info().
seq;
496 if (!hash || ledger.
info().
hash != *hash)
503 "ripple::LedgerMaster::isValidated : nonzero hash");
548 minVal = 1 + *maybeMin;
565 if (!pendingSaves.empty() && ((minVal != 0) || (maxVal != 0)))
570 while (pendingSaves.count(maxVal) > 0)
572 while (pendingSaves.count(minVal) > 0)
576 for (
auto v : pendingSaves)
578 if ((v.first >= minVal) && (v.first <= maxVal))
580 if (v.first > ((minVal + maxVal) / 2))
581 maxVal = v.first - 1;
583 minVal = v.first + 1;
613 uint256 prevHash = ledger->info().parentHash;
632 auto it(ledgerHashes.
find(seq));
634 if (it == ledgerHashes.
end())
645 (seq < 500) ? 0 : (seq - 499), seq);
646 it = ledgerHashes.
find(seq);
648 if (it == ledgerHashes.
end())
651 if (!nodeStore.fetchNodeObject(
652 ledgerHashes.
begin()->second.ledgerHash,
653 ledgerHashes.
begin()->first))
657 <<
" mismatches node store";
662 if (it->second.ledgerHash != prevHash)
665 prevHash = it->second.parentHash;
687 if (!haveHash || haveHash->isZero())
690 <<
"No hash for fetch pack. Missing Index " << missing;
700 for (
auto const& peer : peerList)
702 if (peer->hasRange(missing, missing + 1))
704 int score = peer->getScore(
true);
705 if (!target || (score > maxScore))
716 protocol::TMGetObjectByHash tmBH;
717 tmBH.set_query(
true);
718 tmBH.set_type(protocol::TMGetObjectByHash::otFETCH_PACK);
719 tmBH.set_ledgerhash(haveHash->begin(), 32);
722 target->send(packet);
723 JLOG(
m_journal.
trace()) <<
"Requested fetch pack for " << missing;
746 <<
"fixMismatch encounters partial ledger. Exception: "
757 if (otherLedger && (otherLedger->info().hash == *hash))
763 <<
"Match at " << lSeq <<
", " << invalidate
764 <<
" prior ledgers invalidated";
780 <<
"All " << invalidate <<
" prior ledgers invalidated";
792 <<
" accepted :" << ledger->info().hash;
794 ledger->stateMap().getHash().isNonZero(),
795 "ripple::LedgerMaster::setFullLedger : nonzero ledger state hash");
797 ledger->setValidated();
808 if (prevHash.
isNonZero() && prevHash != ledger->info().parentHash)
830 if (ledger->info().seq != 0 &&
haveLedger(ledger->info().seq - 1))
836 (prevLedger->info().hash != ledger->info().parentHash))
839 <<
"Acquired ledger invalidates previous ledger: "
840 << (prevLedger ?
"hashMismatch" :
"missingLedger");
869 valCount = validations.size();
935 ledger->info().hash, ledger->info().seq));
936 auto const tvc = validations.size();
940 <<
"Only " << tvc <<
" validations for " << ledger->info().hash;
945 << ledger->info().seq <<
" with >= " << minVal
948 ledger->setValidated();
963 fees.reserve(fees.size() + fees2.size());
973 s <<
"Received fees from validations: (" << fees.size() <<
") ";
974 for (
auto const fee1 : fees)
980 fee = fees[fees.size() / 2];
991 if (ledger->seq() % 256 == 0)
1002 bool needPrint =
false;
1010 ledger->info().parentHash, ledger->info().seq - 1);
1013 for (
auto const& v : vals)
1015 if (v->isFieldPresent(sfServerVersion))
1017 auto version = v->getFieldU64(sfServerVersion);
1018 higherVersionCount +=
1028 if (higherVersionCount > 0 && rippledCount > 0)
1034 needPrint = unlSize > 0 &&
1054 auto const upgradeMsg =
1055 "Check for upgrade: "
1056 "A majority of trusted validators are "
1057 "running a newer version.";
1083 JLOG(stream) <<
"Consensus built old ledger: " << ledger->info().seq
1094 JLOG(stream) <<
"Consensus ledger fully validated";
1108 valSeq() : valCount_(0), ledgerSeq_(0)
1119 if (ledgerSeq_ == 0)
1129 for (
auto const& v : validations)
1131 valSeq& vs = count[v->getLedgerHash()];
1132 vs.mergeValidation(v->getFieldU32(sfLedgerSequence));
1137 auto maxLedger = ledger->info().hash;
1141 for (
auto& v : count)
1142 if (v.second.valCount_ > neededValidations)
1145 if (v.second.ledgerSeq_ == 0)
1148 v.second.ledgerSeq_ = l->info().seq;
1151 if (v.second.ledgerSeq_ > maxSeq)
1153 maxSeq = v.second.ledgerSeq_;
1154 maxLedger = v.first;
1161 JLOG(stream) <<
"Consensus triggered check of ledger";
1175 if (l && l->info().seq >= index)
1199 JLOG(
m_journal.
trace()) <<
"No valid journal, nothing to publish.";
1225 JLOG(
m_journal.
trace()) <<
"No valid journal, nothing to publish.";
1241 <<
"Trying to fetch/publish valid ledger " << seq;
1255 else if (hash->isZero())
1259 <<
" does not have hash for " << seq;
1261 "ripple::LedgerMaster::findNewLedgersToPublish : ledger "
1279 if (ledger && (ledger->info().seq == pubSeq))
1281 ledger->setValidated();
1288 <<
"ready to publish " << ret.
size() <<
" ledgers.";
1293 <<
"Exception while trying to find ledgers to publish: "
1306 auto finishLedger = valLedger;
1307 while (startLedger->seq() + 1 < finishLedger->seq())
1310 finishLedger->info().parentHash);
1313 finishLedger = parent;
1317 auto numberLedgers =
1318 finishLedger->seq() - startLedger->seq() + 1;
1320 <<
"Publish LedgerReplays " << numberLedgers
1321 <<
" ledgers, from seq=" << startLedger->info().seq <<
", "
1322 << startLedger->info().hash
1323 <<
" to seq=" << finishLedger->info().seq <<
", "
1324 << finishLedger->info().hash;
1327 finishLedger->info().hash,
1352 "ripple::LedgerMaster::tryAdvance : has valid ledger");
1380 JLOG(
m_journal.
debug()) <<
"Need network ledger for updating paths";
1415 lastLedger->info().closeTime;
1419 <<
"Published ledger too old for updating paths";
1432 if (!pathRequests.requestsPending())
1437 <<
"No path requests found. Nothing to do for updating "
1444 pathRequests.updateAll(lastLedger);
1447 if (!pathRequests.requestsPending())
1450 <<
"No path requests left. No need for further updating "
1460 if (lastLedger->open())
1464 lastLedger->info().parentHash,
1465 lastLedger->info().seq - 1,
1472 lastLedger->info().hash,
1473 lastLedger->info().seq,
1519 <<
"newPFWork: Creating job. path find threads: "
1559 return ledger->rules();
1594 if (nodeObject && (nodeObject->getData().size() >= 120))
1597 nodeObject->getData().data(), nodeObject->getData().size());
1615 if (
hash.isNonZero())
1638 if (!referenceLedger || (referenceLedger->info().seq < index))
1653 XRPL_ASSERT(refHash,
"ripple::LedgerMaster::walkHashBySeq : found ledger");
1675 *refHash, refIndex, reason))
1680 "ripple::LedgerMaster::walkHashBySeq : has complete "
1696 if (
valid->info().seq == index)
1717 if (ret && (ret->info().seq == index))
1731 if (ret && (ret->info().hash ==
hash))
1795 "ripple::LedgerMaster::fetchForHistory : found ledger");
1807 <<
"fetchForHistory want fetch pack " << missing;
1813 <<
"fetchForHistory no fetch pack for " << missing;
1817 <<
"fetchForHistory found failed acquire";
1821 auto seq = ledger->info().seq;
1824 "ripple::LedgerMaster::fetchForHistory : sequence match");
1833 if (fillInProgress == 0 &&
1835 ledger->info().parentHash)
1843 jtADVANCE,
"tryFill", [
this, ledger]() {
1855 fetchSz = missing >= fetchSz
1867 "ripple::LedgerMaster::fetchForHistory : "
1868 "prefetched ledger");
1876 <<
"Threw while prefetching: " << ex.
what();
1883 <<
"Can't find ledger following prevMissing " << missing;
1889 <<
"Acquire reason: "
1904 bool progress =
false;
1907 if (pubLedgers.empty())
1928 <<
"tryAdvance discovered missing " << *missing;
1938 <<
"advanceThread should acquire";
1949 <<
"tryAdvance found last valid changed";
1962 JLOG(
m_journal.
trace()) <<
"tryAdvance found " << pubLedgers.size()
1963 <<
" ledgers to publish";
1964 for (
auto const& ledger : pubLedgers)
1969 <<
"tryAdvance publishing seq " << ledger->info().seq;
1982 progress =
newPFWork(
"pf:newLedger", sl);
2050 protocol::TMGetObjectByHash* into,
2052 bool withLeaves =
true)
2054 XRPL_ASSERT(cnt,
"ripple::populateFetchPack : nonzero count input");
2060 [&s, withLeaves, &cnt, into, seq](
SHAMapTreeNode const& n) ->
bool {
2061 if (!withLeaves && n.
isLeaf())
2069 protocol::TMIndexedObject* obj = into->add_objects();
2070 obj->set_ledgerseq(seq);
2071 obj->set_hash(
hash.data(),
hash.size());
2085 using namespace std::chrono_literals;
2098 auto peer = wPeer.
lock();
2108 <<
"Peer requests fetch pack for ledger we don't have: " << have;
2116 <<
"Peer requests fetch pack from open ledger: " << have;
2123 JLOG(
m_journal.
debug()) <<
"Peer requests fetch pack that is too early";
2133 <<
"Peer requests fetch pack for ledger whose predecessor we "
2134 <<
"don't have: " << have;
2144 protocol::TMGetObjectByHash reply;
2145 reply.set_query(
false);
2147 if (request->has_seq())
2148 reply.set_seq(request->seq());
2150 reply.set_ledgerhash(request->ledgerhash());
2151 reply.set_type(protocol::TMGetObjectByHash::otFETCH_PACK);
2170 addRaw(want->info(), hdr);
2173 protocol::TMIndexedObject* obj = reply.add_objects();
2175 want->info().hash.data(), want->info().hash.size());
2177 obj->set_ledgerseq(lSeq);
2181 want->stateMap(), &have->stateMap(), 16384, &reply, lSeq);
2185 if (want->info().txHash.isNonZero())
2188 if (reply.objects().size() >= 512)
2191 have = std::move(want);
2198 <<
"Built fetch pack with " << reply.objects().size() <<
" nodes ("
2199 << msg->getBufferSize() <<
" bytes)";
2206 <<
"Exception building fetch pach. Exception: " << ex.
what();
2232 if (!lgr || lgr->txs.empty())
2235 for (
auto it = lgr->txs.begin(); it != lgr->txs.end(); ++it)
2236 if (it->first && it->second &&
2237 it->second->isFieldPresent(sfTransactionIndex) &&
2238 it->second->getFieldU32(sfTransactionIndex) == txnIndex)
2239 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 std::optional< NetClock::time_point > firstUnsupportedExpected() const =0
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 Config & config()=0
virtual Overlay & overlay()=0
virtual LoadFeeTrack & getFeeTrack()=0
virtual OpenLedger & openLedger()=0
virtual beast::Journal journal(std::string const &name)=0
virtual SHAMapStore & getSHAMapStore()=0
virtual bool isStopping() const =0
virtual NodeStore::Database & getNodeStore()=0
virtual RCLValidations & getValidations()=0
virtual OrderBookDB & getOrderBookDB()=0
virtual LedgerReplayer & getLedgerReplayer()=0
virtual TimeKeeper & timeKeeper()=0
virtual JobQueue & getJobQueue()=0
virtual NetworkOPs & getOPs()=0
virtual InboundLedgers & getInboundLedgers()=0
virtual ValidatorList & validators()=0
virtual LedgerMaster & getLedgerMaster()=0
virtual RelationalDatabase & getRelationalDatabase()=0
virtual PathRequests & getPathRequests()=0
virtual LedgerIndex getMaxDisallowedLedger()=0
Ensure that a newly-started validator does not sign proposals older than the last ledger it persisted...
virtual AmendmentTable & getAmendmentTable()=0
virtual PendingSaves & pendingSaves()=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 std::shared_ptr< Ledger const > acquire(uint256 const &hash, std::uint32_t seq, InboundLedger::Reason)=0
virtual bool isFailure(uint256 const &h)=0
int getJobCount(JobType t) const
Jobs waiting at this priority.
bool addJob(JobType type, std::string const &name, JobHandler &&jobHandler)
Adds a job to the JobQueue.
float getCacheHitRate()
Get the ledgers_by_hash cache hit rate.
void builtLedger(std::shared_ptr< Ledger const > const &, uint256 const &consensusHash, Json::Value)
Report that we have locally built a particular ledger.
void sweep()
Remove stale cache entries.
LedgerHash getLedgerHash(LedgerIndex ledgerIndex)
Get a ledger's hash given its sequence number.
void clearLedgerCachePrior(LedgerIndex seq)
std::shared_ptr< Ledger const > getLedgerBySeq(LedgerIndex ledgerIndex)
Get a ledger given its sequence number.
bool insert(std::shared_ptr< Ledger const > const &ledger, bool validated)
Track a ledger.
bool fixIndex(LedgerIndex ledgerIndex, LedgerHash const &ledgerHash)
Repair a hash to index mapping.
void validatedLedger(std::shared_ptr< Ledger const > const &, std::optional< uint256 > const &consensusHash)
Report that we have validated a particular ledger.
std::shared_ptr< Ledger const > getLedgerByHash(LedgerHash const &ledgerHash)
Retrieve a ledger given its hash.
std::shared_ptr< Ledger const > get()
void set(std::shared_ptr< Ledger const > ledger)
bool haveLedger(std::uint32_t seq)
std::shared_ptr< Ledger const > getValidatedLedger()
void clearLedgerCachePrior(LedgerIndex seq)
RangeSet< std::uint32_t > mCompleteLedgers
void setBuildingLedger(LedgerIndex index)
std::unique_ptr< LedgerReplay > releaseReplay()
void failedSave(std::uint32_t seq, uint256 const &hash)
void takeReplay(std::unique_ptr< LedgerReplay > replay)
std::uint32_t const ledger_history_
void addHeldTransaction(std::shared_ptr< Transaction > const &trans)
void checkAccept(std::shared_ptr< Ledger const > const &ledger)
std::optional< NetClock::time_point > getCloseTimeByHash(LedgerHash const &ledgerHash, LedgerIndex ledgerIndex)
std::size_t getNeededValidations()
Determines how many validations are needed to fully validate a ledger.
std::unique_ptr< LedgerReplay > replayData
void setLedgerRangePresent(std::uint32_t minV, std::uint32_t maxV)
TimeKeeper::time_point upgradeWarningPrevTime_
LedgerHistory mLedgerHistory
std::optional< NetClock::time_point > getCloseTimeBySeq(LedgerIndex ledgerIndex)
void fixMismatch(ReadView const &ledger)
std::atomic< LedgerIndex > mPubLedgerSeq
void clearPriorLedgers(LedgerIndex seq)
std::shared_ptr< Ledger const > mPubLedger
void makeFetchPack(std::weak_ptr< Peer > const &wPeer, std::shared_ptr< protocol::TMGetObjectByHash > const &request, uint256 haveLedgerHash, UptimeClock::time_point uptime)
std::atomic< LedgerIndex > mBuildingLedgerSeq
std::shared_ptr< ReadView const > getCurrentLedger()
void tryFill(std::shared_ptr< Ledger const > ledger)
std::uint32_t const fetch_depth_
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...
bool isValidated(ReadView const &ledger)
std::uint32_t getEarliestFetch()
std::recursive_mutex m_mutex
std::optional< LedgerHash > walkHashBySeq(std::uint32_t index, InboundLedger::Reason reason)
Walk to a ledger's hash using the skip list.
uint256 getHashBySeq(std::uint32_t index)
Get a ledger's hash by sequence number using the cache.
std::shared_ptr< STTx const > popAcctTransaction(std::shared_ptr< STTx const > const &tx)
Get the next transaction held for a particular account if any.
LedgerIndex const max_ledger_difference_
bool fixIndex(LedgerIndex ledgerIndex, LedgerHash const &ledgerHash)
TaggedCache< uint256, Blob > fetch_packs_
bool newPFWork(char const *name, std::unique_lock< std::recursive_mutex > &)
A thread needs to be dispatched to handle pathfinding work of some kind.
bool isCaughtUp(std::string &reason)
void setPubLedger(std::shared_ptr< Ledger const > const &l)
std::optional< uint256 > txnIdFromIndex(uint32_t ledgerSeq, uint32_t txnIndex)
bool getValidatedRange(std::uint32_t &minVal, std::uint32_t &maxVal)
void clearLedger(std::uint32_t seq)
std::pair< uint256, LedgerIndex > mLastValidLedger
std::shared_ptr< Ledger const > getClosedLedger()
std::optional< LedgerIndex > minSqlSeq()
void setFullLedger(std::shared_ptr< Ledger const > const &ledger, bool isSynchronous, bool isCurrent)
LedgerMaster(Application &app, Stopwatch &stopwatch, beast::insight::Collector::ptr const &collector, beast::Journal journal)
std::atomic< std::uint32_t > mValidLedgerSign
CanonicalTXSet mHeldTransactions
std::uint32_t const ledger_fetch_size_
void applyHeldTransactions()
Apply held transactions to the open ledger This is normally called as we close the ledger.
std::chrono::seconds getPublishedLedgerAge()
std::shared_ptr< Ledger const > mHistLedger
std::recursive_mutex mCompleteLock
std::string getCompleteLedgers()
std::atomic< LedgerIndex > mValidLedgerSeq
std::size_t getFetchPackCacheSize() const
bool getFullValidatedRange(std::uint32_t &minVal, std::uint32_t &maxVal)
std::optional< Blob > getFetchPack(uint256 const &hash) override
Retrieves partial ledger data of the coresponding hash from peers.
void gotFetchPack(bool progress, std::uint32_t seq)
std::recursive_mutex & peekMutex()
void consensusBuilt(std::shared_ptr< Ledger const > const &ledger, uint256 const &consensusHash, Json::Value consensus)
Report that the consensus process built a particular ledger.
Rules getValidatedRules()
std::shared_ptr< Ledger const > mPathLedger
void setValidLedger(std::shared_ptr< Ledger const > const &l)
std::optional< LedgerHash > getLedgerHashForHistory(LedgerIndex index, InboundLedger::Reason reason)
void addFetchPack(uint256 const &hash, std::shared_ptr< Blob > data)
std::atomic< std::uint32_t > mPubLedgerClose
void switchLCL(std::shared_ptr< Ledger const > const &lastClosed)
LedgerHolder mValidLedger
std::shared_ptr< ReadView const > getPublishedLedger()
std::atomic_flag mGotFetchPackThread
void doAdvance(std::unique_lock< std::recursive_mutex > &)
LedgerHolder mClosedLedger
bool storeLedger(std::shared_ptr< Ledger const > ledger)
std::vector< std::shared_ptr< Ledger const > > findNewLedgersToPublish(std::unique_lock< std::recursive_mutex > &)
LedgerIndex getCurrentLedgerIndex()
bool isCompatible(ReadView const &, beast::Journal::Stream, char const *reason)
std::shared_ptr< Ledger const > getLedgerBySeq(std::uint32_t index)
void fetchForHistory(std::uint32_t missing, bool &progress, InboundLedger::Reason reason, std::unique_lock< std::recursive_mutex > &)
std::shared_ptr< Ledger const > getLedgerByHash(uint256 const &hash)
LedgerIndex getValidLedgerIndex()
std::chrono::seconds getValidatedLedgerAge()
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 bool isBlocked()=0
virtual void setAmendmentWarned()=0
virtual void setAmendmentBlocked()=0
virtual void clearNeedNetworkLedger()=0
virtual bool isAmendmentWarned()=0
virtual bool isNeedNetworkLedger()=0
virtual void updateLocalTx(ReadView const &newValidLedger)=0
virtual void clearAmendmentWarned()=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 pubLedger(std::shared_ptr< ReadView const > const &lpAccepted)=0
Persistency layer for NodeObject.
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::uint32_t earliestLedgerSeq() const noexcept
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 PeerSequence getActivePeers() const =0
Returns a sequence representing the current list of peers.
virtual void checkTracking(std::uint32_t index)=0
Calls the checkTracking function on each peer.
bool requestsPending() const
std::map< LedgerIndex, bool > getSnapshot() const
Get a snapshot of the pending saves.
virtual bool open() const =0
Returns true if this reflects an open ledger.
virtual LedgerInfo const & info() const =0
Returns information about the ledger.
virtual std::optional< LedgerHashPair > getHashesByIndex(LedgerIndex ledgerIndex)=0
getHashesByIndex Returns the hashes of the ledger and its parent as specified by the ledgerIndex.
virtual std::optional< LedgerIndex > getMinLedgerSeq()=0
getMinLedgerSeq Returns the minimum ledger sequence in the Ledgers table.
virtual uint256 getHashByIndex(LedgerIndex ledgerIndex)=0
getHashByIndex Returns the hash of the ledger with the given sequence.
Rules controlling protocol behavior.
uint256 const & as_uint256() const
virtual void onLedgerClosed(std::shared_ptr< Ledger const > const &ledger)=0
Called by LedgerMaster every time a ledger validates.
virtual std::optional< LedgerIndex > minimumOnline() const =0
The minimum ledger to try and maintain in our database.
virtual bool isLeaf() const =0
Determines if this is a leaf node.
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.
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.
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.
std::size_t quorum() const
Get quorum value for current trusted key set.
QuorumKeys getQuorumKeys() const
Get the quorum and all of the trusted keys.
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 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.
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)
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.
bool isCurrent(ValidationParms const &p, NetClock::time_point now, NetClock::time_point signTime, NetClock::time_point seenTime)
Whether a validation is still current.
std::optional< uint256 > hashOfSeq(ReadView const &ledger, LedgerIndex seq, beast::Journal journal)
Return the hash of a ledger by sequence.
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,...
static constexpr int MAX_LEDGER_GAP
constexpr std::size_t calculatePercent(std::size_t count, std::size_t total)
Calculate one number divided by another number in percentage.
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)
Stopwatch & stopwatch()
Returns an instance of a wall clock.
std::string to_string(base_uint< Bits, Tag > const &a)
ClosedInterval< T > range(T low, T high)
Create a closed range interval.
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.
static constexpr std::chrono::minutes MAX_LEDGER_AGE_ACQUIRE
@ ledgerMaster
ledger master data for signing
static constexpr int MAX_WRITE_LOAD_ACQUIRE
void addRaw(LedgerHeader const &, Serializer &, bool includeHash=false)
sha512_half_hasher::result_type sha512Half(Args const &... args)
Returns the SHA512-Half of a series of objects.
void LogicError(std::string const &how) noexcept
Called when faulty logic causes a broken invariant.
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.
T test_and_set(T... args)
T time_since_epoch(T... args)