Bitcoin Core 29.99.0
P2P Digital Currency
validation.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2022 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_CONSENSUS_VALIDATION_H
7#define BITCOIN_CONSENSUS_VALIDATION_H
8
9#include <string>
10#include <consensus/consensus.h>
12#include <primitives/block.h>
13
15static constexpr int NO_WITNESS_COMMITMENT{-1};
16
18static constexpr size_t MINIMUM_WITNESS_COMMITMENT{38};
19
24 TX_RESULT_UNSET = 0,
50};
51
67};
68
69
70
74template <typename Result>
76{
77private:
78 enum class ModeState {
79 M_VALID,
80 M_INVALID,
81 M_ERROR,
84 std::string m_reject_reason;
85 std::string m_debug_message;
86
87public:
88 bool Invalid(Result result,
89 const std::string& reject_reason = "",
90 const std::string& debug_message = "")
91 {
92 m_result = result;
93 m_reject_reason = reject_reason;
94 m_debug_message = debug_message;
95 if (m_mode != ModeState::M_ERROR) m_mode = ModeState::M_INVALID;
96 return false;
97 }
98 bool Error(const std::string& reject_reason)
99 {
100 if (m_mode == ModeState::M_VALID)
101 m_reject_reason = reject_reason;
102 m_mode = ModeState::M_ERROR;
103 return false;
104 }
105 bool IsValid() const { return m_mode == ModeState::M_VALID; }
106 bool IsInvalid() const { return m_mode == ModeState::M_INVALID; }
107 bool IsError() const { return m_mode == ModeState::M_ERROR; }
108 Result GetResult() const { return m_result; }
109 std::string GetRejectReason() const { return m_reject_reason; }
110 std::string GetDebugMessage() const { return m_debug_message; }
111 std::string ToString() const
112 {
113 if (IsValid()) {
114 return "Valid";
115 }
116
117 if (!m_debug_message.empty()) {
118 return m_reject_reason + ", " + m_debug_message;
119 }
120
121 return m_reject_reason;
122 }
123};
124
125class TxValidationState : public ValidationState<TxValidationResult> {};
126class BlockValidationState : public ValidationState<BlockValidationResult> {};
127
128// These implement the weight = (stripped_size * 4) + witness_size formula,
129// using only serialization with and without witness data. As witness_size
130// is equal to total_size - stripped_size, this formula is identical to:
131// weight = (stripped_size * 3) + total_size.
132static inline int32_t GetTransactionWeight(const CTransaction& tx)
133{
135}
136static inline int64_t GetBlockWeight(const CBlock& block)
137{
139}
140static inline int64_t GetTransactionInputWeight(const CTxIn& txin)
141{
142 // scriptWitness size is added here because witnesses and txins are split up in segwit serialization.
144}
145
147inline int GetWitnessCommitmentIndex(const CBlock& block)
148{
149 int commitpos = NO_WITNESS_COMMITMENT;
150 if (!block.vtx.empty()) {
151 for (size_t o = 0; o < block.vtx[0]->vout.size(); o++) {
152 const CTxOut& vout = block.vtx[0]->vout[o];
154 vout.scriptPubKey[0] == OP_RETURN &&
155 vout.scriptPubKey[1] == 0x24 &&
156 vout.scriptPubKey[2] == 0xaa &&
157 vout.scriptPubKey[3] == 0x21 &&
158 vout.scriptPubKey[4] == 0xa9 &&
159 vout.scriptPubKey[5] == 0xed) {
160 commitpos = o;
161 }
162 }
163 }
164 return commitpos;
165}
166
167#endif // BITCOIN_CONSENSUS_VALIDATION_H
Definition: block.h:69
std::vector< CTransactionRef > vtx
Definition: block.h:72
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.h:296
An input of a transaction.
Definition: transaction.h:67
CScriptWitness scriptWitness
Only serialized through CTransaction.
Definition: transaction.h:72
An output of a transaction.
Definition: transaction.h:150
CScript scriptPubKey
Definition: transaction.h:153
Template for capturing information about block/transaction validation.
Definition: validation.h:76
@ M_INVALID
network rule violation (DoS value may be set)
bool IsValid() const
Definition: validation.h:105
std::string GetRejectReason() const
Definition: validation.h:109
Result m_result
Definition: validation.h:83
enum ValidationState::ModeState M_VALID
std::string m_reject_reason
Definition: validation.h:84
std::string GetDebugMessage() const
Definition: validation.h:110
bool Error(const std::string &reject_reason)
Definition: validation.h:98
bool Invalid(Result result, const std::string &reject_reason="", const std::string &debug_message="")
Definition: validation.h:88
bool IsError() const
Definition: validation.h:107
Result GetResult() const
Definition: validation.h:108
std::string m_debug_message
Definition: validation.h:85
std::string ToString() const
Definition: validation.h:111
bool IsInvalid() const
Definition: validation.h:106
size_type size() const
Definition: prevector.h:294
static constexpr int NO_WITNESS_COMMITMENT
Index marker for when no witness commitment is present in a coinbase transaction.
Definition: validation.h:15
static constexpr size_t MINIMUM_WITNESS_COMMITMENT
Minimum size of a witness commitment structure.
Definition: validation.h:18
static int64_t GetTransactionInputWeight(const CTxIn &txin)
Definition: validation.h:140
static int64_t GetBlockWeight(const CBlock &block)
Definition: validation.h:136
static int32_t GetTransactionWeight(const CTransaction &tx)
Definition: validation.h:132
BlockValidationResult
A "reason" why a block was invalid, suitable for determining whether the provider of the block should...
Definition: validation.h:57
@ BLOCK_HEADER_LOW_WORK
the block header may be on a too-little-work chain
@ BLOCK_INVALID_HEADER
invalid proof of work or time too old
@ BLOCK_CACHED_INVALID
this block was cached as being invalid and we didn't store the reason why
@ BLOCK_CONSENSUS
invalid by consensus rules (excluding any below reasons)
@ BLOCK_MISSING_PREV
We don't have the previous block the checked one is built on.
@ BLOCK_INVALID_PREV
A block this one builds on is invalid.
@ BLOCK_MUTATED
the block's data didn't match the data committed to by the PoW
@ BLOCK_TIME_FUTURE
block timestamp was > 2 hours in the future (or our clock is bad)
@ BLOCK_RESULT_UNSET
initial value. Block has not yet been rejected
int GetWitnessCommitmentIndex(const CBlock &block)
Compute at which vout of the block's coinbase transaction the witness commitment occurs,...
Definition: validation.h:147
TxValidationResult
A "reason" why a transaction was invalid, suitable for determining whether the provider of the transa...
Definition: validation.h:23
@ TX_MISSING_INPUTS
transaction was missing some of its inputs
@ TX_MEMPOOL_POLICY
violated mempool's fee/size/descendant/RBF/etc limits
@ TX_UNKNOWN
transaction was not validated because package failed
@ TX_PREMATURE_SPEND
transaction spends a coinbase too early, or violates locktime/sequence locks
@ TX_INPUTS_NOT_STANDARD
inputs (covered by txid) failed policy rules
@ TX_WITNESS_STRIPPED
Transaction is missing a witness.
@ TX_CONFLICT
Tx already in mempool or conflicts with a tx in the chain (if it conflicts with another tx in mempool...
@ TX_NOT_STANDARD
otherwise didn't meet our local policy rules
@ TX_WITNESS_MUTATED
Transaction might have a witness prior to SegWit activation, or witness may have been malleated (whic...
@ TX_NO_MEMPOOL
this node does not have a mempool so can't validate the transaction
@ TX_RESULT_UNSET
initial value. Tx has not yet been rejected
@ TX_CONSENSUS
invalid by consensus rules
@ TX_RECONSIDERABLE
fails some policy, but might be acceptable if submitted in a (different) package
static const int WITNESS_SCALE_FACTOR
Definition: consensus.h:21
static constexpr TransactionSerParams TX_NO_WITNESS
Definition: transaction.h:196
static constexpr TransactionSerParams TX_WITH_WITNESS
Definition: transaction.h:195
@ OP_RETURN
Definition: script.h:111
size_t GetSerializeSize(const T &t)
Definition: serialize.h:1103
std::vector< std::vector< unsigned char > > stack
Definition: script.h:588