/root/bitcoin/src/test/fuzz/load_external_block_file.cpp
Line | Count | Source |
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 | | |
5 | | #include <chainparams.h> |
6 | | #include <clientversion.h> |
7 | | #include <flatfile.h> |
8 | | #include <test/fuzz/FuzzedDataProvider.h> |
9 | | #include <test/fuzz/fuzz.h> |
10 | | #include <test/fuzz/util.h> |
11 | | #include <test/util/setup_common.h> |
12 | | #include <test/util/time.h> |
13 | | #include <util/time.h> |
14 | | #include <validation.h> |
15 | | |
16 | | #include <cstdint> |
17 | | #include <vector> |
18 | | |
19 | | namespace { |
20 | | const TestingSetup* g_setup; |
21 | | } // namespace |
22 | | |
23 | | void initialize_load_external_block_file() |
24 | 0 | { |
25 | 0 | static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(); |
26 | 0 | g_setup = testing_setup.get(); |
27 | 0 | } |
28 | | |
29 | | FUZZ_TARGET(load_external_block_file, .init = initialize_load_external_block_file) |
30 | 930 | { |
31 | 930 | FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; |
32 | 930 | FakeNodeClock clock{ConsumeTime(fuzzed_data_provider)}; |
33 | 930 | FuzzedFileProvider fuzzed_file_provider{fuzzed_data_provider}; |
34 | 930 | AutoFile fuzzed_block_file{fuzzed_file_provider.open()}; |
35 | 930 | if (fuzzed_block_file.IsNull()) { Branch (35:9): [True: 3, False: 927]
|
36 | 3 | return; |
37 | 3 | } |
38 | 927 | if (fuzzed_data_provider.ConsumeBool()) { Branch (38:9): [True: 399, False: 528]
|
39 | | // Corresponds to the -reindex case (track orphan blocks across files). |
40 | 399 | FlatFilePos flat_file_pos; |
41 | 399 | std::multimap<uint256, FlatFilePos> blocks_with_unknown_parent; |
42 | 399 | g_setup->m_node.chainman->LoadExternalBlockFile(fuzzed_block_file, &flat_file_pos, &blocks_with_unknown_parent); |
43 | 528 | } else { |
44 | | // Corresponds to the -loadblock= case (orphan blocks aren't tracked across files). |
45 | 528 | g_setup->m_node.chainman->LoadExternalBlockFile(fuzzed_block_file); |
46 | 528 | } |
47 | 927 | } |