LCOV - code coverage report
Current view: top level - src/test/fuzz - script_sigcache.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 28 28
Test Date: 2025-01-22 04:09:46 Functions: 100.0 % 3 3
Branches: 70.6 % 34 24

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2020-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                 :             : 
       5                 :             : #include <consensus/amount.h>
       6                 :             : #include <primitives/transaction.h>
       7                 :             : #include <pubkey.h>
       8                 :             : #include <script/interpreter.h>
       9                 :             : #include <script/sigcache.h>
      10                 :             : #include <span.h>
      11                 :             : #include <test/fuzz/FuzzedDataProvider.h>
      12                 :             : #include <test/fuzz/fuzz.h>
      13                 :             : #include <test/fuzz/util.h>
      14                 :             : #include <test/util/setup_common.h>
      15                 :             : #include <uint256.h>
      16                 :             : 
      17                 :             : #include <cstddef>
      18                 :             : #include <optional>
      19                 :             : #include <vector>
      20                 :             : 
      21                 :           1 : void initialize_script_sigcache()
      22                 :             : {
      23   [ +  -  +  - ]:           2 :     static const auto testing_setup = MakeNoLogFileContext<>();
      24         [ +  - ]:           2 : }
      25                 :             : 
      26         [ +  - ]:        1182 : FUZZ_TARGET(script_sigcache, .init = initialize_script_sigcache)
      27                 :             : {
      28                 :         768 :     SeedRandomStateForTest(SeedRand::ZEROS);
      29                 :         768 :     FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
      30                 :             : 
      31                 :         768 :     const auto max_sigcache_bytes{fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, DEFAULT_SIGNATURE_CACHE_BYTES)};
      32                 :         768 :     SignatureCache signature_cache{max_sigcache_bytes};
      33                 :             : 
      34                 :         768 :     const std::optional<CMutableTransaction> mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
      35   [ +  +  +  -  :         768 :     const CTransaction tx{mutable_transaction ? *mutable_transaction : CMutableTransaction{}};
             +  -  +  - ]
      36                 :         768 :     const unsigned int n_in = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
      37                 :         768 :     const CAmount amount = ConsumeMoney(fuzzed_data_provider);
      38                 :         768 :     const bool store = fuzzed_data_provider.ConsumeBool();
      39                 :         768 :     PrecomputedTransactionData tx_data;
      40         [ +  + ]:        1383 :     CachingTransactionSignatureChecker caching_transaction_signature_checker{mutable_transaction ? &tx : nullptr, n_in, amount, store, signature_cache, tx_data};
      41         [ +  + ]:         768 :     if (fuzzed_data_provider.ConsumeBool()) {
      42         [ +  - ]:         313 :         const auto random_bytes = fuzzed_data_provider.ConsumeBytes<unsigned char>(64);
      43                 :         313 :         const XOnlyPubKey pub_key(ConsumeUInt256(fuzzed_data_provider));
      44         [ +  + ]:         313 :         if (random_bytes.size() == 64) {
      45         [ +  - ]:         298 :             (void)caching_transaction_signature_checker.VerifySchnorrSignature(random_bytes, pub_key, ConsumeUInt256(fuzzed_data_provider));
      46                 :             :         }
      47                 :         313 :     } else {
      48                 :         455 :         const auto random_bytes = ConsumeRandomLengthByteVector(fuzzed_data_provider);
      49                 :         455 :         const auto pub_key = ConsumeDeserializable<CPubKey>(fuzzed_data_provider);
      50         [ +  + ]:         455 :         if (pub_key) {
      51         [ +  + ]:         241 :             if (!random_bytes.empty()) {
      52         [ +  - ]:         237 :                 (void)caching_transaction_signature_checker.VerifyECDSASignature(random_bytes, *pub_key, ConsumeUInt256(fuzzed_data_provider));
      53                 :             :             }
      54                 :             :         }
      55                 :         455 :     }
      56         [ +  + ]:        2304 : }
        

Generated by: LCOV version 2.0-1