Bitcoin Core Fuzz Coverage Report for wallet_tx_can_be_bumped

Coverage Report

Created: 2025-11-19 11:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/Users/brunogarcia/projects/bitcoin-core-dev/src/script/sign.h
Line
Count
Source
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_SCRIPT_SIGN_H
7
#define BITCOIN_SCRIPT_SIGN_H
8
9
#include <attributes.h>
10
#include <coins.h>
11
#include <hash.h>
12
#include <pubkey.h>
13
#include <script/interpreter.h>
14
#include <script/keyorigin.h>
15
#include <script/signingprovider.h>
16
#include <uint256.h>
17
18
class CKey;
19
class CKeyID;
20
class CScript;
21
class CTransaction;
22
class SigningProvider;
23
24
struct bilingual_str;
25
struct CMutableTransaction;
26
struct SignatureData;
27
28
/** Interface for signature creators. */
29
class BaseSignatureCreator {
30
public:
31
0
    virtual ~BaseSignatureCreator() = default;
32
    virtual const BaseSignatureChecker& Checker() const =0;
33
34
    /** Create a singular (non-script) signature. */
35
    virtual bool CreateSig(const SigningProvider& provider, std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const =0;
36
    virtual bool CreateSchnorrSig(const SigningProvider& provider, std::vector<unsigned char>& sig, const XOnlyPubKey& pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion) const =0;
37
    virtual std::vector<uint8_t> CreateMuSig2Nonce(const SigningProvider& provider, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion, const SignatureData& sigdata) const =0;
38
    virtual bool CreateMuSig2PartialSig(const SigningProvider& provider, uint256& partial_sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const =0;
39
    virtual bool CreateMuSig2AggregateSig(const std::vector<CPubKey>& participants, std::vector<uint8_t>& sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const =0;
40
};
41
42
/** A signature creator for transactions. */
43
class MutableTransactionSignatureCreator : public BaseSignatureCreator
44
{
45
    const CMutableTransaction& m_txto;
46
    unsigned int nIn;
47
    int nHashType;
48
    CAmount amount;
49
    const MutableTransactionSignatureChecker checker;
50
    const PrecomputedTransactionData* m_txdata;
51
52
    std::optional<uint256> ComputeSchnorrSignatureHash(const uint256* leaf_hash, SigVersion sigversion) const;
53
54
public:
55
    MutableTransactionSignatureCreator(const CMutableTransaction& tx LIFETIMEBOUND, unsigned int input_idx, const CAmount& amount, int hash_type);
56
    MutableTransactionSignatureCreator(const CMutableTransaction& tx LIFETIMEBOUND, unsigned int input_idx, const CAmount& amount, const PrecomputedTransactionData* txdata, int hash_type);
57
0
    const BaseSignatureChecker& Checker() const override { return checker; }
58
    bool CreateSig(const SigningProvider& provider, std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const override;
59
    bool CreateSchnorrSig(const SigningProvider& provider, std::vector<unsigned char>& sig, const XOnlyPubKey& pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion) const override;
60
    std::vector<uint8_t> CreateMuSig2Nonce(const SigningProvider& provider, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion, const SignatureData& sigdata) const override;
61
    bool CreateMuSig2PartialSig(const SigningProvider& provider, uint256& partial_sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const override;
62
    bool CreateMuSig2AggregateSig(const std::vector<CPubKey>& participants, std::vector<uint8_t>& sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const override;
63
};
64
65
/** A signature checker that accepts all signatures */
66
extern const BaseSignatureChecker& DUMMY_CHECKER;
67
/** A signature creator that just produces 71-byte empty signatures. */
68
extern const BaseSignatureCreator& DUMMY_SIGNATURE_CREATOR;
69
/** A signature creator that just produces 72-byte empty signatures. */
70
extern const BaseSignatureCreator& DUMMY_MAXIMUM_SIGNATURE_CREATOR;
71
72
typedef std::pair<CPubKey, std::vector<unsigned char>> SigPair;
73
74
// This struct contains information from a transaction input and also contains signatures for that input.
75
// The information contained here can be used to create a signature and is also filled by ProduceSignature
76
// in order to construct final scriptSigs and scriptWitnesses.
77
struct SignatureData {
78
    bool complete = false; ///< Stores whether the scriptSig and scriptWitness are complete
79
    bool witness = false; ///< Stores whether the input this SigData corresponds to is a witness input
80
    CScript scriptSig; ///< The scriptSig of an input. Contains complete signatures or the traditional partial signatures format
81
    CScript redeem_script; ///< The redeemScript (if any) for the input
82
    CScript witness_script; ///< The witnessScript (if any) for the input. witnessScripts are used in P2WSH outputs.
83
    CScriptWitness scriptWitness; ///< The scriptWitness of an input. Contains complete signatures or the traditional partial signatures format. scriptWitness is part of a transaction input per BIP 144.
84
    TaprootSpendData tr_spenddata; ///< Taproot spending data.
85
    std::optional<TaprootBuilder> tr_builder; ///< Taproot tree used to build tr_spenddata.
86
    std::map<CKeyID, SigPair> signatures; ///< BIP 174 style partial signatures for the input. May contain all signatures necessary for producing a final scriptSig or scriptWitness.
87
    std::map<CKeyID, std::pair<CPubKey, KeyOriginInfo>> misc_pubkeys;
88
    std::vector<unsigned char> taproot_key_path_sig; /// Schnorr signature for key path spending
89
    std::map<std::pair<XOnlyPubKey, uint256>, std::vector<unsigned char>> taproot_script_sigs; ///< (Partial) schnorr signatures, indexed by XOnlyPubKey and leaf_hash.
90
    std::map<XOnlyPubKey, std::pair<std::set<uint256>, KeyOriginInfo>> taproot_misc_pubkeys; ///< Miscellaneous Taproot pubkeys involved in this input along with their leaf script hashes and key origin data. Also includes the Taproot internal and output keys (may have no leaf script hashes).
91
    std::map<CKeyID, XOnlyPubKey> tap_pubkeys; ///< Misc Taproot pubkeys involved in this input, by hash. (Equivalent of misc_pubkeys but for Taproot.)
92
    std::vector<CKeyID> missing_pubkeys; ///< KeyIDs of pubkeys which could not be found
93
    std::vector<CKeyID> missing_sigs; ///< KeyIDs of pubkeys for signatures which could not be found
94
    uint160 missing_redeem_script; ///< ScriptID of the missing redeemScript (if any)
95
    uint256 missing_witness_script; ///< SHA256 of the missing witnessScript (if any)
96
    std::map<std::vector<uint8_t>, std::vector<uint8_t>> sha256_preimages; ///< Mapping from a SHA256 hash to its preimage provided to solve a Script
97
    std::map<std::vector<uint8_t>, std::vector<uint8_t>> hash256_preimages; ///< Mapping from a HASH256 hash to its preimage provided to solve a Script
98
    std::map<std::vector<uint8_t>, std::vector<uint8_t>> ripemd160_preimages; ///< Mapping from a RIPEMD160 hash to its preimage provided to solve a Script
99
    std::map<std::vector<uint8_t>, std::vector<uint8_t>> hash160_preimages; ///< Mapping from a HASH160 hash to its preimage provided to solve a Script
100
    //! Map MuSig2 aggregate pubkeys to its participants
101
    std::map<CPubKey, std::vector<CPubKey>> musig2_pubkeys;
102
    //! Mapping from pair of MuSig2 aggregate pubkey, and tapleaf hash to map of MuSig2 participant pubkeys to MuSig2 public nonce
103
    std::map<std::pair<CPubKey, uint256>, std::map<CPubKey, std::vector<uint8_t>>> musig2_pubnonces;
104
    //! Mapping from pair of MuSig2 aggregate pubkey, and tapleaf hash to map of MuSig2 participant pubkeys to MuSig2 partial signature
105
    std::map<std::pair<CPubKey, uint256>, std::map<CPubKey, uint256>> musig2_partial_sigs;
106
107
0
    SignatureData() = default;
108
0
    explicit SignatureData(const CScript& script) : scriptSig(script) {}
109
    void MergeSignatureData(SignatureData sigdata);
110
};
111
112
/** Produce a script signature using a generic signature creator. */
113
bool ProduceSignature(const SigningProvider& provider, const BaseSignatureCreator& creator, const CScript& scriptPubKey, SignatureData& sigdata);
114
115
/** Extract signature data from a transaction input, and insert it. */
116
SignatureData DataFromTransaction(const CMutableTransaction& tx, unsigned int nIn, const CTxOut& txout);
117
void UpdateInput(CTxIn& input, const SignatureData& data);
118
119
/** Check whether a scriptPubKey is known to be segwit. */
120
bool IsSegWitOutput(const SigningProvider& provider, const CScript& script);
121
122
/** Sign the CMutableTransaction */
123
bool SignTransaction(CMutableTransaction& mtx, const SigningProvider* provider, const std::map<COutPoint, Coin>& coins, int sighash, std::map<int, bilingual_str>& input_errors);
124
125
#endif // BITCOIN_SCRIPT_SIGN_H