Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-present 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.
5 : :
6 : : #ifndef BITCOIN_VALIDATION_H
7 : : #define BITCOIN_VALIDATION_H
8 : :
9 : : #include <arith_uint256.h>
10 : : #include <attributes.h>
11 : : #include <chain.h>
12 : : #include <checkqueue.h>
13 : : #include <consensus/amount.h>
14 : : #include <cuckoocache.h>
15 : : #include <deploymentstatus.h>
16 : : #include <kernel/chain.h>
17 : : #include <kernel/chainparams.h>
18 : : #include <kernel/chainstatemanager_opts.h>
19 : : #include <kernel/cs_main.h> // IWYU pragma: export
20 : : #include <node/blockstorage.h>
21 : : #include <policy/feerate.h>
22 : : #include <policy/packages.h>
23 : : #include <policy/policy.h>
24 : : #include <script/script_error.h>
25 : : #include <script/sigcache.h>
26 : : #include <sync.h>
27 : : #include <txdb.h>
28 : : #include <txmempool.h> // For CTxMemPool::cs
29 : : #include <uint256.h>
30 : : #include <util/check.h>
31 : : #include <util/fs.h>
32 : : #include <util/hasher.h>
33 : : #include <util/result.h>
34 : : #include <util/time.h>
35 : : #include <util/translation.h>
36 : : #include <versionbits.h>
37 : :
38 : : #include <atomic>
39 : : #include <map>
40 : : #include <memory>
41 : : #include <optional>
42 : : #include <set>
43 : : #include <span>
44 : : #include <stdint.h>
45 : : #include <string>
46 : : #include <type_traits>
47 : : #include <utility>
48 : : #include <vector>
49 : :
50 : : class Chainstate;
51 : : class CTxMemPool;
52 : : class ChainstateManager;
53 : : struct ChainTxData;
54 : : class DisconnectedBlockTransactions;
55 : : struct PrecomputedTransactionData;
56 : : struct LockPoints;
57 : : struct AssumeutxoData;
58 : : namespace node {
59 : : class SnapshotMetadata;
60 : : } // namespace node
61 : : namespace Consensus {
62 : : struct Params;
63 : : } // namespace Consensus
64 : : namespace util {
65 : : class SignalInterrupt;
66 : : } // namespace util
67 : :
68 : : /** Block files containing a block-height within MIN_BLOCKS_TO_KEEP of ActiveChain().Tip() will not be pruned. */
69 : : static const unsigned int MIN_BLOCKS_TO_KEEP = 288;
70 : : static const signed int DEFAULT_CHECKBLOCKS = 6;
71 : : static constexpr int DEFAULT_CHECKLEVEL{3};
72 : : // Require that user allocate at least 550 MiB for block & undo files (blk???.dat and rev???.dat)
73 : : // At 1MB per block, 288 blocks = 288MB.
74 : : // Add 15% for Undo data = 331MB
75 : : // Add 20% for Orphan block rate = 397MB
76 : : // We want the low water mark after pruning to be at least 397 MB and since we prune in
77 : : // full block file chunks, we need the high water mark which triggers the prune to be
78 : : // one 128MB block file + added 15% undo data = 147MB greater for a total of 545MB
79 : : // Setting the target to >= 550 MiB will make it likely we can respect the target.
80 : : static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES = 550 * 1024 * 1024;
81 : :
82 : : /** Maximum number of dedicated script-checking threads allowed */
83 : : static constexpr int MAX_SCRIPTCHECK_THREADS{15};
84 : :
85 : : /** Current sync state passed to tip changed callbacks. */
86 : : enum class SynchronizationState {
87 : : INIT_REINDEX,
88 : : INIT_DOWNLOAD,
89 : : POST_INIT
90 : : };
91 : :
92 : : /** Documentation for argument 'checklevel'. */
93 : : extern const std::vector<std::string> CHECKLEVEL_DOC;
94 : :
95 : : CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams);
96 : :
97 : : bool FatalError(kernel::Notifications& notifications, BlockValidationState& state, const bilingual_str& message);
98 : :
99 : : /** Prune block files up to a given height */
100 : : void PruneBlockFilesManual(Chainstate& active_chainstate, int nManualPruneHeight);
101 : :
102 : : /**
103 : : * Validation result for a transaction evaluated by MemPoolAccept (single or package).
104 : : * Here are the expected fields and properties of a result depending on its ResultType, applicable to
105 : : * results returned from package evaluation:
106 : : *+---------------------------+----------------+-------------------+------------------+----------------+-------------------+
107 : : *| Field or property | VALID | INVALID | MEMPOOL_ENTRY | DIFFERENT_WITNESS |
108 : : *| | |--------------------------------------| | |
109 : : *| | | TX_RECONSIDERABLE | Other | | |
110 : : *+---------------------------+----------------+-------------------+------------------+----------------+-------------------+
111 : : *| txid in mempool? | yes | no | no* | yes | yes |
112 : : *| wtxid in mempool? | yes | no | no* | yes | no |
113 : : *| m_state | yes, IsValid() | yes, IsInvalid() | yes, IsInvalid() | yes, IsValid() | yes, IsValid() |
114 : : *| m_vsize | yes | no | no | yes | no |
115 : : *| m_base_fees | yes | no | no | yes | no |
116 : : *| m_effective_feerate | yes | yes | no | no | no |
117 : : *| m_wtxids_fee_calculations | yes | yes | no | no | no |
118 : : *| m_other_wtxid | no | no | no | no | yes |
119 : : *+---------------------------+----------------+-------------------+------------------+----------------+-------------------+
120 : : * (*) Individual transaction acceptance doesn't return MEMPOOL_ENTRY and DIFFERENT_WITNESS. It returns
121 : : * INVALID, with the errors txn-already-in-mempool and txn-same-nonwitness-data-in-mempool
122 : : * respectively. In those cases, the txid or wtxid may be in the mempool for a TX_CONFLICT.
123 : : */
124 : : struct MempoolAcceptResult {
125 : : /** Used to indicate the results of mempool validation. */
126 : : enum class ResultType {
127 : : VALID, //!> Fully validated, valid.
128 : : INVALID, //!> Invalid.
129 : : MEMPOOL_ENTRY, //!> Valid, transaction was already in the mempool.
130 : : DIFFERENT_WITNESS, //!> Not validated. A same-txid-different-witness tx (see m_other_wtxid) already exists in the mempool and was not replaced.
131 : : };
132 : : /** Result type. Present in all MempoolAcceptResults. */
133 : : const ResultType m_result_type;
134 : :
135 : : /** Contains information about why the transaction failed. */
136 : : const TxValidationState m_state;
137 : :
138 : : /** Mempool transactions replaced by the tx. */
139 : : const std::list<CTransactionRef> m_replaced_transactions;
140 : : /** Virtual size as used by the mempool, calculated using serialized size and sigops. */
141 : : const std::optional<int64_t> m_vsize;
142 : : /** Raw base fees in satoshis. */
143 : : const std::optional<CAmount> m_base_fees;
144 : : /** The feerate at which this transaction was considered. This includes any fee delta added
145 : : * using prioritisetransaction (i.e. modified fees). If this transaction was submitted as a
146 : : * package, this is the package feerate, which may also include its descendants and/or
147 : : * ancestors (see m_wtxids_fee_calculations below).
148 : : */
149 : : const std::optional<CFeeRate> m_effective_feerate;
150 : : /** Contains the wtxids of the transactions used for fee-related checks. Includes this
151 : : * transaction's wtxid and may include others if this transaction was validated as part of a
152 : : * package. This is not necessarily equivalent to the list of transactions passed to
153 : : * ProcessNewPackage().
154 : : * Only present when m_result_type = ResultType::VALID. */
155 : : const std::optional<std::vector<Wtxid>> m_wtxids_fee_calculations;
156 : :
157 : : /** The wtxid of the transaction in the mempool which has the same txid but different witness. */
158 : : const std::optional<Wtxid> m_other_wtxid;
159 : :
160 : 14 : static MempoolAcceptResult Failure(TxValidationState state) {
161 [ + - ]: 28 : return MempoolAcceptResult(state);
162 : : }
163 : :
164 : 9 : static MempoolAcceptResult FeeFailure(TxValidationState state,
165 : : CFeeRate effective_feerate,
166 : : const std::vector<Wtxid>& wtxids_fee_calculations) {
167 [ + - ]: 18 : return MempoolAcceptResult(state, effective_feerate, wtxids_fee_calculations);
168 : : }
169 : :
170 : 112 : static MempoolAcceptResult Success(std::list<CTransactionRef>&& replaced_txns,
171 : : int64_t vsize,
172 : : CAmount fees,
173 : : CFeeRate effective_feerate,
174 : : const std::vector<Wtxid>& wtxids_fee_calculations) {
175 : 112 : return MempoolAcceptResult(std::move(replaced_txns), vsize, fees,
176 [ + - + - : 112 : effective_feerate, wtxids_fee_calculations);
+ - + - ]
177 : : }
178 : :
179 : 7 : static MempoolAcceptResult MempoolTx(int64_t vsize, CAmount fees) {
180 : 7 : return MempoolAcceptResult(vsize, fees);
181 : : }
182 : :
183 : 3 : static MempoolAcceptResult MempoolTxDifferentWitness(const Wtxid& other_wtxid) {
184 : 3 : return MempoolAcceptResult(other_wtxid);
185 : : }
186 : :
187 : : // Private constructors. Use static methods MempoolAcceptResult::Success, etc. to construct.
188 : : private:
189 : : /** Constructor for failure case */
190 : 14 : explicit MempoolAcceptResult(TxValidationState state)
191 : 14 : : m_result_type(ResultType::INVALID), m_state(state) {
192 : 14 : Assume(!state.IsValid()); // Can be invalid or error
193 : 14 : }
194 : :
195 : : /** Constructor for success case */
196 : 112 : explicit MempoolAcceptResult(std::list<CTransactionRef>&& replaced_txns,
197 : : int64_t vsize,
198 : : CAmount fees,
199 : : CFeeRate effective_feerate,
200 : : const std::vector<Wtxid>& wtxids_fee_calculations)
201 : 112 : : m_result_type(ResultType::VALID),
202 : 112 : m_replaced_transactions(std::move(replaced_txns)),
203 [ + - ]: 112 : m_vsize{vsize},
204 : 112 : m_base_fees(fees),
205 : 112 : m_effective_feerate(effective_feerate),
206 [ + - ]: 112 : m_wtxids_fee_calculations(wtxids_fee_calculations) {}
207 : :
208 : : /** Constructor for fee-related failure case */
209 : 9 : explicit MempoolAcceptResult(TxValidationState state,
210 : : CFeeRate effective_feerate,
211 : : const std::vector<Wtxid>& wtxids_fee_calculations)
212 : 9 : : m_result_type(ResultType::INVALID),
213 : 9 : m_state(state),
214 [ + - ]: 9 : m_effective_feerate(effective_feerate),
215 [ + - ]: 9 : m_wtxids_fee_calculations(wtxids_fee_calculations) {}
216 : :
217 : : /** Constructor for already-in-mempool case. It wouldn't replace any transactions. */
218 : 7 : explicit MempoolAcceptResult(int64_t vsize, CAmount fees)
219 [ + - ]: 7 : : m_result_type(ResultType::MEMPOOL_ENTRY), m_vsize{vsize}, m_base_fees(fees) {}
220 : :
221 : : /** Constructor for witness-swapped case. */
222 : 3 : explicit MempoolAcceptResult(const Wtxid& other_wtxid)
223 : 3 : : m_result_type(ResultType::DIFFERENT_WITNESS), m_other_wtxid(other_wtxid) {}
224 : : };
225 : :
226 : : /**
227 : : * Validation result for package mempool acceptance.
228 : : */
229 : : struct PackageMempoolAcceptResult
230 : : {
231 : : PackageValidationState m_state;
232 : : /**
233 : : * Map from wtxid to finished MempoolAcceptResults. The client is responsible
234 : : * for keeping track of the transaction objects themselves. If a result is not
235 : : * present, it means validation was unfinished for that transaction. If there
236 : : * was a package-wide error (see result in m_state), m_tx_results will be empty.
237 : : */
238 : : std::map<Wtxid, MempoolAcceptResult> m_tx_results;
239 : :
240 : 89 : explicit PackageMempoolAcceptResult(PackageValidationState state,
241 : : std::map<Wtxid, MempoolAcceptResult>&& results)
242 [ - - + - : 89 : : m_state{state}, m_tx_results(std::move(results)) {}
+ - + - +
- + - - -
+ - - - -
- + - + -
- - - - +
- - - +
- ]
243 : :
244 : : explicit PackageMempoolAcceptResult(PackageValidationState state, CFeeRate feerate,
245 : : std::map<Wtxid, MempoolAcceptResult>&& results)
246 : : : m_state{state}, m_tx_results(std::move(results)) {}
247 : :
248 : : /** Constructor to create a PackageMempoolAcceptResult from a single MempoolAcceptResult */
249 : 0 : explicit PackageMempoolAcceptResult(const Wtxid& wtxid, const MempoolAcceptResult& result)
250 [ # # # # : 0 : : m_tx_results{ {wtxid, result} } {}
# # # # ]
251 : : };
252 : :
253 : : /**
254 : : * Try to add a transaction to the mempool. This is an internal function and is exposed only for testing.
255 : : * Client code should use ChainstateManager::ProcessTransaction()
256 : : *
257 : : * @param[in] active_chainstate Reference to the active chainstate.
258 : : * @param[in] tx The transaction to submit for mempool acceptance.
259 : : * @param[in] accept_time The timestamp for adding the transaction to the mempool.
260 : : * It is also used to determine when the entry expires.
261 : : * @param[in] bypass_limits When true, don't enforce mempool fee and capacity limits,
262 : : * and set entry_sequence to zero.
263 : : * @param[in] test_accept When true, run validation checks but don't submit to mempool.
264 : : *
265 : : * @returns a MempoolAcceptResult indicating whether the transaction was accepted/rejected with reason.
266 : : */
267 : : MempoolAcceptResult AcceptToMemoryPool(Chainstate& active_chainstate, const CTransactionRef& tx,
268 : : int64_t accept_time, bool bypass_limits, bool test_accept)
269 : : EXCLUSIVE_LOCKS_REQUIRED(cs_main);
270 : :
271 : : /**
272 : : * Validate (and maybe submit) a package to the mempool. See doc/policy/packages.md for full details
273 : : * on package validation rules.
274 : : * @param[in] test_accept When true, run validation checks but don't submit to mempool.
275 : : * @param[in] client_maxfeerate If exceeded by an individual transaction, rest of (sub)package evaluation is aborted.
276 : : * Only for sanity checks against local submission of transactions.
277 : : * @returns a PackageMempoolAcceptResult which includes a MempoolAcceptResult for each transaction.
278 : : * If a transaction fails, validation will exit early and some results may be missing. It is also
279 : : * possible for the package to be partially submitted.
280 : : */
281 : : PackageMempoolAcceptResult ProcessNewPackage(Chainstate& active_chainstate, CTxMemPool& pool,
282 : : const Package& txns, bool test_accept, const std::optional<CFeeRate>& client_maxfeerate)
283 : : EXCLUSIVE_LOCKS_REQUIRED(cs_main);
284 : :
285 : : /* Mempool validation helper functions */
286 : :
287 : : /**
288 : : * Check if transaction will be final in the next block to be created.
289 : : */
290 : : bool CheckFinalTxAtTip(const CBlockIndex& active_chain_tip, const CTransaction& tx) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
291 : :
292 : : /**
293 : : * Calculate LockPoints required to check if transaction will be BIP68 final in the next block
294 : : * to be created on top of tip.
295 : : *
296 : : * @param[in] tip Chain tip for which tx sequence locks are calculated. For
297 : : * example, the tip of the current active chain.
298 : : * @param[in] coins_view Any CCoinsView that provides access to the relevant coins for
299 : : * checking sequence locks. For example, it can be a CCoinsViewCache
300 : : * that isn't connected to anything but contains all the relevant
301 : : * coins, or a CCoinsViewMemPool that is connected to the
302 : : * mempool and chainstate UTXO set. In the latter case, the caller
303 : : * is responsible for holding the appropriate locks to ensure that
304 : : * calls to GetCoin() return correct coins.
305 : : * @param[in] tx The transaction being evaluated.
306 : : *
307 : : * @returns The resulting height and time calculated and the hash of the block needed for
308 : : * calculation, or std::nullopt if there is an error.
309 : : */
310 : : std::optional<LockPoints> CalculateLockPointsAtTip(
311 : : CBlockIndex* tip,
312 : : const CCoinsView& coins_view,
313 : : const CTransaction& tx);
314 : :
315 : : /**
316 : : * Check if transaction will be BIP68 final in the next block to be created on top of tip.
317 : : * @param[in] tip Chain tip to check tx sequence locks against. For example,
318 : : * the tip of the current active chain.
319 : : * @param[in] lock_points LockPoints containing the height and time at which this
320 : : * transaction is final.
321 : : * Simulates calling SequenceLocks() with data from the tip passed in.
322 : : * The LockPoints should not be considered valid if CheckSequenceLocksAtTip returns false.
323 : : */
324 : : bool CheckSequenceLocksAtTip(CBlockIndex* tip,
325 : : const LockPoints& lock_points);
326 : :
327 : : /**
328 : : * Closure representing one script verification
329 : : * Note that this stores references to the spending transaction
330 : : */
331 : 214436 : class CScriptCheck
332 : : {
333 : : private:
334 : : CTxOut m_tx_out;
335 : : const CTransaction *ptxTo;
336 : : unsigned int nIn;
337 : : unsigned int nFlags;
338 : : bool cacheStore;
339 : : PrecomputedTransactionData *txdata;
340 : : SignatureCache* m_signature_cache;
341 : :
342 : : public:
343 : 157176 : CScriptCheck(const CTxOut& outIn, const CTransaction& txToIn, SignatureCache& signature_cache, unsigned int nInIn, unsigned int nFlagsIn, bool cacheIn, PrecomputedTransactionData* txdataIn) :
344 [ + + + - ]: 157176 : m_tx_out(outIn), ptxTo(&txToIn), nIn(nInIn), nFlags(nFlagsIn), cacheStore(cacheIn), txdata(txdataIn), m_signature_cache(&signature_cache) { }
[ + - ]
345 : :
346 : : CScriptCheck(const CScriptCheck&) = delete;
347 : : CScriptCheck& operator=(const CScriptCheck&) = delete;
348 : 57260 : CScriptCheck(CScriptCheck&&) = default;
349 : 0 : CScriptCheck& operator=(CScriptCheck&&) = default;
350 : :
351 : : std::optional<std::pair<ScriptError, std::string>> operator()();
352 : : };
353 : :
354 : : // CScriptCheck is used a lot in std::vector, make sure that's efficient
355 : : static_assert(std::is_nothrow_move_assignable_v<CScriptCheck>);
356 : : static_assert(std::is_nothrow_move_constructible_v<CScriptCheck>);
357 : : static_assert(std::is_nothrow_destructible_v<CScriptCheck>);
358 : :
359 : : /**
360 : : * Convenience class for initializing and passing the script execution cache
361 : : * and signature cache.
362 : : */
363 : 178 : class ValidationCache
364 : : {
365 : : private:
366 : : //! Pre-initialized hasher to avoid having to recreate it for every hash calculation.
367 : : CSHA256 m_script_execution_cache_hasher;
368 : :
369 : : public:
370 : : CuckooCache::cache<uint256, SignatureCacheHasher> m_script_execution_cache;
371 : : SignatureCache m_signature_cache;
372 : :
373 : : ValidationCache(size_t script_execution_cache_bytes, size_t signature_cache_bytes);
374 : :
375 : : ValidationCache(const ValidationCache&) = delete;
376 : : ValidationCache& operator=(const ValidationCache&) = delete;
377 : :
378 : : //! Return a copy of the pre-initialized hasher.
379 : 141380 : CSHA256 ScriptExecutionCacheHasher() const { return m_script_execution_cache_hasher; }
380 : : };
381 : :
382 : : /** Functions for validating blocks and updating the block tree */
383 : :
384 : : /** Context-independent validity checks */
385 : : bool CheckBlock(const CBlock& block, BlockValidationState& state, const Consensus::Params& consensusParams, bool fCheckPOW = true, bool fCheckMerkleRoot = true);
386 : :
387 : : /** Check a block is completely valid from start to finish (only works on top of our current best block) */
388 : : bool TestBlockValidity(BlockValidationState& state,
389 : : const CChainParams& chainparams,
390 : : Chainstate& chainstate,
391 : : const CBlock& block,
392 : : CBlockIndex* pindexPrev,
393 : : bool fCheckPOW = true,
394 : : bool fCheckMerkleRoot = true) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
395 : :
396 : : /** Check with the proof of work on each blockheader matches the value in nBits */
397 : : bool HasValidProofOfWork(const std::vector<CBlockHeader>& headers, const Consensus::Params& consensusParams);
398 : :
399 : : /** Check if a block has been mutated (with respect to its merkle root and witness commitments). */
400 : : bool IsBlockMutated(const CBlock& block, bool check_witness_root);
401 : :
402 : : /** Return the sum of the claimed work on a given set of headers. No verification of PoW is done. */
403 : : arith_uint256 CalculateClaimedHeadersWork(std::span<const CBlockHeader> headers);
404 : :
405 : : enum class VerifyDBResult {
406 : : SUCCESS,
407 : : CORRUPTED_BLOCK_DB,
408 : : INTERRUPTED,
409 : : SKIPPED_L3_CHECKS,
410 : : SKIPPED_MISSING_BLOCKS,
411 : : };
412 : :
413 : : /** RAII wrapper for VerifyDB: Verify consistency of the block and coin databases */
414 : : class CVerifyDB
415 : : {
416 : : private:
417 : : kernel::Notifications& m_notifications;
418 : :
419 : : public:
420 : : explicit CVerifyDB(kernel::Notifications& notifications);
421 : : ~CVerifyDB();
422 : : [[nodiscard]] VerifyDBResult VerifyDB(
423 : : Chainstate& chainstate,
424 : : const Consensus::Params& consensus_params,
425 : : CCoinsView& coinsview,
426 : : int nCheckLevel,
427 : : int nCheckDepth) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
428 : : };
429 : :
430 : : enum DisconnectResult
431 : : {
432 : : DISCONNECT_OK, // All good.
433 : : DISCONNECT_UNCLEAN, // Rolled back, but UTXO set was inconsistent with block.
434 : : DISCONNECT_FAILED // Something else went wrong.
435 : : };
436 : :
437 : : class ConnectTrace;
438 : :
439 : : /** @see Chainstate::FlushStateToDisk */
440 : : enum class FlushStateMode {
441 : : NONE,
442 : : IF_NEEDED,
443 : : PERIODIC,
444 : : ALWAYS
445 : : };
446 : :
447 : : /**
448 : : * A convenience class for constructing the CCoinsView* hierarchy used
449 : : * to facilitate access to the UTXO set.
450 : : *
451 : : * This class consists of an arrangement of layered CCoinsView objects,
452 : : * preferring to store and retrieve coins in memory via `m_cacheview` but
453 : : * ultimately falling back on cache misses to the canonical store of UTXOs on
454 : : * disk, `m_dbview`.
455 : : */
456 : : class CoinsViews {
457 : :
458 : : public:
459 : : //! The lowest level of the CoinsViews cache hierarchy sits in a leveldb database on disk.
460 : : //! All unspent coins reside in this store.
461 : : CCoinsViewDB m_dbview GUARDED_BY(cs_main);
462 : :
463 : : //! This view wraps access to the leveldb instance and handles read errors gracefully.
464 : : CCoinsViewErrorCatcher m_catcherview GUARDED_BY(cs_main);
465 : :
466 : : //! This is the top layer of the cache hierarchy - it keeps as many coins in memory as
467 : : //! can fit per the dbcache setting.
468 : : std::unique_ptr<CCoinsViewCache> m_cacheview GUARDED_BY(cs_main);
469 : :
470 : : //! This constructor initializes CCoinsViewDB and CCoinsViewErrorCatcher instances, but it
471 : : //! *does not* create a CCoinsViewCache instance by default. This is done separately because the
472 : : //! presence of the cache has implications on whether or not we're allowed to flush the cache's
473 : : //! state to disk, which should not be done until the health of the database is verified.
474 : : //!
475 : : //! All arguments forwarded onto CCoinsViewDB.
476 : : CoinsViews(DBParams db_params, CoinsViewOptions options);
477 : :
478 : : //! Initialize the CCoinsViewCache member.
479 : : void InitCache() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
480 : : };
481 : :
482 : : enum class CoinsCacheSizeState
483 : : {
484 : : //! The coins cache is in immediate need of a flush.
485 : : CRITICAL = 2,
486 : : //! The cache is at >= 90% capacity.
487 : : LARGE = 1,
488 : : OK = 0
489 : : };
490 : :
491 : : /**
492 : : * Chainstate stores and provides an API to update our local knowledge of the
493 : : * current best chain.
494 : : *
495 : : * Eventually, the API here is targeted at being exposed externally as a
496 : : * consumable library, so any functions added must only call
497 : : * other class member functions, pure functions in other parts of the consensus
498 : : * library, callbacks via the validation interface, or read/write-to-disk
499 : : * functions (eventually this will also be via callbacks).
500 : : *
501 : : * Anything that is contingent on the current tip of the chain is stored here,
502 : : * whereas block information and metadata independent of the current tip is
503 : : * kept in `BlockManager`.
504 : : */
505 : : class Chainstate
506 : : {
507 : : protected:
508 : : /**
509 : : * The ChainState Mutex
510 : : * A lock that must be held when modifying this ChainState - held in ActivateBestChain() and
511 : : * InvalidateBlock()
512 : : */
513 : : Mutex m_chainstate_mutex;
514 : :
515 : : //! Optional mempool that is kept in sync with the chain.
516 : : //! Only the active chainstate has a mempool.
517 : : CTxMemPool* m_mempool;
518 : :
519 : : //! Manages the UTXO set, which is a reflection of the contents of `m_chain`.
520 : : std::unique_ptr<CoinsViews> m_coins_views;
521 : :
522 : : //! This toggle exists for use when doing background validation for UTXO
523 : : //! snapshots.
524 : : //!
525 : : //! In the expected case, it is set once the background validation chain reaches the
526 : : //! same height as the base of the snapshot and its UTXO set is found to hash to
527 : : //! the expected assumeutxo value. It signals that we should no longer connect
528 : : //! blocks to the background chainstate. When set on the background validation
529 : : //! chainstate, it signifies that we have fully validated the snapshot chainstate.
530 : : //!
531 : : //! In the unlikely case that the snapshot chainstate is found to be invalid, this
532 : : //! is set to true on the snapshot chainstate.
533 : : bool m_disabled GUARDED_BY(::cs_main) {false};
534 : :
535 : : //! Cached result of LookupBlockIndex(*m_from_snapshot_blockhash)
536 : : const CBlockIndex* m_cached_snapshot_base GUARDED_BY(::cs_main) {nullptr};
537 : :
538 : : public:
539 : : //! Reference to a BlockManager instance which itself is shared across all
540 : : //! Chainstate instances.
541 : : node::BlockManager& m_blockman;
542 : :
543 : : //! The chainstate manager that owns this chainstate. The reference is
544 : : //! necessary so that this instance can check whether it is the active
545 : : //! chainstate within deeply nested method calls.
546 : : ChainstateManager& m_chainman;
547 : :
548 : : explicit Chainstate(
549 : : CTxMemPool* mempool,
550 : : node::BlockManager& blockman,
551 : : ChainstateManager& chainman,
552 [ + - ]: 177 : std::optional<uint256> from_snapshot_blockhash = std::nullopt);
553 : :
554 : : //! Return the current role of the chainstate. See `ChainstateManager`
555 : : //! documentation for a description of the different types of chainstates.
556 : : //!
557 : : //! @sa ChainstateRole
558 : : ChainstateRole GetRole() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
559 : :
560 : : /**
561 : : * Initialize the CoinsViews UTXO set database management data structures. The in-memory
562 : : * cache is initialized separately.
563 : : *
564 : : * All parameters forwarded to CoinsViews.
565 : : */
566 : : void InitCoinsDB(
567 : : size_t cache_size_bytes,
568 : : bool in_memory,
569 : : bool should_wipe,
570 [ + - - + ]: 360 : fs::path leveldb_name = "chainstate");
[ + - + -
+ - + - ]
[ + - # #
# # # # ]
571 : :
572 : : //! Initialize the in-memory coins cache (to be done after the health of the on-disk database
573 : : //! is verified).
574 : : void InitCoinsCache(size_t cache_size_bytes) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
575 : :
576 : : //! @returns whether or not the CoinsViews object has been fully initialized and we can
577 : : //! safely flush this object to disk.
578 : 22260 : bool CanFlushToDisk() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
579 : : {
580 : 22260 : AssertLockHeld(::cs_main);
581 [ # # # # : 22260 : return m_coins_views && m_coins_views->m_cacheview;
# # # # ]
[ + - + -
# # # # ]
582 : : }
583 : :
584 : : //! The current chain of blockheaders we consult and build on.
585 : : //! @see CChain, CBlockIndex.
586 : : CChain m_chain;
587 : :
588 : : /**
589 : : * The blockhash which is the base of the snapshot this chainstate was created from.
590 : : *
591 : : * std::nullopt if this chainstate was not created from a snapshot.
592 : : */
593 : : const std::optional<uint256> m_from_snapshot_blockhash;
594 : :
595 : : /**
596 : : * The base of the snapshot this chainstate was created from.
597 : : *
598 : : * nullptr if this chainstate was not created from a snapshot.
599 : : */
600 : : const CBlockIndex* SnapshotBase() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
601 : :
602 : : /**
603 : : * The set of all CBlockIndex entries that have as much work as our current
604 : : * tip or more, and transaction data needed to be validated (with
605 : : * BLOCK_VALID_TRANSACTIONS for each block and its parents back to the
606 : : * genesis block or an assumeutxo snapshot block). Entries may be failed,
607 : : * though, and pruning nodes may be missing the data for the block.
608 : : */
609 : : std::set<CBlockIndex*, node::CBlockIndexWorkComparator> setBlockIndexCandidates;
610 : :
611 : : //! @returns A reference to the in-memory cache of the UTXO set.
612 : 517383 : CCoinsViewCache& CoinsTip() EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
613 : : {
614 : 517383 : AssertLockHeld(::cs_main);
615 : 517383 : Assert(m_coins_views);
616 : 517383 : return *Assert(m_coins_views->m_cacheview);
617 : : }
618 : :
619 : : //! @returns A reference to the on-disk UTXO set database.
620 : 497 : CCoinsViewDB& CoinsDB() EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
621 : : {
622 : 497 : AssertLockHeld(::cs_main);
623 : 497 : return Assert(m_coins_views)->m_dbview;
624 : : }
625 : :
626 : : //! @returns A pointer to the mempool.
627 : 272 : CTxMemPool* GetMempool()
628 : : {
629 [ # # # # : 272 : return m_mempool;
# # # # ]
[ + - - +
+ - - + ]
630 : : }
631 : :
632 : : //! @returns A reference to a wrapped view of the in-memory UTXO set that
633 : : //! handles disk read errors gracefully.
634 : 0 : CCoinsViewErrorCatcher& CoinsErrorCatcher() EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
635 : : {
636 : 0 : AssertLockHeld(::cs_main);
637 : 0 : return Assert(m_coins_views)->m_catcherview;
638 : : }
639 : :
640 : : //! Destructs all objects related to accessing the UTXO set.
641 [ # # ]: 0 : void ResetCoinsViews() { m_coins_views.reset(); }
642 : :
643 : : //! Does this chainstate have a UTXO set attached?
644 [ - + ]: 2 : bool HasCoinsViews() const { return (bool)m_coins_views; }
645 : :
646 : : //! The cache size of the on-disk coins view.
647 : : size_t m_coinsdb_cache_size_bytes{0};
648 : :
649 : : //! The cache size of the in-memory coins view.
650 : : size_t m_coinstip_cache_size_bytes{0};
651 : :
652 : : //! Resize the CoinsViews caches dynamically and flush state to disk.
653 : : //! @returns true unless an error occurred during the flush.
654 : : bool ResizeCoinsCaches(size_t coinstip_size, size_t coinsdb_size)
655 : : EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
656 : :
657 : : /**
658 : : * Update the on-disk chain state.
659 : : * The caches and indexes are flushed depending on the mode we're called with
660 : : * if they're too large, if it's been a while since the last write,
661 : : * or always and in all cases if we're in prune mode and are deleting files.
662 : : *
663 : : * If FlushStateMode::NONE is used, then FlushStateToDisk(...) won't do anything
664 : : * besides checking if we need to prune.
665 : : *
666 : : * @returns true unless a system error occurred
667 : : */
668 : : bool FlushStateToDisk(
669 : : BlockValidationState& state,
670 : : FlushStateMode mode,
671 : : int nManualPruneHeight = 0);
672 : :
673 : : //! Unconditionally flush all changes to disk.
674 : : void ForceFlushStateToDisk();
675 : :
676 : : //! Prune blockfiles from the disk if necessary and then flush chainstate changes
677 : : //! if we pruned.
678 : : void PruneAndFlush();
679 : :
680 : : /**
681 : : * Find the best known block, and make it the tip of the block chain. The
682 : : * result is either failure or an activated best chain. pblock is either
683 : : * nullptr or a pointer to a block that is already loaded (to avoid loading
684 : : * it again from disk).
685 : : *
686 : : * ActivateBestChain is split into steps (see ActivateBestChainStep) so that
687 : : * we avoid holding cs_main for an extended period of time; the length of this
688 : : * call may be quite long during reindexing or a substantial reorg.
689 : : *
690 : : * May not be called with cs_main held. May not be called in a
691 : : * validationinterface callback.
692 : : *
693 : : * Note that if this is called while a snapshot chainstate is active, and if
694 : : * it is called on a background chainstate whose tip has reached the base block
695 : : * of the snapshot, its execution will take *MINUTES* while it hashes the
696 : : * background UTXO set to verify the assumeutxo value the snapshot was activated
697 : : * with. `cs_main` will be held during this time.
698 : : *
699 : : * @returns true unless a system error occurred
700 : : */
701 : : bool ActivateBestChain(
702 : : BlockValidationState& state,
703 : : std::shared_ptr<const CBlock> pblock = nullptr)
704 : : EXCLUSIVE_LOCKS_REQUIRED(!m_chainstate_mutex)
705 : : LOCKS_EXCLUDED(::cs_main);
706 : :
707 : : // Block (dis)connection on a given view:
708 : : DisconnectResult DisconnectBlock(const CBlock& block, const CBlockIndex* pindex, CCoinsViewCache& view)
709 : : EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
710 : : bool ConnectBlock(const CBlock& block, BlockValidationState& state, CBlockIndex* pindex,
711 : : CCoinsViewCache& view, bool fJustCheck = false) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
712 : :
713 : : // Apply the effects of a block disconnection on the UTXO set.
714 : : bool DisconnectTip(BlockValidationState& state, DisconnectedBlockTransactions* disconnectpool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, m_mempool->cs);
715 : :
716 : : // Manual block validity manipulation:
717 : : /** Mark a block as precious and reorganize.
718 : : *
719 : : * May not be called in a validationinterface callback.
720 : : */
721 : : bool PreciousBlock(BlockValidationState& state, CBlockIndex* pindex)
722 : : EXCLUSIVE_LOCKS_REQUIRED(!m_chainstate_mutex)
723 : : LOCKS_EXCLUDED(::cs_main);
724 : :
725 : : /** Mark a block as invalid. */
726 : : bool InvalidateBlock(BlockValidationState& state, CBlockIndex* pindex)
727 : : EXCLUSIVE_LOCKS_REQUIRED(!m_chainstate_mutex)
728 : : LOCKS_EXCLUDED(::cs_main);
729 : :
730 : : /** Set invalidity status to all descendants of a block */
731 : : void SetBlockFailureFlags(CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
732 : :
733 : : /** Remove invalidity status from a block and its descendants. */
734 : : void ResetBlockFailureFlags(CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
735 : :
736 : : /** Replay blocks that aren't fully applied to the database. */
737 : : bool ReplayBlocks();
738 : :
739 : : /** Whether the chain state needs to be redownloaded due to lack of witness data */
740 : : [[nodiscard]] bool NeedsRedownload() const EXCLUSIVE_LOCKS_REQUIRED(cs_main);
741 : : /** Ensures we have a genesis block in the block tree, possibly writing one to disk. */
742 : : bool LoadGenesisBlock();
743 : :
744 : : void TryAddBlockIndexCandidate(CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
745 : :
746 : : void PruneBlockIndexCandidates();
747 : :
748 : : void ClearBlockIndexCandidates() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
749 : :
750 : : /** Find the last common block of this chain and a locator. */
751 : : const CBlockIndex* FindForkInGlobalIndex(const CBlockLocator& locator) const EXCLUSIVE_LOCKS_REQUIRED(cs_main);
752 : :
753 : : /** Update the chain tip based on database information, i.e. CoinsTip()'s best block. */
754 : : bool LoadChainTip() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
755 : :
756 : : //! Dictates whether we need to flush the cache to disk or not.
757 : : //!
758 : : //! @return the state of the size of the coins cache.
759 : : CoinsCacheSizeState GetCoinsCacheSizeState() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
760 : :
761 : : CoinsCacheSizeState GetCoinsCacheSizeState(
762 : : size_t max_coins_cache_size_bytes,
763 : : size_t max_mempool_size_bytes) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
764 : :
765 : : std::string ToString() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
766 : :
767 : : //! Indirection necessary to make lock annotations work with an optional mempool.
768 : 18646 : RecursiveMutex* MempoolMutex() const LOCK_RETURNED(m_mempool->cs)
769 : : {
770 [ + - + + ]: 18646 : return m_mempool ? &m_mempool->cs : nullptr;
[ - + ]
771 : : }
772 : :
773 : : private:
774 : : bool ActivateBestChainStep(BlockValidationState& state, CBlockIndex* pindexMostWork, const std::shared_ptr<const CBlock>& pblock, bool& fInvalidFound, ConnectTrace& connectTrace) EXCLUSIVE_LOCKS_REQUIRED(cs_main, m_mempool->cs);
775 : : bool ConnectTip(BlockValidationState& state, CBlockIndex* pindexNew, const std::shared_ptr<const CBlock>& pblock, ConnectTrace& connectTrace, DisconnectedBlockTransactions& disconnectpool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, m_mempool->cs);
776 : :
777 : : void InvalidBlockFound(CBlockIndex* pindex, const BlockValidationState& state) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
778 : : CBlockIndex* FindMostWorkChain() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
779 : :
780 : : bool RollforwardBlock(const CBlockIndex* pindex, CCoinsViewCache& inputs) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
781 : :
782 : : void CheckForkWarningConditions() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
783 : : void InvalidChainFound(CBlockIndex* pindexNew) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
784 : :
785 : : /**
786 : : * Make mempool consistent after a reorg, by re-adding or recursively erasing
787 : : * disconnected block transactions from the mempool, and also removing any
788 : : * other transactions from the mempool that are no longer valid given the new
789 : : * tip/height.
790 : : *
791 : : * Note: we assume that disconnectpool only contains transactions that are NOT
792 : : * confirmed in the current chain nor already in the mempool (otherwise,
793 : : * in-mempool descendants of such transactions would be removed).
794 : : *
795 : : * Passing fAddToMempool=false will skip trying to add the transactions back,
796 : : * and instead just erase from the mempool as needed.
797 : : */
798 : : void MaybeUpdateMempoolForReorg(
799 : : DisconnectedBlockTransactions& disconnectpool,
800 : : bool fAddToMempool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, m_mempool->cs);
801 : :
802 : : /** Check warning conditions and do some notifications on new chain tip set. */
803 : : void UpdateTip(const CBlockIndex* pindexNew)
804 : : EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
805 : :
806 : : NodeClock::time_point m_next_write{NodeClock::time_point::max()};
807 : :
808 : : /**
809 : : * In case of an invalid snapshot, rename the coins leveldb directory so
810 : : * that it can be examined for issue diagnosis.
811 : : */
812 : : [[nodiscard]] util::Result<void> InvalidateCoinsDBOnDisk() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
813 : :
814 : : friend ChainstateManager;
815 : : };
816 : :
817 : : enum class SnapshotCompletionResult {
818 : : SUCCESS,
819 : : SKIPPED,
820 : :
821 : : // Expected assumeutxo configuration data is not found for the height of the
822 : : // base block.
823 : : MISSING_CHAINPARAMS,
824 : :
825 : : // Failed to generate UTXO statistics (to check UTXO set hash) for the background
826 : : // chainstate.
827 : : STATS_FAILED,
828 : :
829 : : // The UTXO set hash of the background validation chainstate does not match
830 : : // the one expected by assumeutxo chainparams.
831 : : HASH_MISMATCH,
832 : :
833 : : // The blockhash of the current tip of the background validation chainstate does
834 : : // not match the one expected by the snapshot chainstate.
835 : : BASE_BLOCKHASH_MISMATCH,
836 : : };
837 : :
838 : : /**
839 : : * Provides an interface for creating and interacting with one or two
840 : : * chainstates: an IBD chainstate generated by downloading blocks, and
841 : : * an optional snapshot chainstate loaded from a UTXO snapshot. Managed
842 : : * chainstates can be maintained at different heights simultaneously.
843 : : *
844 : : * This class provides abstractions that allow the retrieval of the current
845 : : * most-work chainstate ("Active") as well as chainstates which may be in
846 : : * background use to validate UTXO snapshots.
847 : : *
848 : : * Definitions:
849 : : *
850 : : * *IBD chainstate*: a chainstate whose current state has been "fully"
851 : : * validated by the initial block download process.
852 : : *
853 : : * *Snapshot chainstate*: a chainstate populated by loading in an
854 : : * assumeutxo UTXO snapshot.
855 : : *
856 : : * *Active chainstate*: the chainstate containing the current most-work
857 : : * chain. Consulted by most parts of the system (net_processing,
858 : : * wallet) as a reflection of the current chain and UTXO set.
859 : : * This may either be an IBD chainstate or a snapshot chainstate.
860 : : *
861 : : * *Background IBD chainstate*: an IBD chainstate for which the
862 : : * IBD process is happening in the background while use of the
863 : : * active (snapshot) chainstate allows the rest of the system to function.
864 : : */
865 : : class ChainstateManager
866 : : {
867 : : private:
868 : : //! The chainstate used under normal operation (i.e. "regular" IBD) or, if
869 : : //! a snapshot is in use, for background validation.
870 : : //!
871 : : //! Its contents (including on-disk data) will be deleted *upon shutdown*
872 : : //! after background validation of the snapshot has completed. We do not
873 : : //! free the chainstate contents immediately after it finishes validation
874 : : //! to cautiously avoid a case where some other part of the system is still
875 : : //! using this pointer (e.g. net_processing).
876 : : //!
877 : : //! Once this pointer is set to a corresponding chainstate, it will not
878 : : //! be reset until init.cpp:Shutdown().
879 : : //!
880 : : //! It is important for the pointer to not be deleted until shutdown,
881 : : //! because cs_main is not always held when the pointer is accessed, for
882 : : //! example when calling ActivateBestChain, so there's no way you could
883 : : //! prevent code from using the pointer while deleting it.
884 : : std::unique_ptr<Chainstate> m_ibd_chainstate GUARDED_BY(::cs_main);
885 : :
886 : : //! A chainstate initialized on the basis of a UTXO snapshot. If this is
887 : : //! non-null, it is always our active chainstate.
888 : : //!
889 : : //! Once this pointer is set to a corresponding chainstate, it will not
890 : : //! be reset until init.cpp:Shutdown().
891 : : //!
892 : : //! It is important for the pointer to not be deleted until shutdown,
893 : : //! because cs_main is not always held when the pointer is accessed, for
894 : : //! example when calling ActivateBestChain, so there's no way you could
895 : : //! prevent code from using the pointer while deleting it.
896 : : std::unique_ptr<Chainstate> m_snapshot_chainstate GUARDED_BY(::cs_main);
897 : :
898 : : //! Points to either the ibd or snapshot chainstate; indicates our
899 : : //! most-work chain.
900 : : Chainstate* m_active_chainstate GUARDED_BY(::cs_main) {nullptr};
901 : :
902 : : CBlockIndex* m_best_invalid GUARDED_BY(::cs_main){nullptr};
903 : :
904 : : /** The last header for which a headerTip notification was issued. */
905 : : CBlockIndex* m_last_notified_header GUARDED_BY(GetMutex()){nullptr};
906 : :
907 : : bool NotifyHeaderTip() LOCKS_EXCLUDED(GetMutex());
908 : :
909 : : //! Internal helper for ActivateSnapshot().
910 : : //!
911 : : //! De-serialization of a snapshot that is created with
912 : : //! the dumptxoutset RPC.
913 : : //! To reduce space the serialization format of the snapshot avoids
914 : : //! duplication of tx hashes. The code takes advantage of the guarantee by
915 : : //! leveldb that keys are lexicographically sorted.
916 : : [[nodiscard]] util::Result<void> PopulateAndValidateSnapshot(
917 : : Chainstate& snapshot_chainstate,
918 : : AutoFile& coins_file,
919 : : const node::SnapshotMetadata& metadata);
920 : :
921 : : /**
922 : : * If a block header hasn't already been seen, call CheckBlockHeader on it, ensure
923 : : * that it doesn't descend from an invalid block, and then add it to m_block_index.
924 : : * Caller must set min_pow_checked=true in order to add a new header to the
925 : : * block index (permanent memory storage), indicating that the header is
926 : : * known to be part of a sufficiently high-work chain (anti-dos check).
927 : : */
928 : : bool AcceptBlockHeader(
929 : : const CBlockHeader& block,
930 : : BlockValidationState& state,
931 : : CBlockIndex** ppindex,
932 : : bool min_pow_checked) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
933 : : friend Chainstate;
934 : :
935 : : /** Most recent headers presync progress update, for rate-limiting. */
936 : : MockableSteadyClock::time_point m_last_presync_update GUARDED_BY(GetMutex()){};
937 : :
938 : : //! Return true if a chainstate is considered usable.
939 : : //!
940 : : //! This is false when a background validation chainstate has completed its
941 : : //! validation of an assumed-valid chainstate, or when a snapshot
942 : : //! chainstate has been found to be invalid.
943 : 11422704 : bool IsUsable(const Chainstate* const cs) const EXCLUSIVE_LOCKS_REQUIRED(::cs_main) {
944 [ + + + - : 11422032 : return cs && !cs->m_disabled;
+ - + + #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# ][ + - +
+ + + - +
+ - + - +
- + + + -
- + + - -
+ + - - +
+ + + + -
- - - - -
- - ]
945 : : }
946 : :
947 : : //! A queue for script verifications that have to be performed by worker threads.
948 : : CCheckQueue<CScriptCheck> m_script_check_queue;
949 : :
950 : : //! Timers and counters used for benchmarking validation in both background
951 : : //! and active chainstates.
952 : : SteadyClock::duration GUARDED_BY(::cs_main) time_check{};
953 : : SteadyClock::duration GUARDED_BY(::cs_main) time_forks{};
954 : : SteadyClock::duration GUARDED_BY(::cs_main) time_connect{};
955 : : SteadyClock::duration GUARDED_BY(::cs_main) time_verify{};
956 : : SteadyClock::duration GUARDED_BY(::cs_main) time_undo{};
957 : : SteadyClock::duration GUARDED_BY(::cs_main) time_index{};
958 : : SteadyClock::duration GUARDED_BY(::cs_main) time_total{};
959 : : int64_t GUARDED_BY(::cs_main) num_blocks_total{0};
960 : : SteadyClock::duration GUARDED_BY(::cs_main) time_connect_total{};
961 : : SteadyClock::duration GUARDED_BY(::cs_main) time_flush{};
962 : : SteadyClock::duration GUARDED_BY(::cs_main) time_chainstate{};
963 : : SteadyClock::duration GUARDED_BY(::cs_main) time_post_connect{};
964 : :
965 : : public:
966 : : using Options = kernel::ChainstateManagerOpts;
967 : :
968 : : explicit ChainstateManager(const util::SignalInterrupt& interrupt, Options options, node::BlockManager::Options blockman_options);
969 : :
970 : : //! Function to restart active indexes; set dynamically to avoid a circular
971 : : //! dependency on `base/index.cpp`.
972 : : std::function<void()> snapshot_download_completed = std::function<void()>();
973 : :
974 [ + + ][ + + : 44638 : const CChainParams& GetParams() const { return m_options.chainparams; }
+ - + - +
- + - + +
# # ][ - -
- - - - -
- - - - -
- - ][ # #
# # # # #
# # # #
# ]
975 [ + - - - : 261164 : const Consensus::Params& GetConsensus() const { return m_options.chainparams.GetConsensus(); }
+ + # # #
# # # ][ #
# # # # #
# # # # #
# ][ # # #
# # # #
# ][ + - -
- # # ]
[ + - ]
976 : : bool ShouldCheckBlockIndex() const;
977 : 17854 : const arith_uint256& MinimumChainWork() const { return *Assert(m_options.minimum_chain_work); }
978 : 15137 : const uint256& AssumedValidBlock() const { return *Assert(m_options.assumed_valid_block); }
979 [ + - ][ + - : 20083 : kernel::Notifications& GetNotifications() const { return m_options.notifications; };
- - - - -
- - - - -
+ - + - -
- - - - -
- - - - -
- - - - -
- - ]
980 : :
981 : : /**
982 : : * Make various assertions about the state of the block index.
983 : : *
984 : : * By default this only executes fully when using the Regtest chain; see: m_options.check_block_index.
985 : : */
986 : : void CheckBlockIndex();
987 : :
988 : : /**
989 : : * Alias for ::cs_main.
990 : : * Should be used in new code to make it easier to make ::cs_main a member
991 : : * of this class.
992 : : * Generally, methods of this class should be annotated to require this
993 : : * mutex. This will make calling code more verbose, but also help to:
994 : : * - Clarify that the method will acquire a mutex that heavily affects
995 : : * overall performance.
996 : : * - Force call sites to think how long they need to acquire the mutex to
997 : : * get consistent results.
998 : : */
999 [ # # # # : 19448 : RecursiveMutex& GetMutex() const LOCK_RETURNED(::cs_main) { return ::cs_main; }
# # ][ # #
# # # # ]
[ + - + -
+ - + - ]
[ + - + -
+ - + - +
- + - +
- ]
1000 : :
1001 : : const util::SignalInterrupt& m_interrupt;
1002 : : const Options m_options;
1003 : : //! A single BlockManager instance is shared across each constructed
1004 : : //! chainstate to avoid duplicating block metadata.
1005 : : node::BlockManager m_blockman;
1006 : :
1007 : : ValidationCache m_validation_cache;
1008 : :
1009 : : /**
1010 : : * Whether initial block download has ended and IsInitialBlockDownload
1011 : : * should return false from now on.
1012 : : *
1013 : : * Mutable because we need to be able to mark IsInitialBlockDownload()
1014 : : * const, which latches this for caching purposes.
1015 : : */
1016 : : mutable std::atomic<bool> m_cached_finished_ibd{false};
1017 : :
1018 : : /**
1019 : : * Every received block is assigned a unique and increasing identifier, so we
1020 : : * know which one to give priority in case of a fork.
1021 : : */
1022 : : /** Blocks loaded from disk are assigned id 0, so start the counter at 1. */
1023 : : int32_t nBlockSequenceId GUARDED_BY(::cs_main) = 1;
1024 : : /** Decreasing counter (used by subsequent preciousblock calls). */
1025 : : int32_t nBlockReverseSequenceId = -1;
1026 : : /** chainwork for the last block that preciousblock has been applied to. */
1027 : : arith_uint256 nLastPreciousChainwork = 0;
1028 : :
1029 : : // Reset the memory-only sequence counters we use to track block arrival
1030 : : // (used by tests to reset state)
1031 : 2 : void ResetBlockSequenceCounters() EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
1032 : : {
1033 : 2 : AssertLockHeld(::cs_main);
1034 : 2 : nBlockSequenceId = 1;
1035 [ + - ]: 2 : nBlockReverseSequenceId = -1;
1036 : : }
1037 : :
1038 : :
1039 : : /**
1040 : : * In order to efficiently track invalidity of headers, we keep the set of
1041 : : * blocks which we tried to connect and found to be invalid here (ie which
1042 : : * were set to BLOCK_FAILED_VALID since the last restart). We can then
1043 : : * walk this set and check if a new header is a descendant of something in
1044 : : * this set, preventing us from having to walk m_block_index when we try
1045 : : * to connect a bad block and fail.
1046 : : *
1047 : : * While this is more complicated than marking everything which descends
1048 : : * from an invalid block as invalid at the time we discover it to be
1049 : : * invalid, doing so would require walking all of m_block_index to find all
1050 : : * descendants. Since this case should be very rare, keeping track of all
1051 : : * BLOCK_FAILED_VALID blocks in a set should be just fine and work just as
1052 : : * well.
1053 : : *
1054 : : * Because we already walk m_block_index in height-order at startup, we go
1055 : : * ahead and mark descendants of invalid blocks as FAILED_CHILD at that time,
1056 : : * instead of putting things in this set.
1057 : : */
1058 : : std::set<CBlockIndex*> m_failed_blocks;
1059 : :
1060 : : /** Best header we've seen so far (used for getheaders queries' starting points). */
1061 : : CBlockIndex* m_best_header GUARDED_BY(::cs_main){nullptr};
1062 : :
1063 : : //! The total number of bytes available for us to use across all in-memory
1064 : : //! coins caches. This will be split somehow across chainstates.
1065 : : size_t m_total_coinstip_cache{0};
1066 : : //
1067 : : //! The total number of bytes available for us to use across all leveldb
1068 : : //! coins databases. This will be split somehow across chainstates.
1069 : : size_t m_total_coinsdb_cache{0};
1070 : :
1071 : : //! Instantiate a new chainstate.
1072 : : //!
1073 : : //! @param[in] mempool The mempool to pass to the chainstate
1074 : : // constructor
1075 : : Chainstate& InitializeChainstate(CTxMemPool* mempool) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1076 : :
1077 : : //! Get all chainstates currently being used.
1078 : : std::vector<Chainstate*> GetAll();
1079 : :
1080 : : //! Construct and activate a Chainstate on the basis of UTXO snapshot data.
1081 : : //!
1082 : : //! Steps:
1083 : : //!
1084 : : //! - Initialize an unused Chainstate.
1085 : : //! - Load its `CoinsViews` contents from `coins_file`.
1086 : : //! - Verify that the hash of the resulting coinsdb matches the expected hash
1087 : : //! per assumeutxo chain parameters.
1088 : : //! - Wait for our headers chain to include the base block of the snapshot.
1089 : : //! - "Fast forward" the tip of the new chainstate to the base of the snapshot.
1090 : : //! - Move the new chainstate to `m_snapshot_chainstate` and make it our
1091 : : //! ChainstateActive().
1092 : : [[nodiscard]] util::Result<CBlockIndex*> ActivateSnapshot(
1093 : : AutoFile& coins_file, const node::SnapshotMetadata& metadata, bool in_memory);
1094 : :
1095 : : //! Once the background validation chainstate has reached the height which
1096 : : //! is the base of the UTXO snapshot in use, compare its coins to ensure
1097 : : //! they match those expected by the snapshot.
1098 : : //!
1099 : : //! If the coins match (expected), then mark the validation chainstate for
1100 : : //! deletion and continue using the snapshot chainstate as active.
1101 : : //! Otherwise, revert to using the ibd chainstate and shutdown.
1102 : : SnapshotCompletionResult MaybeCompleteSnapshotValidation() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1103 : :
1104 : : //! Returns nullptr if no snapshot has been loaded.
1105 : : const CBlockIndex* GetSnapshotBaseBlock() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1106 : :
1107 : : //! The most-work chain.
1108 : : Chainstate& ActiveChainstate() const;
1109 [ + - + - : 1102702 : CChain& ActiveChain() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex()) { return ActiveChainstate().m_chain; }
+ - + - ]
[ - - - -
- - - - -
- - - - -
- - - - +
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - +
- ][ + - +
- + - + -
+ - + - #
# # # #
# ][ + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # #
# ][ + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # ]
[ + - + -
- + + - +
+ ][ # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # ]
[ + - + -
# # # # #
# ][ + - +
- + - + -
- - - - -
- - - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - - - -
- + - + -
+ - + - -
- - - - -
- - - - -
- - - - -
- - - - ]
[ # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # #
# ][ + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - +
- + - + -
+ - + - ]
[ + - + -
+ - + - +
- + - + -
+ - + - #
# # # #
# ][ + - +
- + - + -
+ - + - +
- + - + -
+ - ]
1110 : 17944 : int ActiveHeight() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex()) { return ActiveChain().Height(); }
1111 [ + - ]: 41980 : CBlockIndex* ActiveTip() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex()) { return ActiveChain().Tip(); }
1112 : :
1113 : : //! The state of a background sync (for net processing)
1114 : 17898 : bool BackgroundSyncInProgress() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex()) {
1115 [ + + + - ]: 18310 : return IsUsable(m_snapshot_chainstate.get()) && IsUsable(m_ibd_chainstate.get());
1116 : : }
1117 : :
1118 : : //! The tip of the background sync chain
1119 : 0 : const CBlockIndex* GetBackgroundSyncTip() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex()) {
1120 [ # # # # ]: 0 : return BackgroundSyncInProgress() ? m_ibd_chainstate->m_chain.Tip() : nullptr;
1121 : : }
1122 : :
1123 : : node::BlockMap& BlockIndex() EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
1124 : : {
1125 : : AssertLockHeld(::cs_main);
1126 [ + + ]: 175 : return m_blockman.m_block_index;
1127 : : }
1128 : :
1129 : : /**
1130 : : * Track versionbit status
1131 : : */
1132 : : mutable VersionBitsCache m_versionbitscache;
1133 : :
1134 : : //! @returns true if a snapshot-based chainstate is in use. Also implies
1135 : : //! that a background validation chainstate is also in use.
1136 : : bool IsSnapshotActive() const;
1137 : :
1138 : : std::optional<uint256> SnapshotBlockhash() const;
1139 : :
1140 : : //! Is there a snapshot in use and has it been fully validated?
1141 : 12 : bool IsSnapshotValidated() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main)
1142 : : {
1143 [ + + + - : 12 : return m_snapshot_chainstate && m_ibd_chainstate && m_ibd_chainstate->m_disabled;
+ - ][ - +
- - - - -
+ - - - -
+ - + - -
+ + - + -
+ - - + -
- - - + -
+ - + - -
+ - - -
- ]
1144 : : }
1145 : :
1146 : : /** Check whether we are doing an initial block download (synchronizing from disk or network) */
1147 : : bool IsInitialBlockDownload() const;
1148 : :
1149 : : /** Guess verification progress (as a fraction between 0.0=genesis and 1.0=current tip). */
1150 : : double GuessVerificationProgress(const CBlockIndex* pindex) const;
1151 : :
1152 : : /**
1153 : : * Import blocks from an external file
1154 : : *
1155 : : * During reindexing, this function is called for each block file (datadir/blocks/blk?????.dat).
1156 : : * It reads all blocks contained in the given file and attempts to process them (add them to the
1157 : : * block index). The blocks may be out of order within each file and across files. Often this
1158 : : * function reads a block but finds that its parent hasn't been read yet, so the block can't be
1159 : : * processed yet. The function will add an entry to the blocks_with_unknown_parent map (which is
1160 : : * passed as an argument), so that when the block's parent is later read and processed, this
1161 : : * function can re-read the child block from disk and process it.
1162 : : *
1163 : : * Because a block's parent may be in a later file, not just later in the same file, the
1164 : : * blocks_with_unknown_parent map must be passed in and out with each call. It's a multimap,
1165 : : * rather than just a map, because multiple blocks may have the same parent (when chain splits
1166 : : * or stale blocks exist). It maps from parent-hash to child-disk-position.
1167 : : *
1168 : : * This function can also be used to read blocks from user-specified block files using the
1169 : : * -loadblock= option. There's no unknown-parent tracking, so the last two arguments are omitted.
1170 : : *
1171 : : *
1172 : : * @param[in] file_in File containing blocks to read
1173 : : * @param[in] dbp (optional) Disk block position (only for reindex)
1174 : : * @param[in,out] blocks_with_unknown_parent (optional) Map of disk positions for blocks with
1175 : : * unknown parent, key is parent block hash
1176 : : * (only used for reindex)
1177 : : * */
1178 : : void LoadExternalBlockFile(
1179 : : AutoFile& file_in,
1180 : : FlatFilePos* dbp = nullptr,
1181 : : std::multimap<uint256, FlatFilePos>* blocks_with_unknown_parent = nullptr);
1182 : :
1183 : : /**
1184 : : * Process an incoming block. This only returns after the best known valid
1185 : : * block is made active. Note that it does not, however, guarantee that the
1186 : : * specific block passed to it has been checked for validity!
1187 : : *
1188 : : * If you want to *possibly* get feedback on whether block is valid, you must
1189 : : * install a CValidationInterface (see validationinterface.h) - this will have
1190 : : * its BlockChecked method called whenever *any* block completes validation.
1191 : : *
1192 : : * Note that we guarantee that either the proof-of-work is valid on block, or
1193 : : * (and possibly also) BlockChecked will have been called.
1194 : : *
1195 : : * May not be called in a validationinterface callback.
1196 : : *
1197 : : * @param[in] block The block we want to process.
1198 : : * @param[in] force_processing Process this block even if unrequested; used for non-network block sources.
1199 : : * @param[in] min_pow_checked True if proof-of-work anti-DoS checks have
1200 : : * been done by caller for headers chain
1201 : : * (note: only affects headers acceptance; if
1202 : : * block header is already present in block
1203 : : * index then this parameter has no effect)
1204 : : * @param[out] new_block A boolean which is set to indicate if the block was first received via this call
1205 : : * @returns If the block was processed, independently of block validity
1206 : : */
1207 : : bool ProcessNewBlock(const std::shared_ptr<const CBlock>& block, bool force_processing, bool min_pow_checked, bool* new_block) LOCKS_EXCLUDED(cs_main);
1208 : :
1209 : : /**
1210 : : * Process incoming block headers.
1211 : : *
1212 : : * May not be called in a
1213 : : * validationinterface callback.
1214 : : *
1215 : : * @param[in] headers The block headers themselves
1216 : : * @param[in] min_pow_checked True if proof-of-work anti-DoS checks have been done by caller for headers chain
1217 : : * @param[out] state This may be set to an Error state if any error occurred processing them
1218 : : * @param[out] ppindex If set, the pointer will be set to point to the last new block index object for the given headers
1219 : : * @returns false if AcceptBlockHeader fails on any of the headers, true otherwise (including if headers were already known)
1220 : : */
1221 : : bool ProcessNewBlockHeaders(std::span<const CBlockHeader> headers, bool min_pow_checked, BlockValidationState& state, const CBlockIndex** ppindex = nullptr) LOCKS_EXCLUDED(cs_main);
1222 : :
1223 : : /**
1224 : : * Sufficiently validate a block for disk storage (and store on disk).
1225 : : *
1226 : : * @param[in] pblock The block we want to process.
1227 : : * @param[in] fRequested Whether we requested this block from a
1228 : : * peer.
1229 : : * @param[in] dbp The location on disk, if we are importing
1230 : : * this block from prior storage.
1231 : : * @param[in] min_pow_checked True if proof-of-work anti-DoS checks have
1232 : : * been done by caller for headers chain
1233 : : *
1234 : : * @param[out] state The state of the block validation.
1235 : : * @param[out] ppindex Optional return parameter to get the
1236 : : * CBlockIndex pointer for this block.
1237 : : * @param[out] fNewBlock Optional return parameter to indicate if the
1238 : : * block is new to our storage.
1239 : : *
1240 : : * @returns False if the block or header is invalid, or if saving to disk fails (likely a fatal error); true otherwise.
1241 : : */
1242 : : bool AcceptBlock(const std::shared_ptr<const CBlock>& pblock, BlockValidationState& state, CBlockIndex** ppindex, bool fRequested, const FlatFilePos* dbp, bool* fNewBlock, bool min_pow_checked) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
1243 : :
1244 : : void ReceivedBlockTransactions(const CBlock& block, CBlockIndex* pindexNew, const FlatFilePos& pos) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
1245 : :
1246 : : /**
1247 : : * Try to add a transaction to the memory pool.
1248 : : *
1249 : : * @param[in] tx The transaction to submit for mempool acceptance.
1250 : : * @param[in] test_accept When true, run validation checks but don't submit to mempool.
1251 : : */
1252 : : [[nodiscard]] MempoolAcceptResult ProcessTransaction(const CTransactionRef& tx, bool test_accept=false)
1253 : : EXCLUSIVE_LOCKS_REQUIRED(cs_main);
1254 : :
1255 : : //! Load the block tree and coins database from disk, initializing state if we're running with -reindex
1256 : : bool LoadBlockIndex() EXCLUSIVE_LOCKS_REQUIRED(cs_main);
1257 : :
1258 : : //! Check to see if caches are out of balance and if so, call
1259 : : //! ResizeCoinsCaches() as needed.
1260 : : void MaybeRebalanceCaches() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1261 : :
1262 : : /** Update uncommitted block structures (currently: only the witness reserved value). This is safe for submitted blocks. */
1263 : : void UpdateUncommittedBlockStructures(CBlock& block, const CBlockIndex* pindexPrev) const;
1264 : :
1265 : : /** Produce the necessary coinbase commitment for a block (modifies the hash, don't call for mined blocks). */
1266 : : std::vector<unsigned char> GenerateCoinbaseCommitment(CBlock& block, const CBlockIndex* pindexPrev) const;
1267 : :
1268 : : /** This is used by net_processing to report pre-synchronization progress of headers, as
1269 : : * headers are not yet fed to validation during that time, but validation is (for now)
1270 : : * responsible for logging and signalling through NotifyHeaderTip, so it needs this
1271 : : * information. */
1272 : : void ReportHeadersPresync(const arith_uint256& work, int64_t height, int64_t timestamp);
1273 : :
1274 : : //! When starting up, search the datadir for a chainstate based on a UTXO
1275 : : //! snapshot that is in the process of being validated.
1276 : : bool DetectSnapshotChainstate() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1277 : :
1278 : : void ResetChainstates() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1279 : :
1280 : : //! Remove the snapshot-based chainstate and all on-disk artifacts.
1281 : : //! Used when reindex{-chainstate} is called during snapshot use.
1282 : : [[nodiscard]] bool DeleteSnapshotChainstate() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1283 : :
1284 : : //! Switch the active chainstate to one based on a UTXO snapshot that was loaded
1285 : : //! previously.
1286 : : Chainstate& ActivateExistingSnapshot(uint256 base_blockhash) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1287 : :
1288 : : //! If we have validated a snapshot chain during this runtime, copy its
1289 : : //! chainstate directory over to the main `chainstate` location, completing
1290 : : //! validation of the snapshot.
1291 : : //!
1292 : : //! If the cleanup succeeds, the caller will need to ensure chainstates are
1293 : : //! reinitialized, since ResetChainstates() will be called before leveldb
1294 : : //! directories are moved or deleted.
1295 : : //!
1296 : : //! @sa node/chainstate:LoadChainstate()
1297 : : bool ValidatedSnapshotCleanup() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1298 : :
1299 : : //! @returns the chainstate that indexes should consult when ensuring that an
1300 : : //! index is synced with a chain where we can expect block index entries to have
1301 : : //! BLOCK_HAVE_DATA beneath the tip.
1302 : : //!
1303 : : //! In other words, give us the chainstate for which we can reasonably expect
1304 : : //! that all blocks beneath the tip have been indexed. In practice this means
1305 : : //! when using an assumed-valid chainstate based upon a snapshot, return only the
1306 : : //! fully validated chain.
1307 : : Chainstate& GetChainstateForIndexing() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1308 : :
1309 : : //! Return the [start, end] (inclusive) of block heights we can prune.
1310 : : //!
1311 : : //! start > end is possible, meaning no blocks can be pruned.
1312 : : std::pair<int, int> GetPruneRange(
1313 : : const Chainstate& chainstate, int last_height_can_prune) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1314 : :
1315 : : //! Return the height of the base block of the snapshot in use, if one exists, else
1316 : : //! nullopt.
1317 : : std::optional<int> GetSnapshotBaseHeight() const EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1318 : :
1319 : : //! If, due to invalidation / reconsideration of blocks, the previous
1320 : : //! best header is no longer valid / guaranteed to be the most-work
1321 : : //! header in our block-index not known to be invalid, recalculate it.
1322 : : void RecalculateBestHeader() EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
1323 : :
1324 : 14476 : CCheckQueue<CScriptCheck>& GetCheckQueue() { return m_script_check_queue; }
1325 : :
1326 : : ~ChainstateManager();
1327 : : };
1328 : :
1329 : : /** Deployment* info via ChainstateManager */
1330 : : template<typename DEP>
1331 : 58467 : bool DeploymentActiveAfter(const CBlockIndex* pindexPrev, const ChainstateManager& chainman, DEP dep)
1332 : : {
1333 : 58467 : return DeploymentActiveAfter(pindexPrev, chainman.GetConsensus(), dep, chainman.m_versionbitscache);
1334 : : }
1335 : :
1336 : : template<typename DEP>
1337 : 82507 : bool DeploymentActiveAt(const CBlockIndex& index, const ChainstateManager& chainman, DEP dep)
1338 : : {
1339 : 82507 : return DeploymentActiveAt(index, chainman.GetConsensus(), dep, chainman.m_versionbitscache);
1340 : : }
1341 : :
1342 : : template<typename DEP>
1343 : 0 : bool DeploymentEnabled(const ChainstateManager& chainman, DEP dep)
1344 : : {
1345 : 0 : return DeploymentEnabled(chainman.GetConsensus(), dep);
1346 : : }
1347 : :
1348 : : /** Identifies blocks that overwrote an existing coinbase output in the UTXO set (see BIP30) */
1349 : : bool IsBIP30Repeat(const CBlockIndex& block_index);
1350 : :
1351 : : /** Identifies blocks which coinbase output was subsequently overwritten in the UTXO set (see BIP30) */
1352 : : bool IsBIP30Unspendable(const CBlockIndex& block_index);
1353 : :
1354 : : #endif // BITCOIN_VALIDATION_H
|