Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
script_interpreter.cpp
Go to the documentation of this file.
1// Copyright (c) 2020-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
8#include <test/fuzz/fuzz.h>
9#include <test/fuzz/util.h>
10#include <util/check.h>
11
12#include <cstdint>
13#include <optional>
14#include <string>
15#include <vector>
16
17bool CastToBool(const std::vector<unsigned char>& vch);
18
20{
21 FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
22 {
25 if (mtx) {
26 const CTransaction tx_to{*mtx};
27 const unsigned int in = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
28 if (in < tx_to.vin.size()) {
32 (void)SignatureHash(script_code, tx_to, in, n_hash_type, amount, sigversion, nullptr);
34 if (mtx_precomputed) {
41 }
42 }
43 }
44 }
45 {
47 }
48}
49
52{
53 FuzzedDataProvider provider(buffer.data(), buffer.size());
54
55 // Get inputs to the sighash function that won't change across types.
56 const auto scriptcode{ConsumeScript(provider)};
57 const auto tx{ConsumeTransaction(provider, std::nullopt)};
58 if (tx.vin.empty()) return;
59 const auto in_index{provider.ConsumeIntegralInRange<uint32_t>(0, tx.vin.size() - 1)};
60 const auto amount{ConsumeMoney(provider)};
61 const auto sigversion{(SigVersion)provider.ConsumeIntegralInRange(0, 1)};
62
63 // Check the sighash function will give the same result for 100 fuzzer-generated hash types whether or not a cache is
64 // provided. The cache is conserved across types to exercise cache hits.
66 for (int i{0}; i < 100; ++i) {
67 const auto hash_type{((i & 2) == 0) ? provider.ConsumeIntegral<int8_t>() : provider.ConsumeIntegral<int32_t>()};
69 const auto cache_res{SignatureHash(scriptcode, tx, in_index, hash_type, amount, sigversion, nullptr, &sighash_cache)};
71 }
72}
#define Assert(val)
Identity function.
Definition check.h:113
Serialized script, used inside transaction inputs and outputs.
Definition script.h:405
The basic transaction that is broadcasted on the network and contained in blocks.
T ConsumeIntegralInRange(T min, T max)
T PickValueInArray(const T(&array)[size])
Data structure to cache SHA256 midstates for the ECDSA sighash calculations (bare,...
#define FUZZ_TARGET(...)
Definition fuzz.h:35
uint256 SignatureHash(const CScript &scriptCode, const T &txTo, unsigned int nIn, int32_t nHashType, const CAmount &amount, SigVersion sigversion, const PrecomputedTransactionData *cache, SigHashCache *sighash_cache)
SigVersion
@ BASE
Bare scripts and BIP16 P2SH-wrapped redeemscripts.
@ WITNESS_V0
Witness v0 (P2WPKH and P2WSH); see BIP 141.
static constexpr TransactionSerParams TX_WITH_WITNESS
bool CastToBool(const std::vector< unsigned char > &vch)
CScript ConsumeScript(FuzzedDataProvider &fuzzed_data_provider, const bool maybe_p2wsh) noexcept
Definition util.cpp:98
CMutableTransaction ConsumeTransaction(FuzzedDataProvider &fuzzed_data_provider, const std::optional< std::vector< Txid > > &prevout_txids, const int max_num_in, const int max_num_out) noexcept
Definition util.cpp:47
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
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition time.h:73
FuzzedDataProvider & fuzzed_data_provider
Definition fees.cpp:38