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 <pubkey.h> 6 : : #include <script/interpreter.h> 7 : : #include <test/fuzz/FuzzedDataProvider.h> 8 : : #include <test/fuzz/fuzz.h> 9 : : 10 : : #include <limits> 11 : : 12 [ - + ]: 1318 : FUZZ_TARGET(eval_script) 13 : : { 14 : 972 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size()); 15 : 972 : const unsigned int flags = fuzzed_data_provider.ConsumeIntegral<unsigned int>(); 16 : 1944 : const std::vector<uint8_t> script_bytes = [&] { 17 [ + + ]: 972 : if (fuzzed_data_provider.remaining_bytes() != 0) { 18 : 968 : return fuzzed_data_provider.ConsumeRemainingBytes<uint8_t>(); 19 : : } else { 20 : : // Avoid UBSan warning: 21 : : // test/fuzz/FuzzedDataProvider.h:212:17: runtime error: null pointer passed as argument 1, which is declared to never be null 22 : : // /usr/include/string.h:43:28: note: nonnull attribute specified here 23 : 4 : return std::vector<uint8_t>(); 24 : : } 25 [ + - ]: 1145 : }(); 26 [ + - ]: 972 : const CScript script(script_bytes.begin(), script_bytes.end()); 27 [ + + ]: 2916 : for (const auto sig_version : {SigVersion::BASE, SigVersion::WITNESS_V0}) { 28 : 1944 : std::vector<std::vector<unsigned char>> stack; 29 [ + - ]: 1944 : (void)EvalScript(stack, script, flags, BaseSignatureChecker(), sig_version, nullptr); 30 : 1944 : } 31 : 972 : }