2010-08-29 18:58:15 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 14:51:43 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2020-01-17 15:42:55 +01:00
|
|
|
// Copyright (c) 2014-2020 The Dash Core developers
|
2014-12-01 02:39:44 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2017-08-09 02:19:06 +02:00
|
|
|
#ifndef BITCOIN_VALIDATION_H
|
|
|
|
#define BITCOIN_VALIDATION_H
|
2011-05-15 09:11:04 +02:00
|
|
|
|
2013-05-28 01:55:01 +02:00
|
|
|
#if defined(HAVE_CONFIG_H)
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <config/dash-config.h>
|
2013-05-28 01:55:01 +02:00
|
|
|
#endif
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <amount.h>
|
|
|
|
#include <coins.h>
|
|
|
|
#include <fs.h>
|
|
|
|
#include <protocol.h> // For CMessageHeader::MessageStartChars
|
|
|
|
#include <policy/feerate.h>
|
|
|
|
#include <script/script_error.h>
|
|
|
|
#include <sync.h>
|
|
|
|
#include <versionbits.h>
|
|
|
|
#include <spentindex.h>
|
2011-05-15 09:11:04 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <exception>
|
|
|
|
#include <map>
|
2018-04-02 20:31:40 +02:00
|
|
|
#include <memory>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <set>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2017-08-09 02:19:06 +02:00
|
|
|
#include <atomic>
|
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
class CBlockIndex;
|
2014-10-31 09:36:30 +01:00
|
|
|
class CBlockTreeDB;
|
2015-04-20 00:17:11 +02:00
|
|
|
class CChainParams;
|
2017-06-12 16:19:08 +02:00
|
|
|
class CCoinsViewDB;
|
2011-05-14 23:20:30 +02:00
|
|
|
class CInv;
|
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
|
|
|
class CConnman;
|
2014-10-31 09:36:30 +01:00
|
|
|
class CScriptCheck;
|
2017-04-20 21:16:19 +02:00
|
|
|
class CBlockPolicyEstimator;
|
2015-07-05 14:30:07 +02:00
|
|
|
class CTxMemPool;
|
2014-10-31 09:36:30 +01:00
|
|
|
class CValidationState;
|
2016-09-01 12:09:36 +02:00
|
|
|
class PrecomputedTransactionData;
|
2017-01-12 12:12:56 +01:00
|
|
|
struct ChainTxData;
|
2014-10-31 09:36:30 +01:00
|
|
|
|
2015-12-04 21:01:22 +01:00
|
|
|
struct LockPoints;
|
2011-05-14 23:20:30 +02:00
|
|
|
|
2017-09-15 09:49:18 +02:00
|
|
|
/** Default for -whitelistrelay. */
|
2015-11-26 00:00:23 +01:00
|
|
|
static const bool DEFAULT_WHITELISTRELAY = true;
|
2017-09-15 09:49:18 +02:00
|
|
|
/** Default for -whitelistforcerelay. */
|
2015-11-26 00:00:23 +01:00
|
|
|
static const bool DEFAULT_WHITELISTFORCERELAY = true;
|
2017-12-07 10:43:23 +01:00
|
|
|
/** Default for -minrelaytxfee, minimum relay fee for transactions */
|
|
|
|
static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000;
|
2016-02-02 15:17:51 +01:00
|
|
|
//! -maxtxfee default
|
2018-10-23 13:16:17 +02:00
|
|
|
static const CAmount DEFAULT_TRANSACTION_MAXFEE = 0.1 * COIN;
|
2016-02-02 15:17:51 +01:00
|
|
|
//! Discourage users to set fees higher than this amount (in duffs) per kB
|
|
|
|
static const CAmount HIGH_TX_FEE_PER_KB = 0.01 * COIN;
|
|
|
|
//! -maxtxfee will warn if called with a higher fee than this amount (in duffs)
|
|
|
|
static const CAmount HIGH_MAX_TX_FEE = 100 * HIGH_TX_FEE_PER_KB;
|
2015-07-15 20:47:45 +02:00
|
|
|
/** Default for -limitancestorcount, max number of in-mempool ancestors */
|
2015-10-06 04:16:15 +02:00
|
|
|
static const unsigned int DEFAULT_ANCESTOR_LIMIT = 25;
|
2015-07-15 20:47:45 +02:00
|
|
|
/** Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */
|
2015-10-06 04:16:15 +02:00
|
|
|
static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 101;
|
2015-07-15 20:47:45 +02:00
|
|
|
/** Default for -limitdescendantcount, max number of in-mempool descendants */
|
2015-10-06 04:16:15 +02:00
|
|
|
static const unsigned int DEFAULT_DESCENDANT_LIMIT = 25;
|
2015-07-15 20:47:45 +02:00
|
|
|
/** Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */
|
2015-10-06 04:16:15 +02:00
|
|
|
static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 101;
|
2015-10-02 23:43:30 +02:00
|
|
|
/** Default for -mempoolexpiry, expiration time for mempool transactions in hours */
|
2017-01-05 20:32:41 +01:00
|
|
|
static const unsigned int DEFAULT_MEMPOOL_EXPIRY = 336;
|
2017-05-30 18:42:22 +02:00
|
|
|
/** Maximum kilobytes for transactions to store for processing during reorg */
|
|
|
|
static const unsigned int MAX_DISCONNECTED_TX_POOL_SIZE = 20000;
|
2012-11-03 00:14:43 +01:00
|
|
|
/** The maximum size of a blk?????.dat file (since 0.8) */
|
2012-08-13 19:11:05 +02:00
|
|
|
static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB
|
2012-11-03 00:14:43 +01:00
|
|
|
/** The pre-allocation chunk size for blk?????.dat files (since 0.8) */
|
2012-08-16 02:21:28 +02:00
|
|
|
static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB
|
2012-11-03 00:14:43 +01:00
|
|
|
/** The pre-allocation chunk size for rev?????.dat files (since 0.8) */
|
2012-08-16 02:21:28 +02:00
|
|
|
static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
|
2015-11-09 19:16:38 +01:00
|
|
|
|
2012-12-01 23:04:14 +01:00
|
|
|
/** Maximum number of script-checking threads allowed */
|
|
|
|
static const int MAX_SCRIPTCHECK_THREADS = 16;
|
2014-02-18 12:48:16 +01:00
|
|
|
/** -par default (number of script-checking threads, 0 = auto) */
|
|
|
|
static const int DEFAULT_SCRIPTCHECK_THREADS = 0;
|
2014-01-10 13:23:26 +01:00
|
|
|
/** Number of blocks that can be requested at any given time from a single peer. */
|
2014-07-12 00:02:35 +02:00
|
|
|
static const int MAX_BLOCKS_IN_TRANSIT_PER_PEER = 16;
|
|
|
|
/** Timeout in seconds during which a peer must stall block download progress before being disconnected. */
|
|
|
|
static const unsigned int BLOCK_STALLING_TIMEOUT = 2;
|
|
|
|
/** Number of headers sent in one getheaders result. We rely on the assumption that if a peer sends
|
2015-04-28 16:48:28 +02:00
|
|
|
* less than this number, we reached its tip. Changing this value is a protocol upgrade. */
|
2014-07-12 00:02:35 +02:00
|
|
|
static const unsigned int MAX_HEADERS_RESULTS = 2000;
|
Backport compact blocks functionality from bitcoin (#1966)
* Merge #8068: Compact Blocks
48efec8 Fix some minor compact block issues that came up in review (Matt Corallo)
ccd06b9 Elaborate bucket size math (Pieter Wuille)
0d4cb48 Use vTxHashes to optimize InitData significantly (Matt Corallo)
8119026 Provide a flat list of txid/terators to txn in CTxMemPool (Matt Corallo)
678ee97 Add BIP 152 to implemented BIPs list (Matt Corallo)
56ba516 Add reconstruction debug logging (Matt Corallo)
2f34a2e Get our "best three" peers to announce blocks using cmpctblocks (Matt Corallo)
927f8ee Add ability to fetch CNode by NodeId (Matt Corallo)
d25cd3e Add receiver-side protocol implementation for CMPCTBLOCK stuff (Matt Corallo)
9c837d5 Add sender-side protocol implementation for CMPCTBLOCK stuff (Matt Corallo)
00c4078 Add protocol messages for short-ids blocks (Matt Corallo)
e3b2222 Add some blockencodings tests (Matt Corallo)
f4f8f14 Add TestMemPoolEntryHelper::FromTx version for CTransaction (Matt Corallo)
85ad31e Add partial-block block encodings API (Matt Corallo)
5249dac Add COMPACTSIZE wrapper similar to VARINT for serialization (Matt Corallo)
cbda71c Move context-required checks from CheckBlockHeader to Contextual... (Matt Corallo)
7c29ec9 If AcceptBlockHeader returns true, pindex will be set. (Matt Corallo)
96806c3 Stop trimming when mapTx is empty (Pieter Wuille)
* Merge #8408: Prevent fingerprinting, disk-DoS with compact blocks
1d06e49 Ignore CMPCTBLOCK messages for pruned blocks (Suhas Daftuar)
1de2a46 Ignore GETBLOCKTXN requests for unknown blocks (Suhas Daftuar)
* Merge #8418: Add tests for compact blocks
45c7ddd Add p2p test for BIP 152 (compact blocks) (Suhas Daftuar)
9a22a6c Add support for compactblocks to mininode (Suhas Daftuar)
a8689fd Tests: refactor compact size serialization in mininode (Suhas Daftuar)
9c8593d Implement SipHash in Python (Pieter Wuille)
56c87e9 Allow changing BIP9 parameters on regtest (Suhas Daftuar)
* Merge #8505: Trivial: Fix typos in various files
1aacfc2 various typos (leijurv)
* Merge #8449: [Trivial] Do not shadow local variable, cleanup
a159f25 Remove redundand (and shadowing) declaration (Pavel Janík)
cce3024 Do not shadow local variable, cleanup (Pavel Janík)
* Merge #8739: [qa] Fix broken sendcmpct test in p2p-compactblocks.py
157254a Fix broken sendcmpct test in p2p-compactblocks.py (Suhas Daftuar)
* Merge #8854: [qa] Fix race condition in p2p-compactblocks test
b5fd666 [qa] Fix race condition in p2p-compactblocks test (Suhas Daftuar)
* Merge #8393: Support for compact blocks together with segwit
27acfc1 [qa] Update p2p-compactblocks.py for compactblocks v2 (Suhas Daftuar)
422fac6 [qa] Add support for compactblocks v2 to mininode (Suhas Daftuar)
f5b9b8f [qa] Fix bug in mininode witness deserialization (Suhas Daftuar)
6aa28ab Use cmpctblock type 2 for segwit-enabled transfer (Pieter Wuille)
be7555f Fix overly-prescriptive p2p-segwit test for new fetch logic (Matt Corallo)
06128da Make GetFetchFlags always request witness objects from witness peers (Matt Corallo)
* Merge #8882: [qa] Fix race conditions in p2p-compactblocks.py and sendheaders.py
b55d941 [qa] Fix race condition in sendheaders.py (Suhas Daftuar)
6976db2 [qa] Another attempt to fix race condition in p2p-compactblocks.py (Suhas Daftuar)
* Merge #8904: [qa] Fix compact block shortids for a test case
4cdece4 [qa] Fix compact block shortids for a test case (Dagur Valberg Johannsson)
* Merge #8637: Compact Block Tweaks (rebase of #8235)
3ac6de0 Align constant names for maximum compact block / blocktxn depth (Pieter Wuille)
b2e93a3 Add cmpctblock to debug help list (instagibbs)
fe998e9 More agressively filter compact block requests (Matt Corallo)
02a337d Dont remove a "preferred" cmpctblock peer if they provide a block (Matt Corallo)
* Merge #8975: Chainparams: Trivial: In AppInit2(), s/Params()/chainparams/
6f2f639 Chainparams: Trivial: In AppInit2(), s/Params()/chainparams/ (Jorge Timón)
* Merge #8968: Don't hold cs_main when calling ProcessNewBlock from a cmpctblock
72ca7d9 Don't hold cs_main when calling ProcessNewBlock from a cmpctblock (Matt Corallo)
* Merge #8995: Add missing cs_main lock to ::GETBLOCKTXN processing
dfe7906 Add missing cs_main lock to ::GETBLOCKTXN processing (Matt Corallo)
* Merge #8515: A few mempool removal optimizations
0334430 Add some missing includes (Pieter Wuille)
4100499 Return shared_ptr<CTransaction> from mempool removes (Pieter Wuille)
51f2783 Make removed and conflicted arguments optional to remove (Pieter Wuille)
f48211b Bypass removeRecursive in removeForReorg (Pieter Wuille)
* Merge #9026: Fix handling of invalid compact blocks
d4833ff Bump the protocol version to distinguish new banning behavior. (Suhas Daftuar)
88c3549 Fix compact block handling to not ban if block is invalid (Suhas Daftuar)
c93beac [qa] Test that invalid compactblocks don't result in ban (Suhas Daftuar)
* Merge #9039: Various serialization simplifcations and optimizations
d59a518 Use fixed preallocation instead of costly GetSerializeSize (Pieter Wuille)
25a211a Add optimized CSizeComputer serializers (Pieter Wuille)
a2929a2 Make CSerAction's ForRead() constexpr (Pieter Wuille)
a603925 Avoid -Wshadow errors (Pieter Wuille)
5284721 Get rid of nType and nVersion (Pieter Wuille)
657e05a Make GetSerializeSize a wrapper on top of CSizeComputer (Pieter Wuille)
fad9b66 Make nType and nVersion private and sometimes const (Pieter Wuille)
c2c5d42 Make streams' read and write return void (Pieter Wuille)
50e8a9c Remove unused ReadVersion and WriteVersion (Pieter Wuille)
* Merge #9058: Fixes for p2p-compactblocks.py test timeouts on travis (#8842)
dac53b5 Modify getblocktxn handler not to drop requests for old blocks (Russell Yanofsky)
55bfddc [qa] Fix stale data bug in test_compactblocks_not_at_tip (Russell Yanofsky)
47e9659 [qa] Fix bug in compactblocks v2 merge (Russell Yanofsky)
* Merge #9160: [trivial] Fix hungarian variable name
ec34648 [trivial] Fix hungarian variable name (Russell Yanofsky)
* Merge #9159: [qa] Wait for specific block announcement in p2p-compactblocks
dfa44d1 [qa] Wait for specific block announcement in p2p-compactblocks (Russell Yanofsky)
* Merge #9125: Make CBlock a vector of shared_ptr of CTransactions
b4e4ba4 Introduce convenience type CTransactionRef (Pieter Wuille)
1662b43 Make CBlock::vtx a vector of shared_ptr<CTransaction> (Pieter Wuille)
da60506 Add deserializing constructors to CTransaction and CMutableTransaction (Pieter Wuille)
0e85204 Add serialization for unique_ptr and shared_ptr (Pieter Wuille)
* Merge #8872: Remove block-request logic from INV message processing
037159c Remove block-request logic from INV message processing (Matt Corallo)
3451203 [qa] Respond to getheaders and do not assume a getdata on inv (Matt Corallo)
d768f15 [qa] Make comptool push blocks instead of relying on inv-fetch (mrbandrews)
* Merge #9199: Always drop the least preferred HB peer when adding a new one.
ca8549d Always drop the least preferred HB peer when adding a new one. (Gregory Maxwell)
* Merge #9233: Fix some typos
15fa95d Fix some typos (fsb4000)
* Merge #9260: Mrs Peacock in The Library with The Candlestick (killed main.{h,cpp})
76faa3c Rename the remaining main.{h,cpp} to validation.{h,cpp} (Matt Corallo)
e736772 Move network-msg-processing code out of main to its own file (Matt Corallo)
87c35f5 Remove orphan state wipe from UnloadBlockIndex. (Matt Corallo)
* Merge #9014: Fix block-connection performance regression
dd0df81 Document ConnectBlock connectTrace postconditions (Matt Corallo)
2d6e561 Switch pblock in ProcessNewBlock to a shared_ptr (Matt Corallo)
2736c44 Make the optional pblock in ActivateBestChain a shared_ptr (Matt Corallo)
ae4db44 Create a shared_ptr for the block we're connecting in ActivateBCS (Matt Corallo)
fd9d890 Keep blocks as shared_ptrs, instead of copying txn in ConnectTip (Matt Corallo)
6fdd43b Add struct to track block-connect-time-generated info for callbacks (Matt Corallo)
* Merge #9240: Remove txConflicted
a874ab5 remove internal tracking of mempool conflicts for reporting to wallet (Alex Morcos)
bf663f8 remove external usage of mempool conflict tracking (Alex Morcos)
* Merge #9344: Do not run functions with necessary side-effects in assert()
da9cdd2 Do not run functions with necessary side-effects in assert() (Gregory Maxwell)
* Merge #9273: Remove unused CDiskBlockPos* argument from ProcessNewBlock
a13fa4c Remove unused CDiskBlockPos* argument from ProcessNewBlock (Matt Corallo)
* Merge #9352: Attempt reconstruction from all compact block announcements
813ede9 [qa] Update compactblocks test for multi-peer reconstruction (Suhas Daftuar)
7017298 Allow compactblock reconstruction when block is in flight (Suhas Daftuar)
* Merge #9252: Release cs_main before calling ProcessNewBlock, or processing headers (cmpctblock handling)
bd02bdd Release cs_main before processing cmpctblock as header (Suhas Daftuar)
680b0c0 Release cs_main before calling ProcessNewBlock (cmpctblock handling) (Suhas Daftuar)
* Merge #9283: A few more CTransactionRef optimizations
91335ba Remove unused MakeTransactionRef overloads (Pieter Wuille)
6713f0f Make FillBlock consume txn_available to avoid shared_ptr copies (Pieter Wuille)
62607d7 Convert COrphanTx to keep a CTransactionRef (Pieter Wuille)
c44e4c4 Make AcceptToMemoryPool take CTransactionRef (Pieter Wuille)
* Merge #9375: Relay compact block messages prior to full block connection
02ee4eb Make most_recent_compact_block a pointer to a const (Matt Corallo)
73666ad Add comment to describe callers to ActivateBestChain (Matt Corallo)
962f7f0 Call ActivateBestChain without cs_main/with most_recent_block (Matt Corallo)
0df777d Use a temp pindex to avoid a const_cast in ProcessNewBlockHeaders (Matt Corallo)
c1ae4fc Avoid holding cs_most_recent_block while calling ReadBlockFromDisk (Matt Corallo)
9eb67f5 Ensure we meet the BIP 152 old-relay-types response requirements (Matt Corallo)
5749a85 Cache most-recently-connected compact block (Matt Corallo)
9eaec08 Cache most-recently-announced block's shared_ptr (Matt Corallo)
c802092 Relay compact block messages prior to full block connection (Matt Corallo)
6987219 Add a CValidationInterface::NewPoWValidBlock callback (Matt Corallo)
180586f Call AcceptBlock with the block's shared_ptr instead of CBlock& (Matt Corallo)
8baaba6 [qa] Avoid race in preciousblock test. (Matt Corallo)
9a0b2f4 [qa] Make compact blocks test construction using fetch methods (Matt Corallo)
8017547 Make CBlockIndex*es in net_processing const (Matt Corallo)
* Merge #9486: Make peer=%d log prints consistent
e6111b2 Make peer id logging consistent ("peer=%d" instead of "peer %d") (Matt Corallo)
* Merge #9400: Set peers as HB peers upon full block validation
d4781ac Set peers as HB peers upon full block validation (Gregory Sanders)
* Merge #9499: Use recent-rejects, orphans, and recently-replaced txn for compact-block-reconstruction
c594580 Add braces around AddToCompactExtraTransactions (Matt Corallo)
1ccfe9b Clarify comment about mempool/extra conflicts (Matt Corallo)
fac4c78 Make PartiallyDownloadedBlock::InitData's second param const (Matt Corallo)
b55b416 Add extra_count lower bound to compact reconstruction debug print (Matt Corallo)
863edb4 Consider all (<100k memusage) txn for compact-block-extra-txn cache (Matt Corallo)
7f8c8ca Consider all orphan txn for compact-block-extra-txn cache (Matt Corallo)
93380c5 Use replaced transactions in compact block reconstruction (Matt Corallo)
1531652 Keep shared_ptrs to recently-replaced txn for compact blocks (Matt Corallo)
edded80 Make ATMP optionally return the CTransactionRefs it replaced (Matt Corallo)
c735540 Move ORPHAN constants from validation.h to net_processing.h (Matt Corallo)
* Merge #9587: Do not shadow local variable named `tx`.
44f2baa Do not shadow local variable named `tx`. (Pavel Janík)
* Merge #9510: [trivial] Fix typos in comments
cc16d99 [trivial] Fix typos in comments (practicalswift)
* Merge #9604: [Trivial] add comment about setting peer as HB peer.
dd5b011 [Trivial] add comment about setting peer as HB peer. (John Newbery)
* Fix using of AcceptToMemoryPool in PrivateSend code
* add `override`
* fSupportsDesiredCmpctVersion
* bring back tx ressurection in DisconnectTip
* Fix delayed headers
* Remove unused CConnman::FindNode overload
* Fix typos and comments
* Fix minor code differences
* Don't use rejection cache for corrupted transactions
Partly based on https://github.com/bitcoin/bitcoin/pull/8525
* Backport missed cs_main locking changes
Missed from https://github.com/bitcoin/bitcoin/commit/58a215ce8c13b900cf982c39f8ee4879290d1a95
* Backport missed comments and mapBlockSource.emplace call
Missed from two commits:
https://github.com/bitcoin/bitcoin/commit/88c35491ab19f9afdf9b3fa9356a072f70ef2f55
https://github.com/bitcoin/bitcoin/commit/7c98ce584ec23bcddcba8cdb33efa6547212f6ef
* Add CheckPeerHeaders() helper and check in (nCount == 0) too
2018-04-11 13:06:01 +02:00
|
|
|
/** Maximum depth of blocks we're willing to serve as compact blocks to peers
|
|
|
|
* when requested. For older blocks, a regular BLOCK response will be sent. */
|
|
|
|
static const int MAX_CMPCTBLOCK_DEPTH = 5;
|
|
|
|
/** Maximum depth of blocks we're willing to respond to GETBLOCKTXN requests for. */
|
|
|
|
static const int MAX_BLOCKTXN_DEPTH = 10;
|
2014-07-12 00:02:35 +02:00
|
|
|
/** Size of the "block download window": how far ahead of our current height do we fetch?
|
|
|
|
* Larger windows tolerate larger download speed differences between peer, but increase the potential
|
2017-09-18 11:32:46 +02:00
|
|
|
* degree of disordering of blocks on disk (which make reindexing and pruning harder). We'll probably
|
|
|
|
* want to make this a per-peer adaptive value at some point. */
|
2014-07-12 00:02:35 +02:00
|
|
|
static const unsigned int BLOCK_DOWNLOAD_WINDOW = 1024;
|
2015-05-04 22:00:19 +02:00
|
|
|
/** Time to wait (in seconds) between writing blocks/block index to disk. */
|
|
|
|
static const unsigned int DATABASE_WRITE_INTERVAL = 60 * 60;
|
|
|
|
/** Time to wait (in seconds) between flushing chainstate to disk. */
|
|
|
|
static const unsigned int DATABASE_FLUSH_INTERVAL = 24 * 60 * 60;
|
2014-11-29 16:01:37 +01:00
|
|
|
/** Maximum length of reject messages. */
|
|
|
|
static const unsigned int MAX_REJECT_MESSAGE_LENGTH = 111;
|
2016-08-12 07:57:20 +02:00
|
|
|
/** Block download timeout base, expressed in millionths of the block interval (i.e. 2.5 min) */
|
2017-12-22 19:28:05 +01:00
|
|
|
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 1000000;
|
2016-08-12 07:57:20 +02:00
|
|
|
/** Additional block download timeout per parallel downloading peer (i.e. 1.25 min) */
|
2017-12-27 14:07:52 +01:00
|
|
|
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 500000;
|
2015-04-08 20:20:00 +02:00
|
|
|
|
2016-01-18 11:55:52 +01:00
|
|
|
static const int64_t DEFAULT_MAX_TIP_AGE = 6 * 60 * 60; // ~144 blocks behind -> 2 x fork detection time, was 24 * 60 * 60 in bitcoin
|
2017-01-05 23:14:23 +01:00
|
|
|
/** Maximum age of our tip in seconds for us to be considered current for fee estimation */
|
|
|
|
static const int64_t MAX_FEE_ESTIMATION_TIP_AGE = 3 * 60 * 60;
|
2015-06-27 21:21:41 +02:00
|
|
|
|
2015-11-09 19:16:38 +01:00
|
|
|
/** Default for -permitbaremultisig */
|
|
|
|
static const bool DEFAULT_PERMIT_BAREMULTISIG = true;
|
2014-02-22 03:41:01 +01:00
|
|
|
static const unsigned int DEFAULT_BYTES_PER_SIGOP = 20;
|
2015-11-09 19:16:38 +01:00
|
|
|
static const bool DEFAULT_CHECKPOINTS_ENABLED = true;
|
2016-02-02 16:28:56 +01:00
|
|
|
static const bool DEFAULT_TXINDEX = true;
|
2016-03-05 22:31:10 +01:00
|
|
|
static const bool DEFAULT_ADDRESSINDEX = false;
|
2016-03-22 23:11:04 +01:00
|
|
|
static const bool DEFAULT_TIMESTAMPINDEX = false;
|
2016-04-05 21:53:38 +02:00
|
|
|
static const bool DEFAULT_SPENTINDEX = false;
|
2015-06-27 21:21:41 +02:00
|
|
|
static const unsigned int DEFAULT_BANSCORE_THRESHOLD = 100;
|
2017-05-03 09:23:39 +02:00
|
|
|
/** Default for -persistmempool */
|
|
|
|
static const bool DEFAULT_PERSIST_MEMPOOL = true;
|
2020-01-01 15:13:04 +01:00
|
|
|
/** Default for -syncmempool */
|
|
|
|
static const bool DEFAULT_SYNC_MEMPOOL = true;
|
2015-06-27 21:21:41 +02:00
|
|
|
|
2014-11-18 22:16:32 +01:00
|
|
|
/** Maximum number of headers to announce when relaying blocks with headers message.*/
|
|
|
|
static const unsigned int MAX_BLOCKS_TO_ANNOUNCE = 8;
|
2013-10-28 07:36:11 +01:00
|
|
|
|
2016-07-18 07:43:55 +02:00
|
|
|
/** Maximum number of unconnecting headers announcements before DoS score */
|
|
|
|
static const int MAX_UNCONNECTING_HEADERS = 10;
|
|
|
|
|
2016-02-16 09:47:45 +01:00
|
|
|
static const bool DEFAULT_PEERBLOOMFILTERS = true;
|
|
|
|
|
2017-05-01 09:16:17 +02:00
|
|
|
/** Default for -stopatheight */
|
|
|
|
static const int DEFAULT_STOPATHEIGHT = 0;
|
|
|
|
|
2014-09-04 02:03:17 +02:00
|
|
|
struct BlockHasher
|
|
|
|
{
|
2014-12-15 09:12:11 +01:00
|
|
|
size_t operator()(const uint256& hash) const { return hash.GetCheapHash(); }
|
2014-09-04 02:03:17 +02:00
|
|
|
};
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-02-06 21:48:00 +01:00
|
|
|
extern CScript COINBASE_FLAGS;
|
2010-08-29 18:58:15 +02:00
|
|
|
extern CCriticalSection cs_main;
|
2017-04-20 21:16:19 +02:00
|
|
|
extern CBlockPolicyEstimator feeEstimator;
|
2013-08-27 07:51:57 +02:00
|
|
|
extern CTxMemPool mempool;
|
2018-03-30 00:25:43 +02:00
|
|
|
extern std::atomic_bool g_is_mempool_loaded;
|
2017-06-08 12:45:27 +02:00
|
|
|
typedef std::unordered_map<uint256, CBlockIndex*, BlockHasher> BlockMap;
|
2019-01-22 14:18:34 +01:00
|
|
|
typedef std::unordered_multimap<uint256, CBlockIndex*, BlockHasher> PrevBlockMap;
|
Backport 10279 (#3394)
* Merge #10279: Add a CChainState class to validation.cpp to take another step towards clarifying internal interfaces
22fddde Avoid calling GetSerializeSize on each tx in a block if !fTxIndex (Matt Corallo)
2862aca Move some additional variables into CChainState private (Matt Corallo)
fd4d80a Create initial CChainState to hold chain state information (Matt Corallo)
e104f0f Move block writing out of AcceptBlock (Matt Corallo)
50701ba Move txindex/undo data disk location stuff out of ConnectBlock (Matt Corallo)
93a34cf Make DisconnectBlock unaware of where undo data resides on disk (Matt Corallo)
Pull request description:
CChainState should eventually, essentially, be our exposed "libconsensus", but we're probably a few releases away, so the real goal is to clarify our internal interfaces. The main split was a big step, but validation.cpp is still a somewhat ranomly-mixed bag of functions that are pure functions which validate inputs (which should probably either merge with their callers or move into another file in consensus/), read/write data from disk, manipulate our current chain state (which moves into CChainState), and do mempool transaction validation.
Obviously this is only a small step, but some effort is made to clean up what functions the functions in CChainState call, and obviously as things are added its easy to keep clear "CChainState::* cannot call anything except via callbacks through CValidationInterface, pure functions, or disk read/write things". Right now there are some glaring violations in mempool callbacks, and general flushing logic needs cleaning up (FlushStateToDisk maybe shouldnt be called, and there should be an API towards setDirtyBlockIndex, but I'll leave that for after @sipa's current changesets land).
Tree-SHA512: 69b8ec191b36b19c9492b4dee74c8057621fb6ec98ad219e8da0b2ed5c3ad711b10b5af9ff1117e8807ccf88918eeeab573be8448baecc9a59f099c53095985b
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* More of 10279
Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com>
Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
2020-04-11 22:02:26 +02:00
|
|
|
extern BlockMap& mapBlockIndex;
|
|
|
|
extern PrevBlockMap& mapPrevBlockIndex;
|
2013-04-13 07:13:08 +02:00
|
|
|
extern uint64_t nLastBlockTx;
|
|
|
|
extern uint64_t nLastBlockSize;
|
2011-12-23 16:14:57 +01:00
|
|
|
extern const std::string strMessageMagic;
|
2018-04-13 03:13:49 +02:00
|
|
|
extern CWaitableCriticalSection g_best_block_mutex;
|
|
|
|
extern CConditionVariable g_best_block_cv;
|
|
|
|
extern uint256 g_best_block;
|
2016-11-29 12:38:12 +01:00
|
|
|
extern std::atomic_bool fImporting;
|
2017-10-05 15:03:09 +02:00
|
|
|
extern std::atomic_bool fReindex;
|
2012-12-01 23:04:14 +01:00
|
|
|
extern int nScriptCheckThreads;
|
2013-01-11 01:47:57 +01:00
|
|
|
extern bool fTxIndex;
|
2019-10-31 18:30:42 +01:00
|
|
|
extern bool fAddressIndex;
|
|
|
|
extern bool fTimestampIndex;
|
|
|
|
extern bool fSpentIndex;
|
2014-07-17 02:04:04 +02:00
|
|
|
extern bool fIsBareMultisigStd;
|
2015-06-24 05:36:22 +02:00
|
|
|
extern bool fRequireStandard;
|
2014-02-22 03:41:01 +01:00
|
|
|
extern unsigned int nBytesPerSigOp;
|
2015-03-13 17:25:34 +01:00
|
|
|
extern bool fCheckBlockIndex;
|
2015-04-23 05:22:36 +02:00
|
|
|
extern bool fCheckpointsEnabled;
|
2015-05-04 01:38:08 +02:00
|
|
|
extern size_t nCoinCacheUsage;
|
2016-02-02 15:17:51 +01:00
|
|
|
/** A fee rate smaller than this is considered zero fee (for relaying, mining and transaction creation) */
|
2014-07-03 20:25:32 +02:00
|
|
|
extern CFeeRate minRelayTxFee;
|
2016-02-02 15:17:51 +01:00
|
|
|
/** Absolute maximum transaction fee (in duffs) used by wallet and mempool (rejects high fee in sendrawtransaction) */
|
|
|
|
extern CAmount maxTxFee;
|
|
|
|
/** If the tip is older than this (in seconds), the node is considered to be in initial block download. */
|
2016-01-18 11:55:52 +01:00
|
|
|
extern int64_t nMaxTipAge;
|
2015-02-05 18:56:11 +01:00
|
|
|
|
2017-12-01 19:53:34 +01:00
|
|
|
extern bool fLargeWorkForkFound;
|
|
|
|
extern bool fLargeWorkInvalidChainFound;
|
|
|
|
|
2017-09-15 20:08:03 +02:00
|
|
|
extern std::atomic<bool> fDIP0001ActiveAtTip;
|
2015-08-05 02:58:41 +02:00
|
|
|
|
2017-08-23 16:21:08 +02:00
|
|
|
/** Block hash whose ancestors we will assume to have valid scripts without checking them. */
|
|
|
|
extern uint256 hashAssumeValid;
|
|
|
|
|
2017-09-06 18:49:43 +02:00
|
|
|
/** Minimum work we will assume exists on some valid chain. */
|
|
|
|
extern arith_uint256 nMinimumChainWork;
|
|
|
|
|
2014-12-01 02:39:44 +01:00
|
|
|
/** Best header we've seen so far (used for getheaders queries' starting points). */
|
2014-07-12 00:03:10 +02:00
|
|
|
extern CBlockIndex *pindexBestHeader;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2014-12-01 02:39:44 +01:00
|
|
|
/** Minimum disk space required - used in CheckDiskSpace() */
|
2013-04-13 07:13:08 +02:00
|
|
|
static const uint64_t nMinDiskSpace = 52428800;
|
2012-12-19 21:21:21 +01:00
|
|
|
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
/** Pruning-related variables and constants */
|
|
|
|
/** True if any block files have ever been pruned. */
|
|
|
|
extern bool fHavePruned;
|
|
|
|
/** True if we're running in -prune mode. */
|
|
|
|
extern bool fPruneMode;
|
|
|
|
/** Number of MiB of block files that we're trying to stay below. */
|
|
|
|
extern uint64_t nPruneTarget;
|
|
|
|
/** Block files containing a block-height within MIN_BLOCKS_TO_KEEP of chainActive.Tip() will not be pruned. */
|
2015-05-13 22:04:39 +02:00
|
|
|
static const unsigned int MIN_BLOCKS_TO_KEEP = 288;
|
2017-12-09 08:34:31 +01:00
|
|
|
/** Minimum blocks required to signal NODE_NETWORK_LIMITED */
|
|
|
|
static const unsigned int NODE_NETWORK_LIMITED_MIN_BLOCKS = 288;
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
|
2016-08-30 13:38:12 +02:00
|
|
|
static const signed int DEFAULT_CHECKBLOCKS = 6;
|
2015-06-27 21:08:36 +02:00
|
|
|
static const unsigned int DEFAULT_CHECKLEVEL = 3;
|
|
|
|
|
2017-09-14 13:42:37 +02:00
|
|
|
// Require that user allocate at least 945MB for block & undo files (blk???.dat and rev???.dat)
|
|
|
|
// At 2MB per block, 288 blocks = 576MB.
|
|
|
|
// Add 15% for Undo data = 662MB
|
|
|
|
// Add 20% for Orphan block rate = 794MB
|
|
|
|
// We want the low water mark after pruning to be at least 794 MB and since we prune in
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
// full block file chunks, we need the high water mark which triggers the prune to be
|
2017-09-14 13:42:37 +02:00
|
|
|
// one 128MB block file + added 15% undo data = 147MB greater for a total of 941MB
|
|
|
|
// Setting the target to > than 945MB will make it likely we can respect the target.
|
|
|
|
static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES = 945 * 1024 * 1024;
|
2013-01-07 15:39:53 +01:00
|
|
|
|
2020-07-29 03:23:12 +02:00
|
|
|
/**
|
2014-12-01 02:39:44 +01:00
|
|
|
* Process an incoming block. This only returns after the best known valid
|
|
|
|
* block is made active. Note that it does not, however, guarantee that the
|
|
|
|
* specific block passed to it has been checked for validity!
|
2017-08-02 20:35:04 +02:00
|
|
|
*
|
|
|
|
* If you want to *possibly* get feedback on whether pblock is valid, you must
|
|
|
|
* install a CValidationInterface (see validationinterface.h) - this will have
|
|
|
|
* its BlockChecked method called whenever *any* block completes validation.
|
|
|
|
*
|
|
|
|
* Note that we guarantee that either the proof-of-work is valid on pblock, or
|
|
|
|
* (and possibly also) BlockChecked will have been called.
|
2016-09-01 12:09:36 +02:00
|
|
|
*
|
2018-07-09 21:51:36 +02:00
|
|
|
* May not be called in a
|
2018-06-15 15:58:21 +02:00
|
|
|
* validationinterface callback.
|
2017-09-20 11:09:45 +02:00
|
|
|
*
|
2014-12-01 02:39:44 +01:00
|
|
|
* @param[in] pblock The block we want to process.
|
2015-04-09 19:21:11 +02:00
|
|
|
* @param[in] fForceProcessing Process this block even if unrequested; used for non-network block sources and whitelisted peers.
|
2017-08-02 20:35:04 +02:00
|
|
|
* @param[out] fNewBlock A boolean which is set to indicate if the block was first received via this call
|
2014-12-01 02:39:44 +01:00
|
|
|
* @return True if state.IsValid()
|
|
|
|
*/
|
2018-07-09 21:51:36 +02:00
|
|
|
bool ProcessNewBlock(const CChainParams& chainparams, const std::shared_ptr<const CBlock> pblock, bool fForceProcessing, bool* fNewBlock) LOCKS_EXCLUDED(cs_main);
|
2017-08-03 00:19:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process incoming block headers.
|
|
|
|
*
|
2018-07-09 21:51:36 +02:00
|
|
|
* May not be called in a
|
2018-06-15 15:58:21 +02:00
|
|
|
* validationinterface callback.
|
2017-09-20 11:09:45 +02:00
|
|
|
*
|
2017-08-03 00:19:34 +02:00
|
|
|
* @param[in] block The block headers themselves
|
|
|
|
* @param[out] state This may be set to an Error state if any error occurred processing them
|
|
|
|
* @param[in] chainparams The params for the chain we want to connect to
|
|
|
|
* @param[out] ppindex If set, the pointer will be set to point to the last new block index object for the given headers
|
2017-10-28 20:11:23 +02:00
|
|
|
* @param[out] first_invalid First header that fails validation, if one exists
|
2017-08-03 00:19:34 +02:00
|
|
|
*/
|
2018-07-09 21:51:36 +02:00
|
|
|
bool ProcessNewBlockHeaders(const std::vector<CBlockHeader>& block, CValidationState& state, const CChainParams& chainparams, const CBlockIndex** ppindex = nullptr, CBlockHeader* first_invalid = nullptr) LOCKS_EXCLUDED(cs_main);
|
2017-08-03 00:19:34 +02:00
|
|
|
|
2012-11-04 13:18:04 +01:00
|
|
|
/** Check whether enough disk space is available for an incoming block */
|
2018-03-27 21:04:22 +02:00
|
|
|
bool CheckDiskSpace(uint64_t nAdditionalBytes = 0, bool blocks_dir = false);
|
2012-11-04 13:18:04 +01:00
|
|
|
/** Open a block file (blk?????.dat) */
|
2012-08-13 19:11:05 +02:00
|
|
|
FILE* OpenBlockFile(const CDiskBlockPos &pos, bool fReadOnly = false);
|
2014-09-08 19:29:14 +02:00
|
|
|
/** Translation to a filesystem path */
|
2017-04-06 20:19:21 +02:00
|
|
|
fs::path GetBlockPosFilename(const CDiskBlockPos &pos, const char *prefix);
|
2012-11-04 13:18:04 +01:00
|
|
|
/** Import blocks from an external file */
|
2019-08-06 05:08:33 +02:00
|
|
|
bool LoadExternalBlockFile(const CChainParams& chainparams, FILE* fileIn, CDiskBlockPos *dbp = nullptr);
|
Merge #10758: Fix some chainstate-init-order bugs.
c0025d0 Fix segfault when shutting down before fully loading (Matt Corallo)
1385697 Order chainstate init more logically. (Matt Corallo)
ff3a219 Call RewindBlockIndex even if we're about to run -reindex-chainstate (Matt Corallo)
b0f3249 More user-friendly error message if UTXO DB runs ahead of block DB (Matt Corallo)
eda888e Fix some LoadChainTip-related init-order bugs. (Matt Corallo)
Pull request description:
This does a number of things to clean up chainstate init order,
fixing some issues as it goes:
* Order chainstate init more logically - first all of the
blocktree-related loading, then coinsdb, then
pcoinsTip/chainActive. Only create objects as needed.
* More clearly document exactly what is and isn't called in
-reindex and -reindex-chainstate both with comments noting
calls as no-ops and by adding if guards.
* Move the writing of fTxIndex to LoadBlockIndex - this fixes a
bug introduced in d6af06d68aae985436cbc942f0d11078041d121b where
InitBlockIndex was writing to fTxIndex which had not yet been
checked (because LoadChainTip hadn't yet initialized the
chainActive, which would otherwise have resulted in
InitBlockIndex being a NOP), allowing you to modify -txindex
without reindex, potentially corrupting your chainstate!
* Rename InitBlockIndex to LoadGenesisBlock, which is now a more
natural name for it. Also check mapBlockIndex instead of
chainActive, fixing a bug where we'd write the genesis block out
on every start.
* Move LoadGenesisBlock further down in init. This is a more logical
location for it, as it is after all of the blockindex-related
loading and checking, but before any of the UTXO-related loading
and checking.
* Give LoadChainTip a return value - allowing it to indicate that
the UTXO DB ran ahead of the block DB. This just provides a nicer
error message instead of the previous mysterious
assert(!setBlockIndexCandidates.empty()) error.
* Calls ActivateBestChain in case we just loaded the genesis
block in LoadChainTip, avoiding relying on the ActivateBestChain
in ThreadImport before continuing init process.
* Move all of the VerifyDB()-related stuff into a -reindex +
-reindex-chainstate if guard. It couldn't do anything useful
as chainActive.Tip() would be null at this point anyway.
Tree-SHA512: 3c96ee7ed44f4130bee3479a40c5cd99a619fda5e309c26d60b54feab9f6ec60fabab8cf47a049c9cf15e88999b2edb7f16cbe6819e97273560b201a89d90762
2017-08-01 12:49:22 +02:00
|
|
|
/** Ensures we have a genesis block in the block tree, possibly writing one to disk. */
|
|
|
|
bool LoadGenesisBlock(const CChainParams& chainparams);
|
|
|
|
/** Load the block tree and coins database from disk,
|
|
|
|
* initializing state if we're running with -reindex. */
|
2018-07-09 21:51:36 +02:00
|
|
|
bool LoadBlockIndex(const CChainParams& chainparams) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
|
2017-06-28 18:24:32 +02:00
|
|
|
/** Update the chain tip based on database information. */
|
Merge #10758: Fix some chainstate-init-order bugs.
c0025d0 Fix segfault when shutting down before fully loading (Matt Corallo)
1385697 Order chainstate init more logically. (Matt Corallo)
ff3a219 Call RewindBlockIndex even if we're about to run -reindex-chainstate (Matt Corallo)
b0f3249 More user-friendly error message if UTXO DB runs ahead of block DB (Matt Corallo)
eda888e Fix some LoadChainTip-related init-order bugs. (Matt Corallo)
Pull request description:
This does a number of things to clean up chainstate init order,
fixing some issues as it goes:
* Order chainstate init more logically - first all of the
blocktree-related loading, then coinsdb, then
pcoinsTip/chainActive. Only create objects as needed.
* More clearly document exactly what is and isn't called in
-reindex and -reindex-chainstate both with comments noting
calls as no-ops and by adding if guards.
* Move the writing of fTxIndex to LoadBlockIndex - this fixes a
bug introduced in d6af06d68aae985436cbc942f0d11078041d121b where
InitBlockIndex was writing to fTxIndex which had not yet been
checked (because LoadChainTip hadn't yet initialized the
chainActive, which would otherwise have resulted in
InitBlockIndex being a NOP), allowing you to modify -txindex
without reindex, potentially corrupting your chainstate!
* Rename InitBlockIndex to LoadGenesisBlock, which is now a more
natural name for it. Also check mapBlockIndex instead of
chainActive, fixing a bug where we'd write the genesis block out
on every start.
* Move LoadGenesisBlock further down in init. This is a more logical
location for it, as it is after all of the blockindex-related
loading and checking, but before any of the UTXO-related loading
and checking.
* Give LoadChainTip a return value - allowing it to indicate that
the UTXO DB ran ahead of the block DB. This just provides a nicer
error message instead of the previous mysterious
assert(!setBlockIndexCandidates.empty()) error.
* Calls ActivateBestChain in case we just loaded the genesis
block in LoadChainTip, avoiding relying on the ActivateBestChain
in ThreadImport before continuing init process.
* Move all of the VerifyDB()-related stuff into a -reindex +
-reindex-chainstate if guard. It couldn't do anything useful
as chainActive.Tip() would be null at this point anyway.
Tree-SHA512: 3c96ee7ed44f4130bee3479a40c5cd99a619fda5e309c26d60b54feab9f6ec60fabab8cf47a049c9cf15e88999b2edb7f16cbe6819e97273560b201a89d90762
2017-08-01 12:49:22 +02:00
|
|
|
bool LoadChainTip(const CChainParams& chainparams);
|
2013-02-16 17:58:45 +01:00
|
|
|
/** Unload database information */
|
|
|
|
void UnloadBlockIndex();
|
2012-12-01 23:04:14 +01:00
|
|
|
/** Run an instance of the script checking thread */
|
2013-03-07 04:31:26 +01:00
|
|
|
void ThreadScriptCheck();
|
2012-12-17 11:09:53 +01:00
|
|
|
/** Check whether we are doing an initial block download (synchronizing from disk or network) */
|
2010-08-29 18:58:15 +02:00
|
|
|
bool IsInitialBlockDownload();
|
2012-11-04 13:18:04 +01:00
|
|
|
/** Retrieve a transaction (from memory pool, or from disk, if possible) */
|
Merge #10275: [rpc] Allow fetching tx directly from specified block in getrawtransaction
434526a [test] Add tests for getrawtransaction with block hash. (Karl-Johan Alm)
b167951 [rpc] Allow getrawtransaction to take optional blockhash to fetch transaction from a block directly. (Karl-Johan Alm)
a5f5a2c [rpc] Fix fVerbose parsing (remove excess if cases). (Karl-Johan Alm)
Pull request description:
[Reviewer hint: use [?w=1](https://github.com/bitcoin/bitcoin/pull/10275/files?w=1) to avoid seeing a bunch of indentation changes.]
Presuming a user knows the block hash of the block containing a given transaction, this PR allows them to fetch the raw transaction, even without `-txindex`. It also enables support for getting transactions that are in orphaned blocks.
Note that supplying a block hash will override mempool and txindex support in `GetTransaction`. The rationale behind this is that a transaction may be in multiple places (orphaned blocks) and if the user supplies an explicit block hash it should be adhered to.
```Bash
$ # a41.. is a tx inside an orphan block ..3c6f.. -- first try getting it normally
$ ./bitcoin-cli getrawtransaction a41e66ee1341aa9fb9475b98cfdc1fe1261faa56c0a49254f33065ec90f7cd79 1
error code: -5
error message:
No such mempool transaction. Use -txindex to enable blockchain transaction queries. Use gettransaction for wallet transactions.
$ # now try with block hash
$ ./bitcoin-cli getrawtransaction a41e66ee1341aa9fb9475b98cfdc1fe1261faa56c0a49254f33065ec90f7cd79 1 0000000000000000003c6fe479122bfa4a9187493937af1734e1e5cd9f198ec7
{
"hex": "01000000014e7e81144e42f6d65550e59b715d470c9301fd7ac189[...]90488ac00000000",
"inMainChain": false,
"txid": "a41e66ee1341aa9fb9475b98cfdc1fe1261faa56c0a49254f33065ec90f7cd79",
"hash": "a41e66ee1341aa9fb9475b98cfdc1fe1261faa56c0a49254f33065ec90f7cd79",
"size": 225,
[...]
}
$ # another tx 6c66... in block 462000
$ ./bitcoin-cli getrawtransaction 6c66b98191e9d6cc671f6817142152ebf6c5cab2ef008397b5a71ac13255a735 1 00000000000000000217f2c12922e321f6d4aa933ce88005a9a493c503054a40
{
"hex": "0200000004d157[...]88acaf0c0700",
"inMainChain": true,
"txid": "6c66b98191e9d6cc671f6817142152ebf6c5cab2ef008397b5a71ac13255a735",
"hash": "6c66b98191e9d6cc671f6817142152ebf6c5cab2ef008397b5a71ac13255a735",
"size": 666,
[...]
}
$
```
Tree-SHA512: 279be3818141edd3cc194a9ee65929331920afb30297ab2d6da07293a2d7311afee5c8b00c6457477d9f1f86e86786a9b56878ea3ee19fa2629b829d042d0cda
2017-12-06 12:10:16 +01:00
|
|
|
bool GetTransaction(const uint256& hash, CTransactionRef& tx, const Consensus::Params& params, uint256& hashBlock, bool fAllowSlow = false, CBlockIndex* blockIndex = nullptr);
|
2018-06-15 15:58:21 +02:00
|
|
|
/**
|
|
|
|
* Find the best known block, and make it the tip of the block chain
|
|
|
|
*
|
|
|
|
* May not be called with cs_main held. May not be called in a
|
|
|
|
* validationinterface callback.
|
|
|
|
*/
|
2016-12-05 08:07:22 +01:00
|
|
|
bool ActivateBestChain(CValidationState& state, const CChainParams& chainparams, std::shared_ptr<const CBlock> pblock = std::shared_ptr<const CBlock>());
|
2015-08-01 10:51:30 +02:00
|
|
|
|
2014-12-02 09:16:52 +01:00
|
|
|
double ConvertBitsToDouble(unsigned int nBits);
|
2016-09-05 18:09:25 +02:00
|
|
|
CAmount GetBlockSubsidy(int nBits, int nHeight, const Consensus::Params& consensusParams, bool fSuperblockPartOnly = false);
|
2020-09-10 18:23:11 +02:00
|
|
|
CAmount GetMasternodePayment(int nHeight, CAmount blockValue, int nReallocActivationHeight = std::numeric_limits<int>::max() /* not activated */);
|
2013-01-08 23:58:06 +01:00
|
|
|
|
2017-01-12 12:12:56 +01:00
|
|
|
/** Guess verification progress (as a fraction between 0.0=genesis and 1.0=current tip). */
|
Backport 10279 (#3394)
* Merge #10279: Add a CChainState class to validation.cpp to take another step towards clarifying internal interfaces
22fddde Avoid calling GetSerializeSize on each tx in a block if !fTxIndex (Matt Corallo)
2862aca Move some additional variables into CChainState private (Matt Corallo)
fd4d80a Create initial CChainState to hold chain state information (Matt Corallo)
e104f0f Move block writing out of AcceptBlock (Matt Corallo)
50701ba Move txindex/undo data disk location stuff out of ConnectBlock (Matt Corallo)
93a34cf Make DisconnectBlock unaware of where undo data resides on disk (Matt Corallo)
Pull request description:
CChainState should eventually, essentially, be our exposed "libconsensus", but we're probably a few releases away, so the real goal is to clarify our internal interfaces. The main split was a big step, but validation.cpp is still a somewhat ranomly-mixed bag of functions that are pure functions which validate inputs (which should probably either merge with their callers or move into another file in consensus/), read/write data from disk, manipulate our current chain state (which moves into CChainState), and do mempool transaction validation.
Obviously this is only a small step, but some effort is made to clean up what functions the functions in CChainState call, and obviously as things are added its easy to keep clear "CChainState::* cannot call anything except via callbacks through CValidationInterface, pure functions, or disk read/write things". Right now there are some glaring violations in mempool callbacks, and general flushing logic needs cleaning up (FlushStateToDisk maybe shouldnt be called, and there should be an API towards setDirtyBlockIndex, but I'll leave that for after @sipa's current changesets land).
Tree-SHA512: 69b8ec191b36b19c9492b4dee74c8057621fb6ec98ad219e8da0b2ed5c3ad711b10b5af9ff1117e8807ccf88918eeeab573be8448baecc9a59f099c53095985b
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* More of 10279
Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com>
Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
2020-04-11 22:02:26 +02:00
|
|
|
double GuessVerificationProgress(const ChainTxData& data, const CBlockIndex* pindex);
|
2017-01-12 12:12:56 +01:00
|
|
|
|
2017-10-09 16:53:12 +02:00
|
|
|
/** Calculate the amount of disk space the block & undo files currently use */
|
|
|
|
uint64_t CalculateCurrentUsage();
|
|
|
|
|
2017-02-22 12:42:55 +01:00
|
|
|
/**
|
|
|
|
* Mark one block file as pruned.
|
|
|
|
*/
|
|
|
|
void PruneOneBlockFile(const int fileNumber);
|
|
|
|
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
/**
|
|
|
|
* Actually unlink the specified files
|
|
|
|
*/
|
2017-02-22 12:42:55 +01:00
|
|
|
void UnlinkPrunedFiles(const std::set<int>& setFilesToPrune);
|
2013-01-08 23:58:06 +01:00
|
|
|
|
Improve chainstate/blockindex disk writing policy
There are 3 pieces of data that are maintained on disk. The actual block
and undo data, the block index (which can refer to positions on disk),
and the chainstate (which refers to the best block hash).
Earlier, there was no guarantee that blocks were written to disk before
block index entries referring to them were written. This commit introduces
dirty flags for block index data, and delays writing entries until the actual
block data is flushed.
With this stricter ordering in writes, it is now safe to not always flush
after every block, so there is no need for the IsInitialBlockDownload()
check there - instead we just write whenever enough time has passed or
the cache size grows too large. Also updating the wallet's best known block
is delayed until this is done, otherwise the wallet may end up referring to an
unknown block.
In addition, only do a write inside the block processing loop if necessary
(because of cache size exceeded). Otherwise, move the writing to a point
after processing is done, after relaying.
2014-11-07 11:38:35 +01:00
|
|
|
/** Flush all state, indexes and buffers to disk. */
|
|
|
|
void FlushStateToDisk();
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
/** Prune block files and flush state to disk. */
|
|
|
|
void PruneAndFlush();
|
2017-01-11 14:16:11 +01:00
|
|
|
/** Prune block files up to a given height */
|
2017-03-23 08:16:14 +01:00
|
|
|
void PruneBlockFilesManual(int nManualPruneHeight);
|
2012-08-19 00:33:01 +02:00
|
|
|
|
2018-09-20 14:39:34 +02:00
|
|
|
/** (try to) add transaction to memory pool */
|
2017-09-29 15:07:48 +02:00
|
|
|
bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransactionRef &tx,
|
|
|
|
bool* pfMissingInputs, bool bypass_limits,
|
|
|
|
const CAmount nAbsurdFee, bool fDryRun=false);
|
|
|
|
static bool AcceptToMemoryPoolWithTime(const CChainParams& chainparams, CTxMemPool& pool, CValidationState &state, const CTransactionRef &tx,
|
|
|
|
bool* pfMissingInputs, int64_t nAcceptTime, bool bypass_limits,
|
|
|
|
const CAmount nAbsurdFee, bool fDryRun = false);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2017-09-26 16:33:46 +02:00
|
|
|
bool GetUTXOCoin(const COutPoint& outpoint, Coin& coin);
|
2017-01-29 09:22:14 +01:00
|
|
|
int GetUTXOHeight(const COutPoint& outpoint);
|
2017-08-25 14:56:48 +02:00
|
|
|
int GetUTXOConfirmations(const COutPoint& outpoint);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2015-10-28 19:56:28 +01:00
|
|
|
/** Convert CValidationState to a human-readable message for logging */
|
|
|
|
std::string FormatStateMessage(const CValidationState &state);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2016-03-03 21:00:03 +01:00
|
|
|
/** Get the BIP9 state for a given deployment at the current tip. */
|
|
|
|
ThresholdState VersionBitsTipState(const Consensus::Params& params, Consensus::DeploymentPos pos);
|
|
|
|
|
2017-05-23 19:07:29 +02:00
|
|
|
/** Get the numerical statistics for the BIP9 state for a given deployment at the current tip. */
|
|
|
|
BIP9Stats VersionBitsTipStatistics(const Consensus::Params& params, Consensus::DeploymentPos pos);
|
|
|
|
|
2016-10-19 16:36:21 +02:00
|
|
|
/** Get the block height at which the BIP9 deployment switched into the state for the block building on the current tip. */
|
|
|
|
int VersionBitsTipStateSinceHeight(const Consensus::Params& params, Consensus::DeploymentPos pos);
|
|
|
|
|
2014-12-01 02:39:44 +01:00
|
|
|
/** Apply the effects of this transaction on the UTXO set represented by view */
|
2016-05-09 11:57:16 +02:00
|
|
|
void UpdateCoins(const CTransaction& tx, CCoinsViewCache& inputs, int nHeight);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2016-08-01 00:05:02 +02:00
|
|
|
/** Transaction validation functions */
|
|
|
|
|
2015-05-25 06:48:33 +02:00
|
|
|
/**
|
|
|
|
* Check if transaction will be final in the next block to be created.
|
|
|
|
*
|
|
|
|
* Calls IsFinalTx() with current block height and appropriate block time.
|
2015-11-03 18:12:36 +01:00
|
|
|
*
|
|
|
|
* See consensus/consensus.h for flag definitions.
|
2015-05-25 06:48:33 +02:00
|
|
|
*/
|
2015-11-03 18:12:36 +01:00
|
|
|
bool CheckFinalTx(const CTransaction &tx, int flags = -1);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2015-12-04 21:01:22 +01:00
|
|
|
/**
|
|
|
|
* Test whether the LockPoints height and time are still valid on the current chain
|
|
|
|
*/
|
|
|
|
bool TestLockPointValidity(const LockPoints* lp);
|
|
|
|
|
2015-12-07 21:44:16 +01:00
|
|
|
/**
|
|
|
|
* Check if transaction will be BIP 68 final in the next block to be created.
|
|
|
|
*
|
2016-02-11 21:34:04 +01:00
|
|
|
* Simulates calling SequenceLocks() with data from the tip of the current active chain.
|
2015-12-04 21:01:22 +01:00
|
|
|
* Optionally stores in LockPoints the resulting height and time calculated and the hash
|
|
|
|
* of the block needed for calculation or skips the calculation and uses the LockPoints
|
|
|
|
* passed in for evaluation.
|
|
|
|
* The LockPoints should not be considered valid if CheckSequenceLocks returns false.
|
2015-12-07 21:44:16 +01:00
|
|
|
*
|
|
|
|
* See consensus/consensus.h for flag definitions.
|
|
|
|
*/
|
2019-08-06 05:08:33 +02:00
|
|
|
bool CheckSequenceLocks(const CTransaction &tx, int flags, LockPoints* lp = nullptr, bool useExistingLockPoints = false);
|
2015-12-07 21:44:16 +01:00
|
|
|
|
|
|
|
/**
|
2014-12-01 02:39:44 +01:00
|
|
|
* Closure representing one script verification
|
2020-07-29 03:23:12 +02:00
|
|
|
* Note that this stores references to the spending transaction
|
2014-12-01 02:39:44 +01:00
|
|
|
*/
|
2012-12-01 22:30:06 +01:00
|
|
|
class CScriptCheck
|
|
|
|
{
|
|
|
|
private:
|
2017-09-23 01:10:09 +02:00
|
|
|
CTxOut m_tx_out;
|
2012-12-01 22:30:06 +01:00
|
|
|
const CTransaction *ptxTo;
|
|
|
|
unsigned int nIn;
|
|
|
|
unsigned int nFlags;
|
2014-09-14 04:48:32 +02:00
|
|
|
bool cacheStore;
|
2014-11-29 16:01:37 +01:00
|
|
|
ScriptError error;
|
2016-09-01 12:09:36 +02:00
|
|
|
PrecomputedTransactionData *txdata;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2012-12-01 22:30:06 +01:00
|
|
|
public:
|
2017-09-23 01:10:09 +02:00
|
|
|
CScriptCheck(): ptxTo(nullptr), nIn(0), nFlags(0), cacheStore(false), error(SCRIPT_ERR_UNKNOWN_ERROR) {}
|
|
|
|
CScriptCheck(const CTxOut& outIn, const CTransaction& txToIn, unsigned int nInIn, unsigned int nFlagsIn, bool cacheIn, PrecomputedTransactionData* txdataIn) :
|
|
|
|
m_tx_out(outIn), ptxTo(&txToIn), nIn(nInIn), nFlags(nFlagsIn), cacheStore(cacheIn), error(SCRIPT_ERR_UNKNOWN_ERROR), txdata(txdataIn) { }
|
2012-12-01 22:30:06 +01:00
|
|
|
|
2014-11-29 16:01:37 +01:00
|
|
|
bool operator()();
|
2012-12-01 22:30:06 +01:00
|
|
|
|
|
|
|
void swap(CScriptCheck &check) {
|
|
|
|
std::swap(ptxTo, check.ptxTo);
|
2017-09-23 01:10:09 +02:00
|
|
|
std::swap(m_tx_out, check.m_tx_out);
|
2012-12-01 22:30:06 +01:00
|
|
|
std::swap(nIn, check.nIn);
|
|
|
|
std::swap(nFlags, check.nFlags);
|
2014-09-14 04:48:32 +02:00
|
|
|
std::swap(cacheStore, check.cacheStore);
|
2014-11-29 16:01:37 +01:00
|
|
|
std::swap(error, check.error);
|
2016-09-01 12:09:36 +02:00
|
|
|
std::swap(txdata, check.txdata);
|
2012-10-27 21:08:45 +02:00
|
|
|
}
|
|
|
|
|
2014-11-29 16:01:37 +01:00
|
|
|
ScriptError GetScriptError() const { return error; }
|
2012-10-27 21:08:45 +02:00
|
|
|
};
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2016-03-22 23:11:04 +01:00
|
|
|
bool GetTimestampIndex(const unsigned int &high, const unsigned int &low, std::vector<uint256> &hashes);
|
2016-04-05 21:53:38 +02:00
|
|
|
bool GetSpentIndex(CSpentIndexKey &key, CSpentIndexValue &value);
|
2016-03-24 20:44:23 +01:00
|
|
|
bool GetAddressIndex(uint160 addressHash, int type,
|
|
|
|
std::vector<std::pair<CAddressIndexKey, CAmount> > &addressIndex,
|
|
|
|
int start = 0, int end = 0);
|
2016-03-29 21:17:30 +02:00
|
|
|
bool GetAddressUnspent(uint160 addressHash, int type,
|
|
|
|
std::vector<std::pair<CAddressUnspentKey, CAddressUnspentValue> > &unspentOutputs);
|
2017-06-29 20:04:07 +02:00
|
|
|
/** Initializes the script-execution cache */
|
|
|
|
void InitScriptExecutionCache();
|
|
|
|
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-06-24 02:35:01 +02:00
|
|
|
/** Functions for disk access for blocks */
|
2015-04-17 14:19:21 +02:00
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos, const Consensus::Params& consensusParams);
|
|
|
|
bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex, const Consensus::Params& consensusParams);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2013-06-24 03:32:58 +02:00
|
|
|
/** Functions for validating blocks and updating the block tree */
|
|
|
|
|
2014-12-01 02:39:44 +01:00
|
|
|
/** Context-independent validity checks */
|
2016-06-09 01:12:52 +02:00
|
|
|
bool CheckBlock(const CBlock& block, CValidationState& state, const Consensus::Params& consensusParams, bool fCheckPOW = true, bool fCheckMerkleRoot = true);
|
2013-06-24 04:14:11 +02:00
|
|
|
|
2018-07-09 21:51:36 +02:00
|
|
|
/** Check a block is completely valid from start to finish (only works on top of our current best block) */
|
|
|
|
bool TestBlockValidity(CValidationState& state, const CChainParams& chainparams, const CBlock& block, CBlockIndex* pindexPrev, bool fCheckPOW = true, bool fCheckMerkleRoot = true) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
|
2013-06-24 03:32:58 +02:00
|
|
|
|
2014-05-23 18:04:09 +02:00
|
|
|
/** RAII wrapper for VerifyDB: Verify consistency of the block and coin databases */
|
|
|
|
class CVerifyDB {
|
2013-10-10 23:07:44 +02:00
|
|
|
public:
|
2014-05-23 18:04:09 +02:00
|
|
|
CVerifyDB();
|
|
|
|
~CVerifyDB();
|
2015-04-17 14:40:24 +02:00
|
|
|
bool VerifyDB(const CChainParams& chainparams, CCoinsView *coinsview, int nCheckLevel, int nCheckDepth);
|
2014-05-23 18:04:09 +02:00
|
|
|
};
|
2013-10-10 23:07:44 +02:00
|
|
|
|
2017-06-28 18:24:32 +02:00
|
|
|
/** Replay blocks that aren't fully applied to the database. */
|
|
|
|
bool ReplayBlocks(const CChainParams& params, CCoinsView* view);
|
|
|
|
|
2018-03-13 19:04:28 +01:00
|
|
|
inline CBlockIndex* LookupBlockIndex(const uint256& hash)
|
|
|
|
{
|
|
|
|
AssertLockHeld(cs_main);
|
|
|
|
BlockMap::const_iterator it = mapBlockIndex.find(hash);
|
|
|
|
return it == mapBlockIndex.end() ? nullptr : it->second;
|
|
|
|
}
|
|
|
|
|
2014-09-03 02:52:01 +02:00
|
|
|
/** Find the last common block between the parameter chain and a locator. */
|
|
|
|
CBlockIndex* FindForkInGlobalIndex(const CChain& chain, const CBlockLocator& locator);
|
2013-10-12 15:18:08 +02:00
|
|
|
|
2018-06-15 15:58:21 +02:00
|
|
|
/** Mark a block as precious and reorganize.
|
|
|
|
*
|
2018-07-09 21:51:36 +02:00
|
|
|
* May not be called in a
|
2018-06-15 15:58:21 +02:00
|
|
|
* validationinterface callback.
|
|
|
|
*/
|
2018-07-09 21:51:36 +02:00
|
|
|
bool PreciousBlock(CValidationState& state, const CChainParams& params, CBlockIndex *pindex) LOCKS_EXCLUDED(cs_main);
|
2016-10-18 21:35:27 +02:00
|
|
|
|
2014-11-19 09:39:42 +01:00
|
|
|
/** Mark a block as invalid. */
|
2018-07-09 21:51:36 +02:00
|
|
|
bool InvalidateBlock(CValidationState& state, const CChainParams& chainparams, CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
|
2013-10-12 15:18:08 +02:00
|
|
|
|
2021-01-16 20:47:13 +01:00
|
|
|
/** Mark a block as conflicting. */
|
|
|
|
bool MarkConflictingBlock(CValidationState& state, const CChainParams& chainparams, CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
|
|
|
|
|
2014-11-19 09:39:42 +01:00
|
|
|
/** Remove invalidity status from a block and its descendants. */
|
2018-07-09 21:51:36 +02:00
|
|
|
bool ResetBlockFailureFlags(CBlockIndex* pindex) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2015-09-10 01:31:20 +02:00
|
|
|
/** The currently-connected chain of blocks (protected by cs_main). */
|
Backport 10279 (#3394)
* Merge #10279: Add a CChainState class to validation.cpp to take another step towards clarifying internal interfaces
22fddde Avoid calling GetSerializeSize on each tx in a block if !fTxIndex (Matt Corallo)
2862aca Move some additional variables into CChainState private (Matt Corallo)
fd4d80a Create initial CChainState to hold chain state information (Matt Corallo)
e104f0f Move block writing out of AcceptBlock (Matt Corallo)
50701ba Move txindex/undo data disk location stuff out of ConnectBlock (Matt Corallo)
93a34cf Make DisconnectBlock unaware of where undo data resides on disk (Matt Corallo)
Pull request description:
CChainState should eventually, essentially, be our exposed "libconsensus", but we're probably a few releases away, so the real goal is to clarify our internal interfaces. The main split was a big step, but validation.cpp is still a somewhat ranomly-mixed bag of functions that are pure functions which validate inputs (which should probably either merge with their callers or move into another file in consensus/), read/write data from disk, manipulate our current chain state (which moves into CChainState), and do mempool transaction validation.
Obviously this is only a small step, but some effort is made to clean up what functions the functions in CChainState call, and obviously as things are added its easy to keep clear "CChainState::* cannot call anything except via callbacks through CValidationInterface, pure functions, or disk read/write things". Right now there are some glaring violations in mempool callbacks, and general flushing logic needs cleaning up (FlushStateToDisk maybe shouldnt be called, and there should be an API towards setDirtyBlockIndex, but I'll leave that for after @sipa's current changesets land).
Tree-SHA512: 69b8ec191b36b19c9492b4dee74c8057621fb6ec98ad219e8da0b2ed5c3ad711b10b5af9ff1117e8807ccf88918eeeab573be8448baecc9a59f099c53095985b
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* fix
Signed-off-by: Pasta <pasta@dashboost.org>
* More of 10279
Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com>
Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
2020-04-11 22:02:26 +02:00
|
|
|
extern CChain& chainActive;
|
2010-08-29 18:58:15 +02:00
|
|
|
|
2017-06-12 16:19:08 +02:00
|
|
|
/** Global variable that points to the coins database (protected by cs_main) */
|
2017-11-09 21:22:08 +01:00
|
|
|
extern std::unique_ptr<CCoinsViewDB> pcoinsdbview;
|
2017-06-12 16:19:08 +02:00
|
|
|
|
2012-09-03 15:26:57 +02:00
|
|
|
/** Global variable that points to the active CCoinsView (protected by cs_main) */
|
2017-11-09 21:22:08 +01:00
|
|
|
extern std::unique_ptr<CCoinsViewCache> pcoinsTip;
|
2012-07-06 16:33:34 +02:00
|
|
|
|
2012-09-03 15:26:57 +02:00
|
|
|
/** Global variable that points to the active block tree (protected by cs_main) */
|
2017-11-09 21:22:08 +01:00
|
|
|
extern std::unique_ptr<CBlockTreeDB> pblocktree;
|
2012-09-03 15:26:57 +02:00
|
|
|
|
2015-04-24 16:45:16 +02:00
|
|
|
/**
|
|
|
|
* Return the spend height, which is one more than the inputs.GetBestBlock().
|
|
|
|
* While checking, GetBestBlock() refers to the parent block. (protected by cs_main)
|
|
|
|
* This is also true for mempool checks.
|
|
|
|
*/
|
|
|
|
int GetSpendHeight(const CCoinsViewCache& inputs);
|
2012-08-19 05:40:00 +02:00
|
|
|
|
2017-04-11 12:53:54 +02:00
|
|
|
extern VersionBitsCache versionbitscache;
|
|
|
|
|
2016-02-15 05:13:27 +01:00
|
|
|
/**
|
|
|
|
* Determine what nVersion a new block should use.
|
|
|
|
*/
|
2018-10-26 18:42:52 +02:00
|
|
|
int32_t ComputeBlockVersion(const CBlockIndex* pindexPrev, const Consensus::Params& params, bool fCheckMasternodesUpgraded = false);
|
2016-02-15 05:13:27 +01:00
|
|
|
|
2016-08-06 16:31:51 +02:00
|
|
|
/**
|
|
|
|
* Return true if hash can be found in chainActive at nBlockHeight height.
|
|
|
|
* Fills hashRet with found hash, if no nBlockHeight is specified - chainActive.Height() is used.
|
|
|
|
*/
|
|
|
|
bool GetBlockHash(uint256& hashRet, int nBlockHeight = -1);
|
|
|
|
|
2015-08-06 09:51:36 +02:00
|
|
|
/** Reject codes greater or equal to this can be returned by AcceptToMemPool
|
|
|
|
* for transactions, to signal internal conditions. They cannot and should not
|
|
|
|
* be sent over the P2P network.
|
|
|
|
*/
|
|
|
|
static const unsigned int REJECT_INTERNAL = 0x100;
|
|
|
|
/** Too high fee. Can not be triggered by P2P transactions */
|
2015-03-17 02:36:43 +01:00
|
|
|
static const unsigned int REJECT_HIGHFEE = 0x100;
|
2013-10-19 18:34:06 +02:00
|
|
|
|
2017-02-22 12:42:55 +01:00
|
|
|
/** Get block file info entry for one block file */
|
|
|
|
CBlockFileInfo* GetBlockFileInfo(size_t n);
|
|
|
|
|
2016-11-02 11:12:48 +01:00
|
|
|
/** Dump the mempool to disk. */
|
2017-09-06 22:48:00 +02:00
|
|
|
bool DumpMempool();
|
2016-11-02 11:12:48 +01:00
|
|
|
|
|
|
|
/** Load the mempool from disk. */
|
|
|
|
bool LoadMempool();
|
|
|
|
|
2018-06-08 13:31:24 +02:00
|
|
|
//! Check whether the block associated with this index entry is pruned or not.
|
|
|
|
inline bool IsBlockPruned(const CBlockIndex* pblockindex)
|
|
|
|
{
|
|
|
|
return (fHavePruned && !(pblockindex->nStatus & BLOCK_HAVE_DATA) && pblockindex->nTx > 0);
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:19:06 +02:00
|
|
|
#endif // BITCOIN_VALIDATION_H
|