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