Branch data Line data Source code
1 : : // Copyright (c) 2020-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 <merkleblock.h>
6 : : #include <test/fuzz/FuzzedDataProvider.h>
7 : : #include <test/fuzz/fuzz.h>
8 : : #include <test/fuzz/util.h>
9 : : #include <uint256.h>
10 : :
11 : : #include <cstdint>
12 : : #include <optional>
13 : : #include <string>
14 : : #include <vector>
15 : :
16 [ + - ]: 759 : FUZZ_TARGET(merkleblock)
17 : : {
18 : 347 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
19 : 347 : CPartialMerkleTree partial_merkle_tree;
20 [ + - ]: 347 : CallOneOf(
21 : : fuzzed_data_provider,
22 : 64 : [&] {
23 : 64 : const std::optional<CPartialMerkleTree> opt_partial_merkle_tree = ConsumeDeserializable<CPartialMerkleTree>(fuzzed_data_provider);
24 [ + + ]: 64 : if (opt_partial_merkle_tree) {
25 [ + - ]: 40 : partial_merkle_tree = *opt_partial_merkle_tree;
26 : : }
27 : 64 : },
28 : 283 : [&] {
29 : 283 : CMerkleBlock merkle_block;
30 : 283 : const std::optional<CBlock> opt_block = ConsumeDeserializable<CBlock>(fuzzed_data_provider, TX_WITH_WITNESS);
31 [ + + ]: 283 : CBloomFilter bloom_filter;
32 [ + + ]: 283 : std::set<Txid> txids;
33 [ + + + + ]: 283 : if (opt_block && !opt_block->vtx.empty()) {
34 [ + + ]: 137 : if (fuzzed_data_provider.ConsumeBool()) {
35 [ + - ]: 30 : merkle_block = CMerkleBlock{*opt_block, bloom_filter};
36 [ + + ]: 107 : } else if (fuzzed_data_provider.ConsumeBool()) {
37 [ + + + + ]: 12054 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000) {
38 [ + - ]: 11962 : txids.insert(Txid::FromUint256(ConsumeUInt256(fuzzed_data_provider)));
39 : : }
40 [ + - ]: 92 : merkle_block = CMerkleBlock{*opt_block, txids};
41 : : }
42 : : }
43 [ + - ]: 283 : partial_merkle_tree = merkle_block.txn;
44 : 849 : });
45 : 347 : (void)partial_merkle_tree.GetNumTransactions();
46 : 347 : std::vector<uint256> matches;
47 : 347 : std::vector<unsigned int> indices;
48 [ + - ]: 347 : (void)partial_merkle_tree.ExtractMatches(matches, indices);
49 : 694 : }
|