Bitcoin Core 28.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
script_sigcache.cpp
Go to the documentation of this file.
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>
7#include <pubkey.h>
9#include <script/sigcache.h>
10#include <span.h>
12#include <test/fuzz/fuzz.h>
13#include <test/fuzz/util.h>
15#include <uint256.h>
16
17#include <cstddef>
18#include <optional>
19#include <vector>
20
22{
23 static const auto testing_setup = MakeNoLogFileContext<>();
24}
25
27{
28 FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
29
30 const auto max_sigcache_bytes{fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, DEFAULT_SIGNATURE_CACHE_BYTES)};
31 SignatureCache signature_cache{max_sigcache_bytes};
32
33 const std::optional<CMutableTransaction> mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
34 const CTransaction tx{mutable_transaction ? *mutable_transaction : CMutableTransaction{}};
35 const unsigned int n_in = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
36 const CAmount amount = ConsumeMoney(fuzzed_data_provider);
37 const bool store = fuzzed_data_provider.ConsumeBool();
39 CachingTransactionSignatureChecker caching_transaction_signature_checker{mutable_transaction ? &tx : nullptr, n_in, amount, store, signature_cache, tx_data};
40 if (fuzzed_data_provider.ConsumeBool()) {
41 const auto random_bytes = fuzzed_data_provider.ConsumeBytes<unsigned char>(64);
42 const XOnlyPubKey pub_key(ConsumeUInt256(fuzzed_data_provider));
43 if (random_bytes.size() == 64) {
44 (void)caching_transaction_signature_checker.VerifySchnorrSignature(random_bytes, pub_key, ConsumeUInt256(fuzzed_data_provider));
45 }
46 } else {
47 const auto random_bytes = ConsumeRandomLengthByteVector(fuzzed_data_provider);
48 const auto pub_key = ConsumeDeserializable<CPubKey>(fuzzed_data_provider);
49 if (pub_key) {
50 if (!random_bytes.empty()) {
51 (void)caching_transaction_signature_checker.VerifyECDSASignature(random_bytes, *pub_key, ConsumeUInt256(fuzzed_data_provider));
52 }
53 }
54 }
55}
int64_t CAmount
Amount in satoshis (Can be negative)
Definition amount.h:12
The basic transaction that is broadcasted on the network and contained in blocks.
std::vector< T > ConsumeBytes(size_t num_bytes)
T ConsumeIntegralInRange(T min, T max)
Valid signature cache, to avoid doing expensive ECDSA signature checking twice for every transaction ...
Definition sigcache.h:39
#define FUZZ_TARGET(...)
Definition fuzz.h:35
static constexpr TransactionSerParams TX_WITH_WITNESS
void initialize_script_sigcache()
std::unique_ptr< T > MakeNoLogFileContext(const ChainType chain_type=ChainType::REGTEST, TestOpts opts={})
Make a test setup that has disk access to the debug.log file disabled.
static constexpr size_t DEFAULT_SIGNATURE_CACHE_BYTES
Definition sigcache.h:29
A mutable version of CTransaction.
CAmount ConsumeMoney(FuzzedDataProvider &fuzzed_data_provider, const std::optional< CAmount > &max) noexcept
Definition util.cpp:29
uint256 ConsumeUInt256(FuzzedDataProvider &fuzzed_data_provider) noexcept
Definition util.h:169
std::vector< B > ConsumeRandomLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
Definition util.h:57
std::optional< T > ConsumeDeserializable(FuzzedDataProvider &fuzzed_data_provider, const P &params, const std::optional< size_t > &max_length=std::nullopt) noexcept
Definition util.h:103