Branch data Line data Source code
1 : : #include <blockencodings.h>
2 : : #include <consensus/merkle.h>
3 : : #include <consensus/validation.h>
4 : : #include <primitives/block.h>
5 : : #include <primitives/transaction.h>
6 : : #include <test/fuzz/FuzzedDataProvider.h>
7 : : #include <test/fuzz/fuzz.h>
8 : : #include <test/fuzz/util.h>
9 : : #include <test/fuzz/util/mempool.h>
10 : : #include <test/util/setup_common.h>
11 : : #include <test/util/txmempool.h>
12 : : #include <txmempool.h>
13 : : #include <util/check.h>
14 : : #include <util/time.h>
15 : : #include <util/translation.h>
16 : :
17 : : #include <cstddef>
18 : : #include <cstdint>
19 : : #include <limits>
20 : : #include <memory>
21 : : #include <optional>
22 : : #include <set>
23 : : #include <vector>
24 : :
25 : : namespace {
26 : : const TestingSetup* g_setup;
27 : : } // namespace
28 : :
29 : 1 : void initialize_pdb()
30 : : {
31 [ + - + - ]: 2 : static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
32 : 1 : g_setup = testing_setup.get();
33 [ + - ]: 2 : }
34 : :
35 : 853 : PartiallyDownloadedBlock::CheckBlockFn FuzzedCheckBlock(std::optional<BlockValidationResult> result)
36 : : {
37 : 1138 : return [result](const CBlock&, BlockValidationState& state, const Consensus::Params&, bool, bool) {
38 [ + + ]: 285 : if (result) {
39 [ + - + - ]: 23 : return state.Invalid(*result);
40 : : }
41 : :
42 : : return true;
43 : 853 : };
44 : : }
45 : :
46 [ + - ]: 1367 : FUZZ_TARGET(partially_downloaded_block, .init = initialize_pdb)
47 : : {
48 : 953 : SeedRandomStateForTest(SeedRand::ZEROS);
49 : 953 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
50 : 953 : SetMockTime(ConsumeTime(fuzzed_data_provider));
51 : :
52 : 953 : auto block{ConsumeDeserializable<CBlock>(fuzzed_data_provider, TX_WITH_WITNESS)};
53 [ + + + + : 953 : if (!block || block->vtx.size() == 0 ||
+ + ]
54 [ + + ]: 854 : block->vtx.size() >= std::numeric_limits<uint16_t>::max()) {
55 : 100 : return;
56 : : }
57 : :
58 [ + - ]: 853 : CBlockHeaderAndShortTxIDs cmpctblock{*block, fuzzed_data_provider.ConsumeIntegral<uint64_t>()};
59 : :
60 [ + - ]: 853 : bilingual_str error;
61 [ + - + - ]: 853 : CTxMemPool pool{MemPoolOptionsForTest(g_setup->m_node), error};
62 [ + - ]: 853 : Assert(error.empty());
63 : 853 : PartiallyDownloadedBlock pdb{&pool};
64 : :
65 : : // Set of available transactions (mempool or extra_txn)
66 [ + - ]: 853 : std::set<uint16_t> available;
67 : : // The coinbase is always available
68 [ + - ]: 853 : available.insert(0);
69 : :
70 : 853 : std::vector<CTransactionRef> extra_txn;
71 [ + + ]: 1537387 : for (size_t i = 1; i < block->vtx.size(); ++i) {
72 [ + - ]: 1536534 : auto tx{block->vtx[i]};
73 : :
74 : 1536534 : bool add_to_extra_txn{fuzzed_data_provider.ConsumeBool()};
75 : 1536534 : bool add_to_mempool{fuzzed_data_provider.ConsumeBool()};
76 : :
77 [ + + ]: 1536534 : if (add_to_extra_txn) {
78 [ + - ]: 1243240 : extra_txn.emplace_back(tx);
79 [ + - ]: 1243240 : available.insert(i);
80 : : }
81 : :
82 [ + + + - : 1536534 : if (add_to_mempool && !pool.exists(GenTxid::Txid(tx->GetHash()))) {
+ + ]
83 [ + - + - ]: 110265 : LOCK2(cs_main, pool.cs);
84 [ + - ]: 110265 : AddToMempool(pool, ConsumeTxMemPoolEntry(fuzzed_data_provider, *tx));
85 [ + - ]: 110265 : available.insert(i);
86 [ + - ]: 220530 : }
87 : 1536534 : }
88 : :
89 [ + - ]: 853 : auto init_status{pdb.InitData(cmpctblock, extra_txn)};
90 : :
91 : 853 : std::vector<CTransactionRef> missing;
92 : : // Whether we skipped a transaction that should be included in `missing`.
93 : : // FillBlock should never return READ_STATUS_OK if that is the case.
94 : 853 : bool skipped_missing{false};
95 [ + + ]: 1538240 : for (size_t i = 0; i < cmpctblock.BlockTxCount(); i++) {
96 : : // If init_status == READ_STATUS_OK then a available transaction in the
97 : : // compact block (i.e. IsTxAvailable(i) == true) implies that we marked
98 : : // that transaction as available above (i.e. available.count(i) > 0).
99 : : // The reverse is not true, due to possible compact block short id
100 : : // collisions (i.e. available.count(i) > 0 does not imply
101 : : // IsTxAvailable(i) == true).
102 [ + + ]: 1537387 : if (init_status == READ_STATUS_OK) {
103 [ + - + + : 5811 : assert(!pdb.IsTxAvailable(i) || available.count(i) > 0);
- + ]
104 : : }
105 : :
106 : 1537387 : bool skip{fuzzed_data_provider.ConsumeBool()};
107 [ + - + + : 1537387 : if (!pdb.IsTxAvailable(i) && !skip) {
+ + ]
108 [ + - ]: 1071032 : missing.push_back(block->vtx[i]);
109 : : }
110 : :
111 [ + - + + : 2613522 : skipped_missing |= (!pdb.IsTxAvailable(i) && skip);
+ + ]
112 : : }
113 : :
114 : : // Mock CheckBlock
115 : 853 : bool fail_check_block{fuzzed_data_provider.ConsumeBool()};
116 : 853 : auto validation_result =
117 : 853 : fuzzed_data_provider.PickValueInArray(
118 : : {BlockValidationResult::BLOCK_RESULT_UNSET,
119 : : BlockValidationResult::BLOCK_CONSENSUS,
120 : : BlockValidationResult::BLOCK_CACHED_INVALID,
121 : : BlockValidationResult::BLOCK_INVALID_HEADER,
122 : : BlockValidationResult::BLOCK_MUTATED,
123 : : BlockValidationResult::BLOCK_MISSING_PREV,
124 : : BlockValidationResult::BLOCK_INVALID_PREV,
125 : : BlockValidationResult::BLOCK_TIME_FUTURE,
126 : : BlockValidationResult::BLOCK_CHECKPOINT,
127 : 853 : BlockValidationResult::BLOCK_HEADER_LOW_WORK});
128 [ + + ]: 853 : pdb.m_check_block_mock = FuzzedCheckBlock(
129 : : fail_check_block ?
130 : : std::optional<BlockValidationResult>{validation_result} :
131 : 853 : std::nullopt);
132 : :
133 : 853 : CBlock reconstructed_block;
134 [ + - ]: 853 : auto fill_status{pdb.FillBlock(reconstructed_block, missing)};
135 [ + + + ]: 853 : switch (fill_status) {
136 : 262 : case READ_STATUS_OK:
137 [ - + ]: 262 : assert(!skipped_missing);
138 [ - + ]: 262 : assert(!fail_check_block);
139 [ + - + - : 262 : assert(block->GetHash() == reconstructed_block.GetHash());
- + ]
140 : : break;
141 : 23 : case READ_STATUS_CHECKBLOCK_FAILED: [[fallthrough]];
142 : 23 : case READ_STATUS_FAILED:
143 [ - + ]: 23 : assert(fail_check_block);
144 : : break;
145 : : case READ_STATUS_INVALID:
146 : : break;
147 : : }
148 : 3512 : }
|