Coverage Report

Created: 2024-09-19 18:47

/root/bitcoin/src/consensus/validation.h
Line
Count
Source (jump to first uncovered line)
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>
11
#include <primitives/transaction.h>
12
#include <primitives/block.h>
13
14
/** Index marker for when no witness commitment is present in a coinbase transaction. */
15
static constexpr int NO_WITNESS_COMMITMENT{-1};
16
17
/** Minimum size of a witness commitment structure. Defined in BIP 141. **/
18
static constexpr size_t MINIMUM_WITNESS_COMMITMENT{38};
19
20
/** A "reason" why a transaction was invalid, suitable for determining whether the
21
  * provider of the transaction should be banned/ignored/disconnected/etc.
22
  */
23
enum class TxValidationResult {
24
    TX_RESULT_UNSET = 0,     //!< initial value. Tx has not yet been rejected
25
    TX_CONSENSUS,            //!< invalid by consensus rules
26
    /**
27
     * Invalid by a change to consensus rules more recent than SegWit.
28
     * Currently unused as there are no such consensus rule changes, and any download
29
     * sources realistically need to support SegWit in order to provide useful data,
30
     * so differentiating between always-invalid and invalid-by-pre-SegWit-soft-fork
31
     * is uninteresting.
32
     */
33
    TX_RECENT_CONSENSUS_CHANGE,
34
    TX_INPUTS_NOT_STANDARD,   //!< inputs (covered by txid) failed policy rules
35
    TX_NOT_STANDARD,          //!< otherwise didn't meet our local policy rules
36
    TX_MISSING_INPUTS,        //!< transaction was missing some of its inputs
37
    TX_PREMATURE_SPEND,       //!< transaction spends a coinbase too early, or violates locktime/sequence locks
38
    /**
39
     * Transaction might have a witness prior to SegWit
40
     * activation, or witness may have been malleated (which includes
41
     * non-standard witnesses).
42
     */
43
    TX_WITNESS_MUTATED,
44
    /**
45
     * Transaction is missing a witness.
46
     */
47
    TX_WITNESS_STRIPPED,
48
    /**
49
     * Tx already in mempool or conflicts with a tx in the chain
50
     * (if it conflicts with another tx in mempool, we use MEMPOOL_POLICY as it failed to reach the RBF threshold)
51
     * Currently this is only used if the transaction already exists in the mempool or on chain.
52
     */
53
    TX_CONFLICT,
54
    TX_MEMPOOL_POLICY,        //!< violated mempool's fee/size/descendant/RBF/etc limits
55
    TX_NO_MEMPOOL,            //!< this node does not have a mempool so can't validate the transaction
56
    TX_RECONSIDERABLE,        //!< fails some policy, but might be acceptable if submitted in a (different) package
57
    TX_UNKNOWN,               //!< transaction was not validated because package failed
58
};
59
60
/** A "reason" why a block was invalid, suitable for determining whether the
61
  * provider of the block should be banned/ignored/disconnected/etc.
62
  * These are much more granular than the rejection codes, which may be more
63
  * useful for some other use-cases.
64
  */
65
enum class BlockValidationResult {
66
    BLOCK_RESULT_UNSET = 0,  //!< initial value. Block has not yet been rejected
67
    BLOCK_CONSENSUS,         //!< invalid by consensus rules (excluding any below reasons)
68
    /**
69
     * Invalid by a change to consensus rules more recent than SegWit.
70
     * Currently unused as there are no such consensus rule changes, and any download
71
     * sources realistically need to support SegWit in order to provide useful data,
72
     * so differentiating between always-invalid and invalid-by-pre-SegWit-soft-fork
73
     * is uninteresting.
74
     */
75
    BLOCK_RECENT_CONSENSUS_CHANGE,
76
    BLOCK_CACHED_INVALID,    //!< this block was cached as being invalid and we didn't store the reason why
77
    BLOCK_INVALID_HEADER,    //!< invalid proof of work or time too old
78
    BLOCK_MUTATED,           //!< the block's data didn't match the data committed to by the PoW
79
    BLOCK_MISSING_PREV,      //!< We don't have the previous block the checked one is built on
80
    BLOCK_INVALID_PREV,      //!< A block this one builds on is invalid
81
    BLOCK_TIME_FUTURE,       //!< block timestamp was > 2 hours in the future (or our clock is bad)
82
    BLOCK_CHECKPOINT,        //!< the block failed to meet one of our checkpoints
83
    BLOCK_HEADER_LOW_WORK    //!< the block header may be on a too-little-work chain
84
};
85
86
87
88
/** Template for capturing information about block/transaction validation. This is instantiated
89
 *  by TxValidationState and BlockValidationState for validation information on transactions
90
 *  and blocks respectively. */
