Bitcoin Core 28.99.0
P2P Digital Currency
script_interpreter.cpp
Go to the documentation of this file.
1// Copyright (c) 2020 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
8#include <test/fuzz/fuzz.h>
9#include <test/fuzz/util.h>
10
11#include <cstdint>
12#include <optional>
13#include <string>
14#include <vector>
15
16bool CastToBool(const std::vector<unsigned char>& vch);
17
18FUZZ_TARGET(script_interpreter)
19{
20 FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
21 {
22 const CScript script_code = ConsumeScript(fuzzed_data_provider);
23 const std::optional<CMutableTransaction> mtx = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
24 if (mtx) {
25 const CTransaction tx_to{*mtx};
26 const unsigned int in = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
27 if (in < tx_to.vin.size()) {
28 auto n_hash_type = fuzzed_data_provider.ConsumeIntegral<int>();
29 auto amount = ConsumeMoney(fuzzed_data_provider);
30 auto sigversion = fuzzed_data_provider.PickValueInArray({SigVersion::BASE, SigVersion::WITNESS_V0});
31 (void)SignatureHash(script_code, tx_to, in, n_hash_type, amount, sigversion, nullptr);
32 const std::optional<CMutableTransaction> mtx_precomputed = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
33 if (mtx_precomputed) {
34 const CTransaction tx_precomputed{*mtx_precomputed};
35 const PrecomputedTransactionData precomputed_transaction_data{tx_precomputed};
36 n_hash_type = fuzzed_data_provider.ConsumeIntegral<int>();
37 amount = ConsumeMoney(fuzzed_data_provider);
38 sigversion = fuzzed_data_provider.PickValueInArray({SigVersion::BASE, SigVersion::WITNESS_V0});
39 (void)SignatureHash(script_code, tx_to, in, n_hash_type, amount, sigversion, &precomputed_transaction_data);
40 }
41 }
42 }
43 }
44 {
45 (void)CastToBool(ConsumeRandomLengthByteVector(fuzzed_data_provider));
46 }
47}
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:415
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.h:296
T PickValueInArray(const T(&array)[size])
uint256 SignatureHash(const CScript &scriptCode, const T &txTo, unsigned int nIn, int32_t nHashType, const CAmount &amount, SigVersion sigversion, const PrecomputedTransactionData *cache)
@ BASE
Bare scripts and BIP16 P2SH-wrapped redeemscripts.
@ WITNESS_V0
Witness v0 (P2WPKH and P2WSH); see BIP 141.
static constexpr TransactionSerParams TX_WITH_WITNESS
Definition: transaction.h:195
FUZZ_TARGET(script_interpreter)
bool CastToBool(const std::vector< unsigned char > &vch)
Definition: interpreter.cpp:35
CScript ConsumeScript(FuzzedDataProvider &fuzzed_data_provider, const bool maybe_p2wsh) noexcept
Definition: util.cpp:93
CAmount ConsumeMoney(FuzzedDataProvider &fuzzed_data_provider, const std::optional< CAmount > &max) noexcept
Definition: util.cpp:29
std::vector< B > ConsumeRandomLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
Definition: util.h:57