// Copyright (c) 2020-2021 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include namespace { const TestingSetup* g_setup; } // namespace void initialize_load_external_block_file() { static const auto testing_setup = MakeNoLogFileContext(); g_setup = testing_setup.get(); } FUZZ_TARGET_INIT(load_external_block_file, initialize_load_external_block_file) { FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; FuzzedFileProvider fuzzed_file_provider = ConsumeFile(fuzzed_data_provider); FILE* fuzzed_block_file = fuzzed_file_provider.open(); if (fuzzed_block_file == nullptr) { return; } if (fuzzed_data_provider.ConsumeBool()) { // Corresponds to the -reindex case (track orphan blocks across files). FlatFilePos flat_file_pos; std::multimap blocks_with_unknown_parent; g_setup->m_node.chainman->ActiveChainstate().LoadExternalBlockFile(fuzzed_block_file, &flat_file_pos, &blocks_with_unknown_parent); } else { // Corresponds to the -loadblock= case (orphan blocks aren't tracked across files). g_setup->m_node.chainman->ActiveChainstate().LoadExternalBlockFile(fuzzed_block_file); } }