LCOV - code coverage report
Current view: top level - src/test/fuzz - psbt.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 60 60
Test Date: 2026-03-28 03:58:45 Functions: 100.0 % 2 2
Branches: 57.1 % 126 72

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2019-present 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                 :             : 
       5                 :             : #include <node/psbt.h>
       6                 :             : #include <psbt.h>
       7                 :             : #include <pubkey.h>
       8                 :             : #include <script/script.h>
       9                 :             : #include <streams.h>
      10                 :             : #include <test/fuzz/FuzzedDataProvider.h>
      11                 :             : #include <test/fuzz/fuzz.h>
      12                 :             : #include <test/util/random.h>
      13                 :             : #include <util/check.h>
      14                 :             : 
      15                 :             : #include <cstdint>
      16                 :             : #include <optional>
      17                 :             : #include <string>
      18                 :             : #include <vector>
      19                 :             : 
      20                 :             : using node::AnalyzePSBT;
      21                 :             : using node::PSBTAnalysis;
      22                 :             : using node::PSBTInputAnalysis;
      23                 :             : 
      24         [ +  - ]:        4635 : FUZZ_TARGET(psbt)
      25                 :             : {
      26                 :        4177 :     SeedRandomStateForTest(SeedRand::ZEROS);
      27                 :        4177 :     FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
      28                 :        4177 :     PartiallySignedTransaction psbt_mut;
      29         [ +  - ]:        4177 :     std::string error;
      30         [ +  - ]:        4177 :     auto str = fuzzed_data_provider.ConsumeRandomLengthString();
      31   [ +  -  +  + ]:        4177 :     if (!DecodeRawPSBT(psbt_mut, MakeByteSpan(str), error)) {
      32                 :         671 :         return;
      33                 :             :     }
      34         [ +  - ]:        3506 :     const PartiallySignedTransaction psbt = psbt_mut;
      35                 :             : 
      36                 :             :     // A PSBT must roundtrip.
      37                 :        3506 :     PartiallySignedTransaction psbt_roundtrip;
      38                 :        3506 :     std::vector<uint8_t> psbt_ser;
      39         [ +  - ]:        3506 :     VectorWriter{psbt_ser, 0, psbt};
      40   [ -  +  +  - ]:        3506 :     SpanReader{psbt_ser} >> psbt_roundtrip;
      41                 :             : 
      42                 :             :     // And be stable across roundtrips.
      43                 :        3506 :     std::vector<uint8_t> roundtrip_ser;
      44         [ +  - ]:        3506 :     VectorWriter{roundtrip_ser, 0, psbt_roundtrip};
      45         [ -  + ]:        3506 :     Assert(psbt_ser == roundtrip_ser);
      46                 :             : 
      47   [ +  -  +  - ]:        3506 :     const PSBTAnalysis analysis = AnalyzePSBT(psbt);
      48         [ +  - ]:        3506 :     (void)PSBTRoleName(analysis.next);
      49         [ +  + ]:        7923 :     for (const PSBTInputAnalysis& input_analysis : analysis.inputs) {
      50         [ +  - ]:        8834 :         (void)PSBTRoleName(input_analysis.next);
      51                 :             :     }
      52                 :             : 
      53         [ +  - ]:        3506 :     (void)psbt.IsNull();
      54                 :             : 
      55         [ +  - ]:        3506 :     std::optional<CMutableTransaction> tx = psbt.tx;
      56         [ +  - ]:        3506 :     if (tx) {
      57         [ +  - ]:        3506 :         const CMutableTransaction& mtx = *tx;
      58         [ +  - ]:        3506 :         const PartiallySignedTransaction psbt_from_tx{mtx};
      59                 :        3506 :     }
      60                 :             : 
      61         [ +  + ]:       10452 :     for (const PSBTInput& input : psbt.inputs) {
      62         [ +  - ]:        6946 :         (void)PSBTInputSigned(input);
      63         [ +  - ]:        6946 :         (void)input.IsNull();
      64                 :             :     }
      65         [ +  - ]:        3506 :     (void)CountPSBTUnsignedInputs(psbt);
      66                 :             : 
      67         [ +  + ]:       12537 :     for (const PSBTOutput& output : psbt.outputs) {
      68         [ +  - ]:        9031 :         (void)output.IsNull();
      69                 :             :     }
      70                 :             : 
      71   [ -  +  +  + ]:       10452 :     for (size_t i = 0; i < psbt.tx->vin.size(); ++i) {
      72                 :        6946 :         CTxOut tx_out;
      73   [ +  -  +  + ]:        6946 :         if (psbt.GetInputUTXO(tx_out, i)) {
      74                 :        4276 :             (void)tx_out.IsNull();
      75         [ +  - ]:        8552 :             (void)tx_out.ToString();
      76                 :             :         }
      77                 :        6946 :     }
      78                 :             : 
      79         [ +  - ]:        3506 :     psbt_mut = psbt;
      80         [ +  - ]:        3506 :     (void)FinalizePSBT(psbt_mut);
      81                 :             : 
      82         [ +  - ]:        3506 :     psbt_mut = psbt;
      83         [ +  - ]:        3506 :     CMutableTransaction result;
      84   [ +  -  +  + ]:        3506 :     if (FinalizeAndExtractPSBT(psbt_mut, result)) {
      85         [ +  - ]:         652 :         const PartiallySignedTransaction psbt_from_tx{result};
      86                 :         652 :     }
      87                 :             : 
      88                 :        3506 :     PartiallySignedTransaction psbt_merge;
      89         [ +  - ]:        3506 :     str = fuzzed_data_provider.ConsumeRandomLengthString();
      90   [ +  -  +  + ]:        3506 :     if (!DecodeRawPSBT(psbt_merge, MakeByteSpan(str), error)) {
      91         [ +  - ]:        3218 :         psbt_merge = psbt;
      92                 :             :     }
      93         [ +  - ]:        3506 :     psbt_mut = psbt;
      94         [ +  - ]:        3506 :     (void)psbt_mut.Merge(psbt_merge);
      95         [ +  - ]:        3506 :     psbt_mut = psbt;
      96   [ +  -  +  -  :       10518 :     (void)CombinePSBTs(psbt_mut, {psbt_mut, psbt_merge});
             +  +  -  - ]
      97         [ +  - ]:        3506 :     psbt_mut = psbt;
      98   [ -  +  +  + ]:       10797 :     for (unsigned int i = 0; i < psbt_merge.tx->vin.size(); ++i) {
      99         [ +  - ]:        7291 :         (void)psbt_mut.AddInput(psbt_merge.tx->vin[i], psbt_merge.inputs[i]);
     100                 :             :     }
     101   [ -  +  +  + ]:       12805 :     for (unsigned int i = 0; i < psbt_merge.tx->vout.size(); ++i) {
     102   [ +  -  -  + ]:        9299 :         Assert(psbt_mut.AddOutput(psbt_merge.tx->vout[i], psbt_merge.outputs[i]));
     103                 :             :     }
     104         [ +  - ]:        3506 :     psbt_mut.unknown.insert(psbt_merge.unknown.begin(), psbt_merge.unknown.end());
     105   [ +  -  +  -  :       18201 : }
             +  -  -  - ]
        

Generated by: LCOV version 2.0-1