91
template <typename Result>
92
class ValidationState
93
{
94
private:
95
    enum class ModeState {
96
        M_VALID,   //!< everything ok
97
        M_INVALID, //!< network rule violation (DoS value may be set)
98
        M_ERROR,   //!< run-time error
99
    } m_mode{ModeState::M_VALID};
100
    Result m_result{};
101
    std::string m_reject_reason;
102
    std::string m_debug_message;
103
104
public:
105
    bool Invalid(Result result,
106
                 const std::string& reject_reason = "",
107
                 const std::string& debug_message = "")
108
3.96k
    {
109
3.96k
        m_result = result;
110
3.96k
        m_reject_reason = reject_reason;
111
3.96k
        m_debug_message = debug_message;
112
3.96k
        if (m_mode != ModeState::M_ERROR) m_mode = ModeState::M_INVALID;
113
3.96k
        return false;
114
3.96k
    }
_ZN15ValidationStateI21BlockValidationResultE7InvalidES0_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_
Line
Count
Source
108
3.96k
    {
109
3.96k
        m_result = result;
110
3.96k
        m_reject_reason = reject_reason;
111
3.96k
        m_debug_message = debug_message;
112
3.96k
        if (m_mode != ModeState::M_ERROR) m_mode = ModeState::M_INVALID;
113
3.96k
        return false;
114
3.96k
    }
Unexecuted instantiation: _ZN15ValidationStateI18TxValidationResultE7InvalidES0_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_
Unexecuted instantiation: _ZN15ValidationStateI23PackageValidationResultE7InvalidES0_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_
115
    bool Error(const std::string& reject_reason)
116
0
    {
117
0
        if (m_mode == ModeState::M_VALID)
118
0
            m_reject_reason = reject_reason;
119
0
        m_mode = ModeState::M_ERROR;
120
0
        return false;
121
0
    }
122
3.96k
    bool IsValid() const { return m_mode == ModeState::M_VALID; }
_ZNK15ValidationStateI21BlockValidationResultE7IsValidEv
Line
Count
Source
122
3.96k
    bool IsValid() const { return m_mode == ModeState::M_VALID; }
Unexecuted instantiation: _ZNK15ValidationStateI18TxValidationResultE7IsValidEv
Unexecuted instantiation: _ZNK15ValidationStateI23PackageValidationResultE7IsValidEv
123
0
    bool IsInvalid() const { return m_mode == ModeState::M_INVALID; }
Unexecuted instantiation: _ZNK15ValidationStateI21BlockValidationResultE9IsInvalidEv
Unexecuted instantiation: _ZNK15ValidationStateI18TxValidationResultE9IsInvalidEv
Unexecuted instantiation: _ZNK15ValidationStateI23PackageValidationResultE9IsInvalidEv
124
0
    bool IsError() const { return m_mode == ModeState::M_ERROR; }
125
0
    Result GetResult() const { return m_result; }
Unexecuted instantiation: _ZNK15ValidationStateI23PackageValidationResultE9GetResultEv
Unexecuted instantiation: _ZNK15ValidationStateI18TxValidationResultE9GetResultEv
Unexecuted instantiation: _ZNK15ValidationStateI21BlockValidationResultE9GetResultEv
126
0
    std::string GetRejectReason() const { return m_reject_reason; }
Unexecuted instantiation: _ZNK15ValidationStateI18TxValidationResultE15GetRejectReasonB5cxx11Ev
Unexecuted instantiation: _ZNK15ValidationStateI23PackageValidationResultE15GetRejectReasonB5cxx11Ev
Unexecuted instantiation: _ZNK15ValidationStateI21BlockValidationResultE15GetRejectReasonB5cxx11Ev
127
0
    std::string GetDebugMessage() const { return m_debug_message; }
128
    std::string ToString() const
129
3.96k
    {
130
3.96k
        if (IsValid()) {
131
0
            return "Valid";
132
0
        }
133
134
3.96k
        if (!m_debug_message.empty()) {
135
2.00k
            return m_reject_reason + ", " + m_debug_message;
136
2.00k
        }
137
138
1.96k
        return m_reject_reason;
139
3.96k
    }
_ZNK15ValidationStateI21BlockValidationResultE8ToStringB5cxx11Ev
Line
Count
Source
129
3.96k
    {
130
3.96k
        if (IsValid()) {
131
0
            return "Valid";
132
0
        }
133
134
3.96k
        if (!m_debug_message.empty()) {
135
2.00k
            return m_reject_reason + ", " + m_debug_message;
136
2.00k
        }
137
138
1.96k
        return m_reject_reason;
139
3.96k
    }
Unexecuted instantiation: _ZNK15ValidationStateI23PackageValidationResultE8ToStringB5cxx11Ev
Unexecuted instantiation: _ZNK15ValidationStateI18TxValidationResultE8ToStringB5cxx11Ev
140
};
141
142
class TxValidationState : public ValidationState<TxValidationResult> {};
143
class BlockValidationState : public ValidationState<BlockValidationResult> {};
144
145
// These implement the weight = (stripped_size * 4) + witness_size formula,
146
// using only serialization with and without witness data. As witness_size
147
// is equal to total_size - stripped_size, this formula is identical to:
148
// weight = (stripped_size * 3) + total_size.
149
static inline int32_t GetTransactionWeight(const CTransaction& tx)
150
0
{
151
0
    return ::GetSerializeSize(TX_NO_WITNESS(tx)) * (WITNESS_SCALE_FACTOR - 1) + ::GetSerializeSize(TX_WITH_WITNESS(tx));
152
0
}
Unexecuted instantiation: block.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: block_index.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: coins_view.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: feeratediagram.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: headerssync.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: load_external_block_file.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: mini_miner.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: p2p_handshake.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: package_eval.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: policy_estimator.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: process_message.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: process_messages.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: rbf.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: signet.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: transaction.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: tx_in.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: tx_out.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: tx_pool.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: txorphan.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: utxo_snapshot.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: utxo_total_supply.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: validation_load_mempool.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: fees.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: mempool.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: core_write.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: policy.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: spend.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: wallet.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: feebumper.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: transactions.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: mining.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: setup_common.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: txmempool.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: validation.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: blockencodings.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: tx_verify.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: init.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: coinstats.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: net_processing.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: blockmanager_args.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: blockstorage.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: chainstate.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: context.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: interfaces.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: mempool_persist.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: mempool_persist_args.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: miner.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: packages.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: rest.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: blockchain.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: net.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: rawtransaction.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: server_util.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: txoutproof.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: txorphanage.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: validationinterface.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: base.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: blockfilterindex.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: coinstatsindex.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: txindex.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: coin.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: truc_policy.cpp:_ZL20GetTransactionWeightRK12CTransaction
Unexecuted instantiation: tx_check.cpp:_ZL20GetTransactionWeightRK12CTransaction
153
static inline int64_t GetBlockWeight(const CBlock& block)
154
0
{
155
0
    return ::GetSerializeSize(TX_NO_WITNESS(block)) * (WITNESS_SCALE_FACTOR - 1) + ::GetSerializeSize(TX_WITH_WITNESS(block));
156
0
}
Unexecuted instantiation: block.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: block_index.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: coins_view.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: feeratediagram.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: headerssync.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: load_external_block_file.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: mini_miner.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: p2p_handshake.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: package_eval.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: policy_estimator.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: process_message.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: process_messages.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: rbf.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: signet.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: transaction.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: tx_in.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: tx_out.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: tx_pool.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: txorphan.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: utxo_snapshot.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: utxo_total_supply.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: validation_load_mempool.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: fees.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: mempool.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: core_write.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: policy.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: spend.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: wallet.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: feebumper.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: transactions.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: mining.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: setup_common.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: txmempool.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: validation.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: blockencodings.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: tx_verify.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: init.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: coinstats.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: net_processing.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: blockmanager_args.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: blockstorage.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: chainstate.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: context.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: interfaces.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: mempool_persist.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: mempool_persist_args.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: miner.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: packages.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: rest.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: blockchain.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: net.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: rawtransaction.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: server_util.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: txoutproof.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: txorphanage.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: validationinterface.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: base.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: blockfilterindex.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: coinstatsindex.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: txindex.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: coin.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: truc_policy.cpp:_ZL14GetBlockWeightRK6CBlock
Unexecuted instantiation: tx_check.cpp:_ZL14GetBlockWeightRK6CBlock
157
static inline int64_t GetTransactionInputWeight(const CTxIn& txin)
158
0
{
159
    // scriptWitness size is added here because witnesses and txins are split up in segwit serialization.
160
0
    return ::GetSerializeSize(TX_NO_WITNESS(txin)) * (WITNESS_SCALE_FACTOR - 1) + ::GetSerializeSize(TX_WITH_WITNESS(txin)) + ::GetSerializeSize(txin.scriptWitness.stack);
161
0
}
Unexecuted instantiation: block.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: block_index.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: coins_view.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: feeratediagram.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: headerssync.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: load_external_block_file.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: mini_miner.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: p2p_handshake.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: package_eval.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: policy_estimator.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: process_message.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: process_messages.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: rbf.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: signet.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: transaction.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: tx_in.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: tx_out.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: tx_pool.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: txorphan.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: utxo_snapshot.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: utxo_total_supply.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: validation_load_mempool.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: fees.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: mempool.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: core_write.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: policy.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: spend.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: wallet.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: feebumper.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: transactions.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: mining.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: setup_common.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: txmempool.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: validation.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: blockencodings.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: tx_verify.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: init.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: coinstats.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: net_processing.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: blockmanager_args.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: blockstorage.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: chainstate.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: context.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: interfaces.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: mempool_persist.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: mempool_persist_args.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: miner.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: packages.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: rest.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: blockchain.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: net.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: rawtransaction.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: server_util.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: txoutproof.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: txorphanage.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: validationinterface.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: base.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: blockfilterindex.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: coinstatsindex.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: txindex.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: coin.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: truc_policy.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
Unexecuted instantiation: tx_check.cpp:_ZL25GetTransactionInputWeightRK5CTxIn
162
163
/** Compute at which vout of the block's coinbase transaction the witness commitment occurs, or -1 if not found */
164
inline int GetWitnessCommitmentIndex(const CBlock& block)
165
0
{
166
0
    int commitpos = NO_WITNESS_COMMITMENT;
167
0
    if (!block.vtx.empty()) {
168
0
        for (size_t o = 0; o < block.vtx[0]->vout.size(); o++) {
169
0
            const CTxOut& vout = block.vtx[0]->vout[o];
170
0
            if (vout.scriptPubKey.size() >= MINIMUM_WITNESS_COMMITMENT &&
171
0
                vout.scriptPubKey[0] == OP_RETURN &&
172
0
                vout.scriptPubKey[1] == 0x24 &&
173
0
                vout.scriptPubKey[2] == 0xaa &&
174
0
                vout.scriptPubKey[3] == 0x21 &&
175
0
                vout.scriptPubKey[4] == 0xa9 &&
176
0
                vout.scriptPubKey[5] == 0xed) {
177
0
                commitpos = o;
178
0
            }
179
0
        }
180
0
    }
181
0
    return commitpos;
182
0
}
183
184
#endif // BITCOIN_CONSENSUS_VALIDATION_H