Branch data Line data Source code
1 : : // Copyright (c) 2009-2021 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 <script/interpreter.h>
8 : : #include <serialize.h>
9 : : #include <streams.h>
10 : : #include <test/fuzz/fuzz.h>
11 : : #include <test/util/script.h>
12 : :
13 : : #include <cassert>
14 : : #include <ios>
15 : : #include <utility>
16 : : #include <vector>
17 : :
18 [ + - ]: 2528 : FUZZ_TARGET(script_flags)
19 : : {
20 [ + + ]: 2088 : if (buffer.size() > 100'000) return;
21 : 2087 : DataStream ds{buffer};
22 : 2087 : try {
23 [ + + ]: 2087 : const CTransaction tx(deserialize, TX_WITH_WITNESS, ds);
24 : :
25 : 2068 : unsigned int verify_flags;
26 [ + + ]: 2068 : ds >> verify_flags;
27 : :
28 [ + - + + ]: 2064 : if (!IsValidFlagCombination(verify_flags)) return;
29 : :
30 : 2062 : unsigned int fuzzed_flags;
31 [ + + ]: 2062 : ds >> fuzzed_flags;
32 : :
33 : 2061 : std::vector<CTxOut> spent_outputs;
34 [ + + ]: 99916 : for (unsigned i = 0; i < tx.vin.size(); ++i) {
35 : 97873 : CTxOut prevout;
36 [ + + ]: 97873 : ds >> prevout;
37 [ + + ]: 97855 : if (!MoneyRange(prevout.nValue)) {
38 : : // prevouts should be consensus-valid
39 : 34799 : prevout.nValue = 1;
40 : : }
41 [ + - ]: 97855 : spent_outputs.push_back(prevout);
42 : 97873 : }
43 : 2043 : PrecomputedTransactionData txdata;
44 [ + - ]: 2043 : txdata.Init(tx, std::move(spent_outputs));
45 : :
46 [ + + ]: 98431 : for (unsigned i = 0; i < tx.vin.size(); ++i) {
47 [ + - ]: 96565 : const CTxOut& prevout = txdata.m_spent_outputs.at(i);
48 [ + - ]: 96565 : const TransactionSignatureChecker checker{&tx, i, prevout.nValue, txdata, MissingDataBehavior::ASSERT_FAIL};
49 : :
50 : 96565 : ScriptError serror;
51 [ + - + - : 96565 : const bool ret = VerifyScript(tx.vin.at(i).scriptSig, prevout.scriptPubKey, &tx.vin.at(i).scriptWitness, verify_flags, checker, &serror);
+ - ]
52 [ - + ]: 96565 : assert(ret == (serror == SCRIPT_ERR_OK));
53 : :
54 : : // Verify that removing flags from a passing test or adding flags to a failing test does not change the result
55 [ + + ]: 96565 : if (ret) {
56 : 11588 : verify_flags &= ~fuzzed_flags;
57 : : } else {
58 : 84977 : verify_flags |= fuzzed_flags;
59 : : }
60 [ + - + + ]: 96565 : if (!IsValidFlagCombination(verify_flags)) return;
61 : :
62 : 96388 : ScriptError serror_fuzzed;
63 [ + - + - : 96388 : const bool ret_fuzzed = VerifyScript(tx.vin.at(i).scriptSig, prevout.scriptPubKey, &tx.vin.at(i).scriptWitness, verify_flags, checker, &serror_fuzzed);
+ - ]
64 [ - + ]: 96388 : assert(ret_fuzzed == (serror_fuzzed == SCRIPT_ERR_OK));
65 : :
66 [ - + ]: 96388 : assert(ret_fuzzed == ret);
67 : 96565 : }
68 [ - + ]: 4148 : } catch (const std::ios_base::failure&) {
69 : 42 : return;
70 : 42 : }
71 : 2087 : }
|