LCOV - code coverage report
Current view: top level - src/wallet/test/fuzz - scriptpubkeyman.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 98.4 % 127 125
Test Date: 2025-01-22 04:09:46 Functions: 100.0 % 12 12
Branches: 60.0 % 180 108

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2023-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 <addresstype.h>
       6                 :             : #include <chainparams.h>
       7                 :             : #include <coins.h>
       8                 :             : #include <key.h>
       9                 :             : #include <primitives/transaction.h>
      10                 :             : #include <psbt.h>
      11                 :             : #include <script/descriptor.h>
      12                 :             : #include <script/interpreter.h>
      13                 :             : #include <script/script.h>
      14                 :             : #include <script/signingprovider.h>
      15                 :             : #include <sync.h>
      16                 :             : #include <test/fuzz/FuzzedDataProvider.h>
      17                 :             : #include <test/fuzz/fuzz.h>
      18                 :             : #include <test/fuzz/util.h>
      19                 :             : #include <test/fuzz/util/descriptor.h>
      20                 :             : #include <test/util/setup_common.h>
      21                 :             : #include <util/check.h>
      22                 :             : #include <util/time.h>
      23                 :             : #include <util/translation.h>
      24                 :             : #include <validation.h>
      25                 :             : #include <wallet/scriptpubkeyman.h>
      26                 :             : #include <wallet/test/util.h>
      27                 :             : #include <wallet/types.h>
      28                 :             : #include <wallet/wallet.h>
      29                 :             : #include <wallet/walletutil.h>
      30                 :             : 
      31                 :             : #include <map>
      32                 :             : #include <memory>
      33                 :             : #include <optional>
      34                 :             : #include <string>
      35                 :             : #include <utility>
      36                 :             : #include <variant>
      37                 :             : 
      38                 :             : namespace wallet {
      39                 :             : namespace {
      40                 :             : const TestingSetup* g_setup;
      41                 :             : 
      42                 :             : //! The converter of mocked descriptors, needs to be initialized when the target is.
      43                 :             : MockedDescriptorConverter MOCKED_DESC_CONVERTER;
      44                 :             : 
      45                 :           1 : void initialize_spkm()
      46                 :             : {
      47   [ +  -  +  - ]:           2 :     static const auto testing_setup{MakeNoLogFileContext<const TestingSetup>()};
      48                 :           1 :     g_setup = testing_setup.get();
      49                 :           1 :     SelectParams(ChainType::MAIN);
      50                 :           1 :     MOCKED_DESC_CONVERTER.Init();
      51         [ +  - ]:           2 : }
      52                 :             : 
      53                 :             : /**
      54                 :             :  * Key derivation is expensive. Deriving deep derivation paths take a lot of compute and we'd rather spend time
      55                 :             :  * elsewhere in this target, like on actually fuzzing the DescriptorScriptPubKeyMan. So rule out strings which could
      56                 :             :  * correspond to a descriptor containing a too large derivation path.
      57                 :             :  */
      58                 :       11188 : static bool TooDeepDerivPath(std::string_view desc)
      59                 :             : {
      60                 :       11188 :     const FuzzBufferType desc_buf{reinterpret_cast<const unsigned char *>(desc.data()), desc.size()};
      61                 :       11188 :     return HasDeepDerivPath(desc_buf);
      62                 :             : }
      63                 :             : 
      64                 :       11188 : static std::optional<std::pair<WalletDescriptor, FlatSigningProvider>> CreateWalletDescriptor(FuzzedDataProvider& fuzzed_data_provider)
      65                 :             : {
      66                 :       11188 :     const std::string mocked_descriptor{fuzzed_data_provider.ConsumeRandomLengthString()};
      67   [ +  -  +  + ]:       11188 :     if (TooDeepDerivPath(mocked_descriptor)) return {};
      68         [ +  - ]:       11098 :     const auto desc_str{MOCKED_DESC_CONVERTER.GetDescriptor(mocked_descriptor)};
      69         [ +  + ]:       11098 :     if (!desc_str.has_value()) return std::nullopt;
      70                 :             : 
      71                 :       10100 :     FlatSigningProvider keys;
      72         [ +  - ]:       10100 :     std::string error;
      73   [ +  -  +  - ]:       10100 :     std::vector<std::unique_ptr<Descriptor>> parsed_descs = Parse(desc_str.value(), keys, error, false);
      74         [ +  + ]:       10100 :     if (parsed_descs.empty()) return std::nullopt;
      75                 :             : 
      76   [ +  -  +  -  :        7026 :     WalletDescriptor w_desc{std::move(parsed_descs.at(0)), /*creation_time=*/0, /*range_start=*/0, /*range_end=*/1, /*next_index=*/1};
                   +  - ]
      77         [ +  - ]:        7026 :     return std::make_pair(w_desc, keys);
      78                 :       32386 : }
      79                 :             : 
      80                 :        6271 : static DescriptorScriptPubKeyMan* CreateDescriptor(WalletDescriptor& wallet_desc, FlatSigningProvider& keys, CWallet& keystore)
      81                 :             : {
      82                 :        6271 :     LOCK(keystore.cs_wallet);
      83   [ +  -  +  - ]:        6271 :     keystore.AddWalletDescriptor(wallet_desc, keys, /*label=*/"", /*internal=*/false);
      84   [ +  -  +  - ]:        6271 :     return keystore.GetDescriptorScriptPubKeyMan(wallet_desc);
      85                 :        6271 : };
      86                 :             : 
      87         [ +  - ]:        8038 : FUZZ_TARGET(scriptpubkeyman, .init = initialize_spkm)
      88                 :             : {
      89                 :        7624 :     SeedRandomStateForTest(SeedRand::ZEROS);
      90                 :        7624 :     FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
      91                 :        7624 :     SetMockTime(ConsumeTime(fuzzed_data_provider));
      92                 :        7624 :     const auto& node{g_setup->m_node};
      93                 :        7624 :     Chainstate& chainstate{node.chainman->ActiveChainstate()};
      94   [ +  -  +  - ]:        7624 :     std::unique_ptr<CWallet> wallet_ptr{std::make_unique<CWallet>(node.chain.get(), "", CreateMockableWalletDatabase())};
      95         [ +  - ]:        7624 :     CWallet& wallet{*wallet_ptr};
      96                 :        7624 :     {
      97         [ +  - ]:        7624 :         LOCK(wallet.cs_wallet);
      98         [ +  - ]:        7624 :         wallet.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
      99   [ +  -  +  - ]:       15248 :         wallet.SetLastBlockProcessed(chainstate.m_chain.Height(), chainstate.m_chain.Tip()->GetBlockHash());
     100         [ +  - ]:        7624 :         wallet.m_keypool_size = 1;
     101                 :           0 :     }
     102                 :             : 
     103         [ +  - ]:        7624 :     auto wallet_desc{CreateWalletDescriptor(fuzzed_data_provider)};
     104         [ +  + ]:        7624 :     if (!wallet_desc.has_value()) return;
     105         [ +  - ]:        6181 :     auto spk_manager{CreateDescriptor(wallet_desc->first, wallet_desc->second, wallet)};
     106         [ +  - ]:        6181 :     if (spk_manager == nullptr) return;
     107                 :             : 
     108         [ +  + ]:        6181 :     if (fuzzed_data_provider.ConsumeBool()) {
     109         [ +  - ]:        3564 :         auto wallet_desc{CreateWalletDescriptor(fuzzed_data_provider)};
     110         [ +  + ]:        3564 :         if (!wallet_desc.has_value()) {
     111                 :        2719 :             return;
     112                 :             :         }
     113         [ +  - ]:         845 :         std::string error;
     114   [ +  -  +  + ]:         845 :         if (spk_manager->CanUpdateToWalletDescriptor(wallet_desc->first, error)) {
     115         [ +  - ]:          90 :             auto new_spk_manager{CreateDescriptor(wallet_desc->first, wallet_desc->second, wallet)};
     116         [ +  - ]:          90 :             if (new_spk_manager != nullptr) spk_manager = new_spk_manager;
     117                 :             :         }
     118         [ +  - ]:        4409 :     }
     119                 :             : 
     120                 :        3462 :     bool good_data{true};
     121   [ +  +  +  +  :       33976 :     LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 20) {
                   +  + ]
     122         [ +  - ]:       13786 :         CallOneOf(
     123                 :             :             fuzzed_data_provider,
     124                 :        1068 :             [&] {
     125                 :        1068 :                 const CScript script{ConsumeScript(fuzzed_data_provider)};
     126         [ +  - ]:        1068 :                 auto is_mine{spk_manager->IsMine(script)};
     127         [ -  + ]:        1068 :                 if (is_mine == isminetype::ISMINE_SPENDABLE) {
     128   [ #  #  #  # ]:           0 :                     assert(spk_manager->GetScriptPubKeys().count(script));
     129                 :             :                 }
     130                 :        1068 :             },
     131                 :        5741 :             [&] {
     132                 :        5741 :                 auto spks{spk_manager->GetScriptPubKeys()};
     133         [ +  + ]:       24537 :                 for (const CScript& spk : spks) {
     134   [ +  -  -  + ]:       18796 :                     assert(spk_manager->IsMine(spk) == ISMINE_SPENDABLE);
     135                 :       18796 :                     CTxDestination dest;
     136         [ +  - ]:       18796 :                     bool extract_dest{ExtractDestination(spk, dest)};
     137         [ +  + ]:       18796 :                     if (extract_dest) {
     138         [ +  - ]:       14068 :                         const std::string msg{fuzzed_data_provider.ConsumeRandomLengthString()};
     139   [ +  +  +  + ]:       14068 :                         PKHash pk_hash{std::get_if<PKHash>(&dest) && fuzzed_data_provider.ConsumeBool() ?
     140                 :        4420 :                                            *std::get_if<PKHash>(&dest) :
     141                 :       14068 :                                            PKHash{ConsumeUInt160(fuzzed_data_provider)}};
     142         [ +  - ]:       14068 :                         std::string str_sig;
     143         [ +  - ]:       14068 :                         (void)spk_manager->SignMessage(msg, pk_hash, str_sig);
     144         [ +  - ]:       14068 :                         (void)spk_manager->GetMetadata(dest);
     145                 :       14068 :                     }
     146                 :       18796 :                 }
     147                 :        5741 :             },
     148                 :         634 :             [&] {
     149                 :         634 :                 auto spks{spk_manager->GetScriptPubKeys()};
     150         [ +  + ]:         634 :                 if (!spks.empty()) {
     151                 :         605 :                     auto& spk{PickValue(fuzzed_data_provider, spks)};
     152         [ +  - ]:         605 :                     (void)spk_manager->MarkUnusedAddresses(spk);
     153                 :             :                 }
     154                 :         634 :             },
     155                 :        4507 :             [&] {
     156                 :        4507 :                 LOCK(spk_manager->cs_desc_man);
     157         [ +  - ]:        4507 :                 auto wallet_desc{spk_manager->GetWalletDescriptor()};
     158   [ +  -  +  + ]:        4507 :                 if (wallet_desc.descriptor->IsSingleType()) {
     159         [ +  - ]:        4349 :                     auto output_type{wallet_desc.descriptor->GetOutputType()};
     160         [ +  + ]:        4349 :                     if (output_type.has_value()) {
     161         [ +  - ]:        3584 :                         auto dest{spk_manager->GetNewDestination(*output_type)};
     162         [ +  + ]:        3584 :                         if (dest) {
     163   [ +  -  -  + ]:         809 :                             assert(IsValidDestination(*dest));
     164   [ +  -  -  + ]:         809 :                             assert(spk_manager->IsHDEnabled());
     165                 :             :                         }
     166                 :        3584 :                     }
     167                 :             :                 }
     168         [ +  - ]:        9014 :             },
     169                 :         483 :             [&] {
     170                 :         483 :                 CMutableTransaction tx_to;
     171                 :         483 :                 const std::optional<CMutableTransaction> opt_tx_to{ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS)};
     172         [ +  + ]:         483 :                 if (!opt_tx_to) {
     173                 :         142 :                     good_data = false;
     174         [ -  + ]:         142 :                     return;
     175                 :             :                 }
     176         [ +  - ]:         341 :                 tx_to = *opt_tx_to;
     177                 :             : 
     178                 :         341 :                 std::map<COutPoint, Coin> coins{ConsumeCoins(fuzzed_data_provider)};
     179                 :         341 :                 const int sighash{fuzzed_data_provider.ConsumeIntegral<int>()};
     180         [ +  - ]:         341 :                 std::map<int, bilingual_str> input_errors;
     181         [ +  - ]:         341 :                 (void)spk_manager->SignTransaction(tx_to, coins, sighash, input_errors);
     182         [ +  - ]:        1307 :             },
     183                 :        1353 :             [&] {
     184                 :        1353 :                 std::optional<PartiallySignedTransaction> opt_psbt{ConsumeDeserializable<PartiallySignedTransaction>(fuzzed_data_provider)};
     185         [ +  + ]:        1353 :                 if (!opt_psbt) {
     186                 :         378 :                     good_data = false;
     187                 :         378 :                     return;
     188                 :             :                 }
     189         [ +  - ]:         975 :                 auto psbt{*opt_psbt};
     190         [ +  - ]:         975 :                 const PrecomputedTransactionData txdata{PrecomputePSBTData(psbt)};
     191                 :         975 :                 const int sighash_type{fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 150)};
     192                 :         975 :                 auto sign  = fuzzed_data_provider.ConsumeBool();
     193                 :         975 :                 auto bip32derivs = fuzzed_data_provider.ConsumeBool();
     194                 :         975 :                 auto finalize = fuzzed_data_provider.ConsumeBool();
     195         [ +  - ]:         975 :                 (void)spk_manager->FillPSBT(psbt, txdata, sighash_type, sign, bip32derivs, nullptr, finalize);
     196                 :        1353 :             }
     197                 :             :         );
     198                 :             :     }
     199                 :             : 
     200                 :        3462 :     std::string descriptor;
     201         [ +  - ]:        3462 :     (void)spk_manager->GetDescriptorString(descriptor, /*priv=*/fuzzed_data_provider.ConsumeBool());
     202         [ +  - ]:        3462 :     (void)spk_manager->GetEndRange();
     203         [ +  - ]:        3462 :     (void)spk_manager->GetKeyPoolSize();
     204   [ +  -  +  -  :       18710 : }
                   +  - ]
     205                 :             : 
     206                 :             : } // namespace
     207                 :             : } // namespace wallet
        

Generated by: LCOV version 2.0-1