Merge #10537: Few Minor per-utxo assert-semantics re-adds and tweak
[bitcoinplatinum.git] / src / validation.cpp
blobcba3b9e4ad1235c21a8748631feaf77d1be42caa
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 #include "validation.h"
8 #include "arith_uint256.h"
9 #include "chain.h"
10 #include "chainparams.h"
11 #include "checkpoints.h"
12 #include "checkqueue.h"
13 #include "consensus/consensus.h"
14 #include "consensus/merkle.h"
15 #include "consensus/tx_verify.h"
16 #include "consensus/validation.h"
17 #include "fs.h"
18 #include "hash.h"
19 #include "init.h"
20 #include "policy/fees.h"
21 #include "policy/policy.h"
22 #include "pow.h"
23 #include "primitives/block.h"
24 #include "primitives/transaction.h"
25 #include "random.h"
26 #include "script/script.h"
27 #include "script/sigcache.h"
28 #include "script/standard.h"
29 #include "timedata.h"
30 #include "tinyformat.h"
31 #include "txdb.h"
32 #include "txmempool.h"
33 #include "ui_interface.h"
34 #include "undo.h"
35 #include "util.h"
36 #include "utilmoneystr.h"
37 #include "utilstrencodings.h"
38 #include "validationinterface.h"
39 #include "versionbits.h"
40 #include "warnings.h"
42 #include <atomic>
43 #include <sstream>
45 #include <boost/algorithm/string/replace.hpp>
46 #include <boost/algorithm/string/join.hpp>
47 #include <boost/thread.hpp>
49 #if defined(NDEBUG)
50 # error "Bitcoin cannot be compiled without assertions."
51 #endif
53 /**
54 * Global state
57 CCriticalSection cs_main;
59 BlockMap mapBlockIndex;
60 CChain chainActive;
61 CBlockIndex *pindexBestHeader = NULL;
62 CWaitableCriticalSection csBestBlock;
63 CConditionVariable cvBlockChange;
64 int nScriptCheckThreads = 0;
65 std::atomic_bool fImporting(false);
66 bool fReindex = false;
67 bool fTxIndex = false;
68 bool fHavePruned = false;
69 bool fPruneMode = false;
70 bool fIsBareMultisigStd = DEFAULT_PERMIT_BAREMULTISIG;
71 bool fRequireStandard = true;
72 bool fCheckBlockIndex = false;
73 bool fCheckpointsEnabled = DEFAULT_CHECKPOINTS_ENABLED;
74 size_t nCoinCacheUsage = 5000 * 300;
75 uint64_t nPruneTarget = 0;
76 int64_t nMaxTipAge = DEFAULT_MAX_TIP_AGE;
77 bool fEnableReplacement = DEFAULT_ENABLE_REPLACEMENT;
79 uint256 hashAssumeValid;
81 CFeeRate minRelayTxFee = CFeeRate(DEFAULT_MIN_RELAY_TX_FEE);
82 CAmount maxTxFee = DEFAULT_TRANSACTION_MAXFEE;
84 CBlockPolicyEstimator feeEstimator;
85 CTxMemPool mempool(&feeEstimator);
87 static void CheckBlockIndex(const Consensus::Params& consensusParams);
89 /** Constant stuff for coinbase transactions we create: */
90 CScript COINBASE_FLAGS;
92 const std::string strMessageMagic = "Bitcoin Signed Message:\n";
94 // Internal stuff
95 namespace {
97 struct CBlockIndexWorkComparator
99 bool operator()(CBlockIndex *pa, CBlockIndex *pb) const {
100 // First sort by most total work, ...
101 if (pa->nChainWork > pb->nChainWork) return false;
102 if (pa->nChainWork < pb->nChainWork) return true;
104 // ... then by earliest time received, ...
105 if (pa->nSequenceId < pb->nSequenceId) return false;
106 if (pa->nSequenceId > pb->nSequenceId) return true;
108 // Use pointer address as tie breaker (should only happen with blocks
109 // loaded from disk, as those all have id 0).
110 if (pa < pb) return false;
111 if (pa > pb) return true;
113 // Identical blocks.
114 return false;
118 CBlockIndex *pindexBestInvalid;
121 * The set of all CBlockIndex entries with BLOCK_VALID_TRANSACTIONS (for itself and all ancestors) and
122 * as good as our current tip or better. Entries may be failed, though, and pruning nodes may be
123 * missing the data for the block.
125 std::set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexCandidates;
126 /** All pairs A->B, where A (or one of its ancestors) misses transactions, but B has transactions.
127 * Pruned nodes may have entries where B is missing data.
129 std::multimap<CBlockIndex*, CBlockIndex*> mapBlocksUnlinked;
131 CCriticalSection cs_LastBlockFile;
132 std::vector<CBlockFileInfo> vinfoBlockFile;
133 int nLastBlockFile = 0;
134 /** Global flag to indicate we should check to see if there are
135 * block/undo files that should be deleted. Set on startup
136 * or if we allocate more file space when we're in prune mode
138 bool fCheckForPruning = false;
141 * Every received block is assigned a unique and increasing identifier, so we
142 * know which one to give priority in case of a fork.
144 CCriticalSection cs_nBlockSequenceId;
145 /** Blocks loaded from disk are assigned id 0, so start the counter at 1. */
146 int32_t nBlockSequenceId = 1;
147 /** Decreasing counter (used by subsequent preciousblock calls). */
148 int32_t nBlockReverseSequenceId = -1;
149 /** chainwork for the last block that preciousblock has been applied to. */
150 arith_uint256 nLastPreciousChainwork = 0;
152 /** Dirty block index entries. */
153 std::set<CBlockIndex*> setDirtyBlockIndex;
155 /** Dirty block file entries. */
156 std::set<int> setDirtyFileInfo;
157 } // anon namespace
159 CBlockIndex* FindForkInGlobalIndex(const CChain& chain, const CBlockLocator& locator)
161 // Find the first block the caller has in the main chain
162 for (const uint256& hash : locator.vHave) {
163 BlockMap::iterator mi = mapBlockIndex.find(hash);
164 if (mi != mapBlockIndex.end())
166 CBlockIndex* pindex = (*mi).second;
167 if (chain.Contains(pindex))
168 return pindex;
169 if (pindex->GetAncestor(chain.Height()) == chain.Tip()) {
170 return chain.Tip();
174 return chain.Genesis();
177 CCoinsViewDB *pcoinsdbview = NULL;
178 CCoinsViewCache *pcoinsTip = NULL;
179 CBlockTreeDB *pblocktree = NULL;
181 enum FlushStateMode {
182 FLUSH_STATE_NONE,
183 FLUSH_STATE_IF_NEEDED,
184 FLUSH_STATE_PERIODIC,
185 FLUSH_STATE_ALWAYS
188 // See definition for documentation
189 static bool FlushStateToDisk(const CChainParams& chainParams, CValidationState &state, FlushStateMode mode, int nManualPruneHeight=0);
190 static void FindFilesToPruneManual(std::set<int>& setFilesToPrune, int nManualPruneHeight);
191 static void FindFilesToPrune(std::set<int>& setFilesToPrune, uint64_t nPruneAfterHeight);
192 static bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsViewCache &inputs, bool fScriptChecks, unsigned int flags, bool cacheStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck> *pvChecks = NULL);
193 static FILE* OpenUndoFile(const CDiskBlockPos &pos, bool fReadOnly = false);
195 bool CheckFinalTx(const CTransaction &tx, int flags)
197 AssertLockHeld(cs_main);
199 // By convention a negative value for flags indicates that the
200 // current network-enforced consensus rules should be used. In
201 // a future soft-fork scenario that would mean checking which
202 // rules would be enforced for the next block and setting the
203 // appropriate flags. At the present time no soft-forks are
204 // scheduled, so no flags are set.
205 flags = std::max(flags, 0);
207 // CheckFinalTx() uses chainActive.Height()+1 to evaluate
208 // nLockTime because when IsFinalTx() is called within
209 // CBlock::AcceptBlock(), the height of the block *being*
210 // evaluated is what is used. Thus if we want to know if a
211 // transaction can be part of the *next* block, we need to call
212 // IsFinalTx() with one more than chainActive.Height().
213 const int nBlockHeight = chainActive.Height() + 1;
215 // BIP113 will require that time-locked transactions have nLockTime set to
216 // less than the median time of the previous block they're contained in.
217 // When the next block is created its previous block will be the current
218 // chain tip, so we use that to calculate the median time passed to
219 // IsFinalTx() if LOCKTIME_MEDIAN_TIME_PAST is set.
220 const int64_t nBlockTime = (flags & LOCKTIME_MEDIAN_TIME_PAST)
221 ? chainActive.Tip()->GetMedianTimePast()
222 : GetAdjustedTime();
224 return IsFinalTx(tx, nBlockHeight, nBlockTime);
227 bool TestLockPointValidity(const LockPoints* lp)
229 AssertLockHeld(cs_main);
230 assert(lp);
231 // If there are relative lock times then the maxInputBlock will be set
232 // If there are no relative lock times, the LockPoints don't depend on the chain
233 if (lp->maxInputBlock) {
234 // Check whether chainActive is an extension of the block at which the LockPoints
235 // calculation was valid. If not LockPoints are no longer valid
236 if (!chainActive.Contains(lp->maxInputBlock)) {
237 return false;
241 // LockPoints still valid
242 return true;
245 bool CheckSequenceLocks(const CTransaction &tx, int flags, LockPoints* lp, bool useExistingLockPoints)
247 AssertLockHeld(cs_main);
248 AssertLockHeld(mempool.cs);
250 CBlockIndex* tip = chainActive.Tip();
251 CBlockIndex index;
252 index.pprev = tip;
253 // CheckSequenceLocks() uses chainActive.Height()+1 to evaluate
254 // height based locks because when SequenceLocks() is called within
255 // ConnectBlock(), the height of the block *being*
256 // evaluated is what is used.
257 // Thus if we want to know if a transaction can be part of the
258 // *next* block, we need to use one more than chainActive.Height()
259 index.nHeight = tip->nHeight + 1;
261 std::pair<int, int64_t> lockPair;
262 if (useExistingLockPoints) {
263 assert(lp);
264 lockPair.first = lp->height;
265 lockPair.second = lp->time;
267 else {
268 // pcoinsTip contains the UTXO set for chainActive.Tip()
269 CCoinsViewMemPool viewMemPool(pcoinsTip, mempool);
270 std::vector<int> prevheights;
271 prevheights.resize(tx.vin.size());
272 for (size_t txinIndex = 0; txinIndex < tx.vin.size(); txinIndex++) {
273 const CTxIn& txin = tx.vin[txinIndex];
274 Coin coin;
275 if (!viewMemPool.GetCoin(txin.prevout, coin)) {
276 return error("%s: Missing input", __func__);
278 if (coin.nHeight == MEMPOOL_HEIGHT) {
279 // Assume all mempool transaction confirm in the next block
280 prevheights[txinIndex] = tip->nHeight + 1;
281 } else {
282 prevheights[txinIndex] = coin.nHeight;
285 lockPair = CalculateSequenceLocks(tx, flags, &prevheights, index);
286 if (lp) {
287 lp->height = lockPair.first;
288 lp->time = lockPair.second;
289 // Also store the hash of the block with the highest height of
290 // all the blocks which have sequence locked prevouts.
291 // This hash needs to still be on the chain
292 // for these LockPoint calculations to be valid
293 // Note: It is impossible to correctly calculate a maxInputBlock
294 // if any of the sequence locked inputs depend on unconfirmed txs,
295 // except in the special case where the relative lock time/height
296 // is 0, which is equivalent to no sequence lock. Since we assume
297 // input height of tip+1 for mempool txs and test the resulting
298 // lockPair from CalculateSequenceLocks against tip+1. We know
299 // EvaluateSequenceLocks will fail if there was a non-zero sequence
300 // lock on a mempool input, so we can use the return value of
301 // CheckSequenceLocks to indicate the LockPoints validity
302 int maxInputHeight = 0;
303 for (int height : prevheights) {
304 // Can ignore mempool inputs since we'll fail if they had non-zero locks
305 if (height != tip->nHeight+1) {
306 maxInputHeight = std::max(maxInputHeight, height);
309 lp->maxInputBlock = tip->GetAncestor(maxInputHeight);
312 return EvaluateSequenceLocks(index, lockPair);
315 static void LimitMempoolSize(CTxMemPool& pool, size_t limit, unsigned long age) {
316 int expired = pool.Expire(GetTime() - age);
317 if (expired != 0) {
318 LogPrint(BCLog::MEMPOOL, "Expired %i transactions from the memory pool\n", expired);
321 std::vector<COutPoint> vNoSpendsRemaining;
322 pool.TrimToSize(limit, &vNoSpendsRemaining);
323 for (const COutPoint& removed : vNoSpendsRemaining)
324 pcoinsTip->Uncache(removed);
327 /** Convert CValidationState to a human-readable message for logging */
328 std::string FormatStateMessage(const CValidationState &state)
330 return strprintf("%s%s (code %i)",
331 state.GetRejectReason(),
332 state.GetDebugMessage().empty() ? "" : ", "+state.GetDebugMessage(),
333 state.GetRejectCode());
336 static bool IsCurrentForFeeEstimation()
338 AssertLockHeld(cs_main);
339 if (IsInitialBlockDownload())
340 return false;
341 if (chainActive.Tip()->GetBlockTime() < (GetTime() - MAX_FEE_ESTIMATION_TIP_AGE))
342 return false;
343 if (chainActive.Height() < pindexBestHeader->nHeight - 1)
344 return false;
345 return true;
348 /* Make mempool consistent after a reorg, by re-adding or recursively erasing
349 * disconnected block transactions from the mempool, and also removing any
350 * other transactions from the mempool that are no longer valid given the new
351 * tip/height.
353 * Note: we assume that disconnectpool only contains transactions that are NOT
354 * confirmed in the current chain nor already in the mempool (otherwise,
355 * in-mempool descendants of such transactions would be removed).
357 * Passing fAddToMempool=false will skip trying to add the transactions back,
358 * and instead just erase from the mempool as needed.
361 void UpdateMempoolForReorg(DisconnectedBlockTransactions &disconnectpool, bool fAddToMempool)
363 AssertLockHeld(cs_main);
364 std::vector<uint256> vHashUpdate;
365 // disconnectpool's insertion_order index sorts the entries from
366 // oldest to newest, but the oldest entry will be the last tx from the
367 // latest mined block that was disconnected.
368 // Iterate disconnectpool in reverse, so that we add transactions
369 // back to the mempool starting with the earliest transaction that had
370 // been previously seen in a block.
371 auto it = disconnectpool.queuedTx.get<insertion_order>().rbegin();
372 while (it != disconnectpool.queuedTx.get<insertion_order>().rend()) {
373 // ignore validation errors in resurrected transactions
374 CValidationState stateDummy;
375 if (!fAddToMempool || (*it)->IsCoinBase() || !AcceptToMemoryPool(mempool, stateDummy, *it, false, NULL, NULL, true)) {
376 // If the transaction doesn't make it in to the mempool, remove any
377 // transactions that depend on it (which would now be orphans).
378 mempool.removeRecursive(**it, MemPoolRemovalReason::REORG);
379 } else if (mempool.exists((*it)->GetHash())) {
380 vHashUpdate.push_back((*it)->GetHash());
382 ++it;
384 disconnectpool.queuedTx.clear();
385 // AcceptToMemoryPool/addUnchecked all assume that new mempool entries have
386 // no in-mempool children, which is generally not true when adding
387 // previously-confirmed transactions back to the mempool.
388 // UpdateTransactionsFromBlock finds descendants of any transactions in
389 // the disconnectpool that were added back and cleans up the mempool state.
390 mempool.UpdateTransactionsFromBlock(vHashUpdate);
392 // We also need to remove any now-immature transactions
393 mempool.removeForReorg(pcoinsTip, chainActive.Tip()->nHeight + 1, STANDARD_LOCKTIME_VERIFY_FLAGS);
394 // Re-limit mempool size, in case we added any transactions
395 LimitMempoolSize(mempool, GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000, GetArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY) * 60 * 60);
398 static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool& pool, CValidationState& state, const CTransactionRef& ptx, bool fLimitFree,
399 bool* pfMissingInputs, int64_t nAcceptTime, std::list<CTransactionRef>* plTxnReplaced,
400 bool fOverrideMempoolLimit, const CAmount& nAbsurdFee, std::vector<COutPoint>& coins_to_uncache)
402 const CTransaction& tx = *ptx;
403 const uint256 hash = tx.GetHash();
404 AssertLockHeld(cs_main);
405 if (pfMissingInputs)
406 *pfMissingInputs = false;
408 if (!CheckTransaction(tx, state))
409 return false; // state filled in by CheckTransaction
411 // Coinbase is only valid in a block, not as a loose transaction
412 if (tx.IsCoinBase())
413 return state.DoS(100, false, REJECT_INVALID, "coinbase");
415 // Reject transactions with witness before segregated witness activates (override with -prematurewitness)
416 bool witnessEnabled = IsWitnessEnabled(chainActive.Tip(), chainparams.GetConsensus());
417 if (!GetBoolArg("-prematurewitness",false) && tx.HasWitness() && !witnessEnabled) {
418 return state.DoS(0, false, REJECT_NONSTANDARD, "no-witness-yet", true);
421 // Rather not work on nonstandard transactions (unless -testnet/-regtest)
422 std::string reason;
423 if (fRequireStandard && !IsStandardTx(tx, reason, witnessEnabled))
424 return state.DoS(0, false, REJECT_NONSTANDARD, reason);
426 // Only accept nLockTime-using transactions that can be mined in the next
427 // block; we don't want our mempool filled up with transactions that can't
428 // be mined yet.
429 if (!CheckFinalTx(tx, STANDARD_LOCKTIME_VERIFY_FLAGS))
430 return state.DoS(0, false, REJECT_NONSTANDARD, "non-final");
432 // is it already in the memory pool?
433 if (pool.exists(hash)) {
434 return state.Invalid(false, REJECT_DUPLICATE, "txn-already-in-mempool");
437 // Check for conflicts with in-memory transactions
438 std::set<uint256> setConflicts;
440 LOCK(pool.cs); // protect pool.mapNextTx
441 for (const CTxIn &txin : tx.vin)
443 auto itConflicting = pool.mapNextTx.find(txin.prevout);
444 if (itConflicting != pool.mapNextTx.end())
446 const CTransaction *ptxConflicting = itConflicting->second;
447 if (!setConflicts.count(ptxConflicting->GetHash()))
449 // Allow opt-out of transaction replacement by setting
450 // nSequence >= maxint-1 on all inputs.
452 // maxint-1 is picked to still allow use of nLockTime by
453 // non-replaceable transactions. All inputs rather than just one
454 // is for the sake of multi-party protocols, where we don't
455 // want a single party to be able to disable replacement.
457 // The opt-out ignores descendants as anyone relying on
458 // first-seen mempool behavior should be checking all
459 // unconfirmed ancestors anyway; doing otherwise is hopelessly
460 // insecure.
461 bool fReplacementOptOut = true;
462 if (fEnableReplacement)
464 for (const CTxIn &_txin : ptxConflicting->vin)
466 if (_txin.nSequence < std::numeric_limits<unsigned int>::max()-1)
468 fReplacementOptOut = false;
469 break;
473 if (fReplacementOptOut) {
474 return state.Invalid(false, REJECT_DUPLICATE, "txn-mempool-conflict");
477 setConflicts.insert(ptxConflicting->GetHash());
484 CCoinsView dummy;
485 CCoinsViewCache view(&dummy);
487 CAmount nValueIn = 0;
488 LockPoints lp;
490 LOCK(pool.cs);
491 CCoinsViewMemPool viewMemPool(pcoinsTip, pool);
492 view.SetBackend(viewMemPool);
494 // do we already have it?
495 for (size_t out = 0; out < tx.vout.size(); out++) {
496 COutPoint outpoint(hash, out);
497 bool had_coin_in_cache = pcoinsTip->HaveCoinInCache(outpoint);
498 if (view.HaveCoin(outpoint)) {
499 if (!had_coin_in_cache) {
500 coins_to_uncache.push_back(outpoint);
502 return state.Invalid(false, REJECT_DUPLICATE, "txn-already-known");
506 // do all inputs exist?
507 for (const CTxIn txin : tx.vin) {
508 if (!pcoinsTip->HaveCoinInCache(txin.prevout)) {
509 coins_to_uncache.push_back(txin.prevout);
511 if (!view.HaveCoin(txin.prevout)) {
512 if (pfMissingInputs) {
513 *pfMissingInputs = true;
515 return false; // fMissingInputs and !state.IsInvalid() is used to detect this condition, don't set state.Invalid()
519 // Bring the best block into scope
520 view.GetBestBlock();
522 nValueIn = view.GetValueIn(tx);
524 // we have all inputs cached now, so switch back to dummy, so we don't need to keep lock on mempool
525 view.SetBackend(dummy);
527 // Only accept BIP68 sequence locked transactions that can be mined in the next
528 // block; we don't want our mempool filled up with transactions that can't
529 // be mined yet.
530 // Must keep pool.cs for this unless we change CheckSequenceLocks to take a
531 // CoinsViewCache instead of create its own
532 if (!CheckSequenceLocks(tx, STANDARD_LOCKTIME_VERIFY_FLAGS, &lp))
533 return state.DoS(0, false, REJECT_NONSTANDARD, "non-BIP68-final");
536 // Check for non-standard pay-to-script-hash in inputs
537 if (fRequireStandard && !AreInputsStandard(tx, view))
538 return state.Invalid(false, REJECT_NONSTANDARD, "bad-txns-nonstandard-inputs");
540 // Check for non-standard witness in P2WSH
541 if (tx.HasWitness() && fRequireStandard && !IsWitnessStandard(tx, view))
542 return state.DoS(0, false, REJECT_NONSTANDARD, "bad-witness-nonstandard", true);
544 int64_t nSigOpsCost = GetTransactionSigOpCost(tx, view, STANDARD_SCRIPT_VERIFY_FLAGS);
546 CAmount nValueOut = tx.GetValueOut();
547 CAmount nFees = nValueIn-nValueOut;
548 // nModifiedFees includes any fee deltas from PrioritiseTransaction
549 CAmount nModifiedFees = nFees;
550 pool.ApplyDelta(hash, nModifiedFees);
552 // Keep track of transactions that spend a coinbase, which we re-scan
553 // during reorgs to ensure COINBASE_MATURITY is still met.
554 bool fSpendsCoinbase = false;
555 for (const CTxIn &txin : tx.vin) {
556 const Coin &coin = view.AccessCoin(txin.prevout);
557 if (coin.IsCoinBase()) {
558 fSpendsCoinbase = true;
559 break;
563 CTxMemPoolEntry entry(ptx, nFees, nAcceptTime, chainActive.Height(),
564 fSpendsCoinbase, nSigOpsCost, lp);
565 unsigned int nSize = entry.GetTxSize();
567 // Check that the transaction doesn't have an excessive number of
568 // sigops, making it impossible to mine. Since the coinbase transaction
569 // itself can contain sigops MAX_STANDARD_TX_SIGOPS is less than
570 // MAX_BLOCK_SIGOPS; we still consider this an invalid rather than
571 // merely non-standard transaction.
572 if (nSigOpsCost > MAX_STANDARD_TX_SIGOPS_COST)
573 return state.DoS(0, false, REJECT_NONSTANDARD, "bad-txns-too-many-sigops", false,
574 strprintf("%d", nSigOpsCost));
576 CAmount mempoolRejectFee = pool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFee(nSize);
577 if (mempoolRejectFee > 0 && nModifiedFees < mempoolRejectFee) {
578 return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "mempool min fee not met", false, strprintf("%d < %d", nFees, mempoolRejectFee));
581 // No transactions are allowed below minRelayTxFee except from disconnected blocks
582 if (fLimitFree && nModifiedFees < ::minRelayTxFee.GetFee(nSize)) {
583 return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "min relay fee not met");
586 if (nAbsurdFee && nFees > nAbsurdFee)
587 return state.Invalid(false,
588 REJECT_HIGHFEE, "absurdly-high-fee",
589 strprintf("%d > %d", nFees, nAbsurdFee));
591 // Calculate in-mempool ancestors, up to a limit.
592 CTxMemPool::setEntries setAncestors;
593 size_t nLimitAncestors = GetArg("-limitancestorcount", DEFAULT_ANCESTOR_LIMIT);
594 size_t nLimitAncestorSize = GetArg("-limitancestorsize", DEFAULT_ANCESTOR_SIZE_LIMIT)*1000;
595 size_t nLimitDescendants = GetArg("-limitdescendantcount", DEFAULT_DESCENDANT_LIMIT);
596 size_t nLimitDescendantSize = GetArg("-limitdescendantsize", DEFAULT_DESCENDANT_SIZE_LIMIT)*1000;
597 std::string errString;
598 if (!pool.CalculateMemPoolAncestors(entry, setAncestors, nLimitAncestors, nLimitAncestorSize, nLimitDescendants, nLimitDescendantSize, errString)) {
599 return state.DoS(0, false, REJECT_NONSTANDARD, "too-long-mempool-chain", false, errString);
602 // A transaction that spends outputs that would be replaced by it is invalid. Now
603 // that we have the set of all ancestors we can detect this
604 // pathological case by making sure setConflicts and setAncestors don't
605 // intersect.
606 for (CTxMemPool::txiter ancestorIt : setAncestors)
608 const uint256 &hashAncestor = ancestorIt->GetTx().GetHash();
609 if (setConflicts.count(hashAncestor))
611 return state.DoS(10, false,
612 REJECT_INVALID, "bad-txns-spends-conflicting-tx", false,
613 strprintf("%s spends conflicting transaction %s",
614 hash.ToString(),
615 hashAncestor.ToString()));
619 // Check if it's economically rational to mine this transaction rather
620 // than the ones it replaces.
621 CAmount nConflictingFees = 0;
622 size_t nConflictingSize = 0;
623 uint64_t nConflictingCount = 0;
624 CTxMemPool::setEntries allConflicting;
626 // If we don't hold the lock allConflicting might be incomplete; the
627 // subsequent RemoveStaged() and addUnchecked() calls don't guarantee
628 // mempool consistency for us.
629 LOCK(pool.cs);
630 const bool fReplacementTransaction = setConflicts.size();
631 if (fReplacementTransaction)
633 CFeeRate newFeeRate(nModifiedFees, nSize);
634 std::set<uint256> setConflictsParents;
635 const int maxDescendantsToVisit = 100;
636 CTxMemPool::setEntries setIterConflicting;
637 for (const uint256 &hashConflicting : setConflicts)
639 CTxMemPool::txiter mi = pool.mapTx.find(hashConflicting);
640 if (mi == pool.mapTx.end())
641 continue;
643 // Save these to avoid repeated lookups
644 setIterConflicting.insert(mi);
646 // Don't allow the replacement to reduce the feerate of the
647 // mempool.
649 // We usually don't want to accept replacements with lower
650 // feerates than what they replaced as that would lower the
651 // feerate of the next block. Requiring that the feerate always
652 // be increased is also an easy-to-reason about way to prevent
653 // DoS attacks via replacements.
655 // The mining code doesn't (currently) take children into
656 // account (CPFP) so we only consider the feerates of
657 // transactions being directly replaced, not their indirect
658 // descendants. While that does mean high feerate children are
659 // ignored when deciding whether or not to replace, we do
660 // require the replacement to pay more overall fees too,
661 // mitigating most cases.
662 CFeeRate oldFeeRate(mi->GetModifiedFee(), mi->GetTxSize());
663 if (newFeeRate <= oldFeeRate)
665 return state.DoS(0, false,
666 REJECT_INSUFFICIENTFEE, "insufficient fee", false,
667 strprintf("rejecting replacement %s; new feerate %s <= old feerate %s",
668 hash.ToString(),
669 newFeeRate.ToString(),
670 oldFeeRate.ToString()));
673 for (const CTxIn &txin : mi->GetTx().vin)
675 setConflictsParents.insert(txin.prevout.hash);
678 nConflictingCount += mi->GetCountWithDescendants();
680 // This potentially overestimates the number of actual descendants
681 // but we just want to be conservative to avoid doing too much
682 // work.
683 if (nConflictingCount <= maxDescendantsToVisit) {
684 // If not too many to replace, then calculate the set of
685 // transactions that would have to be evicted
686 for (CTxMemPool::txiter it : setIterConflicting) {
687 pool.CalculateDescendants(it, allConflicting);
689 for (CTxMemPool::txiter it : allConflicting) {
690 nConflictingFees += it->GetModifiedFee();
691 nConflictingSize += it->GetTxSize();
693 } else {
694 return state.DoS(0, false,
695 REJECT_NONSTANDARD, "too many potential replacements", false,
696 strprintf("rejecting replacement %s; too many potential replacements (%d > %d)\n",
697 hash.ToString(),
698 nConflictingCount,
699 maxDescendantsToVisit));
702 for (unsigned int j = 0; j < tx.vin.size(); j++)
704 // We don't want to accept replacements that require low
705 // feerate junk to be mined first. Ideally we'd keep track of
706 // the ancestor feerates and make the decision based on that,
707 // but for now requiring all new inputs to be confirmed works.
708 if (!setConflictsParents.count(tx.vin[j].prevout.hash))
710 // Rather than check the UTXO set - potentially expensive -
711 // it's cheaper to just check if the new input refers to a
712 // tx that's in the mempool.
713 if (pool.mapTx.find(tx.vin[j].prevout.hash) != pool.mapTx.end())
714 return state.DoS(0, false,
715 REJECT_NONSTANDARD, "replacement-adds-unconfirmed", false,
716 strprintf("replacement %s adds unconfirmed input, idx %d",
717 hash.ToString(), j));
721 // The replacement must pay greater fees than the transactions it
722 // replaces - if we did the bandwidth used by those conflicting
723 // transactions would not be paid for.
724 if (nModifiedFees < nConflictingFees)
726 return state.DoS(0, false,
727 REJECT_INSUFFICIENTFEE, "insufficient fee", false,
728 strprintf("rejecting replacement %s, less fees than conflicting txs; %s < %s",
729 hash.ToString(), FormatMoney(nModifiedFees), FormatMoney(nConflictingFees)));
732 // Finally in addition to paying more fees than the conflicts the
733 // new transaction must pay for its own bandwidth.
734 CAmount nDeltaFees = nModifiedFees - nConflictingFees;
735 if (nDeltaFees < ::incrementalRelayFee.GetFee(nSize))
737 return state.DoS(0, false,
738 REJECT_INSUFFICIENTFEE, "insufficient fee", false,
739 strprintf("rejecting replacement %s, not enough additional fees to relay; %s < %s",
740 hash.ToString(),
741 FormatMoney(nDeltaFees),
742 FormatMoney(::incrementalRelayFee.GetFee(nSize))));
746 unsigned int scriptVerifyFlags = STANDARD_SCRIPT_VERIFY_FLAGS;
747 if (!chainparams.RequireStandard()) {
748 scriptVerifyFlags = GetArg("-promiscuousmempoolflags", scriptVerifyFlags);
751 // Check against previous transactions
752 // This is done last to help prevent CPU exhaustion denial-of-service attacks.
753 PrecomputedTransactionData txdata(tx);
754 if (!CheckInputs(tx, state, view, true, scriptVerifyFlags, true, txdata)) {
755 // SCRIPT_VERIFY_CLEANSTACK requires SCRIPT_VERIFY_WITNESS, so we
756 // need to turn both off, and compare against just turning off CLEANSTACK
757 // to see if the failure is specifically due to witness validation.
758 CValidationState stateDummy; // Want reported failures to be from first CheckInputs
759 if (!tx.HasWitness() && CheckInputs(tx, stateDummy, view, true, scriptVerifyFlags & ~(SCRIPT_VERIFY_WITNESS | SCRIPT_VERIFY_CLEANSTACK), true, txdata) &&
760 !CheckInputs(tx, stateDummy, view, true, scriptVerifyFlags & ~SCRIPT_VERIFY_CLEANSTACK, true, txdata)) {
761 // Only the witness is missing, so the transaction itself may be fine.
762 state.SetCorruptionPossible();
764 return false; // state filled in by CheckInputs
767 // Check again against just the consensus-critical mandatory script
768 // verification flags, in case of bugs in the standard flags that cause
769 // transactions to pass as valid when they're actually invalid. For
770 // instance the STRICTENC flag was incorrectly allowing certain
771 // CHECKSIG NOT scripts to pass, even though they were invalid.
773 // There is a similar check in CreateNewBlock() to prevent creating
774 // invalid blocks, however allowing such transactions into the mempool
775 // can be exploited as a DoS attack.
776 if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS, true, txdata))
778 return error("%s: BUG! PLEASE REPORT THIS! ConnectInputs failed against MANDATORY but not STANDARD flags %s, %s",
779 __func__, hash.ToString(), FormatStateMessage(state));
782 // Remove conflicting transactions from the mempool
783 for (const CTxMemPool::txiter it : allConflicting)
785 LogPrint(BCLog::MEMPOOL, "replacing tx %s with %s for %s BTC additional fees, %d delta bytes\n",
786 it->GetTx().GetHash().ToString(),
787 hash.ToString(),
788 FormatMoney(nModifiedFees - nConflictingFees),
789 (int)nSize - (int)nConflictingSize);
790 if (plTxnReplaced)
791 plTxnReplaced->push_back(it->GetSharedTx());
793 pool.RemoveStaged(allConflicting, false, MemPoolRemovalReason::REPLACED);
795 // This transaction should only count for fee estimation if it isn't a
796 // BIP 125 replacement transaction (may not be widely supported), the
797 // node is not behind, and the transaction is not dependent on any other
798 // transactions in the mempool.
799 bool validForFeeEstimation = !fReplacementTransaction && IsCurrentForFeeEstimation() && pool.HasNoInputsOf(tx);
801 // Store transaction in memory
802 pool.addUnchecked(hash, entry, setAncestors, validForFeeEstimation);
804 // trim mempool and check if tx was trimmed
805 if (!fOverrideMempoolLimit) {
806 LimitMempoolSize(pool, GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000, GetArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY) * 60 * 60);
807 if (!pool.exists(hash))
808 return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "mempool full");
812 GetMainSignals().TransactionAddedToMempool(ptx);
814 return true;
817 /** (try to) add transaction to memory pool with a specified acceptance time **/
818 static bool AcceptToMemoryPoolWithTime(const CChainParams& chainparams, CTxMemPool& pool, CValidationState &state, const CTransactionRef &tx, bool fLimitFree,
819 bool* pfMissingInputs, int64_t nAcceptTime, std::list<CTransactionRef>* plTxnReplaced,
820 bool fOverrideMempoolLimit, const CAmount nAbsurdFee)
822 std::vector<COutPoint> coins_to_uncache;
823 bool res = AcceptToMemoryPoolWorker(chainparams, pool, state, tx, fLimitFree, pfMissingInputs, nAcceptTime, plTxnReplaced, fOverrideMempoolLimit, nAbsurdFee, coins_to_uncache);
824 if (!res) {
825 for (const COutPoint& hashTx : coins_to_uncache)
826 pcoinsTip->Uncache(hashTx);
828 // After we've (potentially) uncached entries, ensure our coins cache is still within its size limits
829 CValidationState stateDummy;
830 FlushStateToDisk(chainparams, stateDummy, FLUSH_STATE_PERIODIC);
831 return res;
834 bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransactionRef &tx, bool fLimitFree,
835 bool* pfMissingInputs, std::list<CTransactionRef>* plTxnReplaced,
836 bool fOverrideMempoolLimit, const CAmount nAbsurdFee)
838 const CChainParams& chainparams = Params();
839 return AcceptToMemoryPoolWithTime(chainparams, pool, state, tx, fLimitFree, pfMissingInputs, GetTime(), plTxnReplaced, fOverrideMempoolLimit, nAbsurdFee);
842 /** Return transaction in txOut, and if it was found inside a block, its hash is placed in hashBlock */
843 bool GetTransaction(const uint256 &hash, CTransactionRef &txOut, const Consensus::Params& consensusParams, uint256 &hashBlock, bool fAllowSlow)
845 CBlockIndex *pindexSlow = NULL;
847 LOCK(cs_main);
849 CTransactionRef ptx = mempool.get(hash);
850 if (ptx)
852 txOut = ptx;
853 return true;
856 if (fTxIndex) {
857 CDiskTxPos postx;
858 if (pblocktree->ReadTxIndex(hash, postx)) {
859 CAutoFile file(OpenBlockFile(postx, true), SER_DISK, CLIENT_VERSION);
860 if (file.IsNull())
861 return error("%s: OpenBlockFile failed", __func__);
862 CBlockHeader header;
863 try {
864 file >> header;
865 fseek(file.Get(), postx.nTxOffset, SEEK_CUR);
866 file >> txOut;
867 } catch (const std::exception& e) {
868 return error("%s: Deserialize or I/O error - %s", __func__, e.what());
870 hashBlock = header.GetHash();
871 if (txOut->GetHash() != hash)
872 return error("%s: txid mismatch", __func__);
873 return true;
877 if (fAllowSlow) { // use coin database to locate block that contains transaction, and scan it
878 const Coin& coin = AccessByTxid(*pcoinsTip, hash);
879 if (!coin.IsSpent()) pindexSlow = chainActive[coin.nHeight];
882 if (pindexSlow) {
883 CBlock block;
884 if (ReadBlockFromDisk(block, pindexSlow, consensusParams)) {
885 for (const auto& tx : block.vtx) {
886 if (tx->GetHash() == hash) {
887 txOut = tx;
888 hashBlock = pindexSlow->GetBlockHash();
889 return true;
895 return false;
903 //////////////////////////////////////////////////////////////////////////////
905 // CBlock and CBlockIndex
908 static bool WriteBlockToDisk(const CBlock& block, CDiskBlockPos& pos, const CMessageHeader::MessageStartChars& messageStart)
910 // Open history file to append
911 CAutoFile fileout(OpenBlockFile(pos), SER_DISK, CLIENT_VERSION);
912 if (fileout.IsNull())
913 return error("WriteBlockToDisk: OpenBlockFile failed");
915 // Write index header
916 unsigned int nSize = GetSerializeSize(fileout, block);
917 fileout << FLATDATA(messageStart) << nSize;
919 // Write block
920 long fileOutPos = ftell(fileout.Get());
921 if (fileOutPos < 0)
922 return error("WriteBlockToDisk: ftell failed");
923 pos.nPos = (unsigned int)fileOutPos;
924 fileout << block;
926 return true;
929 bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos, const Consensus::Params& consensusParams)
931 block.SetNull();
933 // Open history file to read
934 CAutoFile filein(OpenBlockFile(pos, true), SER_DISK, CLIENT_VERSION);
935 if (filein.IsNull())
936 return error("ReadBlockFromDisk: OpenBlockFile failed for %s", pos.ToString());
938 // Read block
939 try {
940 filein >> block;
942 catch (const std::exception& e) {
943 return error("%s: Deserialize or I/O error - %s at %s", __func__, e.what(), pos.ToString());
946 // Check the header
947 if (!CheckProofOfWork(block.GetHash(), block.nBits, consensusParams))
948 return error("ReadBlockFromDisk: Errors in block header at %s", pos.ToString());
950 return true;
953 bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex, const Consensus::Params& consensusParams)
955 if (!ReadBlockFromDisk(block, pindex->GetBlockPos(), consensusParams))
956 return false;
957 if (block.GetHash() != pindex->GetBlockHash())
958 return error("ReadBlockFromDisk(CBlock&, CBlockIndex*): GetHash() doesn't match index for %s at %s",
959 pindex->ToString(), pindex->GetBlockPos().ToString());
960 return true;
963 CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
965 int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
966 // Force block reward to zero when right shift is undefined.
967 if (halvings >= 64)
968 return 0;
970 CAmount nSubsidy = 50 * COIN;
971 // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
972 nSubsidy >>= halvings;
973 return nSubsidy;
976 bool IsInitialBlockDownload()
978 const CChainParams& chainParams = Params();
980 // Once this function has returned false, it must remain false.
981 static std::atomic<bool> latchToFalse{false};
982 // Optimization: pre-test latch before taking the lock.
983 if (latchToFalse.load(std::memory_order_relaxed))
984 return false;
986 LOCK(cs_main);
987 if (latchToFalse.load(std::memory_order_relaxed))
988 return false;
989 if (fImporting || fReindex)
990 return true;
991 if (chainActive.Tip() == NULL)
992 return true;
993 if (chainActive.Tip()->nChainWork < UintToArith256(chainParams.GetConsensus().nMinimumChainWork))
994 return true;
995 if (chainActive.Tip()->GetBlockTime() < (GetTime() - nMaxTipAge))
996 return true;
997 LogPrintf("Leaving InitialBlockDownload (latching to false)\n");
998 latchToFalse.store(true, std::memory_order_relaxed);
999 return false;
1002 CBlockIndex *pindexBestForkTip = NULL, *pindexBestForkBase = NULL;
1004 static void AlertNotify(const std::string& strMessage)
1006 uiInterface.NotifyAlertChanged();
1007 std::string strCmd = GetArg("-alertnotify", "");
1008 if (strCmd.empty()) return;
1010 // Alert text should be plain ascii coming from a trusted source, but to
1011 // be safe we first strip anything not in safeChars, then add single quotes around
1012 // the whole string before passing it to the shell:
1013 std::string singleQuote("'");
1014 std::string safeStatus = SanitizeString(strMessage);
1015 safeStatus = singleQuote+safeStatus+singleQuote;
1016 boost::replace_all(strCmd, "%s", safeStatus);
1018 boost::thread t(runCommand, strCmd); // thread runs free
1021 static void CheckForkWarningConditions()
1023 AssertLockHeld(cs_main);
1024 // Before we get past initial download, we cannot reliably alert about forks
1025 // (we assume we don't get stuck on a fork before finishing our initial sync)
1026 if (IsInitialBlockDownload())
1027 return;
1029 // If our best fork is no longer within 72 blocks (+/- 12 hours if no one mines it)
1030 // of our head, drop it
1031 if (pindexBestForkTip && chainActive.Height() - pindexBestForkTip->nHeight >= 72)
1032 pindexBestForkTip = NULL;
1034 if (pindexBestForkTip || (pindexBestInvalid && pindexBestInvalid->nChainWork > chainActive.Tip()->nChainWork + (GetBlockProof(*chainActive.Tip()) * 6)))
1036 if (!GetfLargeWorkForkFound() && pindexBestForkBase)
1038 std::string warning = std::string("'Warning: Large-work fork detected, forking after block ") +
1039 pindexBestForkBase->phashBlock->ToString() + std::string("'");
1040 AlertNotify(warning);
1042 if (pindexBestForkTip && pindexBestForkBase)
1044 LogPrintf("%s: Warning: Large valid fork found\n forking the chain at height %d (%s)\n lasting to height %d (%s).\nChain state database corruption likely.\n", __func__,
1045 pindexBestForkBase->nHeight, pindexBestForkBase->phashBlock->ToString(),
1046 pindexBestForkTip->nHeight, pindexBestForkTip->phashBlock->ToString());
1047 SetfLargeWorkForkFound(true);
1049 else
1051 LogPrintf("%s: Warning: Found invalid chain at least ~6 blocks longer than our best chain.\nChain state database corruption likely.\n", __func__);
1052 SetfLargeWorkInvalidChainFound(true);
1055 else
1057 SetfLargeWorkForkFound(false);
1058 SetfLargeWorkInvalidChainFound(false);
1062 static void CheckForkWarningConditionsOnNewFork(CBlockIndex* pindexNewForkTip)
1064 AssertLockHeld(cs_main);
1065 // If we are on a fork that is sufficiently large, set a warning flag
1066 CBlockIndex* pfork = pindexNewForkTip;
1067 CBlockIndex* plonger = chainActive.Tip();
1068 while (pfork && pfork != plonger)
1070 while (plonger && plonger->nHeight > pfork->nHeight)
1071 plonger = plonger->pprev;
1072 if (pfork == plonger)
1073 break;
1074 pfork = pfork->pprev;
1077 // We define a condition where we should warn the user about as a fork of at least 7 blocks
1078 // with a tip within 72 blocks (+/- 12 hours if no one mines it) of ours
1079 // We use 7 blocks rather arbitrarily as it represents just under 10% of sustained network
1080 // hash rate operating on the fork.
1081 // or a chain that is entirely longer than ours and invalid (note that this should be detected by both)
1082 // We define it this way because it allows us to only store the highest fork tip (+ base) which meets
1083 // the 7-block condition and from this always have the most-likely-to-cause-warning fork
1084 if (pfork && (!pindexBestForkTip || (pindexBestForkTip && pindexNewForkTip->nHeight > pindexBestForkTip->nHeight)) &&
1085 pindexNewForkTip->nChainWork - pfork->nChainWork > (GetBlockProof(*pfork) * 7) &&
1086 chainActive.Height() - pindexNewForkTip->nHeight < 72)
1088 pindexBestForkTip = pindexNewForkTip;
1089 pindexBestForkBase = pfork;
1092 CheckForkWarningConditions();
1095 void static InvalidChainFound(CBlockIndex* pindexNew)
1097 if (!pindexBestInvalid || pindexNew->nChainWork > pindexBestInvalid->nChainWork)
1098 pindexBestInvalid = pindexNew;
1100 LogPrintf("%s: invalid block=%s height=%d log2_work=%.8g date=%s\n", __func__,
1101 pindexNew->GetBlockHash().ToString(), pindexNew->nHeight,
1102 log(pindexNew->nChainWork.getdouble())/log(2.0), DateTimeStrFormat("%Y-%m-%d %H:%M:%S",
1103 pindexNew->GetBlockTime()));
1104 CBlockIndex *tip = chainActive.Tip();
1105 assert (tip);
1106 LogPrintf("%s: current best=%s height=%d log2_work=%.8g date=%s\n", __func__,
1107 tip->GetBlockHash().ToString(), chainActive.Height(), log(tip->nChainWork.getdouble())/log(2.0),
1108 DateTimeStrFormat("%Y-%m-%d %H:%M:%S", tip->GetBlockTime()));
1109 CheckForkWarningConditions();
1112 void static InvalidBlockFound(CBlockIndex *pindex, const CValidationState &state) {
1113 if (!state.CorruptionPossible()) {
1114 pindex->nStatus |= BLOCK_FAILED_VALID;
1115 setDirtyBlockIndex.insert(pindex);
1116 setBlockIndexCandidates.erase(pindex);
1117 InvalidChainFound(pindex);
1121 void UpdateCoins(const CTransaction& tx, CCoinsViewCache& inputs, CTxUndo &txundo, int nHeight)
1123 // mark inputs spent
1124 if (!tx.IsCoinBase()) {
1125 txundo.vprevout.reserve(tx.vin.size());
1126 for (const CTxIn &txin : tx.vin) {
1127 txundo.vprevout.emplace_back();
1128 bool is_spent = inputs.SpendCoin(txin.prevout, &txundo.vprevout.back());
1129 assert(is_spent);
1132 // add outputs
1133 AddCoins(inputs, tx, nHeight);
1136 void UpdateCoins(const CTransaction& tx, CCoinsViewCache& inputs, int nHeight)
1138 CTxUndo txundo;
1139 UpdateCoins(tx, inputs, txundo, nHeight);
1142 bool CScriptCheck::operator()() {
1143 const CScript &scriptSig = ptxTo->vin[nIn].scriptSig;
1144 const CScriptWitness *witness = &ptxTo->vin[nIn].scriptWitness;
1145 return VerifyScript(scriptSig, scriptPubKey, witness, nFlags, CachingTransactionSignatureChecker(ptxTo, nIn, amount, cacheStore, *txdata), &error);
1148 int GetSpendHeight(const CCoinsViewCache& inputs)
1150 LOCK(cs_main);
1151 CBlockIndex* pindexPrev = mapBlockIndex.find(inputs.GetBestBlock())->second;
1152 return pindexPrev->nHeight + 1;
1156 * Check whether all inputs of this transaction are valid (no double spends, scripts & sigs, amounts)
1157 * This does not modify the UTXO set. If pvChecks is not NULL, script checks are pushed onto it
1158 * instead of being performed inline.
1160 static bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsViewCache &inputs, bool fScriptChecks, unsigned int flags, bool cacheStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck> *pvChecks)
1162 if (!tx.IsCoinBase())
1164 if (!Consensus::CheckTxInputs(tx, state, inputs, GetSpendHeight(inputs)))
1165 return false;
1167 if (pvChecks)
1168 pvChecks->reserve(tx.vin.size());
1170 // The first loop above does all the inexpensive checks.
1171 // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1172 // Helps prevent CPU exhaustion attacks.
1174 // Skip script verification when connecting blocks under the
1175 // assumevalid block. Assuming the assumevalid block is valid this
1176 // is safe because block merkle hashes are still computed and checked,
1177 // Of course, if an assumed valid block is invalid due to false scriptSigs
1178 // this optimization would allow an invalid chain to be accepted.
1179 if (fScriptChecks) {
1180 for (unsigned int i = 0; i < tx.vin.size(); i++) {
1181 const COutPoint &prevout = tx.vin[i].prevout;
1182 const Coin& coin = inputs.AccessCoin(prevout);
1183 assert(!coin.IsSpent());
1185 // We very carefully only pass in things to CScriptCheck which
1186 // are clearly committed to by tx' witness hash. This provides
1187 // a sanity check that our caching is not introducing consensus
1188 // failures through additional data in, eg, the coins being
1189 // spent being checked as a part of CScriptCheck.
1190 const CScript& scriptPubKey = coin.out.scriptPubKey;
1191 const CAmount amount = coin.out.nValue;
1193 // Verify signature
1194 CScriptCheck check(scriptPubKey, amount, tx, i, flags, cacheStore, &txdata);
1195 if (pvChecks) {
1196 pvChecks->push_back(CScriptCheck());
1197 check.swap(pvChecks->back());
1198 } else if (!check()) {
1199 if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS) {
1200 // Check whether the failure was caused by a
1201 // non-mandatory script verification check, such as
1202 // non-standard DER encodings or non-null dummy
1203 // arguments; if so, don't trigger DoS protection to
1204 // avoid splitting the network between upgraded and
1205 // non-upgraded nodes.
1206 CScriptCheck check2(scriptPubKey, amount, tx, i,
1207 flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, cacheStore, &txdata);
1208 if (check2())
1209 return state.Invalid(false, REJECT_NONSTANDARD, strprintf("non-mandatory-script-verify-flag (%s)", ScriptErrorString(check.GetScriptError())));
1211 // Failures of other flags indicate a transaction that is
1212 // invalid in new blocks, e.g. a invalid P2SH. We DoS ban
1213 // such nodes as they are not following the protocol. That
1214 // said during an upgrade careful thought should be taken
1215 // as to the correct behavior - we may want to continue
1216 // peering with non-upgraded nodes even after soft-fork
1217 // super-majority signaling has occurred.
1218 return state.DoS(100,false, REJECT_INVALID, strprintf("mandatory-script-verify-flag-failed (%s)", ScriptErrorString(check.GetScriptError())));
1224 return true;
1227 namespace {
1229 bool UndoWriteToDisk(const CBlockUndo& blockundo, CDiskBlockPos& pos, const uint256& hashBlock, const CMessageHeader::MessageStartChars& messageStart)
1231 // Open history file to append
1232 CAutoFile fileout(OpenUndoFile(pos), SER_DISK, CLIENT_VERSION);
1233 if (fileout.IsNull())
1234 return error("%s: OpenUndoFile failed", __func__);
1236 // Write index header
1237 unsigned int nSize = GetSerializeSize(fileout, blockundo);
1238 fileout << FLATDATA(messageStart) << nSize;
1240 // Write undo data
1241 long fileOutPos = ftell(fileout.Get());
1242 if (fileOutPos < 0)
1243 return error("%s: ftell failed", __func__);
1244 pos.nPos = (unsigned int)fileOutPos;
1245 fileout << blockundo;
1247 // calculate & write checksum
1248 CHashWriter hasher(SER_GETHASH, PROTOCOL_VERSION);
1249 hasher << hashBlock;
1250 hasher << blockundo;
1251 fileout << hasher.GetHash();
1253 return true;
1256 bool UndoReadFromDisk(CBlockUndo& blockundo, const CDiskBlockPos& pos, const uint256& hashBlock)
1258 // Open history file to read
1259 CAutoFile filein(OpenUndoFile(pos, true), SER_DISK, CLIENT_VERSION);
1260 if (filein.IsNull())
1261 return error("%s: OpenUndoFile failed", __func__);
1263 // Read block
1264 uint256 hashChecksum;
1265 CHashVerifier<CAutoFile> verifier(&filein); // We need a CHashVerifier as reserializing may lose data
1266 try {
1267 verifier << hashBlock;
1268 verifier >> blockundo;
1269 filein >> hashChecksum;
1271 catch (const std::exception& e) {
1272 return error("%s: Deserialize or I/O error - %s", __func__, e.what());
1275 // Verify checksum
1276 if (hashChecksum != verifier.GetHash())
1277 return error("%s: Checksum mismatch", __func__);
1279 return true;
1282 /** Abort with a message */
1283 bool AbortNode(const std::string& strMessage, const std::string& userMessage="")
1285 SetMiscWarning(strMessage);
1286 LogPrintf("*** %s\n", strMessage);
1287 uiInterface.ThreadSafeMessageBox(
1288 userMessage.empty() ? _("Error: A fatal internal error occurred, see debug.log for details") : userMessage,
1289 "", CClientUIInterface::MSG_ERROR);
1290 StartShutdown();
1291 return false;
1294 bool AbortNode(CValidationState& state, const std::string& strMessage, const std::string& userMessage="")
1296 AbortNode(strMessage, userMessage);
1297 return state.Error(strMessage);
1300 } // anon namespace
1302 enum DisconnectResult
1304 DISCONNECT_OK, // All good.
1305 DISCONNECT_UNCLEAN, // Rolled back, but UTXO set was inconsistent with block.
1306 DISCONNECT_FAILED // Something else went wrong.
1310 * Restore the UTXO in a Coin at a given COutPoint
1311 * @param undo The Coin to be restored.
1312 * @param view The coins view to which to apply the changes.
1313 * @param out The out point that corresponds to the tx input.
1314 * @return A DisconnectResult as an int
1316 int ApplyTxInUndo(Coin&& undo, CCoinsViewCache& view, const COutPoint& out)
1318 bool fClean = true;
1320 if (view.HaveCoin(out)) fClean = false; // overwriting transaction output
1322 if (undo.nHeight == 0) {
1323 // Missing undo metadata (height and coinbase). Older versions included this
1324 // information only in undo records for the last spend of a transactions'
1325 // outputs. This implies that it must be present for some other output of the same tx.
1326 const Coin& alternate = AccessByTxid(view, out.hash);
1327 if (!alternate.IsSpent()) {
1328 undo.nHeight = alternate.nHeight;
1329 undo.fCoinBase = alternate.fCoinBase;
1330 } else {
1331 return DISCONNECT_FAILED; // adding output for transaction without known metadata
1334 view.AddCoin(out, std::move(undo), undo.fCoinBase);
1336 return fClean ? DISCONNECT_OK : DISCONNECT_UNCLEAN;
1339 /** Undo the effects of this block (with given index) on the UTXO set represented by coins.
1340 * When UNCLEAN or FAILED is returned, view is left in an indeterminate state. */
1341 static DisconnectResult DisconnectBlock(const CBlock& block, const CBlockIndex* pindex, CCoinsViewCache& view)
1343 assert(pindex->GetBlockHash() == view.GetBestBlock());
1345 bool fClean = true;
1347 CBlockUndo blockUndo;
1348 CDiskBlockPos pos = pindex->GetUndoPos();
1349 if (pos.IsNull()) {
1350 error("DisconnectBlock(): no undo data available");
1351 return DISCONNECT_FAILED;
1353 if (!UndoReadFromDisk(blockUndo, pos, pindex->pprev->GetBlockHash())) {
1354 error("DisconnectBlock(): failure reading undo data");
1355 return DISCONNECT_FAILED;
1358 if (blockUndo.vtxundo.size() + 1 != block.vtx.size()) {
1359 error("DisconnectBlock(): block and undo data inconsistent");
1360 return DISCONNECT_FAILED;
1363 // undo transactions in reverse order
1364 for (int i = block.vtx.size() - 1; i >= 0; i--) {
1365 const CTransaction &tx = *(block.vtx[i]);
1366 uint256 hash = tx.GetHash();
1368 // Check that all outputs are available and match the outputs in the block itself
1369 // exactly.
1370 for (size_t o = 0; o < tx.vout.size(); o++) {
1371 if (!tx.vout[o].scriptPubKey.IsUnspendable()) {
1372 COutPoint out(hash, o);
1373 Coin coin;
1374 bool is_spent = view.SpendCoin(out, &coin);
1375 if (!is_spent || tx.vout[o] != coin.out) {
1376 fClean = false; // transaction output mismatch
1381 // restore inputs
1382 if (i > 0) { // not coinbases
1383 CTxUndo &txundo = blockUndo.vtxundo[i-1];
1384 if (txundo.vprevout.size() != tx.vin.size()) {
1385 error("DisconnectBlock(): transaction and undo data inconsistent");
1386 return DISCONNECT_FAILED;
1388 for (unsigned int j = tx.vin.size(); j-- > 0;) {
1389 const COutPoint &out = tx.vin[j].prevout;
1390 int res = ApplyTxInUndo(std::move(txundo.vprevout[j]), view, out);
1391 if (res == DISCONNECT_FAILED) return DISCONNECT_FAILED;
1392 fClean = fClean && res != DISCONNECT_UNCLEAN;
1394 // At this point, all of txundo.vprevout should have been moved out.
1398 // move best block pointer to prevout block
1399 view.SetBestBlock(pindex->pprev->GetBlockHash());
1401 return fClean ? DISCONNECT_OK : DISCONNECT_UNCLEAN;
1404 void static FlushBlockFile(bool fFinalize = false)
1406 LOCK(cs_LastBlockFile);
1408 CDiskBlockPos posOld(nLastBlockFile, 0);
1410 FILE *fileOld = OpenBlockFile(posOld);
1411 if (fileOld) {
1412 if (fFinalize)
1413 TruncateFile(fileOld, vinfoBlockFile[nLastBlockFile].nSize);
1414 FileCommit(fileOld);
1415 fclose(fileOld);
1418 fileOld = OpenUndoFile(posOld);
1419 if (fileOld) {
1420 if (fFinalize)
1421 TruncateFile(fileOld, vinfoBlockFile[nLastBlockFile].nUndoSize);
1422 FileCommit(fileOld);
1423 fclose(fileOld);
1427 static bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigned int nAddSize);
1429 static CCheckQueue<CScriptCheck> scriptcheckqueue(128);
1431 void ThreadScriptCheck() {
1432 RenameThread("bitcoin-scriptch");
1433 scriptcheckqueue.Thread();
1436 // Protected by cs_main
1437 VersionBitsCache versionbitscache;
1439 int32_t ComputeBlockVersion(const CBlockIndex* pindexPrev, const Consensus::Params& params)
1441 LOCK(cs_main);
1442 int32_t nVersion = VERSIONBITS_TOP_BITS;
1444 for (int i = 0; i < (int)Consensus::MAX_VERSION_BITS_DEPLOYMENTS; i++) {
1445 ThresholdState state = VersionBitsState(pindexPrev, params, (Consensus::DeploymentPos)i, versionbitscache);
1446 if (state == THRESHOLD_LOCKED_IN || state == THRESHOLD_STARTED) {
1447 nVersion |= VersionBitsMask(params, (Consensus::DeploymentPos)i);
1451 return nVersion;
1455 * Threshold condition checker that triggers when unknown versionbits are seen on the network.
1457 class WarningBitsConditionChecker : public AbstractThresholdConditionChecker
1459 private:
1460 int bit;
1462 public:
1463 WarningBitsConditionChecker(int bitIn) : bit(bitIn) {}
1465 int64_t BeginTime(const Consensus::Params& params) const { return 0; }
1466 int64_t EndTime(const Consensus::Params& params) const { return std::numeric_limits<int64_t>::max(); }
1467 int Period(const Consensus::Params& params) const { return params.nMinerConfirmationWindow; }
1468 int Threshold(const Consensus::Params& params) const { return params.nRuleChangeActivationThreshold; }
1470 bool Condition(const CBlockIndex* pindex, const Consensus::Params& params) const
1472 return ((pindex->nVersion & VERSIONBITS_TOP_MASK) == VERSIONBITS_TOP_BITS) &&
1473 ((pindex->nVersion >> bit) & 1) != 0 &&
1474 ((ComputeBlockVersion(pindex->pprev, params) >> bit) & 1) == 0;
1478 // Protected by cs_main
1479 static ThresholdConditionCache warningcache[VERSIONBITS_NUM_BITS];
1481 static int64_t nTimeCheck = 0;
1482 static int64_t nTimeForks = 0;
1483 static int64_t nTimeVerify = 0;
1484 static int64_t nTimeConnect = 0;
1485 static int64_t nTimeIndex = 0;
1486 static int64_t nTimeCallbacks = 0;
1487 static int64_t nTimeTotal = 0;
1489 /** Apply the effects of this block (with given index) on the UTXO set represented by coins.
1490 * Validity checks that depend on the UTXO set are also done; ConnectBlock()
1491 * can fail if those validity checks fail (among other reasons). */
1492 static bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pindex,
1493 CCoinsViewCache& view, const CChainParams& chainparams, bool fJustCheck = false)
1495 AssertLockHeld(cs_main);
1496 assert(pindex);
1497 // pindex->phashBlock can be null if called by CreateNewBlock/TestBlockValidity
1498 assert((pindex->phashBlock == NULL) ||
1499 (*pindex->phashBlock == block.GetHash()));
1500 int64_t nTimeStart = GetTimeMicros();
1502 // Check it again in case a previous version let a bad block in
1503 if (!CheckBlock(block, state, chainparams.GetConsensus(), !fJustCheck, !fJustCheck))
1504 return error("%s: Consensus::CheckBlock: %s", __func__, FormatStateMessage(state));
1506 // verify that the view's current state corresponds to the previous block
1507 uint256 hashPrevBlock = pindex->pprev == NULL ? uint256() : pindex->pprev->GetBlockHash();
1508 assert(hashPrevBlock == view.GetBestBlock());
1510 // Special case for the genesis block, skipping connection of its transactions
1511 // (its coinbase is unspendable)
1512 if (block.GetHash() == chainparams.GetConsensus().hashGenesisBlock) {
1513 if (!fJustCheck)
1514 view.SetBestBlock(pindex->GetBlockHash());
1515 return true;
1518 bool fScriptChecks = true;
1519 if (!hashAssumeValid.IsNull()) {
1520 // We've been configured with the hash of a block which has been externally verified to have a valid history.
1521 // A suitable default value is included with the software and updated from time to time. Because validity
1522 // relative to a piece of software is an objective fact these defaults can be easily reviewed.
1523 // This setting doesn't force the selection of any particular chain but makes validating some faster by
1524 // effectively caching the result of part of the verification.
1525 BlockMap::const_iterator it = mapBlockIndex.find(hashAssumeValid);
1526 if (it != mapBlockIndex.end()) {
1527 if (it->second->GetAncestor(pindex->nHeight) == pindex &&
1528 pindexBestHeader->GetAncestor(pindex->nHeight) == pindex &&
1529 pindexBestHeader->nChainWork >= UintToArith256(chainparams.GetConsensus().nMinimumChainWork)) {
1530 // This block is a member of the assumed verified chain and an ancestor of the best header.
1531 // The equivalent time check discourages hash power from extorting the network via DOS attack
1532 // into accepting an invalid block through telling users they must manually set assumevalid.
1533 // Requiring a software change or burying the invalid block, regardless of the setting, makes
1534 // it hard to hide the implication of the demand. This also avoids having release candidates
1535 // that are hardly doing any signature verification at all in testing without having to
1536 // artificially set the default assumed verified block further back.
1537 // The test against nMinimumChainWork prevents the skipping when denied access to any chain at
1538 // least as good as the expected chain.
1539 fScriptChecks = (GetBlockProofEquivalentTime(*pindexBestHeader, *pindex, *pindexBestHeader, chainparams.GetConsensus()) <= 60 * 60 * 24 * 7 * 2);
1544 int64_t nTime1 = GetTimeMicros(); nTimeCheck += nTime1 - nTimeStart;
1545 LogPrint(BCLog::BENCH, " - Sanity checks: %.2fms [%.2fs]\n", 0.001 * (nTime1 - nTimeStart), nTimeCheck * 0.000001);
1547 // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1548 // unless those are already completely spent.
1549 // If such overwrites are allowed, coinbases and transactions depending upon those
1550 // can be duplicated to remove the ability to spend the first instance -- even after
1551 // being sent to another address.
1552 // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1553 // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1554 // already refuses previously-known transaction ids entirely.
1555 // This rule was originally applied to all blocks with a timestamp after March 15, 2012, 0:00 UTC.
1556 // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1557 // two in the chain that violate it. This prevents exploiting the issue against nodes during their
1558 // initial block download.
1559 bool fEnforceBIP30 = (!pindex->phashBlock) || // Enforce on CreateNewBlock invocations which don't have a hash.
1560 !((pindex->nHeight==91842 && pindex->GetBlockHash() == uint256S("0x00000000000a4d0a398161ffc163c503763b1f4360639393e0e4c8e300e0caec")) ||
1561 (pindex->nHeight==91880 && pindex->GetBlockHash() == uint256S("0x00000000000743f190a18c5577a3c2d2a1f610ae9601ac046a38084ccb7cd721")));
1563 // Once BIP34 activated it was not possible to create new duplicate coinbases and thus other than starting
1564 // with the 2 existing duplicate coinbase pairs, not possible to create overwriting txs. But by the
1565 // time BIP34 activated, in each of the existing pairs the duplicate coinbase had overwritten the first
1566 // before the first had been spent. Since those coinbases are sufficiently buried its no longer possible to create further
1567 // duplicate transactions descending from the known pairs either.
1568 // If we're on the known chain at height greater than where BIP34 activated, we can save the db accesses needed for the BIP30 check.
1569 CBlockIndex *pindexBIP34height = pindex->pprev->GetAncestor(chainparams.GetConsensus().BIP34Height);
1570 //Only continue to enforce if we're below BIP34 activation height or the block hash at that height doesn't correspond.
1571 fEnforceBIP30 = fEnforceBIP30 && (!pindexBIP34height || !(pindexBIP34height->GetBlockHash() == chainparams.GetConsensus().BIP34Hash));
1573 if (fEnforceBIP30) {
1574 for (const auto& tx : block.vtx) {
1575 for (size_t o = 0; o < tx->vout.size(); o++) {
1576 if (view.HaveCoin(COutPoint(tx->GetHash(), o))) {
1577 return state.DoS(100, error("ConnectBlock(): tried to overwrite transaction"),
1578 REJECT_INVALID, "bad-txns-BIP30");
1584 // BIP16 didn't become active until Apr 1 2012
1585 int64_t nBIP16SwitchTime = 1333238400;
1586 bool fStrictPayToScriptHash = (pindex->GetBlockTime() >= nBIP16SwitchTime);
1588 unsigned int flags = fStrictPayToScriptHash ? SCRIPT_VERIFY_P2SH : SCRIPT_VERIFY_NONE;
1590 // Start enforcing the DERSIG (BIP66) rule
1591 if (pindex->nHeight >= chainparams.GetConsensus().BIP66Height) {
1592 flags |= SCRIPT_VERIFY_DERSIG;
1595 // Start enforcing CHECKLOCKTIMEVERIFY (BIP65) rule
1596 if (pindex->nHeight >= chainparams.GetConsensus().BIP65Height) {
1597 flags |= SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY;
1600 // Start enforcing BIP68 (sequence locks) and BIP112 (CHECKSEQUENCEVERIFY) using versionbits logic.
1601 int nLockTimeFlags = 0;
1602 if (VersionBitsState(pindex->pprev, chainparams.GetConsensus(), Consensus::DEPLOYMENT_CSV, versionbitscache) == THRESHOLD_ACTIVE) {
1603 flags |= SCRIPT_VERIFY_CHECKSEQUENCEVERIFY;
1604 nLockTimeFlags |= LOCKTIME_VERIFY_SEQUENCE;
1607 // Start enforcing WITNESS rules using versionbits logic.
1608 if (IsWitnessEnabled(pindex->pprev, chainparams.GetConsensus())) {
1609 flags |= SCRIPT_VERIFY_WITNESS;
1610 flags |= SCRIPT_VERIFY_NULLDUMMY;
1613 int64_t nTime2 = GetTimeMicros(); nTimeForks += nTime2 - nTime1;
1614 LogPrint(BCLog::BENCH, " - Fork checks: %.2fms [%.2fs]\n", 0.001 * (nTime2 - nTime1), nTimeForks * 0.000001);
1616 CBlockUndo blockundo;
1618 CCheckQueueControl<CScriptCheck> control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL);
1620 std::vector<int> prevheights;
1621 CAmount nFees = 0;
1622 int nInputs = 0;
1623 int64_t nSigOpsCost = 0;
1624 CDiskTxPos pos(pindex->GetBlockPos(), GetSizeOfCompactSize(block.vtx.size()));
1625 std::vector<std::pair<uint256, CDiskTxPos> > vPos;
1626 vPos.reserve(block.vtx.size());
1627 blockundo.vtxundo.reserve(block.vtx.size() - 1);
1628 std::vector<PrecomputedTransactionData> txdata;
1629 txdata.reserve(block.vtx.size()); // Required so that pointers to individual PrecomputedTransactionData don't get invalidated
1630 for (unsigned int i = 0; i < block.vtx.size(); i++)
1632 const CTransaction &tx = *(block.vtx[i]);
1634 nInputs += tx.vin.size();
1636 if (!tx.IsCoinBase())
1638 if (!view.HaveInputs(tx))
1639 return state.DoS(100, error("ConnectBlock(): inputs missing/spent"),
1640 REJECT_INVALID, "bad-txns-inputs-missingorspent");
1642 // Check that transaction is BIP68 final
1643 // BIP68 lock checks (as opposed to nLockTime checks) must
1644 // be in ConnectBlock because they require the UTXO set
1645 prevheights.resize(tx.vin.size());
1646 for (size_t j = 0; j < tx.vin.size(); j++) {
1647 prevheights[j] = view.AccessCoin(tx.vin[j].prevout).nHeight;
1650 if (!SequenceLocks(tx, nLockTimeFlags, &prevheights, *pindex)) {
1651 return state.DoS(100, error("%s: contains a non-BIP68-final transaction", __func__),
1652 REJECT_INVALID, "bad-txns-nonfinal");
1656 // GetTransactionSigOpCost counts 3 types of sigops:
1657 // * legacy (always)
1658 // * p2sh (when P2SH enabled in flags and excludes coinbase)
1659 // * witness (when witness enabled in flags and excludes coinbase)
1660 nSigOpsCost += GetTransactionSigOpCost(tx, view, flags);
1661 if (nSigOpsCost > MAX_BLOCK_SIGOPS_COST)
1662 return state.DoS(100, error("ConnectBlock(): too many sigops"),
1663 REJECT_INVALID, "bad-blk-sigops");
1665 txdata.emplace_back(tx);
1666 if (!tx.IsCoinBase())
1668 nFees += view.GetValueIn(tx)-tx.GetValueOut();
1670 std::vector<CScriptCheck> vChecks;
1671 bool fCacheResults = fJustCheck; /* Don't cache results if we're actually connecting blocks (still consult the cache, though) */
1672 if (!CheckInputs(tx, state, view, fScriptChecks, flags, fCacheResults, txdata[i], nScriptCheckThreads ? &vChecks : NULL))
1673 return error("ConnectBlock(): CheckInputs on %s failed with %s",
1674 tx.GetHash().ToString(), FormatStateMessage(state));
1675 control.Add(vChecks);
1678 CTxUndo undoDummy;
1679 if (i > 0) {
1680 blockundo.vtxundo.push_back(CTxUndo());
1682 UpdateCoins(tx, view, i == 0 ? undoDummy : blockundo.vtxundo.back(), pindex->nHeight);
1684 vPos.push_back(std::make_pair(tx.GetHash(), pos));
1685 pos.nTxOffset += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1687 int64_t nTime3 = GetTimeMicros(); nTimeConnect += nTime3 - nTime2;
1688 LogPrint(BCLog::BENCH, " - Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin) [%.2fs]\n", (unsigned)block.vtx.size(), 0.001 * (nTime3 - nTime2), 0.001 * (nTime3 - nTime2) / block.vtx.size(), nInputs <= 1 ? 0 : 0.001 * (nTime3 - nTime2) / (nInputs-1), nTimeConnect * 0.000001);
1690 CAmount blockReward = nFees + GetBlockSubsidy(pindex->nHeight, chainparams.GetConsensus());
1691 if (block.vtx[0]->GetValueOut() > blockReward)
1692 return state.DoS(100,
1693 error("ConnectBlock(): coinbase pays too much (actual=%d vs limit=%d)",
1694 block.vtx[0]->GetValueOut(), blockReward),
1695 REJECT_INVALID, "bad-cb-amount");
1697 if (!control.Wait())
1698 return state.DoS(100, error("%s: CheckQueue failed", __func__), REJECT_INVALID, "block-validation-failed");
1699 int64_t nTime4 = GetTimeMicros(); nTimeVerify += nTime4 - nTime2;
1700 LogPrint(BCLog::BENCH, " - Verify %u txins: %.2fms (%.3fms/txin) [%.2fs]\n", nInputs - 1, 0.001 * (nTime4 - nTime2), nInputs <= 1 ? 0 : 0.001 * (nTime4 - nTime2) / (nInputs-1), nTimeVerify * 0.000001);
1702 if (fJustCheck)
1703 return true;
1705 // Write undo information to disk
1706 if (pindex->GetUndoPos().IsNull() || !pindex->IsValid(BLOCK_VALID_SCRIPTS))
1708 if (pindex->GetUndoPos().IsNull()) {
1709 CDiskBlockPos _pos;
1710 if (!FindUndoPos(state, pindex->nFile, _pos, ::GetSerializeSize(blockundo, SER_DISK, CLIENT_VERSION) + 40))
1711 return error("ConnectBlock(): FindUndoPos failed");
1712 if (!UndoWriteToDisk(blockundo, _pos, pindex->pprev->GetBlockHash(), chainparams.MessageStart()))
1713 return AbortNode(state, "Failed to write undo data");
1715 // update nUndoPos in block index
1716 pindex->nUndoPos = _pos.nPos;
1717 pindex->nStatus |= BLOCK_HAVE_UNDO;
1720 pindex->RaiseValidity(BLOCK_VALID_SCRIPTS);
1721 setDirtyBlockIndex.insert(pindex);
1724 if (fTxIndex)
1725 if (!pblocktree->WriteTxIndex(vPos))
1726 return AbortNode(state, "Failed to write transaction index");
1728 // add this block to the view's block chain
1729 view.SetBestBlock(pindex->GetBlockHash());
1731 int64_t nTime5 = GetTimeMicros(); nTimeIndex += nTime5 - nTime4;
1732 LogPrint(BCLog::BENCH, " - Index writing: %.2fms [%.2fs]\n", 0.001 * (nTime5 - nTime4), nTimeIndex * 0.000001);
1734 int64_t nTime6 = GetTimeMicros(); nTimeCallbacks += nTime6 - nTime5;
1735 LogPrint(BCLog::BENCH, " - Callbacks: %.2fms [%.2fs]\n", 0.001 * (nTime6 - nTime5), nTimeCallbacks * 0.000001);
1737 return true;
1741 * Update the on-disk chain state.
1742 * The caches and indexes are flushed depending on the mode we're called with
1743 * if they're too large, if it's been a while since the last write,
1744 * or always and in all cases if we're in prune mode and are deleting files.
1746 bool static FlushStateToDisk(const CChainParams& chainparams, CValidationState &state, FlushStateMode mode, int nManualPruneHeight) {
1747 int64_t nMempoolUsage = mempool.DynamicMemoryUsage();
1748 LOCK2(cs_main, cs_LastBlockFile);
1749 static int64_t nLastWrite = 0;
1750 static int64_t nLastFlush = 0;
1751 static int64_t nLastSetChain = 0;
1752 std::set<int> setFilesToPrune;
1753 bool fFlushForPrune = false;
1754 try {
1755 if (fPruneMode && (fCheckForPruning || nManualPruneHeight > 0) && !fReindex) {
1756 if (nManualPruneHeight > 0) {
1757 FindFilesToPruneManual(setFilesToPrune, nManualPruneHeight);
1758 } else {
1759 FindFilesToPrune(setFilesToPrune, chainparams.PruneAfterHeight());
1760 fCheckForPruning = false;
1762 if (!setFilesToPrune.empty()) {
1763 fFlushForPrune = true;
1764 if (!fHavePruned) {
1765 pblocktree->WriteFlag("prunedblockfiles", true);
1766 fHavePruned = true;
1770 int64_t nNow = GetTimeMicros();
1771 // Avoid writing/flushing immediately after startup.
1772 if (nLastWrite == 0) {
1773 nLastWrite = nNow;
1775 if (nLastFlush == 0) {
1776 nLastFlush = nNow;
1778 if (nLastSetChain == 0) {
1779 nLastSetChain = nNow;
1781 int64_t nMempoolSizeMax = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000;
1782 int64_t cacheSize = pcoinsTip->DynamicMemoryUsage() * DB_PEAK_USAGE_FACTOR;
1783 int64_t nTotalSpace = nCoinCacheUsage + std::max<int64_t>(nMempoolSizeMax - nMempoolUsage, 0);
1784 // The cache is large and we're within 10% and 10 MiB of the limit, but we have time now (not in the middle of a block processing).
1785 bool fCacheLarge = mode == FLUSH_STATE_PERIODIC && cacheSize > std::max((9 * nTotalSpace) / 10, nTotalSpace - MAX_BLOCK_COINSDB_USAGE * 1024 * 1024);
1786 // The cache is over the limit, we have to write now.
1787 bool fCacheCritical = mode == FLUSH_STATE_IF_NEEDED && cacheSize > nTotalSpace;
1788 // It's been a while since we wrote the block index to disk. Do this frequently, so we don't need to redownload after a crash.
1789 bool fPeriodicWrite = mode == FLUSH_STATE_PERIODIC && nNow > nLastWrite + (int64_t)DATABASE_WRITE_INTERVAL * 1000000;
1790 // It's been very long since we flushed the cache. Do this infrequently, to optimize cache usage.
1791 bool fPeriodicFlush = mode == FLUSH_STATE_PERIODIC && nNow > nLastFlush + (int64_t)DATABASE_FLUSH_INTERVAL * 1000000;
1792 // Combine all conditions that result in a full cache flush.
1793 bool fDoFullFlush = (mode == FLUSH_STATE_ALWAYS) || fCacheLarge || fCacheCritical || fPeriodicFlush || fFlushForPrune;
1794 // Write blocks and block index to disk.
1795 if (fDoFullFlush || fPeriodicWrite) {
1796 // Depend on nMinDiskSpace to ensure we can write block index
1797 if (!CheckDiskSpace(0))
1798 return state.Error("out of disk space");
1799 // First make sure all block and undo data is flushed to disk.
1800 FlushBlockFile();
1801 // Then update all block file information (which may refer to block and undo files).
1803 std::vector<std::pair<int, const CBlockFileInfo*> > vFiles;
1804 vFiles.reserve(setDirtyFileInfo.size());
1805 for (std::set<int>::iterator it = setDirtyFileInfo.begin(); it != setDirtyFileInfo.end(); ) {
1806 vFiles.push_back(std::make_pair(*it, &vinfoBlockFile[*it]));
1807 setDirtyFileInfo.erase(it++);
1809 std::vector<const CBlockIndex*> vBlocks;
1810 vBlocks.reserve(setDirtyBlockIndex.size());
1811 for (std::set<CBlockIndex*>::iterator it = setDirtyBlockIndex.begin(); it != setDirtyBlockIndex.end(); ) {
1812 vBlocks.push_back(*it);
1813 setDirtyBlockIndex.erase(it++);
1815 if (!pblocktree->WriteBatchSync(vFiles, nLastBlockFile, vBlocks)) {
1816 return AbortNode(state, "Failed to write to block index database");
1819 // Finally remove any pruned files
1820 if (fFlushForPrune)
1821 UnlinkPrunedFiles(setFilesToPrune);
1822 nLastWrite = nNow;
1824 // Flush best chain related state. This can only be done if the blocks / block index write was also done.
1825 if (fDoFullFlush) {
1826 // Typical Coin structures on disk are around 48 bytes in size.
1827 // Pushing a new one to the database can cause it to be written
1828 // twice (once in the log, and once in the tables). This is already
1829 // an overestimation, as most will delete an existing entry or
1830 // overwrite one. Still, use a conservative safety factor of 2.
1831 if (!CheckDiskSpace(48 * 2 * 2 * pcoinsTip->GetCacheSize()))
1832 return state.Error("out of disk space");
1833 // Flush the chainstate (which may refer to block index entries).
1834 if (!pcoinsTip->Flush())
1835 return AbortNode(state, "Failed to write to coin database");
1836 nLastFlush = nNow;
1838 if (fDoFullFlush || ((mode == FLUSH_STATE_ALWAYS || mode == FLUSH_STATE_PERIODIC) && nNow > nLastSetChain + (int64_t)DATABASE_WRITE_INTERVAL * 1000000)) {
1839 // Update best block in wallet (so we can detect restored wallets).
1840 GetMainSignals().SetBestChain(chainActive.GetLocator());
1841 nLastSetChain = nNow;
1843 } catch (const std::runtime_error& e) {
1844 return AbortNode(state, std::string("System error while flushing: ") + e.what());
1846 return true;
1849 void FlushStateToDisk() {
1850 CValidationState state;
1851 const CChainParams& chainparams = Params();
1852 FlushStateToDisk(chainparams, state, FLUSH_STATE_ALWAYS);
1855 void PruneAndFlush() {
1856 CValidationState state;
1857 fCheckForPruning = true;
1858 const CChainParams& chainparams = Params();
1859 FlushStateToDisk(chainparams, state, FLUSH_STATE_NONE);
1862 static void DoWarning(const std::string& strWarning)
1864 static bool fWarned = false;
1865 SetMiscWarning(strWarning);
1866 if (!fWarned) {
1867 AlertNotify(strWarning);
1868 fWarned = true;
1872 /** Update chainActive and related internal data structures. */
1873 void static UpdateTip(CBlockIndex *pindexNew, const CChainParams& chainParams) {
1874 chainActive.SetTip(pindexNew);
1876 // New best block
1877 mempool.AddTransactionsUpdated(1);
1879 cvBlockChange.notify_all();
1881 std::vector<std::string> warningMessages;
1882 if (!IsInitialBlockDownload())
1884 int nUpgraded = 0;
1885 const CBlockIndex* pindex = chainActive.Tip();
1886 for (int bit = 0; bit < VERSIONBITS_NUM_BITS; bit++) {
1887 WarningBitsConditionChecker checker(bit);
1888 ThresholdState state = checker.GetStateFor(pindex, chainParams.GetConsensus(), warningcache[bit]);
1889 if (state == THRESHOLD_ACTIVE || state == THRESHOLD_LOCKED_IN) {
1890 const std::string strWarning = strprintf(_("Warning: unknown new rules activated (versionbit %i)"), bit);
1891 if (state == THRESHOLD_ACTIVE) {
1892 DoWarning(strWarning);
1893 } else {
1894 warningMessages.push_back(strWarning);
1898 // Check the version of the last 100 blocks to see if we need to upgrade:
1899 for (int i = 0; i < 100 && pindex != NULL; i++)
1901 int32_t nExpectedVersion = ComputeBlockVersion(pindex->pprev, chainParams.GetConsensus());
1902 if (pindex->nVersion > VERSIONBITS_LAST_OLD_BLOCK_VERSION && (pindex->nVersion & ~nExpectedVersion) != 0)
1903 ++nUpgraded;
1904 pindex = pindex->pprev;
1906 if (nUpgraded > 0)
1907 warningMessages.push_back(strprintf(_("%d of last 100 blocks have unexpected version"), nUpgraded));
1908 if (nUpgraded > 100/2)
1910 std::string strWarning = _("Warning: Unknown block versions being mined! It's possible unknown rules are in effect");
1911 // notify GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
1912 DoWarning(strWarning);
1915 LogPrintf("%s: new best=%s height=%d version=0x%08x log2_work=%.8g tx=%lu date='%s' progress=%f cache=%.1fMiB(%utxo)", __func__,
1916 chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), chainActive.Tip()->nVersion,
1917 log(chainActive.Tip()->nChainWork.getdouble())/log(2.0), (unsigned long)chainActive.Tip()->nChainTx,
1918 DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
1919 GuessVerificationProgress(chainParams.TxData(), chainActive.Tip()), pcoinsTip->DynamicMemoryUsage() * (1.0 / (1<<20)), pcoinsTip->GetCacheSize());
1920 if (!warningMessages.empty())
1921 LogPrintf(" warning='%s'", boost::algorithm::join(warningMessages, ", "));
1922 LogPrintf("\n");
1926 /** Disconnect chainActive's tip.
1927 * After calling, the mempool will be in an inconsistent state, with
1928 * transactions from disconnected blocks being added to disconnectpool. You
1929 * should make the mempool consistent again by calling UpdateMempoolForReorg.
1930 * with cs_main held.
1932 * If disconnectpool is NULL, then no disconnected transactions are added to
1933 * disconnectpool (note that the caller is responsible for mempool consistency
1934 * in any case).
1936 bool static DisconnectTip(CValidationState& state, const CChainParams& chainparams, DisconnectedBlockTransactions *disconnectpool)
1938 CBlockIndex *pindexDelete = chainActive.Tip();
1939 assert(pindexDelete);
1940 // Read block from disk.
1941 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
1942 CBlock& block = *pblock;
1943 if (!ReadBlockFromDisk(block, pindexDelete, chainparams.GetConsensus()))
1944 return AbortNode(state, "Failed to read block");
1945 // Apply the block atomically to the chain state.
1946 int64_t nStart = GetTimeMicros();
1948 CCoinsViewCache view(pcoinsTip);
1949 if (DisconnectBlock(block, pindexDelete, view) != DISCONNECT_OK)
1950 return error("DisconnectTip(): DisconnectBlock %s failed", pindexDelete->GetBlockHash().ToString());
1951 bool flushed = view.Flush();
1952 assert(flushed);
1954 LogPrint(BCLog::BENCH, "- Disconnect block: %.2fms\n", (GetTimeMicros() - nStart) * 0.001);
1955 // Write the chain state to disk, if necessary.
1956 if (!FlushStateToDisk(chainparams, state, FLUSH_STATE_IF_NEEDED))
1957 return false;
1959 if (disconnectpool) {
1960 // Save transactions to re-add to mempool at end of reorg
1961 for (auto it = block.vtx.rbegin(); it != block.vtx.rend(); ++it) {
1962 disconnectpool->addTransaction(*it);
1964 while (disconnectpool->DynamicMemoryUsage() > MAX_DISCONNECTED_TX_POOL_SIZE * 1000) {
1965 // Drop the earliest entry, and remove its children from the mempool.
1966 auto it = disconnectpool->queuedTx.get<insertion_order>().begin();
1967 mempool.removeRecursive(**it, MemPoolRemovalReason::REORG);
1968 disconnectpool->removeEntry(it);
1972 // Update chainActive and related variables.
1973 UpdateTip(pindexDelete->pprev, chainparams);
1974 // Let wallets know transactions went from 1-confirmed to
1975 // 0-confirmed or conflicted:
1976 GetMainSignals().BlockDisconnected(pblock);
1977 return true;
1980 static int64_t nTimeReadFromDisk = 0;
1981 static int64_t nTimeConnectTotal = 0;
1982 static int64_t nTimeFlush = 0;
1983 static int64_t nTimeChainState = 0;
1984 static int64_t nTimePostConnect = 0;
1986 struct PerBlockConnectTrace {
1987 CBlockIndex* pindex = NULL;
1988 std::shared_ptr<const CBlock> pblock;
1989 std::shared_ptr<std::vector<CTransactionRef>> conflictedTxs;
1990 PerBlockConnectTrace() : conflictedTxs(std::make_shared<std::vector<CTransactionRef>>()) {}
1993 * Used to track blocks whose transactions were applied to the UTXO state as a
1994 * part of a single ActivateBestChainStep call.
1996 * This class also tracks transactions that are removed from the mempool as
1997 * conflicts (per block) and can be used to pass all those transactions
1998 * through SyncTransaction.
2000 * This class assumes (and asserts) that the conflicted transactions for a given
2001 * block are added via mempool callbacks prior to the BlockConnected() associated
2002 * with those transactions. If any transactions are marked conflicted, it is
2003 * assumed that an associated block will always be added.
2005 * This class is single-use, once you call GetBlocksConnected() you have to throw
2006 * it away and make a new one.
2008 class ConnectTrace {
2009 private:
2010 std::vector<PerBlockConnectTrace> blocksConnected;
2011 CTxMemPool &pool;
2013 public:
2014 ConnectTrace(CTxMemPool &_pool) : blocksConnected(1), pool(_pool) {
2015 pool.NotifyEntryRemoved.connect(boost::bind(&ConnectTrace::NotifyEntryRemoved, this, _1, _2));
2018 ~ConnectTrace() {
2019 pool.NotifyEntryRemoved.disconnect(boost::bind(&ConnectTrace::NotifyEntryRemoved, this, _1, _2));
2022 void BlockConnected(CBlockIndex* pindex, std::shared_ptr<const CBlock> pblock) {
2023 assert(!blocksConnected.back().pindex);
2024 assert(pindex);
2025 assert(pblock);
2026 blocksConnected.back().pindex = pindex;
2027 blocksConnected.back().pblock = std::move(pblock);
2028 blocksConnected.emplace_back();
2031 std::vector<PerBlockConnectTrace>& GetBlocksConnected() {
2032 // We always keep one extra block at the end of our list because
2033 // blocks are added after all the conflicted transactions have
2034 // been filled in. Thus, the last entry should always be an empty
2035 // one waiting for the transactions from the next block. We pop
2036 // the last entry here to make sure the list we return is sane.
2037 assert(!blocksConnected.back().pindex);
2038 assert(blocksConnected.back().conflictedTxs->empty());
2039 blocksConnected.pop_back();
2040 return blocksConnected;
2043 void NotifyEntryRemoved(CTransactionRef txRemoved, MemPoolRemovalReason reason) {
2044 assert(!blocksConnected.back().pindex);
2045 if (reason == MemPoolRemovalReason::CONFLICT) {
2046 blocksConnected.back().conflictedTxs->emplace_back(std::move(txRemoved));
2052 * Connect a new block to chainActive. pblock is either NULL or a pointer to a CBlock
2053 * corresponding to pindexNew, to bypass loading it again from disk.
2055 * The block is added to connectTrace if connection succeeds.
2057 bool static ConnectTip(CValidationState& state, const CChainParams& chainparams, CBlockIndex* pindexNew, const std::shared_ptr<const CBlock>& pblock, ConnectTrace& connectTrace, DisconnectedBlockTransactions &disconnectpool)
2059 assert(pindexNew->pprev == chainActive.Tip());
2060 // Read block from disk.
2061 int64_t nTime1 = GetTimeMicros();
2062 std::shared_ptr<const CBlock> pthisBlock;
2063 if (!pblock) {
2064 std::shared_ptr<CBlock> pblockNew = std::make_shared<CBlock>();
2065 if (!ReadBlockFromDisk(*pblockNew, pindexNew, chainparams.GetConsensus()))
2066 return AbortNode(state, "Failed to read block");
2067 pthisBlock = pblockNew;
2068 } else {
2069 pthisBlock = pblock;
2071 const CBlock& blockConnecting = *pthisBlock;
2072 // Apply the block atomically to the chain state.
2073 int64_t nTime2 = GetTimeMicros(); nTimeReadFromDisk += nTime2 - nTime1;
2074 int64_t nTime3;
2075 LogPrint(BCLog::BENCH, " - Load block from disk: %.2fms [%.2fs]\n", (nTime2 - nTime1) * 0.001, nTimeReadFromDisk * 0.000001);
2077 CCoinsViewCache view(pcoinsTip);
2078 bool rv = ConnectBlock(blockConnecting, state, pindexNew, view, chainparams);
2079 GetMainSignals().BlockChecked(blockConnecting, state);
2080 if (!rv) {
2081 if (state.IsInvalid())
2082 InvalidBlockFound(pindexNew, state);
2083 return error("ConnectTip(): ConnectBlock %s failed", pindexNew->GetBlockHash().ToString());
2085 nTime3 = GetTimeMicros(); nTimeConnectTotal += nTime3 - nTime2;
2086 LogPrint(BCLog::BENCH, " - Connect total: %.2fms [%.2fs]\n", (nTime3 - nTime2) * 0.001, nTimeConnectTotal * 0.000001);
2087 bool flushed = view.Flush();
2088 assert(flushed);
2090 int64_t nTime4 = GetTimeMicros(); nTimeFlush += nTime4 - nTime3;
2091 LogPrint(BCLog::BENCH, " - Flush: %.2fms [%.2fs]\n", (nTime4 - nTime3) * 0.001, nTimeFlush * 0.000001);
2092 // Write the chain state to disk, if necessary.
2093 if (!FlushStateToDisk(chainparams, state, FLUSH_STATE_IF_NEEDED))
2094 return false;
2095 int64_t nTime5 = GetTimeMicros(); nTimeChainState += nTime5 - nTime4;
2096 LogPrint(BCLog::BENCH, " - Writing chainstate: %.2fms [%.2fs]\n", (nTime5 - nTime4) * 0.001, nTimeChainState * 0.000001);
2097 // Remove conflicting transactions from the mempool.;
2098 mempool.removeForBlock(blockConnecting.vtx, pindexNew->nHeight);
2099 disconnectpool.removeForBlock(blockConnecting.vtx);
2100 // Update chainActive & related variables.
2101 UpdateTip(pindexNew, chainparams);
2103 int64_t nTime6 = GetTimeMicros(); nTimePostConnect += nTime6 - nTime5; nTimeTotal += nTime6 - nTime1;
2104 LogPrint(BCLog::BENCH, " - Connect postprocess: %.2fms [%.2fs]\n", (nTime6 - nTime5) * 0.001, nTimePostConnect * 0.000001);
2105 LogPrint(BCLog::BENCH, "- Connect block: %.2fms [%.2fs]\n", (nTime6 - nTime1) * 0.001, nTimeTotal * 0.000001);
2107 connectTrace.BlockConnected(pindexNew, std::move(pthisBlock));
2108 return true;
2112 * Return the tip of the chain with the most work in it, that isn't
2113 * known to be invalid (it's however far from certain to be valid).
2115 static CBlockIndex* FindMostWorkChain() {
2116 do {
2117 CBlockIndex *pindexNew = NULL;
2119 // Find the best candidate header.
2121 std::set<CBlockIndex*, CBlockIndexWorkComparator>::reverse_iterator it = setBlockIndexCandidates.rbegin();
2122 if (it == setBlockIndexCandidates.rend())
2123 return NULL;
2124 pindexNew = *it;
2127 // Check whether all blocks on the path between the currently active chain and the candidate are valid.
2128 // Just going until the active chain is an optimization, as we know all blocks in it are valid already.
2129 CBlockIndex *pindexTest = pindexNew;
2130 bool fInvalidAncestor = false;
2131 while (pindexTest && !chainActive.Contains(pindexTest)) {
2132 assert(pindexTest->nChainTx || pindexTest->nHeight == 0);
2134 // Pruned nodes may have entries in setBlockIndexCandidates for
2135 // which block files have been deleted. Remove those as candidates
2136 // for the most work chain if we come across them; we can't switch
2137 // to a chain unless we have all the non-active-chain parent blocks.
2138 bool fFailedChain = pindexTest->nStatus & BLOCK_FAILED_MASK;
2139 bool fMissingData = !(pindexTest->nStatus & BLOCK_HAVE_DATA);
2140 if (fFailedChain || fMissingData) {
2141 // Candidate chain is not usable (either invalid or missing data)
2142 if (fFailedChain && (pindexBestInvalid == NULL || pindexNew->nChainWork > pindexBestInvalid->nChainWork))
2143 pindexBestInvalid = pindexNew;
2144 CBlockIndex *pindexFailed = pindexNew;
2145 // Remove the entire chain from the set.
2146 while (pindexTest != pindexFailed) {
2147 if (fFailedChain) {
2148 pindexFailed->nStatus |= BLOCK_FAILED_CHILD;
2149 } else if (fMissingData) {
2150 // If we're missing data, then add back to mapBlocksUnlinked,
2151 // so that if the block arrives in the future we can try adding
2152 // to setBlockIndexCandidates again.
2153 mapBlocksUnlinked.insert(std::make_pair(pindexFailed->pprev, pindexFailed));
2155 setBlockIndexCandidates.erase(pindexFailed);
2156 pindexFailed = pindexFailed->pprev;
2158 setBlockIndexCandidates.erase(pindexTest);
2159 fInvalidAncestor = true;
2160 break;
2162 pindexTest = pindexTest->pprev;
2164 if (!fInvalidAncestor)
2165 return pindexNew;
2166 } while(true);
2169 /** Delete all entries in setBlockIndexCandidates that are worse than the current tip. */
2170 static void PruneBlockIndexCandidates() {
2171 // Note that we can't delete the current block itself, as we may need to return to it later in case a
2172 // reorganization to a better block fails.
2173 std::set<CBlockIndex*, CBlockIndexWorkComparator>::iterator it = setBlockIndexCandidates.begin();
2174 while (it != setBlockIndexCandidates.end() && setBlockIndexCandidates.value_comp()(*it, chainActive.Tip())) {
2175 setBlockIndexCandidates.erase(it++);
2177 // Either the current tip or a successor of it we're working towards is left in setBlockIndexCandidates.
2178 assert(!setBlockIndexCandidates.empty());
2182 * Try to make some progress towards making pindexMostWork the active block.
2183 * pblock is either NULL or a pointer to a CBlock corresponding to pindexMostWork.
2185 static bool ActivateBestChainStep(CValidationState& state, const CChainParams& chainparams, CBlockIndex* pindexMostWork, const std::shared_ptr<const CBlock>& pblock, bool& fInvalidFound, ConnectTrace& connectTrace)
2187 AssertLockHeld(cs_main);
2188 const CBlockIndex *pindexOldTip = chainActive.Tip();
2189 const CBlockIndex *pindexFork = chainActive.FindFork(pindexMostWork);
2191 // Disconnect active blocks which are no longer in the best chain.
2192 bool fBlocksDisconnected = false;
2193 DisconnectedBlockTransactions disconnectpool;
2194 while (chainActive.Tip() && chainActive.Tip() != pindexFork) {
2195 if (!DisconnectTip(state, chainparams, &disconnectpool)) {
2196 // This is likely a fatal error, but keep the mempool consistent,
2197 // just in case. Only remove from the mempool in this case.
2198 UpdateMempoolForReorg(disconnectpool, false);
2199 return false;
2201 fBlocksDisconnected = true;
2204 // Build list of new blocks to connect.
2205 std::vector<CBlockIndex*> vpindexToConnect;
2206 bool fContinue = true;
2207 int nHeight = pindexFork ? pindexFork->nHeight : -1;
2208 while (fContinue && nHeight != pindexMostWork->nHeight) {
2209 // Don't iterate the entire list of potential improvements toward the best tip, as we likely only need
2210 // a few blocks along the way.
2211 int nTargetHeight = std::min(nHeight + 32, pindexMostWork->nHeight);
2212 vpindexToConnect.clear();
2213 vpindexToConnect.reserve(nTargetHeight - nHeight);
2214 CBlockIndex *pindexIter = pindexMostWork->GetAncestor(nTargetHeight);
2215 while (pindexIter && pindexIter->nHeight != nHeight) {
2216 vpindexToConnect.push_back(pindexIter);
2217 pindexIter = pindexIter->pprev;
2219 nHeight = nTargetHeight;
2221 // Connect new blocks.
2222 BOOST_REVERSE_FOREACH(CBlockIndex *pindexConnect, vpindexToConnect) {
2223 if (!ConnectTip(state, chainparams, pindexConnect, pindexConnect == pindexMostWork ? pblock : std::shared_ptr<const CBlock>(), connectTrace, disconnectpool)) {
2224 if (state.IsInvalid()) {
2225 // The block violates a consensus rule.
2226 if (!state.CorruptionPossible())
2227 InvalidChainFound(vpindexToConnect.back());
2228 state = CValidationState();
2229 fInvalidFound = true;
2230 fContinue = false;
2231 break;
2232 } else {
2233 // A system error occurred (disk space, database error, ...).
2234 // Make the mempool consistent with the current tip, just in case
2235 // any observers try to use it before shutdown.
2236 UpdateMempoolForReorg(disconnectpool, false);
2237 return false;
2239 } else {
2240 PruneBlockIndexCandidates();
2241 if (!pindexOldTip || chainActive.Tip()->nChainWork > pindexOldTip->nChainWork) {
2242 // We're in a better position than we were. Return temporarily to release the lock.
2243 fContinue = false;
2244 break;
2250 if (fBlocksDisconnected) {
2251 // If any blocks were disconnected, disconnectpool may be non empty. Add
2252 // any disconnected transactions back to the mempool.
2253 UpdateMempoolForReorg(disconnectpool, true);
2255 mempool.check(pcoinsTip);
2257 // Callbacks/notifications for a new best chain.
2258 if (fInvalidFound)
2259 CheckForkWarningConditionsOnNewFork(vpindexToConnect.back());
2260 else
2261 CheckForkWarningConditions();
2263 return true;
2266 static void NotifyHeaderTip() {
2267 bool fNotify = false;
2268 bool fInitialBlockDownload = false;
2269 static CBlockIndex* pindexHeaderOld = NULL;
2270 CBlockIndex* pindexHeader = NULL;
2272 LOCK(cs_main);
2273 pindexHeader = pindexBestHeader;
2275 if (pindexHeader != pindexHeaderOld) {
2276 fNotify = true;
2277 fInitialBlockDownload = IsInitialBlockDownload();
2278 pindexHeaderOld = pindexHeader;
2281 // Send block tip changed notifications without cs_main
2282 if (fNotify) {
2283 uiInterface.NotifyHeaderTip(fInitialBlockDownload, pindexHeader);
2288 * Make the best chain active, in multiple steps. The result is either failure
2289 * or an activated best chain. pblock is either NULL or a pointer to a block
2290 * that is already loaded (to avoid loading it again from disk).
2292 bool ActivateBestChain(CValidationState &state, const CChainParams& chainparams, std::shared_ptr<const CBlock> pblock) {
2293 // Note that while we're often called here from ProcessNewBlock, this is
2294 // far from a guarantee. Things in the P2P/RPC will often end up calling
2295 // us in the middle of ProcessNewBlock - do not assume pblock is set
2296 // sanely for performance or correctness!
2298 CBlockIndex *pindexMostWork = NULL;
2299 CBlockIndex *pindexNewTip = NULL;
2300 int nStopAtHeight = GetArg("-stopatheight", DEFAULT_STOPATHEIGHT);
2301 do {
2302 boost::this_thread::interruption_point();
2303 if (ShutdownRequested())
2304 break;
2306 const CBlockIndex *pindexFork;
2307 bool fInitialDownload;
2309 LOCK(cs_main);
2310 ConnectTrace connectTrace(mempool); // Destructed before cs_main is unlocked
2312 CBlockIndex *pindexOldTip = chainActive.Tip();
2313 if (pindexMostWork == NULL) {
2314 pindexMostWork = FindMostWorkChain();
2317 // Whether we have anything to do at all.
2318 if (pindexMostWork == NULL || pindexMostWork == chainActive.Tip())
2319 return true;
2321 bool fInvalidFound = false;
2322 std::shared_ptr<const CBlock> nullBlockPtr;
2323 if (!ActivateBestChainStep(state, chainparams, pindexMostWork, pblock && pblock->GetHash() == pindexMostWork->GetBlockHash() ? pblock : nullBlockPtr, fInvalidFound, connectTrace))
2324 return false;
2326 if (fInvalidFound) {
2327 // Wipe cache, we may need another branch now.
2328 pindexMostWork = NULL;
2330 pindexNewTip = chainActive.Tip();
2331 pindexFork = chainActive.FindFork(pindexOldTip);
2332 fInitialDownload = IsInitialBlockDownload();
2334 for (const PerBlockConnectTrace& trace : connectTrace.GetBlocksConnected()) {
2335 assert(trace.pblock && trace.pindex);
2336 GetMainSignals().BlockConnected(trace.pblock, trace.pindex, *trace.conflictedTxs);
2339 // When we reach this point, we switched to a new tip (stored in pindexNewTip).
2341 // Notifications/callbacks that can run without cs_main
2343 // Notify external listeners about the new tip.
2344 GetMainSignals().UpdatedBlockTip(pindexNewTip, pindexFork, fInitialDownload);
2346 // Always notify the UI if a new block tip was connected
2347 if (pindexFork != pindexNewTip) {
2348 uiInterface.NotifyBlockTip(fInitialDownload, pindexNewTip);
2351 if (nStopAtHeight && pindexNewTip && pindexNewTip->nHeight >= nStopAtHeight) StartShutdown();
2352 } while (pindexNewTip != pindexMostWork);
2353 CheckBlockIndex(chainparams.GetConsensus());
2355 // Write changes periodically to disk, after relay.
2356 if (!FlushStateToDisk(chainparams, state, FLUSH_STATE_PERIODIC)) {
2357 return false;
2360 return true;
2364 bool PreciousBlock(CValidationState& state, const CChainParams& params, CBlockIndex *pindex)
2367 LOCK(cs_main);
2368 if (pindex->nChainWork < chainActive.Tip()->nChainWork) {
2369 // Nothing to do, this block is not at the tip.
2370 return true;
2372 if (chainActive.Tip()->nChainWork > nLastPreciousChainwork) {
2373 // The chain has been extended since the last call, reset the counter.
2374 nBlockReverseSequenceId = -1;
2376 nLastPreciousChainwork = chainActive.Tip()->nChainWork;
2377 setBlockIndexCandidates.erase(pindex);
2378 pindex->nSequenceId = nBlockReverseSequenceId;
2379 if (nBlockReverseSequenceId > std::numeric_limits<int32_t>::min()) {
2380 // We can't keep reducing the counter if somebody really wants to
2381 // call preciousblock 2**31-1 times on the same set of tips...
2382 nBlockReverseSequenceId--;
2384 if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS) && pindex->nChainTx) {
2385 setBlockIndexCandidates.insert(pindex);
2386 PruneBlockIndexCandidates();
2390 return ActivateBestChain(state, params);
2393 bool InvalidateBlock(CValidationState& state, const CChainParams& chainparams, CBlockIndex *pindex)
2395 AssertLockHeld(cs_main);
2397 // Mark the block itself as invalid.
2398 pindex->nStatus |= BLOCK_FAILED_VALID;
2399 setDirtyBlockIndex.insert(pindex);
2400 setBlockIndexCandidates.erase(pindex);
2402 DisconnectedBlockTransactions disconnectpool;
2403 while (chainActive.Contains(pindex)) {
2404 CBlockIndex *pindexWalk = chainActive.Tip();
2405 pindexWalk->nStatus |= BLOCK_FAILED_CHILD;
2406 setDirtyBlockIndex.insert(pindexWalk);
2407 setBlockIndexCandidates.erase(pindexWalk);
2408 // ActivateBestChain considers blocks already in chainActive
2409 // unconditionally valid already, so force disconnect away from it.
2410 if (!DisconnectTip(state, chainparams, &disconnectpool)) {
2411 // It's probably hopeless to try to make the mempool consistent
2412 // here if DisconnectTip failed, but we can try.
2413 UpdateMempoolForReorg(disconnectpool, false);
2414 return false;
2418 // DisconnectTip will add transactions to disconnectpool; try to add these
2419 // back to the mempool.
2420 UpdateMempoolForReorg(disconnectpool, true);
2422 // The resulting new best tip may not be in setBlockIndexCandidates anymore, so
2423 // add it again.
2424 BlockMap::iterator it = mapBlockIndex.begin();
2425 while (it != mapBlockIndex.end()) {
2426 if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && !setBlockIndexCandidates.value_comp()(it->second, chainActive.Tip())) {
2427 setBlockIndexCandidates.insert(it->second);
2429 it++;
2432 InvalidChainFound(pindex);
2433 uiInterface.NotifyBlockTip(IsInitialBlockDownload(), pindex->pprev);
2434 return true;
2437 bool ResetBlockFailureFlags(CBlockIndex *pindex) {
2438 AssertLockHeld(cs_main);
2440 int nHeight = pindex->nHeight;
2442 // Remove the invalidity flag from this block and all its descendants.
2443 BlockMap::iterator it = mapBlockIndex.begin();
2444 while (it != mapBlockIndex.end()) {
2445 if (!it->second->IsValid() && it->second->GetAncestor(nHeight) == pindex) {
2446 it->second->nStatus &= ~BLOCK_FAILED_MASK;
2447 setDirtyBlockIndex.insert(it->second);
2448 if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && setBlockIndexCandidates.value_comp()(chainActive.Tip(), it->second)) {
2449 setBlockIndexCandidates.insert(it->second);
2451 if (it->second == pindexBestInvalid) {
2452 // Reset invalid block marker if it was pointing to one of those.
2453 pindexBestInvalid = NULL;
2456 it++;
2459 // Remove the invalidity flag from all ancestors too.
2460 while (pindex != NULL) {
2461 if (pindex->nStatus & BLOCK_FAILED_MASK) {
2462 pindex->nStatus &= ~BLOCK_FAILED_MASK;
2463 setDirtyBlockIndex.insert(pindex);
2465 pindex = pindex->pprev;
2467 return true;
2470 static CBlockIndex* AddToBlockIndex(const CBlockHeader& block)
2472 // Check for duplicate
2473 uint256 hash = block.GetHash();
2474 BlockMap::iterator it = mapBlockIndex.find(hash);
2475 if (it != mapBlockIndex.end())
2476 return it->second;
2478 // Construct new block index object
2479 CBlockIndex* pindexNew = new CBlockIndex(block);
2480 assert(pindexNew);
2481 // We assign the sequence id to blocks only when the full data is available,
2482 // to avoid miners withholding blocks but broadcasting headers, to get a
2483 // competitive advantage.
2484 pindexNew->nSequenceId = 0;
2485 BlockMap::iterator mi = mapBlockIndex.insert(std::make_pair(hash, pindexNew)).first;
2486 pindexNew->phashBlock = &((*mi).first);
2487 BlockMap::iterator miPrev = mapBlockIndex.find(block.hashPrevBlock);
2488 if (miPrev != mapBlockIndex.end())
2490 pindexNew->pprev = (*miPrev).second;
2491 pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
2492 pindexNew->BuildSkip();
2494 pindexNew->nTimeMax = (pindexNew->pprev ? std::max(pindexNew->pprev->nTimeMax, pindexNew->nTime) : pindexNew->nTime);
2495 pindexNew->nChainWork = (pindexNew->pprev ? pindexNew->pprev->nChainWork : 0) + GetBlockProof(*pindexNew);
2496 pindexNew->RaiseValidity(BLOCK_VALID_TREE);
2497 if (pindexBestHeader == NULL || pindexBestHeader->nChainWork < pindexNew->nChainWork)
2498 pindexBestHeader = pindexNew;
2500 setDirtyBlockIndex.insert(pindexNew);
2502 return pindexNew;
2505 /** Mark a block as having its data received and checked (up to BLOCK_VALID_TRANSACTIONS). */
2506 static bool ReceivedBlockTransactions(const CBlock &block, CValidationState& state, CBlockIndex *pindexNew, const CDiskBlockPos& pos, const Consensus::Params& consensusParams)
2508 pindexNew->nTx = block.vtx.size();
2509 pindexNew->nChainTx = 0;
2510 pindexNew->nFile = pos.nFile;
2511 pindexNew->nDataPos = pos.nPos;
2512 pindexNew->nUndoPos = 0;
2513 pindexNew->nStatus |= BLOCK_HAVE_DATA;
2514 if (IsWitnessEnabled(pindexNew->pprev, consensusParams)) {
2515 pindexNew->nStatus |= BLOCK_OPT_WITNESS;
2517 pindexNew->RaiseValidity(BLOCK_VALID_TRANSACTIONS);
2518 setDirtyBlockIndex.insert(pindexNew);
2520 if (pindexNew->pprev == NULL || pindexNew->pprev->nChainTx) {
2521 // If pindexNew is the genesis block or all parents are BLOCK_VALID_TRANSACTIONS.
2522 std::deque<CBlockIndex*> queue;
2523 queue.push_back(pindexNew);
2525 // Recursively process any descendant blocks that now may be eligible to be connected.
2526 while (!queue.empty()) {
2527 CBlockIndex *pindex = queue.front();
2528 queue.pop_front();
2529 pindex->nChainTx = (pindex->pprev ? pindex->pprev->nChainTx : 0) + pindex->nTx;
2531 LOCK(cs_nBlockSequenceId);
2532 pindex->nSequenceId = nBlockSequenceId++;
2534 if (chainActive.Tip() == NULL || !setBlockIndexCandidates.value_comp()(pindex, chainActive.Tip())) {
2535 setBlockIndexCandidates.insert(pindex);
2537 std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> range = mapBlocksUnlinked.equal_range(pindex);
2538 while (range.first != range.second) {
2539 std::multimap<CBlockIndex*, CBlockIndex*>::iterator it = range.first;
2540 queue.push_back(it->second);
2541 range.first++;
2542 mapBlocksUnlinked.erase(it);
2545 } else {
2546 if (pindexNew->pprev && pindexNew->pprev->IsValid(BLOCK_VALID_TREE)) {
2547 mapBlocksUnlinked.insert(std::make_pair(pindexNew->pprev, pindexNew));
2551 return true;
2554 static bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAddSize, unsigned int nHeight, uint64_t nTime, bool fKnown = false)
2556 LOCK(cs_LastBlockFile);
2558 unsigned int nFile = fKnown ? pos.nFile : nLastBlockFile;
2559 if (vinfoBlockFile.size() <= nFile) {
2560 vinfoBlockFile.resize(nFile + 1);
2563 if (!fKnown) {
2564 while (vinfoBlockFile[nFile].nSize + nAddSize >= MAX_BLOCKFILE_SIZE) {
2565 nFile++;
2566 if (vinfoBlockFile.size() <= nFile) {
2567 vinfoBlockFile.resize(nFile + 1);
2570 pos.nFile = nFile;
2571 pos.nPos = vinfoBlockFile[nFile].nSize;
2574 if ((int)nFile != nLastBlockFile) {
2575 if (!fKnown) {
2576 LogPrintf("Leaving block file %i: %s\n", nLastBlockFile, vinfoBlockFile[nLastBlockFile].ToString());
2578 FlushBlockFile(!fKnown);
2579 nLastBlockFile = nFile;
2582 vinfoBlockFile[nFile].AddBlock(nHeight, nTime);
2583 if (fKnown)
2584 vinfoBlockFile[nFile].nSize = std::max(pos.nPos + nAddSize, vinfoBlockFile[nFile].nSize);
2585 else
2586 vinfoBlockFile[nFile].nSize += nAddSize;
2588 if (!fKnown) {
2589 unsigned int nOldChunks = (pos.nPos + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE;
2590 unsigned int nNewChunks = (vinfoBlockFile[nFile].nSize + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE;
2591 if (nNewChunks > nOldChunks) {
2592 if (fPruneMode)
2593 fCheckForPruning = true;
2594 if (CheckDiskSpace(nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos)) {
2595 FILE *file = OpenBlockFile(pos);
2596 if (file) {
2597 LogPrintf("Pre-allocating up to position 0x%x in blk%05u.dat\n", nNewChunks * BLOCKFILE_CHUNK_SIZE, pos.nFile);
2598 AllocateFileRange(file, pos.nPos, nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos);
2599 fclose(file);
2602 else
2603 return state.Error("out of disk space");
2607 setDirtyFileInfo.insert(nFile);
2608 return true;
2611 static bool FindUndoPos(CValidationState &state, int nFile, CDiskBlockPos &pos, unsigned int nAddSize)
2613 pos.nFile = nFile;
2615 LOCK(cs_LastBlockFile);
2617 unsigned int nNewSize;
2618 pos.nPos = vinfoBlockFile[nFile].nUndoSize;
2619 nNewSize = vinfoBlockFile[nFile].nUndoSize += nAddSize;
2620 setDirtyFileInfo.insert(nFile);
2622 unsigned int nOldChunks = (pos.nPos + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE;
2623 unsigned int nNewChunks = (nNewSize + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE;
2624 if (nNewChunks > nOldChunks) {
2625 if (fPruneMode)
2626 fCheckForPruning = true;
2627 if (CheckDiskSpace(nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos)) {
2628 FILE *file = OpenUndoFile(pos);
2629 if (file) {
2630 LogPrintf("Pre-allocating up to position 0x%x in rev%05u.dat\n", nNewChunks * UNDOFILE_CHUNK_SIZE, pos.nFile);
2631 AllocateFileRange(file, pos.nPos, nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos);
2632 fclose(file);
2635 else
2636 return state.Error("out of disk space");
2639 return true;
2642 static bool CheckBlockHeader(const CBlockHeader& block, CValidationState& state, const Consensus::Params& consensusParams, bool fCheckPOW = true)
2644 // Check proof of work matches claimed amount
2645 if (fCheckPOW && !CheckProofOfWork(block.GetHash(), block.nBits, consensusParams))
2646 return state.DoS(50, false, REJECT_INVALID, "high-hash", false, "proof of work failed");
2648 return true;
2651 bool CheckBlock(const CBlock& block, CValidationState& state, const Consensus::Params& consensusParams, bool fCheckPOW, bool fCheckMerkleRoot)
2653 // These are checks that are independent of context.
2655 if (block.fChecked)
2656 return true;
2658 // Check that the header is valid (particularly PoW). This is mostly
2659 // redundant with the call in AcceptBlockHeader.
2660 if (!CheckBlockHeader(block, state, consensusParams, fCheckPOW))
2661 return false;
2663 // Check the merkle root.
2664 if (fCheckMerkleRoot) {
2665 bool mutated;
2666 uint256 hashMerkleRoot2 = BlockMerkleRoot(block, &mutated);
2667 if (block.hashMerkleRoot != hashMerkleRoot2)
2668 return state.DoS(100, false, REJECT_INVALID, "bad-txnmrklroot", true, "hashMerkleRoot mismatch");
2670 // Check for merkle tree malleability (CVE-2012-2459): repeating sequences
2671 // of transactions in a block without affecting the merkle root of a block,
2672 // while still invalidating it.
2673 if (mutated)
2674 return state.DoS(100, false, REJECT_INVALID, "bad-txns-duplicate", true, "duplicate transaction");
2677 // All potential-corruption validation must be done before we do any
2678 // transaction validation, as otherwise we may mark the header as invalid
2679 // because we receive the wrong transactions for it.
2680 // Note that witness malleability is checked in ContextualCheckBlock, so no
2681 // checks that use witness data may be performed here.
2683 // Size limits
2684 if (block.vtx.empty() || block.vtx.size() > MAX_BLOCK_BASE_SIZE || ::GetSerializeSize(block, SER_NETWORK, PROTOCOL_VERSION | SERIALIZE_TRANSACTION_NO_WITNESS) > MAX_BLOCK_BASE_SIZE)
2685 return state.DoS(100, false, REJECT_INVALID, "bad-blk-length", false, "size limits failed");
2687 // First transaction must be coinbase, the rest must not be
2688 if (block.vtx.empty() || !block.vtx[0]->IsCoinBase())
2689 return state.DoS(100, false, REJECT_INVALID, "bad-cb-missing", false, "first tx is not coinbase");
2690 for (unsigned int i = 1; i < block.vtx.size(); i++)
2691 if (block.vtx[i]->IsCoinBase())
2692 return state.DoS(100, false, REJECT_INVALID, "bad-cb-multiple", false, "more than one coinbase");
2694 // Check transactions
2695 for (const auto& tx : block.vtx)
2696 if (!CheckTransaction(*tx, state, false))
2697 return state.Invalid(false, state.GetRejectCode(), state.GetRejectReason(),
2698 strprintf("Transaction check failed (tx hash %s) %s", tx->GetHash().ToString(), state.GetDebugMessage()));
2700 unsigned int nSigOps = 0;
2701 for (const auto& tx : block.vtx)
2703 nSigOps += GetLegacySigOpCount(*tx);
2705 if (nSigOps * WITNESS_SCALE_FACTOR > MAX_BLOCK_SIGOPS_COST)
2706 return state.DoS(100, false, REJECT_INVALID, "bad-blk-sigops", false, "out-of-bounds SigOpCount");
2708 if (fCheckPOW && fCheckMerkleRoot)
2709 block.fChecked = true;
2711 return true;
2714 static bool CheckIndexAgainstCheckpoint(const CBlockIndex* pindexPrev, CValidationState& state, const CChainParams& chainparams, const uint256& hash)
2716 if (*pindexPrev->phashBlock == chainparams.GetConsensus().hashGenesisBlock)
2717 return true;
2719 int nHeight = pindexPrev->nHeight+1;
2720 // Don't accept any forks from the main chain prior to last checkpoint.
2721 // GetLastCheckpoint finds the last checkpoint in MapCheckpoints that's in our
2722 // MapBlockIndex.
2723 CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(chainparams.Checkpoints());
2724 if (pcheckpoint && nHeight < pcheckpoint->nHeight)
2725 return state.DoS(100, error("%s: forked chain older than last checkpoint (height %d)", __func__, nHeight), REJECT_CHECKPOINT, "bad-fork-prior-to-checkpoint");
2727 return true;
2730 bool IsWitnessEnabled(const CBlockIndex* pindexPrev, const Consensus::Params& params)
2732 LOCK(cs_main);
2733 return (VersionBitsState(pindexPrev, params, Consensus::DEPLOYMENT_SEGWIT, versionbitscache) == THRESHOLD_ACTIVE);
2736 // Compute at which vout of the block's coinbase transaction the witness
2737 // commitment occurs, or -1 if not found.
2738 static int GetWitnessCommitmentIndex(const CBlock& block)
2740 int commitpos = -1;
2741 if (!block.vtx.empty()) {
2742 for (size_t o = 0; o < block.vtx[0]->vout.size(); o++) {
2743 if (block.vtx[0]->vout[o].scriptPubKey.size() >= 38 && block.vtx[0]->vout[o].scriptPubKey[0] == OP_RETURN && block.vtx[0]->vout[o].scriptPubKey[1] == 0x24 && block.vtx[0]->vout[o].scriptPubKey[2] == 0xaa && block.vtx[0]->vout[o].scriptPubKey[3] == 0x21 && block.vtx[0]->vout[o].scriptPubKey[4] == 0xa9 && block.vtx[0]->vout[o].scriptPubKey[5] == 0xed) {
2744 commitpos = o;
2748 return commitpos;
2751 void UpdateUncommittedBlockStructures(CBlock& block, const CBlockIndex* pindexPrev, const Consensus::Params& consensusParams)
2753 int commitpos = GetWitnessCommitmentIndex(block);
2754 static const std::vector<unsigned char> nonce(32, 0x00);
2755 if (commitpos != -1 && IsWitnessEnabled(pindexPrev, consensusParams) && !block.vtx[0]->HasWitness()) {
2756 CMutableTransaction tx(*block.vtx[0]);
2757 tx.vin[0].scriptWitness.stack.resize(1);
2758 tx.vin[0].scriptWitness.stack[0] = nonce;
2759 block.vtx[0] = MakeTransactionRef(std::move(tx));
2763 std::vector<unsigned char> GenerateCoinbaseCommitment(CBlock& block, const CBlockIndex* pindexPrev, const Consensus::Params& consensusParams)
2765 std::vector<unsigned char> commitment;
2766 int commitpos = GetWitnessCommitmentIndex(block);
2767 std::vector<unsigned char> ret(32, 0x00);
2768 if (consensusParams.vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout != 0) {
2769 if (commitpos == -1) {
2770 uint256 witnessroot = BlockWitnessMerkleRoot(block, NULL);
2771 CHash256().Write(witnessroot.begin(), 32).Write(&ret[0], 32).Finalize(witnessroot.begin());
2772 CTxOut out;
2773 out.nValue = 0;
2774 out.scriptPubKey.resize(38);
2775 out.scriptPubKey[0] = OP_RETURN;
2776 out.scriptPubKey[1] = 0x24;
2777 out.scriptPubKey[2] = 0xaa;
2778 out.scriptPubKey[3] = 0x21;
2779 out.scriptPubKey[4] = 0xa9;
2780 out.scriptPubKey[5] = 0xed;
2781 memcpy(&out.scriptPubKey[6], witnessroot.begin(), 32);
2782 commitment = std::vector<unsigned char>(out.scriptPubKey.begin(), out.scriptPubKey.end());
2783 CMutableTransaction tx(*block.vtx[0]);
2784 tx.vout.push_back(out);
2785 block.vtx[0] = MakeTransactionRef(std::move(tx));
2788 UpdateUncommittedBlockStructures(block, pindexPrev, consensusParams);
2789 return commitment;
2792 /** Context-dependent validity checks.
2793 * By "context", we mean only the previous block headers, but not the UTXO
2794 * set; UTXO-related validity checks are done in ConnectBlock(). */
2795 static bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& state, const Consensus::Params& consensusParams, const CBlockIndex* pindexPrev, int64_t nAdjustedTime)
2797 assert(pindexPrev != NULL);
2798 const int nHeight = pindexPrev->nHeight + 1;
2799 // Check proof of work
2800 if (block.nBits != GetNextWorkRequired(pindexPrev, &block, consensusParams))
2801 return state.DoS(100, false, REJECT_INVALID, "bad-diffbits", false, "incorrect proof of work");
2803 // Check timestamp against prev
2804 if (block.GetBlockTime() <= pindexPrev->GetMedianTimePast())
2805 return state.Invalid(false, REJECT_INVALID, "time-too-old", "block's timestamp is too early");
2807 // Check timestamp
2808 if (block.GetBlockTime() > nAdjustedTime + MAX_FUTURE_BLOCK_TIME)
2809 return state.Invalid(false, REJECT_INVALID, "time-too-new", "block timestamp too far in the future");
2811 // Reject outdated version blocks when 95% (75% on testnet) of the network has upgraded:
2812 // check for version 2, 3 and 4 upgrades
2813 if((block.nVersion < 2 && nHeight >= consensusParams.BIP34Height) ||
2814 (block.nVersion < 3 && nHeight >= consensusParams.BIP66Height) ||
2815 (block.nVersion < 4 && nHeight >= consensusParams.BIP65Height))
2816 return state.Invalid(false, REJECT_OBSOLETE, strprintf("bad-version(0x%08x)", block.nVersion),
2817 strprintf("rejected nVersion=0x%08x block", block.nVersion));
2819 return true;
2822 static bool ContextualCheckBlock(const CBlock& block, CValidationState& state, const Consensus::Params& consensusParams, const CBlockIndex* pindexPrev)
2824 const int nHeight = pindexPrev == NULL ? 0 : pindexPrev->nHeight + 1;
2826 // Start enforcing BIP113 (Median Time Past) using versionbits logic.
2827 int nLockTimeFlags = 0;
2828 if (VersionBitsState(pindexPrev, consensusParams, Consensus::DEPLOYMENT_CSV, versionbitscache) == THRESHOLD_ACTIVE) {
2829 nLockTimeFlags |= LOCKTIME_MEDIAN_TIME_PAST;
2832 int64_t nLockTimeCutoff = (nLockTimeFlags & LOCKTIME_MEDIAN_TIME_PAST)
2833 ? pindexPrev->GetMedianTimePast()
2834 : block.GetBlockTime();
2836 // Check that all transactions are finalized
2837 for (const auto& tx : block.vtx) {
2838 if (!IsFinalTx(*tx, nHeight, nLockTimeCutoff)) {
2839 return state.DoS(10, false, REJECT_INVALID, "bad-txns-nonfinal", false, "non-final transaction");
2843 // Enforce rule that the coinbase starts with serialized block height
2844 if (nHeight >= consensusParams.BIP34Height)
2846 CScript expect = CScript() << nHeight;
2847 if (block.vtx[0]->vin[0].scriptSig.size() < expect.size() ||
2848 !std::equal(expect.begin(), expect.end(), block.vtx[0]->vin[0].scriptSig.begin())) {
2849 return state.DoS(100, false, REJECT_INVALID, "bad-cb-height", false, "block height mismatch in coinbase");
2853 // Validation for witness commitments.
2854 // * We compute the witness hash (which is the hash including witnesses) of all the block's transactions, except the
2855 // coinbase (where 0x0000....0000 is used instead).
2856 // * The coinbase scriptWitness is a stack of a single 32-byte vector, containing a witness nonce (unconstrained).
2857 // * We build a merkle tree with all those witness hashes as leaves (similar to the hashMerkleRoot in the block header).
2858 // * There must be at least one output whose scriptPubKey is a single 36-byte push, the first 4 bytes of which are
2859 // {0xaa, 0x21, 0xa9, 0xed}, and the following 32 bytes are SHA256^2(witness root, witness nonce). In case there are
2860 // multiple, the last one is used.
2861 bool fHaveWitness = false;
2862 if (VersionBitsState(pindexPrev, consensusParams, Consensus::DEPLOYMENT_SEGWIT, versionbitscache) == THRESHOLD_ACTIVE) {
2863 int commitpos = GetWitnessCommitmentIndex(block);
2864 if (commitpos != -1) {
2865 bool malleated = false;
2866 uint256 hashWitness = BlockWitnessMerkleRoot(block, &malleated);
2867 // The malleation check is ignored; as the transaction tree itself
2868 // already does not permit it, it is impossible to trigger in the
2869 // witness tree.
2870 if (block.vtx[0]->vin[0].scriptWitness.stack.size() != 1 || block.vtx[0]->vin[0].scriptWitness.stack[0].size() != 32) {
2871 return state.DoS(100, false, REJECT_INVALID, "bad-witness-nonce-size", true, strprintf("%s : invalid witness nonce size", __func__));
2873 CHash256().Write(hashWitness.begin(), 32).Write(&block.vtx[0]->vin[0].scriptWitness.stack[0][0], 32).Finalize(hashWitness.begin());
2874 if (memcmp(hashWitness.begin(), &block.vtx[0]->vout[commitpos].scriptPubKey[6], 32)) {
2875 return state.DoS(100, false, REJECT_INVALID, "bad-witness-merkle-match", true, strprintf("%s : witness merkle commitment mismatch", __func__));
2877 fHaveWitness = true;
2881 // No witness data is allowed in blocks that don't commit to witness data, as this would otherwise leave room for spam
2882 if (!fHaveWitness) {
2883 for (const auto& tx : block.vtx) {
2884 if (tx->HasWitness()) {
2885 return state.DoS(100, false, REJECT_INVALID, "unexpected-witness", true, strprintf("%s : unexpected witness data found", __func__));
2890 // After the coinbase witness nonce and commitment are verified,
2891 // we can check if the block weight passes (before we've checked the
2892 // coinbase witness, it would be possible for the weight to be too
2893 // large by filling up the coinbase witness, which doesn't change
2894 // the block hash, so we couldn't mark the block as permanently
2895 // failed).
2896 if (GetBlockWeight(block) > MAX_BLOCK_WEIGHT) {
2897 return state.DoS(100, false, REJECT_INVALID, "bad-blk-weight", false, strprintf("%s : weight limit failed", __func__));
2900 return true;
2903 static bool AcceptBlockHeader(const CBlockHeader& block, CValidationState& state, const CChainParams& chainparams, CBlockIndex** ppindex)
2905 AssertLockHeld(cs_main);
2906 // Check for duplicate
2907 uint256 hash = block.GetHash();
2908 BlockMap::iterator miSelf = mapBlockIndex.find(hash);
2909 CBlockIndex *pindex = NULL;
2910 if (hash != chainparams.GetConsensus().hashGenesisBlock) {
2912 if (miSelf != mapBlockIndex.end()) {
2913 // Block header is already known.
2914 pindex = miSelf->second;
2915 if (ppindex)
2916 *ppindex = pindex;
2917 if (pindex->nStatus & BLOCK_FAILED_MASK)
2918 return state.Invalid(error("%s: block %s is marked invalid", __func__, hash.ToString()), 0, "duplicate");
2919 return true;
2922 if (!CheckBlockHeader(block, state, chainparams.GetConsensus()))
2923 return error("%s: Consensus::CheckBlockHeader: %s, %s", __func__, hash.ToString(), FormatStateMessage(state));
2925 // Get prev block index
2926 CBlockIndex* pindexPrev = NULL;
2927 BlockMap::iterator mi = mapBlockIndex.find(block.hashPrevBlock);
2928 if (mi == mapBlockIndex.end())
2929 return state.DoS(10, error("%s: prev block not found", __func__), 0, "prev-blk-not-found");
2930 pindexPrev = (*mi).second;
2931 if (pindexPrev->nStatus & BLOCK_FAILED_MASK)
2932 return state.DoS(100, error("%s: prev block invalid", __func__), REJECT_INVALID, "bad-prevblk");
2934 assert(pindexPrev);
2935 if (fCheckpointsEnabled && !CheckIndexAgainstCheckpoint(pindexPrev, state, chainparams, hash))
2936 return error("%s: CheckIndexAgainstCheckpoint(): %s", __func__, state.GetRejectReason().c_str());
2938 if (!ContextualCheckBlockHeader(block, state, chainparams.GetConsensus(), pindexPrev, GetAdjustedTime()))
2939 return error("%s: Consensus::ContextualCheckBlockHeader: %s, %s", __func__, hash.ToString(), FormatStateMessage(state));
2941 if (pindex == NULL)
2942 pindex = AddToBlockIndex(block);
2944 if (ppindex)
2945 *ppindex = pindex;
2947 CheckBlockIndex(chainparams.GetConsensus());
2949 return true;
2952 // Exposed wrapper for AcceptBlockHeader
2953 bool ProcessNewBlockHeaders(const std::vector<CBlockHeader>& headers, CValidationState& state, const CChainParams& chainparams, const CBlockIndex** ppindex)
2956 LOCK(cs_main);
2957 for (const CBlockHeader& header : headers) {
2958 CBlockIndex *pindex = NULL; // Use a temp pindex instead of ppindex to avoid a const_cast
2959 if (!AcceptBlockHeader(header, state, chainparams, &pindex)) {
2960 return false;
2962 if (ppindex) {
2963 *ppindex = pindex;
2967 NotifyHeaderTip();
2968 return true;
2971 /** Store block on disk. If dbp is non-NULL, the file is known to already reside on disk */
2972 static bool AcceptBlock(const std::shared_ptr<const CBlock>& pblock, CValidationState& state, const CChainParams& chainparams, CBlockIndex** ppindex, bool fRequested, const CDiskBlockPos* dbp, bool* fNewBlock)
2974 const CBlock& block = *pblock;
2976 if (fNewBlock) *fNewBlock = false;
2977 AssertLockHeld(cs_main);
2979 CBlockIndex *pindexDummy = NULL;
2980 CBlockIndex *&pindex = ppindex ? *ppindex : pindexDummy;
2982 if (!AcceptBlockHeader(block, state, chainparams, &pindex))
2983 return false;
2985 // Try to process all requested blocks that we don't have, but only
2986 // process an unrequested block if it's new and has enough work to
2987 // advance our tip, and isn't too many blocks ahead.
2988 bool fAlreadyHave = pindex->nStatus & BLOCK_HAVE_DATA;
2989 bool fHasMoreWork = (chainActive.Tip() ? pindex->nChainWork > chainActive.Tip()->nChainWork : true);
2990 // Blocks that are too out-of-order needlessly limit the effectiveness of
2991 // pruning, because pruning will not delete block files that contain any
2992 // blocks which are too close in height to the tip. Apply this test
2993 // regardless of whether pruning is enabled; it should generally be safe to
2994 // not process unrequested blocks.
2995 bool fTooFarAhead = (pindex->nHeight > int(chainActive.Height() + MIN_BLOCKS_TO_KEEP));
2997 // TODO: Decouple this function from the block download logic by removing fRequested
2998 // This requires some new chain data structure to efficiently look up if a
2999 // block is in a chain leading to a candidate for best tip, despite not
3000 // being such a candidate itself.
3002 // TODO: deal better with return value and error conditions for duplicate
3003 // and unrequested blocks.
3004 if (fAlreadyHave) return true;
3005 if (!fRequested) { // If we didn't ask for it:
3006 if (pindex->nTx != 0) return true; // This is a previously-processed block that was pruned
3007 if (!fHasMoreWork) return true; // Don't process less-work chains
3008 if (fTooFarAhead) return true; // Block height is too high
3010 if (fNewBlock) *fNewBlock = true;
3012 if (!CheckBlock(block, state, chainparams.GetConsensus()) ||
3013 !ContextualCheckBlock(block, state, chainparams.GetConsensus(), pindex->pprev)) {
3014 if (state.IsInvalid() && !state.CorruptionPossible()) {
3015 pindex->nStatus |= BLOCK_FAILED_VALID;
3016 setDirtyBlockIndex.insert(pindex);
3018 return error("%s: %s", __func__, FormatStateMessage(state));
3021 // Header is valid/has work, merkle tree and segwit merkle tree are good...RELAY NOW
3022 // (but if it does not build on our best tip, let the SendMessages loop relay it)
3023 if (!IsInitialBlockDownload() && chainActive.Tip() == pindex->pprev)
3024 GetMainSignals().NewPoWValidBlock(pindex, pblock);
3026 int nHeight = pindex->nHeight;
3028 // Write block to history file
3029 try {
3030 unsigned int nBlockSize = ::GetSerializeSize(block, SER_DISK, CLIENT_VERSION);
3031 CDiskBlockPos blockPos;
3032 if (dbp != NULL)
3033 blockPos = *dbp;
3034 if (!FindBlockPos(state, blockPos, nBlockSize+8, nHeight, block.GetBlockTime(), dbp != NULL))
3035 return error("AcceptBlock(): FindBlockPos failed");
3036 if (dbp == NULL)
3037 if (!WriteBlockToDisk(block, blockPos, chainparams.MessageStart()))
3038 AbortNode(state, "Failed to write block");
3039 if (!ReceivedBlockTransactions(block, state, pindex, blockPos, chainparams.GetConsensus()))
3040 return error("AcceptBlock(): ReceivedBlockTransactions failed");
3041 } catch (const std::runtime_error& e) {
3042 return AbortNode(state, std::string("System error: ") + e.what());
3045 if (fCheckForPruning)
3046 FlushStateToDisk(chainparams, state, FLUSH_STATE_NONE); // we just allocated more disk space for block files
3048 return true;
3051 bool ProcessNewBlock(const CChainParams& chainparams, const std::shared_ptr<const CBlock> pblock, bool fForceProcessing, bool *fNewBlock)
3054 CBlockIndex *pindex = NULL;
3055 if (fNewBlock) *fNewBlock = false;
3056 CValidationState state;
3057 // Ensure that CheckBlock() passes before calling AcceptBlock, as
3058 // belt-and-suspenders.
3059 bool ret = CheckBlock(*pblock, state, chainparams.GetConsensus());
3061 LOCK(cs_main);
3063 if (ret) {
3064 // Store to disk
3065 ret = AcceptBlock(pblock, state, chainparams, &pindex, fForceProcessing, NULL, fNewBlock);
3067 CheckBlockIndex(chainparams.GetConsensus());
3068 if (!ret) {
3069 GetMainSignals().BlockChecked(*pblock, state);
3070 return error("%s: AcceptBlock FAILED", __func__);
3074 NotifyHeaderTip();
3076 CValidationState state; // Only used to report errors, not invalidity - ignore it
3077 if (!ActivateBestChain(state, chainparams, pblock))
3078 return error("%s: ActivateBestChain failed", __func__);
3080 return true;
3083 bool TestBlockValidity(CValidationState& state, const CChainParams& chainparams, const CBlock& block, CBlockIndex* pindexPrev, bool fCheckPOW, bool fCheckMerkleRoot)
3085 AssertLockHeld(cs_main);
3086 assert(pindexPrev && pindexPrev == chainActive.Tip());
3087 if (fCheckpointsEnabled && !CheckIndexAgainstCheckpoint(pindexPrev, state, chainparams, block.GetHash()))
3088 return error("%s: CheckIndexAgainstCheckpoint(): %s", __func__, state.GetRejectReason().c_str());
3090 CCoinsViewCache viewNew(pcoinsTip);
3091 CBlockIndex indexDummy(block);
3092 indexDummy.pprev = pindexPrev;
3093 indexDummy.nHeight = pindexPrev->nHeight + 1;
3095 // NOTE: CheckBlockHeader is called by CheckBlock
3096 if (!ContextualCheckBlockHeader(block, state, chainparams.GetConsensus(), pindexPrev, GetAdjustedTime()))
3097 return error("%s: Consensus::ContextualCheckBlockHeader: %s", __func__, FormatStateMessage(state));
3098 if (!CheckBlock(block, state, chainparams.GetConsensus(), fCheckPOW, fCheckMerkleRoot))
3099 return error("%s: Consensus::CheckBlock: %s", __func__, FormatStateMessage(state));
3100 if (!ContextualCheckBlock(block, state, chainparams.GetConsensus(), pindexPrev))
3101 return error("%s: Consensus::ContextualCheckBlock: %s", __func__, FormatStateMessage(state));
3102 if (!ConnectBlock(block, state, &indexDummy, viewNew, chainparams, true))
3103 return false;
3104 assert(state.IsValid());
3106 return true;
3110 * BLOCK PRUNING CODE
3113 /* Calculate the amount of disk space the block & undo files currently use */
3114 static uint64_t CalculateCurrentUsage()
3116 uint64_t retval = 0;
3117 for (const CBlockFileInfo &file : vinfoBlockFile) {
3118 retval += file.nSize + file.nUndoSize;
3120 return retval;
3123 /* Prune a block file (modify associated database entries)*/
3124 void PruneOneBlockFile(const int fileNumber)
3126 for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); ++it) {
3127 CBlockIndex* pindex = it->second;
3128 if (pindex->nFile == fileNumber) {
3129 pindex->nStatus &= ~BLOCK_HAVE_DATA;
3130 pindex->nStatus &= ~BLOCK_HAVE_UNDO;
3131 pindex->nFile = 0;
3132 pindex->nDataPos = 0;
3133 pindex->nUndoPos = 0;
3134 setDirtyBlockIndex.insert(pindex);
3136 // Prune from mapBlocksUnlinked -- any block we prune would have
3137 // to be downloaded again in order to consider its chain, at which
3138 // point it would be considered as a candidate for
3139 // mapBlocksUnlinked or setBlockIndexCandidates.
3140 std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> range = mapBlocksUnlinked.equal_range(pindex->pprev);
3141 while (range.first != range.second) {
3142 std::multimap<CBlockIndex *, CBlockIndex *>::iterator _it = range.first;
3143 range.first++;
3144 if (_it->second == pindex) {
3145 mapBlocksUnlinked.erase(_it);
3151 vinfoBlockFile[fileNumber].SetNull();
3152 setDirtyFileInfo.insert(fileNumber);
3156 void UnlinkPrunedFiles(const std::set<int>& setFilesToPrune)
3158 for (std::set<int>::iterator it = setFilesToPrune.begin(); it != setFilesToPrune.end(); ++it) {
3159 CDiskBlockPos pos(*it, 0);
3160 fs::remove(GetBlockPosFilename(pos, "blk"));
3161 fs::remove(GetBlockPosFilename(pos, "rev"));
3162 LogPrintf("Prune: %s deleted blk/rev (%05u)\n", __func__, *it);
3166 /* Calculate the block/rev files to delete based on height specified by user with RPC command pruneblockchain */
3167 static void FindFilesToPruneManual(std::set<int>& setFilesToPrune, int nManualPruneHeight)
3169 assert(fPruneMode && nManualPruneHeight > 0);
3171 LOCK2(cs_main, cs_LastBlockFile);
3172 if (chainActive.Tip() == NULL)
3173 return;
3175 // last block to prune is the lesser of (user-specified height, MIN_BLOCKS_TO_KEEP from the tip)
3176 unsigned int nLastBlockWeCanPrune = std::min((unsigned)nManualPruneHeight, chainActive.Tip()->nHeight - MIN_BLOCKS_TO_KEEP);
3177 int count=0;
3178 for (int fileNumber = 0; fileNumber < nLastBlockFile; fileNumber++) {
3179 if (vinfoBlockFile[fileNumber].nSize == 0 || vinfoBlockFile[fileNumber].nHeightLast > nLastBlockWeCanPrune)
3180 continue;
3181 PruneOneBlockFile(fileNumber);
3182 setFilesToPrune.insert(fileNumber);
3183 count++;
3185 LogPrintf("Prune (Manual): prune_height=%d removed %d blk/rev pairs\n", nLastBlockWeCanPrune, count);
3188 /* This function is called from the RPC code for pruneblockchain */
3189 void PruneBlockFilesManual(int nManualPruneHeight)
3191 CValidationState state;
3192 const CChainParams& chainparams = Params();
3193 FlushStateToDisk(chainparams, state, FLUSH_STATE_NONE, nManualPruneHeight);
3197 * Prune block and undo files (blk???.dat and undo???.dat) so that the disk space used is less than a user-defined target.
3198 * The user sets the target (in MB) on the command line or in config file. This will be run on startup and whenever new
3199 * space is allocated in a block or undo file, staying below the target. Changing back to unpruned requires a reindex
3200 * (which in this case means the blockchain must be re-downloaded.)
3202 * Pruning functions are called from FlushStateToDisk when the global fCheckForPruning flag has been set.
3203 * Block and undo files are deleted in lock-step (when blk00003.dat is deleted, so is rev00003.dat.)
3204 * Pruning cannot take place until the longest chain is at least a certain length (100000 on mainnet, 1000 on testnet, 1000 on regtest).
3205 * Pruning will never delete a block within a defined distance (currently 288) from the active chain's tip.
3206 * The block index is updated by unsetting HAVE_DATA and HAVE_UNDO for any blocks that were stored in the deleted files.
3207 * A db flag records the fact that at least some block files have been pruned.
3209 * @param[out] setFilesToPrune The set of file indices that can be unlinked will be returned
3211 static void FindFilesToPrune(std::set<int>& setFilesToPrune, uint64_t nPruneAfterHeight)
3213 LOCK2(cs_main, cs_LastBlockFile);
3214 if (chainActive.Tip() == NULL || nPruneTarget == 0) {
3215 return;
3217 if ((uint64_t)chainActive.Tip()->nHeight <= nPruneAfterHeight) {
3218 return;
3221 unsigned int nLastBlockWeCanPrune = chainActive.Tip()->nHeight - MIN_BLOCKS_TO_KEEP;
3222 uint64_t nCurrentUsage = CalculateCurrentUsage();
3223 // We don't check to prune until after we've allocated new space for files
3224 // So we should leave a buffer under our target to account for another allocation
3225 // before the next pruning.
3226 uint64_t nBuffer = BLOCKFILE_CHUNK_SIZE + UNDOFILE_CHUNK_SIZE;
3227 uint64_t nBytesToPrune;
3228 int count=0;
3230 if (nCurrentUsage + nBuffer >= nPruneTarget) {
3231 for (int fileNumber = 0; fileNumber < nLastBlockFile; fileNumber++) {
3232 nBytesToPrune = vinfoBlockFile[fileNumber].nSize + vinfoBlockFile[fileNumber].nUndoSize;
3234 if (vinfoBlockFile[fileNumber].nSize == 0)
3235 continue;
3237 if (nCurrentUsage + nBuffer < nPruneTarget) // are we below our target?
3238 break;
3240 // don't prune files that could have a block within MIN_BLOCKS_TO_KEEP of the main chain's tip but keep scanning
3241 if (vinfoBlockFile[fileNumber].nHeightLast > nLastBlockWeCanPrune)
3242 continue;
3244 PruneOneBlockFile(fileNumber);
3245 // Queue up the files for removal
3246 setFilesToPrune.insert(fileNumber);
3247 nCurrentUsage -= nBytesToPrune;
3248 count++;
3252 LogPrint(BCLog::PRUNE, "Prune: target=%dMiB actual=%dMiB diff=%dMiB max_prune_height=%d removed %d blk/rev pairs\n",
3253 nPruneTarget/1024/1024, nCurrentUsage/1024/1024,
3254 ((int64_t)nPruneTarget - (int64_t)nCurrentUsage)/1024/1024,
3255 nLastBlockWeCanPrune, count);
3258 bool CheckDiskSpace(uint64_t nAdditionalBytes)
3260 uint64_t nFreeBytesAvailable = fs::space(GetDataDir()).available;
3262 // Check for nMinDiskSpace bytes (currently 50MB)
3263 if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
3264 return AbortNode("Disk space is low!", _("Error: Disk space is low!"));
3266 return true;
3269 static FILE* OpenDiskFile(const CDiskBlockPos &pos, const char *prefix, bool fReadOnly)
3271 if (pos.IsNull())
3272 return NULL;
3273 fs::path path = GetBlockPosFilename(pos, prefix);
3274 fs::create_directories(path.parent_path());
3275 FILE* file = fsbridge::fopen(path, "rb+");
3276 if (!file && !fReadOnly)
3277 file = fsbridge::fopen(path, "wb+");
3278 if (!file) {
3279 LogPrintf("Unable to open file %s\n", path.string());
3280 return NULL;
3282 if (pos.nPos) {
3283 if (fseek(file, pos.nPos, SEEK_SET)) {
3284 LogPrintf("Unable to seek to position %u of %s\n", pos.nPos, path.string());
3285 fclose(file);
3286 return NULL;
3289 return file;
3292 FILE* OpenBlockFile(const CDiskBlockPos &pos, bool fReadOnly) {
3293 return OpenDiskFile(pos, "blk", fReadOnly);
3296 /** Open an undo file (rev?????.dat) */
3297 static FILE* OpenUndoFile(const CDiskBlockPos &pos, bool fReadOnly) {
3298 return OpenDiskFile(pos, "rev", fReadOnly);
3301 fs::path GetBlockPosFilename(const CDiskBlockPos &pos, const char *prefix)
3303 return GetDataDir() / "blocks" / strprintf("%s%05u.dat", prefix, pos.nFile);
3306 CBlockIndex * InsertBlockIndex(uint256 hash)
3308 if (hash.IsNull())
3309 return NULL;
3311 // Return existing
3312 BlockMap::iterator mi = mapBlockIndex.find(hash);
3313 if (mi != mapBlockIndex.end())
3314 return (*mi).second;
3316 // Create new
3317 CBlockIndex* pindexNew = new CBlockIndex();
3318 if (!pindexNew)
3319 throw std::runtime_error(std::string(__func__) + ": new CBlockIndex failed");
3320 mi = mapBlockIndex.insert(std::make_pair(hash, pindexNew)).first;
3321 pindexNew->phashBlock = &((*mi).first);
3323 return pindexNew;
3326 bool static LoadBlockIndexDB(const CChainParams& chainparams)
3328 if (!pblocktree->LoadBlockIndexGuts(InsertBlockIndex))
3329 return false;
3331 boost::this_thread::interruption_point();
3333 // Calculate nChainWork
3334 std::vector<std::pair<int, CBlockIndex*> > vSortedByHeight;
3335 vSortedByHeight.reserve(mapBlockIndex.size());
3336 for (const std::pair<uint256, CBlockIndex*>& item : mapBlockIndex)
3338 CBlockIndex* pindex = item.second;
3339 vSortedByHeight.push_back(std::make_pair(pindex->nHeight, pindex));
3341 sort(vSortedByHeight.begin(), vSortedByHeight.end());
3342 for (const std::pair<int, CBlockIndex*>& item : vSortedByHeight)
3344 CBlockIndex* pindex = item.second;
3345 pindex->nChainWork = (pindex->pprev ? pindex->pprev->nChainWork : 0) + GetBlockProof(*pindex);
3346 pindex->nTimeMax = (pindex->pprev ? std::max(pindex->pprev->nTimeMax, pindex->nTime) : pindex->nTime);
3347 // We can link the chain of blocks for which we've received transactions at some point.
3348 // Pruned nodes may have deleted the block.
3349 if (pindex->nTx > 0) {
3350 if (pindex->pprev) {
3351 if (pindex->pprev->nChainTx) {
3352 pindex->nChainTx = pindex->pprev->nChainTx + pindex->nTx;
3353 } else {
3354 pindex->nChainTx = 0;
3355 mapBlocksUnlinked.insert(std::make_pair(pindex->pprev, pindex));
3357 } else {
3358 pindex->nChainTx = pindex->nTx;
3361 if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS) && (pindex->nChainTx || pindex->pprev == NULL))
3362 setBlockIndexCandidates.insert(pindex);
3363 if (pindex->nStatus & BLOCK_FAILED_MASK && (!pindexBestInvalid || pindex->nChainWork > pindexBestInvalid->nChainWork))
3364 pindexBestInvalid = pindex;
3365 if (pindex->pprev)
3366 pindex->BuildSkip();
3367 if (pindex->IsValid(BLOCK_VALID_TREE) && (pindexBestHeader == NULL || CBlockIndexWorkComparator()(pindexBestHeader, pindex)))
3368 pindexBestHeader = pindex;
3371 // Load block file info
3372 pblocktree->ReadLastBlockFile(nLastBlockFile);
3373 vinfoBlockFile.resize(nLastBlockFile + 1);
3374 LogPrintf("%s: last block file = %i\n", __func__, nLastBlockFile);
3375 for (int nFile = 0; nFile <= nLastBlockFile; nFile++) {
3376 pblocktree->ReadBlockFileInfo(nFile, vinfoBlockFile[nFile]);
3378 LogPrintf("%s: last block file info: %s\n", __func__, vinfoBlockFile[nLastBlockFile].ToString());
3379 for (int nFile = nLastBlockFile + 1; true; nFile++) {
3380 CBlockFileInfo info;
3381 if (pblocktree->ReadBlockFileInfo(nFile, info)) {
3382 vinfoBlockFile.push_back(info);
3383 } else {
3384 break;
3388 // Check presence of blk files
3389 LogPrintf("Checking all blk files are present...\n");
3390 std::set<int> setBlkDataFiles;
3391 for (const std::pair<uint256, CBlockIndex*>& item : mapBlockIndex)
3393 CBlockIndex* pindex = item.second;
3394 if (pindex->nStatus & BLOCK_HAVE_DATA) {
3395 setBlkDataFiles.insert(pindex->nFile);
3398 for (std::set<int>::iterator it = setBlkDataFiles.begin(); it != setBlkDataFiles.end(); it++)
3400 CDiskBlockPos pos(*it, 0);
3401 if (CAutoFile(OpenBlockFile(pos, true), SER_DISK, CLIENT_VERSION).IsNull()) {
3402 return false;
3406 // Check whether we have ever pruned block & undo files
3407 pblocktree->ReadFlag("prunedblockfiles", fHavePruned);
3408 if (fHavePruned)
3409 LogPrintf("LoadBlockIndexDB(): Block files have previously been pruned\n");
3411 // Check whether we need to continue reindexing
3412 bool fReindexing = false;
3413 pblocktree->ReadReindexing(fReindexing);
3414 fReindex |= fReindexing;
3416 // Check whether we have a transaction index
3417 pblocktree->ReadFlag("txindex", fTxIndex);
3418 LogPrintf("%s: transaction index %s\n", __func__, fTxIndex ? "enabled" : "disabled");
3420 // Load pointer to end of best chain
3421 BlockMap::iterator it = mapBlockIndex.find(pcoinsTip->GetBestBlock());
3422 if (it == mapBlockIndex.end())
3423 return true;
3424 chainActive.SetTip(it->second);
3426 PruneBlockIndexCandidates();
3428 LogPrintf("%s: hashBestChain=%s height=%d date=%s progress=%f\n", __func__,
3429 chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(),
3430 DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
3431 GuessVerificationProgress(chainparams.TxData(), chainActive.Tip()));
3433 return true;
3436 CVerifyDB::CVerifyDB()
3438 uiInterface.ShowProgress(_("Verifying blocks..."), 0);
3441 CVerifyDB::~CVerifyDB()
3443 uiInterface.ShowProgress("", 100);
3446 bool CVerifyDB::VerifyDB(const CChainParams& chainparams, CCoinsView *coinsview, int nCheckLevel, int nCheckDepth)
3448 LOCK(cs_main);
3449 if (chainActive.Tip() == NULL || chainActive.Tip()->pprev == NULL)
3450 return true;
3452 // Verify blocks in the best chain
3453 if (nCheckDepth <= 0)
3454 nCheckDepth = 1000000000; // suffices until the year 19000
3455 if (nCheckDepth > chainActive.Height())
3456 nCheckDepth = chainActive.Height();
3457 nCheckLevel = std::max(0, std::min(4, nCheckLevel));
3458 LogPrintf("Verifying last %i blocks at level %i\n", nCheckDepth, nCheckLevel);
3459 CCoinsViewCache coins(coinsview);
3460 CBlockIndex* pindexState = chainActive.Tip();
3461 CBlockIndex* pindexFailure = NULL;
3462 int nGoodTransactions = 0;
3463 CValidationState state;
3464 int reportDone = 0;
3465 LogPrintf("[0%%]...");
3466 for (CBlockIndex* pindex = chainActive.Tip(); pindex && pindex->pprev; pindex = pindex->pprev)
3468 boost::this_thread::interruption_point();
3469 int percentageDone = std::max(1, std::min(99, (int)(((double)(chainActive.Height() - pindex->nHeight)) / (double)nCheckDepth * (nCheckLevel >= 4 ? 50 : 100))));
3470 if (reportDone < percentageDone/10) {
3471 // report every 10% step
3472 LogPrintf("[%d%%]...", percentageDone);
3473 reportDone = percentageDone/10;
3475 uiInterface.ShowProgress(_("Verifying blocks..."), percentageDone);
3476 if (pindex->nHeight < chainActive.Height()-nCheckDepth)
3477 break;
3478 if (fPruneMode && !(pindex->nStatus & BLOCK_HAVE_DATA)) {
3479 // If pruning, only go back as far as we have data.
3480 LogPrintf("VerifyDB(): block verification stopping at height %d (pruning, no data)\n", pindex->nHeight);
3481 break;
3483 CBlock block;
3484 // check level 0: read from disk
3485 if (!ReadBlockFromDisk(block, pindex, chainparams.GetConsensus()))
3486 return error("VerifyDB(): *** ReadBlockFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString());
3487 // check level 1: verify block validity
3488 if (nCheckLevel >= 1 && !CheckBlock(block, state, chainparams.GetConsensus()))
3489 return error("%s: *** found bad block at %d, hash=%s (%s)\n", __func__,
3490 pindex->nHeight, pindex->GetBlockHash().ToString(), FormatStateMessage(state));
3491 // check level 2: verify undo validity
3492 if (nCheckLevel >= 2 && pindex) {
3493 CBlockUndo undo;
3494 CDiskBlockPos pos = pindex->GetUndoPos();
3495 if (!pos.IsNull()) {
3496 if (!UndoReadFromDisk(undo, pos, pindex->pprev->GetBlockHash()))
3497 return error("VerifyDB(): *** found bad undo data at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString());
3500 // check level 3: check for inconsistencies during memory-only disconnect of tip blocks
3501 if (nCheckLevel >= 3 && pindex == pindexState && (coins.DynamicMemoryUsage() + pcoinsTip->DynamicMemoryUsage()) <= nCoinCacheUsage) {
3502 DisconnectResult res = DisconnectBlock(block, pindex, coins);
3503 if (res == DISCONNECT_FAILED) {
3504 return error("VerifyDB(): *** irrecoverable inconsistency in block data at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString());
3506 pindexState = pindex->pprev;
3507 if (res == DISCONNECT_UNCLEAN) {
3508 nGoodTransactions = 0;
3509 pindexFailure = pindex;
3510 } else {
3511 nGoodTransactions += block.vtx.size();
3514 if (ShutdownRequested())
3515 return true;
3517 if (pindexFailure)
3518 return error("VerifyDB(): *** coin database inconsistencies found (last %i blocks, %i good transactions before that)\n", chainActive.Height() - pindexFailure->nHeight + 1, nGoodTransactions);
3520 // check level 4: try reconnecting blocks
3521 if (nCheckLevel >= 4) {
3522 CBlockIndex *pindex = pindexState;
3523 while (pindex != chainActive.Tip()) {
3524 boost::this_thread::interruption_point();
3525 uiInterface.ShowProgress(_("Verifying blocks..."), std::max(1, std::min(99, 100 - (int)(((double)(chainActive.Height() - pindex->nHeight)) / (double)nCheckDepth * 50))));
3526 pindex = chainActive.Next(pindex);
3527 CBlock block;
3528 if (!ReadBlockFromDisk(block, pindex, chainparams.GetConsensus()))
3529 return error("VerifyDB(): *** ReadBlockFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString());
3530 if (!ConnectBlock(block, state, pindex, coins, chainparams))
3531 return error("VerifyDB(): *** found unconnectable block at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString());
3535 LogPrintf("[DONE].\n");
3536 LogPrintf("No coin database inconsistencies in last %i blocks (%i transactions)\n", chainActive.Height() - pindexState->nHeight, nGoodTransactions);
3538 return true;
3541 bool RewindBlockIndex(const CChainParams& params)
3543 LOCK(cs_main);
3545 int nHeight = 1;
3546 while (nHeight <= chainActive.Height()) {
3547 if (IsWitnessEnabled(chainActive[nHeight - 1], params.GetConsensus()) && !(chainActive[nHeight]->nStatus & BLOCK_OPT_WITNESS)) {
3548 break;
3550 nHeight++;
3553 // nHeight is now the height of the first insufficiently-validated block, or tipheight + 1
3554 CValidationState state;
3555 CBlockIndex* pindex = chainActive.Tip();
3556 while (chainActive.Height() >= nHeight) {
3557 if (fPruneMode && !(chainActive.Tip()->nStatus & BLOCK_HAVE_DATA)) {
3558 // If pruning, don't try rewinding past the HAVE_DATA point;
3559 // since older blocks can't be served anyway, there's
3560 // no need to walk further, and trying to DisconnectTip()
3561 // will fail (and require a needless reindex/redownload
3562 // of the blockchain).
3563 break;
3565 if (!DisconnectTip(state, params, NULL)) {
3566 return error("RewindBlockIndex: unable to disconnect block at height %i", pindex->nHeight);
3568 // Occasionally flush state to disk.
3569 if (!FlushStateToDisk(params, state, FLUSH_STATE_PERIODIC))
3570 return false;
3573 // Reduce validity flag and have-data flags.
3574 // We do this after actual disconnecting, otherwise we'll end up writing the lack of data
3575 // to disk before writing the chainstate, resulting in a failure to continue if interrupted.
3576 for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); it++) {
3577 CBlockIndex* pindexIter = it->second;
3579 // Note: If we encounter an insufficiently validated block that
3580 // is on chainActive, it must be because we are a pruning node, and
3581 // this block or some successor doesn't HAVE_DATA, so we were unable to
3582 // rewind all the way. Blocks remaining on chainActive at this point
3583 // must not have their validity reduced.
3584 if (IsWitnessEnabled(pindexIter->pprev, params.GetConsensus()) && !(pindexIter->nStatus & BLOCK_OPT_WITNESS) && !chainActive.Contains(pindexIter)) {
3585 // Reduce validity
3586 pindexIter->nStatus = std::min<unsigned int>(pindexIter->nStatus & BLOCK_VALID_MASK, BLOCK_VALID_TREE) | (pindexIter->nStatus & ~BLOCK_VALID_MASK);
3587 // Remove have-data flags.
3588 pindexIter->nStatus &= ~(BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO);
3589 // Remove storage location.
3590 pindexIter->nFile = 0;
3591 pindexIter->nDataPos = 0;
3592 pindexIter->nUndoPos = 0;
3593 // Remove various other things
3594 pindexIter->nTx = 0;
3595 pindexIter->nChainTx = 0;
3596 pindexIter->nSequenceId = 0;
3597 // Make sure it gets written.
3598 setDirtyBlockIndex.insert(pindexIter);
3599 // Update indexes
3600 setBlockIndexCandidates.erase(pindexIter);
3601 std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> ret = mapBlocksUnlinked.equal_range(pindexIter->pprev);
3602 while (ret.first != ret.second) {
3603 if (ret.first->second == pindexIter) {
3604 mapBlocksUnlinked.erase(ret.first++);
3605 } else {
3606 ++ret.first;
3609 } else if (pindexIter->IsValid(BLOCK_VALID_TRANSACTIONS) && pindexIter->nChainTx) {
3610 setBlockIndexCandidates.insert(pindexIter);
3614 PruneBlockIndexCandidates();
3616 CheckBlockIndex(params.GetConsensus());
3618 if (!FlushStateToDisk(params, state, FLUSH_STATE_ALWAYS)) {
3619 return false;
3622 return true;
3625 // May NOT be used after any connections are up as much
3626 // of the peer-processing logic assumes a consistent
3627 // block index state
3628 void UnloadBlockIndex()
3630 LOCK(cs_main);
3631 setBlockIndexCandidates.clear();
3632 chainActive.SetTip(NULL);
3633 pindexBestInvalid = NULL;
3634 pindexBestHeader = NULL;
3635 mempool.clear();
3636 mapBlocksUnlinked.clear();
3637 vinfoBlockFile.clear();
3638 nLastBlockFile = 0;
3639 nBlockSequenceId = 1;
3640 setDirtyBlockIndex.clear();
3641 setDirtyFileInfo.clear();
3642 versionbitscache.Clear();
3643 for (int b = 0; b < VERSIONBITS_NUM_BITS; b++) {
3644 warningcache[b].clear();
3647 for (BlockMap::value_type& entry : mapBlockIndex) {
3648 delete entry.second;
3650 mapBlockIndex.clear();
3651 fHavePruned = false;
3654 bool LoadBlockIndex(const CChainParams& chainparams)
3656 // Load block index from databases
3657 if (!fReindex && !LoadBlockIndexDB(chainparams))
3658 return false;
3659 return true;
3662 bool InitBlockIndex(const CChainParams& chainparams)
3664 LOCK(cs_main);
3666 // Check whether we're already initialized
3667 if (chainActive.Genesis() != NULL)
3668 return true;
3670 // Use the provided setting for -txindex in the new database
3671 fTxIndex = GetBoolArg("-txindex", DEFAULT_TXINDEX);
3672 pblocktree->WriteFlag("txindex", fTxIndex);
3673 LogPrintf("Initializing databases...\n");
3675 // Only add the genesis block if not reindexing (in which case we reuse the one already on disk)
3676 if (!fReindex) {
3677 try {
3678 CBlock &block = const_cast<CBlock&>(chainparams.GenesisBlock());
3679 // Start new block file
3680 unsigned int nBlockSize = ::GetSerializeSize(block, SER_DISK, CLIENT_VERSION);
3681 CDiskBlockPos blockPos;
3682 CValidationState state;
3683 if (!FindBlockPos(state, blockPos, nBlockSize+8, 0, block.GetBlockTime()))
3684 return error("LoadBlockIndex(): FindBlockPos failed");
3685 if (!WriteBlockToDisk(block, blockPos, chainparams.MessageStart()))
3686 return error("LoadBlockIndex(): writing genesis block to disk failed");
3687 CBlockIndex *pindex = AddToBlockIndex(block);
3688 if (!ReceivedBlockTransactions(block, state, pindex, blockPos, chainparams.GetConsensus()))
3689 return error("LoadBlockIndex(): genesis block not accepted");
3690 // Force a chainstate write so that when we VerifyDB in a moment, it doesn't check stale data
3691 return FlushStateToDisk(chainparams, state, FLUSH_STATE_ALWAYS);
3692 } catch (const std::runtime_error& e) {
3693 return error("LoadBlockIndex(): failed to initialize block database: %s", e.what());
3697 return true;
3700 bool LoadExternalBlockFile(const CChainParams& chainparams, FILE* fileIn, CDiskBlockPos *dbp)
3702 // Map of disk positions for blocks with unknown parent (only used for reindex)
3703 static std::multimap<uint256, CDiskBlockPos> mapBlocksUnknownParent;
3704 int64_t nStart = GetTimeMillis();
3706 int nLoaded = 0;
3707 try {
3708 // This takes over fileIn and calls fclose() on it in the CBufferedFile destructor
3709 CBufferedFile blkdat(fileIn, 2*MAX_BLOCK_SERIALIZED_SIZE, MAX_BLOCK_SERIALIZED_SIZE+8, SER_DISK, CLIENT_VERSION);
3710 uint64_t nRewind = blkdat.GetPos();
3711 while (!blkdat.eof()) {
3712 boost::this_thread::interruption_point();
3714 blkdat.SetPos(nRewind);
3715 nRewind++; // start one byte further next time, in case of failure
3716 blkdat.SetLimit(); // remove former limit
3717 unsigned int nSize = 0;
3718 try {
3719 // locate a header
3720 unsigned char buf[CMessageHeader::MESSAGE_START_SIZE];
3721 blkdat.FindByte(chainparams.MessageStart()[0]);
3722 nRewind = blkdat.GetPos()+1;
3723 blkdat >> FLATDATA(buf);
3724 if (memcmp(buf, chainparams.MessageStart(), CMessageHeader::MESSAGE_START_SIZE))
3725 continue;
3726 // read size
3727 blkdat >> nSize;
3728 if (nSize < 80 || nSize > MAX_BLOCK_SERIALIZED_SIZE)
3729 continue;
3730 } catch (const std::exception&) {
3731 // no valid block header found; don't complain
3732 break;
3734 try {
3735 // read block
3736 uint64_t nBlockPos = blkdat.GetPos();
3737 if (dbp)
3738 dbp->nPos = nBlockPos;
3739 blkdat.SetLimit(nBlockPos + nSize);
3740 blkdat.SetPos(nBlockPos);
3741 std::shared_ptr<CBlock> pblock = std::make_shared<CBlock>();
3742 CBlock& block = *pblock;
3743 blkdat >> block;
3744 nRewind = blkdat.GetPos();
3746 // detect out of order blocks, and store them for later
3747 uint256 hash = block.GetHash();
3748 if (hash != chainparams.GetConsensus().hashGenesisBlock && mapBlockIndex.find(block.hashPrevBlock) == mapBlockIndex.end()) {
3749 LogPrint(BCLog::REINDEX, "%s: Out of order block %s, parent %s not known\n", __func__, hash.ToString(),
3750 block.hashPrevBlock.ToString());
3751 if (dbp)
3752 mapBlocksUnknownParent.insert(std::make_pair(block.hashPrevBlock, *dbp));
3753 continue;
3756 // process in case the block isn't known yet
3757 if (mapBlockIndex.count(hash) == 0 || (mapBlockIndex[hash]->nStatus & BLOCK_HAVE_DATA) == 0) {
3758 LOCK(cs_main);
3759 CValidationState state;
3760 if (AcceptBlock(pblock, state, chainparams, NULL, true, dbp, NULL))
3761 nLoaded++;
3762 if (state.IsError())
3763 break;
3764 } else if (hash != chainparams.GetConsensus().hashGenesisBlock && mapBlockIndex[hash]->nHeight % 1000 == 0) {
3765 LogPrint(BCLog::REINDEX, "Block Import: already had block %s at height %d\n", hash.ToString(), mapBlockIndex[hash]->nHeight);
3768 // Activate the genesis block so normal node progress can continue
3769 if (hash == chainparams.GetConsensus().hashGenesisBlock) {
3770 CValidationState state;
3771 if (!ActivateBestChain(state, chainparams)) {
3772 break;
3776 NotifyHeaderTip();
3778 // Recursively process earlier encountered successors of this block
3779 std::deque<uint256> queue;
3780 queue.push_back(hash);
3781 while (!queue.empty()) {
3782 uint256 head = queue.front();
3783 queue.pop_front();
3784 std::pair<std::multimap<uint256, CDiskBlockPos>::iterator, std::multimap<uint256, CDiskBlockPos>::iterator> range = mapBlocksUnknownParent.equal_range(head);
3785 while (range.first != range.second) {
3786 std::multimap<uint256, CDiskBlockPos>::iterator it = range.first;
3787 std::shared_ptr<CBlock> pblockrecursive = std::make_shared<CBlock>();
3788 if (ReadBlockFromDisk(*pblockrecursive, it->second, chainparams.GetConsensus()))
3790 LogPrint(BCLog::REINDEX, "%s: Processing out of order child %s of %s\n", __func__, pblockrecursive->GetHash().ToString(),
3791 head.ToString());
3792 LOCK(cs_main);
3793 CValidationState dummy;
3794 if (AcceptBlock(pblockrecursive, dummy, chainparams, NULL, true, &it->second, NULL))
3796 nLoaded++;
3797 queue.push_back(pblockrecursive->GetHash());
3800 range.first++;
3801 mapBlocksUnknownParent.erase(it);
3802 NotifyHeaderTip();
3805 } catch (const std::exception& e) {
3806 LogPrintf("%s: Deserialize or I/O error - %s\n", __func__, e.what());
3809 } catch (const std::runtime_error& e) {
3810 AbortNode(std::string("System error: ") + e.what());
3812 if (nLoaded > 0)
3813 LogPrintf("Loaded %i blocks from external file in %dms\n", nLoaded, GetTimeMillis() - nStart);
3814 return nLoaded > 0;
3817 void static CheckBlockIndex(const Consensus::Params& consensusParams)
3819 if (!fCheckBlockIndex) {
3820 return;
3823 LOCK(cs_main);
3825 // During a reindex, we read the genesis block and call CheckBlockIndex before ActivateBestChain,
3826 // so we have the genesis block in mapBlockIndex but no active chain. (A few of the tests when
3827 // iterating the block tree require that chainActive has been initialized.)
3828 if (chainActive.Height() < 0) {
3829 assert(mapBlockIndex.size() <= 1);
3830 return;
3833 // Build forward-pointing map of the entire block tree.
3834 std::multimap<CBlockIndex*,CBlockIndex*> forward;
3835 for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); it++) {
3836 forward.insert(std::make_pair(it->second->pprev, it->second));
3839 assert(forward.size() == mapBlockIndex.size());
3841 std::pair<std::multimap<CBlockIndex*,CBlockIndex*>::iterator,std::multimap<CBlockIndex*,CBlockIndex*>::iterator> rangeGenesis = forward.equal_range(NULL);
3842 CBlockIndex *pindex = rangeGenesis.first->second;
3843 rangeGenesis.first++;
3844 assert(rangeGenesis.first == rangeGenesis.second); // There is only one index entry with parent NULL.
3846 // Iterate over the entire block tree, using depth-first search.
3847 // Along the way, remember whether there are blocks on the path from genesis
3848 // block being explored which are the first to have certain properties.
3849 size_t nNodes = 0;
3850 int nHeight = 0;
3851 CBlockIndex* pindexFirstInvalid = NULL; // Oldest ancestor of pindex which is invalid.
3852 CBlockIndex* pindexFirstMissing = NULL; // Oldest ancestor of pindex which does not have BLOCK_HAVE_DATA.
3853 CBlockIndex* pindexFirstNeverProcessed = NULL; // Oldest ancestor of pindex for which nTx == 0.
3854 CBlockIndex* pindexFirstNotTreeValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_TREE (regardless of being valid or not).
3855 CBlockIndex* pindexFirstNotTransactionsValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_TRANSACTIONS (regardless of being valid or not).
3856 CBlockIndex* pindexFirstNotChainValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_CHAIN (regardless of being valid or not).
3857 CBlockIndex* pindexFirstNotScriptsValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_SCRIPTS (regardless of being valid or not).
3858 while (pindex != NULL) {
3859 nNodes++;
3860 if (pindexFirstInvalid == NULL && pindex->nStatus & BLOCK_FAILED_VALID) pindexFirstInvalid = pindex;
3861 if (pindexFirstMissing == NULL && !(pindex->nStatus & BLOCK_HAVE_DATA)) pindexFirstMissing = pindex;
3862 if (pindexFirstNeverProcessed == NULL && pindex->nTx == 0) pindexFirstNeverProcessed = pindex;
3863 if (pindex->pprev != NULL && pindexFirstNotTreeValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_TREE) pindexFirstNotTreeValid = pindex;
3864 if (pindex->pprev != NULL && pindexFirstNotTransactionsValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_TRANSACTIONS) pindexFirstNotTransactionsValid = pindex;
3865 if (pindex->pprev != NULL && pindexFirstNotChainValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_CHAIN) pindexFirstNotChainValid = pindex;
3866 if (pindex->pprev != NULL && pindexFirstNotScriptsValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_SCRIPTS) pindexFirstNotScriptsValid = pindex;
3868 // Begin: actual consistency checks.
3869 if (pindex->pprev == NULL) {
3870 // Genesis block checks.
3871 assert(pindex->GetBlockHash() == consensusParams.hashGenesisBlock); // Genesis block's hash must match.
3872 assert(pindex == chainActive.Genesis()); // The current active chain's genesis block must be this block.
3874 if (pindex->nChainTx == 0) assert(pindex->nSequenceId <= 0); // nSequenceId can't be set positive for blocks that aren't linked (negative is used for preciousblock)
3875 // VALID_TRANSACTIONS is equivalent to nTx > 0 for all nodes (whether or not pruning has occurred).
3876 // HAVE_DATA is only equivalent to nTx > 0 (or VALID_TRANSACTIONS) if no pruning has occurred.
3877 if (!fHavePruned) {
3878 // If we've never pruned, then HAVE_DATA should be equivalent to nTx > 0
3879 assert(!(pindex->nStatus & BLOCK_HAVE_DATA) == (pindex->nTx == 0));
3880 assert(pindexFirstMissing == pindexFirstNeverProcessed);
3881 } else {
3882 // If we have pruned, then we can only say that HAVE_DATA implies nTx > 0
3883 if (pindex->nStatus & BLOCK_HAVE_DATA) assert(pindex->nTx > 0);
3885 if (pindex->nStatus & BLOCK_HAVE_UNDO) assert(pindex->nStatus & BLOCK_HAVE_DATA);
3886 assert(((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TRANSACTIONS) == (pindex->nTx > 0)); // This is pruning-independent.
3887 // All parents having had data (at some point) is equivalent to all parents being VALID_TRANSACTIONS, which is equivalent to nChainTx being set.
3888 assert((pindexFirstNeverProcessed != NULL) == (pindex->nChainTx == 0)); // nChainTx != 0 is used to signal that all parent blocks have been processed (but may have been pruned).
3889 assert((pindexFirstNotTransactionsValid != NULL) == (pindex->nChainTx == 0));
3890 assert(pindex->nHeight == nHeight); // nHeight must be consistent.
3891 assert(pindex->pprev == NULL || pindex->nChainWork >= pindex->pprev->nChainWork); // For every block except the genesis block, the chainwork must be larger than the parent's.
3892 assert(nHeight < 2 || (pindex->pskip && (pindex->pskip->nHeight < nHeight))); // The pskip pointer must point back for all but the first 2 blocks.
3893 assert(pindexFirstNotTreeValid == NULL); // All mapBlockIndex entries must at least be TREE valid
3894 if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TREE) assert(pindexFirstNotTreeValid == NULL); // TREE valid implies all parents are TREE valid
3895 if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_CHAIN) assert(pindexFirstNotChainValid == NULL); // CHAIN valid implies all parents are CHAIN valid
3896 if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_SCRIPTS) assert(pindexFirstNotScriptsValid == NULL); // SCRIPTS valid implies all parents are SCRIPTS valid
3897 if (pindexFirstInvalid == NULL) {
3898 // Checks for not-invalid blocks.
3899 assert((pindex->nStatus & BLOCK_FAILED_MASK) == 0); // The failed mask cannot be set for blocks without invalid parents.
3901 if (!CBlockIndexWorkComparator()(pindex, chainActive.Tip()) && pindexFirstNeverProcessed == NULL) {
3902 if (pindexFirstInvalid == NULL) {
3903 // If this block sorts at least as good as the current tip and
3904 // is valid and we have all data for its parents, it must be in
3905 // setBlockIndexCandidates. chainActive.Tip() must also be there
3906 // even if some data has been pruned.
3907 if (pindexFirstMissing == NULL || pindex == chainActive.Tip()) {
3908 assert(setBlockIndexCandidates.count(pindex));
3910 // If some parent is missing, then it could be that this block was in
3911 // setBlockIndexCandidates but had to be removed because of the missing data.
3912 // In this case it must be in mapBlocksUnlinked -- see test below.
3914 } else { // If this block sorts worse than the current tip or some ancestor's block has never been seen, it cannot be in setBlockIndexCandidates.
3915 assert(setBlockIndexCandidates.count(pindex) == 0);
3917 // Check whether this block is in mapBlocksUnlinked.
3918 std::pair<std::multimap<CBlockIndex*,CBlockIndex*>::iterator,std::multimap<CBlockIndex*,CBlockIndex*>::iterator> rangeUnlinked = mapBlocksUnlinked.equal_range(pindex->pprev);
3919 bool foundInUnlinked = false;
3920 while (rangeUnlinked.first != rangeUnlinked.second) {
3921 assert(rangeUnlinked.first->first == pindex->pprev);
3922 if (rangeUnlinked.first->second == pindex) {
3923 foundInUnlinked = true;
3924 break;
3926 rangeUnlinked.first++;
3928 if (pindex->pprev && (pindex->nStatus & BLOCK_HAVE_DATA) && pindexFirstNeverProcessed != NULL && pindexFirstInvalid == NULL) {
3929 // If this block has block data available, some parent was never received, and has no invalid parents, it must be in mapBlocksUnlinked.
3930 assert(foundInUnlinked);
3932 if (!(pindex->nStatus & BLOCK_HAVE_DATA)) assert(!foundInUnlinked); // Can't be in mapBlocksUnlinked if we don't HAVE_DATA
3933 if (pindexFirstMissing == NULL) assert(!foundInUnlinked); // We aren't missing data for any parent -- cannot be in mapBlocksUnlinked.
3934 if (pindex->pprev && (pindex->nStatus & BLOCK_HAVE_DATA) && pindexFirstNeverProcessed == NULL && pindexFirstMissing != NULL) {
3935 // We HAVE_DATA for this block, have received data for all parents at some point, but we're currently missing data for some parent.
3936 assert(fHavePruned); // We must have pruned.
3937 // This block may have entered mapBlocksUnlinked if:
3938 // - it has a descendant that at some point had more work than the
3939 // tip, and
3940 // - we tried switching to that descendant but were missing
3941 // data for some intermediate block between chainActive and the
3942 // tip.
3943 // So if this block is itself better than chainActive.Tip() and it wasn't in
3944 // setBlockIndexCandidates, then it must be in mapBlocksUnlinked.
3945 if (!CBlockIndexWorkComparator()(pindex, chainActive.Tip()) && setBlockIndexCandidates.count(pindex) == 0) {
3946 if (pindexFirstInvalid == NULL) {
3947 assert(foundInUnlinked);
3951 // assert(pindex->GetBlockHash() == pindex->GetBlockHeader().GetHash()); // Perhaps too slow
3952 // End: actual consistency checks.
3954 // Try descending into the first subnode.
3955 std::pair<std::multimap<CBlockIndex*,CBlockIndex*>::iterator,std::multimap<CBlockIndex*,CBlockIndex*>::iterator> range = forward.equal_range(pindex);
3956 if (range.first != range.second) {
3957 // A subnode was found.
3958 pindex = range.first->second;
3959 nHeight++;
3960 continue;
3962 // This is a leaf node.
3963 // Move upwards until we reach a node of which we have not yet visited the last child.
3964 while (pindex) {
3965 // We are going to either move to a parent or a sibling of pindex.
3966 // If pindex was the first with a certain property, unset the corresponding variable.
3967 if (pindex == pindexFirstInvalid) pindexFirstInvalid = NULL;
3968 if (pindex == pindexFirstMissing) pindexFirstMissing = NULL;
3969 if (pindex == pindexFirstNeverProcessed) pindexFirstNeverProcessed = NULL;
3970 if (pindex == pindexFirstNotTreeValid) pindexFirstNotTreeValid = NULL;
3971 if (pindex == pindexFirstNotTransactionsValid) pindexFirstNotTransactionsValid = NULL;
3972 if (pindex == pindexFirstNotChainValid) pindexFirstNotChainValid = NULL;
3973 if (pindex == pindexFirstNotScriptsValid) pindexFirstNotScriptsValid = NULL;
3974 // Find our parent.
3975 CBlockIndex* pindexPar = pindex->pprev;
3976 // Find which child we just visited.
3977 std::pair<std::multimap<CBlockIndex*,CBlockIndex*>::iterator,std::multimap<CBlockIndex*,CBlockIndex*>::iterator> rangePar = forward.equal_range(pindexPar);
3978 while (rangePar.first->second != pindex) {
3979 assert(rangePar.first != rangePar.second); // Our parent must have at least the node we're coming from as child.
3980 rangePar.first++;
3982 // Proceed to the next one.
3983 rangePar.first++;
3984 if (rangePar.first != rangePar.second) {
3985 // Move to the sibling.
3986 pindex = rangePar.first->second;
3987 break;
3988 } else {
3989 // Move up further.
3990 pindex = pindexPar;
3991 nHeight--;
3992 continue;
3997 // Check that we actually traversed the entire map.
3998 assert(nNodes == forward.size());
4001 std::string CBlockFileInfo::ToString() const
4003 return strprintf("CBlockFileInfo(blocks=%u, size=%u, heights=%u...%u, time=%s...%s)", nBlocks, nSize, nHeightFirst, nHeightLast, DateTimeStrFormat("%Y-%m-%d", nTimeFirst), DateTimeStrFormat("%Y-%m-%d", nTimeLast));
4006 CBlockFileInfo* GetBlockFileInfo(size_t n)
4008 return &vinfoBlockFile.at(n);
4011 ThresholdState VersionBitsTipState(const Consensus::Params& params, Consensus::DeploymentPos pos)
4013 LOCK(cs_main);
4014 return VersionBitsState(chainActive.Tip(), params, pos, versionbitscache);
4017 BIP9Stats VersionBitsTipStatistics(const Consensus::Params& params, Consensus::DeploymentPos pos)
4019 LOCK(cs_main);
4020 return VersionBitsStatistics(chainActive.Tip(), params, pos);
4023 int VersionBitsTipStateSinceHeight(const Consensus::Params& params, Consensus::DeploymentPos pos)
4025 LOCK(cs_main);
4026 return VersionBitsStateSinceHeight(chainActive.Tip(), params, pos, versionbitscache);
4029 static const uint64_t MEMPOOL_DUMP_VERSION = 1;
4031 bool LoadMempool(void)
4033 const CChainParams& chainparams = Params();
4034 int64_t nExpiryTimeout = GetArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY) * 60 * 60;
4035 FILE* filestr = fsbridge::fopen(GetDataDir() / "mempool.dat", "rb");
4036 CAutoFile file(filestr, SER_DISK, CLIENT_VERSION);
4037 if (file.IsNull()) {
4038 LogPrintf("Failed to open mempool file from disk. Continuing anyway.\n");
4039 return false;
4042 int64_t count = 0;
4043 int64_t skipped = 0;
4044 int64_t failed = 0;
4045 int64_t nNow = GetTime();
4047 try {
4048 uint64_t version;
4049 file >> version;
4050 if (version != MEMPOOL_DUMP_VERSION) {
4051 return false;
4053 uint64_t num;
4054 file >> num;
4055 while (num--) {
4056 CTransactionRef tx;
4057 int64_t nTime;
4058 int64_t nFeeDelta;
4059 file >> tx;
4060 file >> nTime;
4061 file >> nFeeDelta;
4063 CAmount amountdelta = nFeeDelta;
4064 if (amountdelta) {
4065 mempool.PrioritiseTransaction(tx->GetHash(), amountdelta);
4067 CValidationState state;
4068 if (nTime + nExpiryTimeout > nNow) {
4069 LOCK(cs_main);
4070 AcceptToMemoryPoolWithTime(chainparams, mempool, state, tx, true, NULL, nTime, NULL, false, 0);
4071 if (state.IsValid()) {
4072 ++count;
4073 } else {
4074 ++failed;
4076 } else {
4077 ++skipped;
4079 if (ShutdownRequested())
4080 return false;
4082 std::map<uint256, CAmount> mapDeltas;
4083 file >> mapDeltas;
4085 for (const auto& i : mapDeltas) {
4086 mempool.PrioritiseTransaction(i.first, i.second);
4088 } catch (const std::exception& e) {
4089 LogPrintf("Failed to deserialize mempool data on disk: %s. Continuing anyway.\n", e.what());
4090 return false;
4093 LogPrintf("Imported mempool transactions from disk: %i successes, %i failed, %i expired\n", count, failed, skipped);
4094 return true;
4097 void DumpMempool(void)
4099 int64_t start = GetTimeMicros();
4101 std::map<uint256, CAmount> mapDeltas;
4102 std::vector<TxMempoolInfo> vinfo;
4105 LOCK(mempool.cs);
4106 for (const auto &i : mempool.mapDeltas) {
4107 mapDeltas[i.first] = i.second;
4109 vinfo = mempool.infoAll();
4112 int64_t mid = GetTimeMicros();
4114 try {
4115 FILE* filestr = fsbridge::fopen(GetDataDir() / "mempool.dat.new", "wb");
4116 if (!filestr) {
4117 return;
4120 CAutoFile file(filestr, SER_DISK, CLIENT_VERSION);
4122 uint64_t version = MEMPOOL_DUMP_VERSION;
4123 file << version;
4125 file << (uint64_t)vinfo.size();
4126 for (const auto& i : vinfo) {
4127 file << *(i.tx);
4128 file << (int64_t)i.nTime;
4129 file << (int64_t)i.nFeeDelta;
4130 mapDeltas.erase(i.tx->GetHash());
4133 file << mapDeltas;
4134 FileCommit(file.Get());
4135 file.fclose();
4136 RenameOver(GetDataDir() / "mempool.dat.new", GetDataDir() / "mempool.dat");
4137 int64_t last = GetTimeMicros();
4138 LogPrintf("Dumped mempool: %gs to copy, %gs to dump\n", (mid-start)*0.000001, (last-mid)*0.000001);
4139 } catch (const std::exception& e) {
4140 LogPrintf("Failed to dump mempool: %s. Continuing anyway.\n", e.what());
4144 //! Guess how far we are in the verification process at the given block index
4145 double GuessVerificationProgress(const ChainTxData& data, CBlockIndex *pindex) {
4146 if (pindex == NULL)
4147 return 0.0;
4149 int64_t nNow = time(NULL);
4151 double fTxTotal;
4153 if (pindex->nChainTx <= data.nTxCount) {
4154 fTxTotal = data.nTxCount + (nNow - data.nTime) * data.dTxRate;
4155 } else {
4156 fTxTotal = pindex->nChainTx + (nNow - pindex->GetBlockTime()) * data.dTxRate;
4159 return pindex->nChainTx / fTxTotal;
4162 class CMainCleanup
4164 public:
4165 CMainCleanup() {}
4166 ~CMainCleanup() {
4167 // block headers
4168 BlockMap::iterator it1 = mapBlockIndex.begin();
4169 for (; it1 != mapBlockIndex.end(); it1++)
4170 delete (*it1).second;
4171 mapBlockIndex.clear();
4173 } instance_of_cmaincleanup;