Bitcoin Core  25.99.0
P2P Digital Currency
psbt.cpp
Go to the documentation of this file.
1 // Copyright (c) 2019-2022 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
6 #include <test/fuzz/fuzz.h>
7 
8 #include <node/psbt.h>
9 #include <psbt.h>
10 #include <pubkey.h>
11 #include <script/script.h>
12 #include <streams.h>
13 #include <util/check.h>
14 #include <version.h>
15 
16 #include <cstdint>
17 #include <optional>
18 #include <string>
19 #include <vector>
20 
21 using node::AnalyzePSBT;
22 using node::PSBTAnalysis;
24 
26 {
27  FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
29  std::string error;
30  auto str = fuzzed_data_provider.ConsumeRandomLengthString();
31  if (!DecodeRawPSBT(psbt_mut, MakeByteSpan(str), error)) {
32  return;
33  }
34  const PartiallySignedTransaction psbt = psbt_mut;
35 
36  const PSBTAnalysis analysis = AnalyzePSBT(psbt);
37  (void)PSBTRoleName(analysis.next);
38  for (const PSBTInputAnalysis& input_analysis : analysis.inputs) {
39  (void)PSBTRoleName(input_analysis.next);
40  }
41 
42  (void)psbt.IsNull();
43 
44  std::optional<CMutableTransaction> tx = psbt.tx;
45  if (tx) {
46  const CMutableTransaction& mtx = *tx;
47  const PartiallySignedTransaction psbt_from_tx{mtx};
48  }
49 
50  for (const PSBTInput& input : psbt.inputs) {
51  (void)PSBTInputSigned(input);
52  (void)input.IsNull();
53  }
54  (void)CountPSBTUnsignedInputs(psbt);
55 
56  for (const PSBTOutput& output : psbt.outputs) {
57  (void)output.IsNull();
58  }
59 
60  for (size_t i = 0; i < psbt.tx->vin.size(); ++i) {
61  CTxOut tx_out;
62  if (psbt.GetInputUTXO(tx_out, i)) {
63  (void)tx_out.IsNull();
64  (void)tx_out.ToString();
65  }
66  }
67 
68  psbt_mut = psbt;
69  (void)FinalizePSBT(psbt_mut);
70 
71  psbt_mut = psbt;
72  CMutableTransaction result;
73  if (FinalizeAndExtractPSBT(psbt_mut, result)) {
74  const PartiallySignedTransaction psbt_from_tx{result};
75  }
76 
77  PartiallySignedTransaction psbt_merge;
78  str = fuzzed_data_provider.ConsumeRandomLengthString();
79  if (!DecodeRawPSBT(psbt_merge, MakeByteSpan(str), error)) {
80  psbt_merge = psbt;
81  }
82  psbt_mut = psbt;
83  (void)psbt_mut.Merge(psbt_merge);
84  psbt_mut = psbt;
85  (void)CombinePSBTs(psbt_mut, {psbt_mut, psbt_merge});
86  psbt_mut = psbt;
87  for (unsigned int i = 0; i < psbt_merge.tx->vin.size(); ++i) {
88  (void)psbt_mut.AddInput(psbt_merge.tx->vin[i], psbt_merge.inputs[i]);
89  }
90  for (unsigned int i = 0; i < psbt_merge.tx->vout.size(); ++i) {
91  Assert(psbt_mut.AddOutput(psbt_merge.tx->vout[i], psbt_merge.outputs[i]));
92  }
93  psbt_mut.unknown.insert(psbt_merge.unknown.begin(), psbt_merge.unknown.end());
94 }
#define Assert(val)
Identity function.
Definition: check.h:73
An output of a transaction.
Definition: transaction.h:158
bool IsNull() const
Definition: transaction.h:178
std::string ToString() const
Definition: transaction.cpp:60
bool error(const char *fmt, const Args &... args)
Definition: logging.h:261
PSBTAnalysis AnalyzePSBT(PartiallySignedTransaction psbtx)
Provides helpful miscellaneous information about where a PSBT is in the signing workflow.
Definition: psbt.cpp:16
std::string PSBTRoleName(PSBTRole role)
Definition: psbt.cpp:521
size_t CountPSBTUnsignedInputs(const PartiallySignedTransaction &psbt)
Counts the unsigned inputs of a PSBT.
Definition: psbt.cpp:324
bool FinalizeAndExtractPSBT(PartiallySignedTransaction &psbtx, CMutableTransaction &result)
Finalizes a PSBT if possible, and extracts it to a CMutableTransaction if it could be finalized.
Definition: psbt.cpp:492
bool DecodeRawPSBT(PartiallySignedTransaction &psbt, Span< const std::byte > tx_data, std::string &error)
Decode a raw (binary blob) PSBT into a PartiallySignedTransaction.
Definition: psbt.cpp:543
bool PSBTInputSigned(const PSBTInput &input)
Checks whether a PSBTInput is already signed by checking for non-null finalized fields.
Definition: psbt.cpp:290
TransactionError CombinePSBTs(PartiallySignedTransaction &out, const std::vector< PartiallySignedTransaction > &psbtxs)
Combines PSBTs with the same underlying transaction, resulting in a single PSBT with all partial sign...
Definition: psbt.cpp:508
bool FinalizePSBT(PartiallySignedTransaction &psbtx)
Finalizes a PSBT if possible, combining partial signatures.
Definition: psbt.cpp:477
Span< const std::byte > MakeByteSpan(V &&v) noexcept
Definition: span.h:264
A mutable version of CTransaction.
Definition: transaction.h:380
A structure for PSBTs which contain per-input information.
Definition: psbt.h:192
bool IsNull() const
Definition: psbt.cpp:88
A structure for PSBTs which contains per output information.
Definition: psbt.h:711
bool IsNull() const
Definition: psbt.cpp:273
A version of CTransaction with the PSBT format.
Definition: psbt.h:947
bool Merge(const PartiallySignedTransaction &psbt)
Merge psbt into this.
Definition: psbt.cpp:23
bool IsNull() const
Definition: psbt.cpp:18
bool GetInputUTXO(CTxOut &utxo, int input_index) const
Finds the UTXO for a given input index.
Definition: psbt.cpp:68
std::map< std::vector< unsigned char >, std::vector< unsigned char > > unknown
Definition: psbt.h:954
bool AddOutput(const CTxOut &txout, const PSBTOutput &psbtout)
Definition: psbt.cpp:61
std::vector< PSBTInput > inputs
Definition: psbt.h:952
std::optional< CMutableTransaction > tx
Definition: psbt.h:948
bool AddInput(const CTxIn &txin, PSBTInput &psbtin)
Definition: psbt.cpp:48
std::vector< PSBTOutput > outputs
Definition: psbt.h:953
Holds the results of AnalyzePSBT (miscellaneous information about a PSBT)
Definition: psbt.h:30
std::vector< PSBTInputAnalysis > inputs
More information about the individual inputs of the transaction.
Definition: psbt.h:34
PSBTRole next
Which of the BIP 174 roles needs to handle the transaction next.
Definition: psbt.h:35
Holds an analysis of one input from a PSBT.
Definition: psbt.h:16
PSBTRole next
Which of the BIP 174 roles needs to handle this input next.
Definition: psbt.h:19
FUZZ_TARGET(psbt)
Definition: psbt.cpp:25