Branch data Line data Source code
1 : : // Copyright (c) 2022-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 <consensus/amount.h>
6 : : #include <consensus/validation.h>
7 : : #include <net_processing.h>
8 : : #include <node/eviction.h>
9 : : #include <policy/policy.h>
10 : : #include <primitives/transaction.h>
11 : : #include <script/script.h>
12 : : #include <sync.h>
13 : : #include <test/fuzz/FuzzedDataProvider.h>
14 : : #include <test/fuzz/fuzz.h>
15 : : #include <test/fuzz/util.h>
16 : : #include <test/util/setup_common.h>
17 : : #include <txorphanage.h>
18 : : #include <uint256.h>
19 : : #include <util/check.h>
20 : : #include <util/time.h>
21 : :
22 : : #include <cstdint>
23 : : #include <memory>
24 : : #include <set>
25 : : #include <utility>
26 : : #include <vector>
27 : :
28 : 1 : void initialize_orphanage()
29 : : {
30 [ + - + - ]: 2 : static const auto testing_setup = MakeNoLogFileContext();
31 [ + - ]: 2 : }
32 : :
33 [ + - ]: 863 : FUZZ_TARGET(txorphan, .init = initialize_orphanage)
34 : : {
35 : 451 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
36 : : FastRandomContext limit_orphans_rng{/*fDeterministic=*/true};
37 [ + - ]: 451 : SetMockTime(ConsumeTime(fuzzed_data_provider));
38 : :
39 : 451 : TxOrphanage orphanage;
40 : 451 : std::vector<COutPoint> outpoints; // Duplicates are tolerated
41 [ + - ]: 451 : outpoints.reserve(200'000);
42 : :
43 : : // initial outpoints used to construct transactions later
44 [ + + ]: 2255 : for (uint8_t i = 0; i < 4; i++) {
45 [ + - ]: 1804 : outpoints.emplace_back(Txid::FromUint256(uint256{i}), 0);
46 : : }
47 : :
48 : 451 : CTransactionRef ptx_potential_parent = nullptr;
49 : :
50 [ + - + + : 33548 : LIMITED_WHILE(outpoints.size() < 200'000 && fuzzed_data_provider.ConsumeBool(), 10 * DEFAULT_MAX_ORPHAN_TRANSACTIONS)
- + ]
51 : : {
52 : : // construct transaction
53 : 32646 : const CTransactionRef tx = [&] {
54 : 16323 : CMutableTransaction tx_mut;
55 : 16323 : const auto num_in = fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(1, outpoints.size());
56 : 16323 : const auto num_out = fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(1, 256);
57 : : // pick outpoints from outpoints as input. We allow input duplicates on purpose, given we are not
58 : : // running any transaction validation logic before adding transactions to the orphanage
59 [ + - ]: 16323 : tx_mut.vin.reserve(num_in);
60 [ + + ]: 1692806 : for (uint32_t i = 0; i < num_in; i++) {
61 : 1676483 : auto& prevout = PickValue(fuzzed_data_provider, outpoints);
62 : : // try making transactions unique by setting a random nSequence, but allow duplicate transactions if they happen
63 [ + - ]: 3352966 : tx_mut.vin.emplace_back(prevout, CScript{}, fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(0, CTxIn::SEQUENCE_FINAL));
64 : : }
65 : : // output amount will not affect txorphanage
66 [ + - ]: 16323 : tx_mut.vout.reserve(num_out);
67 [ + + ]: 1089527 : for (uint32_t i = 0; i < num_out; i++) {
68 [ + - ]: 2146408 : tx_mut.vout.emplace_back(CAmount{0}, CScript{});
69 : : }
70 [ + - ]: 16323 : auto new_tx = MakeTransactionRef(tx_mut);
71 : : // add newly constructed outpoints to the coin pool
72 [ + + ]: 1089527 : for (uint32_t i = 0; i < num_out; i++) {
73 [ + - ]: 1073204 : outpoints.emplace_back(new_tx->GetHash(), i);
74 : : }
75 : 16323 : return new_tx;
76 [ + - ]: 32646 : }();
77 : :
78 : : // Trigger orphanage functions that are called using parents. ptx_potential_parent is a tx we constructed in a
79 : : // previous loop and potentially the parent of this tx.
80 [ + + ]: 16323 : if (ptx_potential_parent) {
81 : : // Set up future GetTxToReconsider call.
82 [ + - ]: 15876 : orphanage.AddChildrenToWorkSet(*ptx_potential_parent);
83 : :
84 : : // Check that all txns returned from GetChildrenFrom* are indeed a direct child of this tx.
85 : 15876 : NodeId peer_id = fuzzed_data_provider.ConsumeIntegral<NodeId>();
86 [ + - + + ]: 53913 : for (const auto& child : orphanage.GetChildrenFromSamePeer(ptx_potential_parent, peer_id)) {
87 [ - + ]: 127355 : assert(std::any_of(child->vin.cbegin(), child->vin.cend(), [&](const auto& input) {
88 : : return input.prevout.hash == ptx_potential_parent->GetHash();
89 : : }));
90 : 15876 : }
91 [ + - - + : 159628 : for (const auto& [child, peer] : orphanage.GetChildrenFromDifferentPeer(ptx_potential_parent, peer_id)) {
+ + ]
92 [ - + ]: 458470 : assert(std::any_of(child->vin.cbegin(), child->vin.cend(), [&](const auto& input) {
93 : : return input.prevout.hash == ptx_potential_parent->GetHash();
94 : : }));
95 [ - + ]: 143752 : assert(peer != peer_id);
96 : 15876 : }
97 : : }
98 : :
99 : : // trigger orphanage functions
100 [ + + + + ]: 581682 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10 * DEFAULT_MAX_ORPHAN_TRANSACTIONS)
101 : : {
102 : 565359 : NodeId peer_id = fuzzed_data_provider.ConsumeIntegral<NodeId>();
103 : :
104 [ + - ]: 565359 : CallOneOf(
105 : : fuzzed_data_provider,
106 : 44881 : [&] {
107 : 44881 : {
108 : 44881 : CTransactionRef ref = orphanage.GetTxToReconsider(peer_id);
109 [ + + ]: 44881 : if (ref) {
110 [ + - + - ]: 6349 : Assert(orphanage.HaveTx(ref->GetWitnessHash()));
111 : : }
112 : 44881 : }
113 : 44881 : },
114 : 199776 : [&] {
115 : 199776 : bool have_tx = orphanage.HaveTx(tx->GetWitnessHash());
116 : : // AddTx should return false if tx is too big or already have it
117 : : // tx weight is unknown, we only check when tx is already in orphanage
118 : 199776 : {
119 : 199776 : bool add_tx = orphanage.AddTx(tx, peer_id);
120 : : // have_tx == true -> add_tx == false
121 : 199776 : Assert(!have_tx || !add_tx);
122 : : }
123 : 199776 : have_tx = orphanage.HaveTx(tx->GetWitnessHash());
124 : 199776 : {
125 : 199776 : bool add_tx = orphanage.AddTx(tx, peer_id);
126 : : // if have_tx is still false, it must be too big
127 : 199776 : Assert(!have_tx == (GetTransactionWeight(*tx) > MAX_STANDARD_TX_WEIGHT));
128 : 199776 : Assert(!have_tx || !add_tx);
129 : : }
130 : 199776 : },
131 : 283551 : [&] {
132 : 283551 : bool have_tx = orphanage.HaveTx(tx->GetWitnessHash());
133 : : // EraseTx should return 0 if m_orphans doesn't have the tx
134 : 283551 : {
135 : 283551 : Assert(have_tx == orphanage.EraseTx(tx->GetWitnessHash()));
136 : : }
137 : 283551 : have_tx = orphanage.HaveTx(tx->GetWitnessHash());
138 : : // have_tx should be false and EraseTx should fail
139 : 283551 : {
140 [ + - - + ]: 283551 : Assert(!have_tx && !orphanage.EraseTx(tx->GetWitnessHash()));
141 : : }
142 : 283551 : },
143 : 32704 : [&] {
144 : 32704 : orphanage.EraseForPeer(peer_id);
145 : 32704 : },
146 : 4447 : [&] {
147 : : // test mocktime and expiry
148 : 4447 : SetMockTime(ConsumeTime(fuzzed_data_provider));
149 : 4447 : auto limit = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
150 : 4447 : orphanage.LimitOrphans(limit, limit_orphans_rng);
151 : 4447 : Assert(orphanage.Size() <= limit);
152 : 4447 : });
153 : :
154 : : }
155 : : // Set tx as potential parent to be used for future GetChildren() calls.
156 [ + + + + ]: 32199 : if (!ptx_potential_parent || fuzzed_data_provider.ConsumeBool()) {
157 : 2599 : ptx_potential_parent = tx;
158 : : }
159 : :
160 : 16323 : }
161 : 451 : }
|