Branch data Line data Source code
1 : : // Copyright (c) 2021-2022 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/validation.h>
6 : : #include <node/context.h>
7 : : #include <node/mempool_args.h>
8 : : #include <node/miner.h>
9 : : #include <policy/truc_policy.h>
10 : : #include <test/fuzz/FuzzedDataProvider.h>
11 : : #include <test/fuzz/fuzz.h>
12 : : #include <test/fuzz/util.h>
13 : : #include <test/fuzz/util/mempool.h>
14 : : #include <test/util/mining.h>
15 : : #include <test/util/script.h>
16 : : #include <test/util/setup_common.h>
17 : : #include <test/util/txmempool.h>
18 : : #include <util/check.h>
19 : : #include <util/rbf.h>
20 : : #include <util/translation.h>
21 : : #include <validation.h>
22 : : #include <validationinterface.h>
23 : :
24 : : using node::BlockAssembler;
25 : : using node::NodeContext;
26 : : using util::ToString;
27 : :
28 : : namespace {
29 : :
30 : : const TestingSetup* g_setup;
31 : : std::vector<COutPoint> g_outpoints_coinbase_init_mature;
32 : : std::vector<COutPoint> g_outpoints_coinbase_init_immature;
33 : :
34 : : struct MockedTxPool : public CTxMemPool {
35 : 227350 : void RollingFeeUpdate() EXCLUSIVE_LOCKS_REQUIRED(!cs)
36 : : {
37 : 227350 : LOCK(cs);
38 [ + - ]: 227350 : lastRollingFeeUpdate = GetTime();
39 [ + - ]: 227350 : blockSinceLastRollingFeeBump = true;
40 : 227350 : }
41 : : };
42 : :
43 : 2 : void initialize_tx_pool()
44 : : {
45 [ + - + - ]: 4 : static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
46 : 2 : g_setup = testing_setup.get();
47 : :
48 [ + + ]: 402 : for (int i = 0; i < 2 * COINBASE_MATURITY; ++i) {
49 : 400 : COutPoint prevout{MineBlock(g_setup->m_node, P2WSH_OP_TRUE)};
50 : : // Remember the txids to avoid expensive disk access later on
51 [ + + ]: 400 : auto& outpoints = i < COINBASE_MATURITY ?
52 : : g_outpoints_coinbase_init_mature :
53 : : g_outpoints_coinbase_init_immature;
54 : 400 : outpoints.push_back(prevout);
55 : : }
56 : 2 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
57 [ + - ]: 4 : }
58 : :
59 : : struct TransactionsDelta final : public CValidationInterface {
60 : : std::set<CTransactionRef>& m_removed;
61 : : std::set<CTransactionRef>& m_added;
62 : :
63 : 95414 : explicit TransactionsDelta(std::set<CTransactionRef>& r, std::set<CTransactionRef>& a)
64 : 95414 : : m_removed{r}, m_added{a} {}
65 : :
66 : 18472 : void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t /* mempool_sequence */) override
67 : : {
68 : 18472 : Assert(m_added.insert(tx.info.m_tx).second);
69 : 18472 : }
70 : :
71 : 12869 : void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t /* mempool_sequence */) override
72 : : {
73 : 12869 : Assert(m_removed.insert(tx).second);
74 : 12869 : }
75 : : };
76 : :
77 : 4798 : void SetMempoolConstraints(ArgsManager& args, FuzzedDataProvider& fuzzed_data_provider)
78 : : {
79 [ + - + - ]: 9596 : args.ForceSetArg("-limitancestorcount",
80 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50)));
81 [ + - + - ]: 9596 : args.ForceSetArg("-limitancestorsize",
82 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202)));
83 [ + - + - ]: 9596 : args.ForceSetArg("-limitdescendantcount",
84 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50)));
85 [ + - + - ]: 9596 : args.ForceSetArg("-limitdescendantsize",
86 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202)));
87 [ + - + - ]: 9596 : args.ForceSetArg("-maxmempool",
88 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 200)));
89 [ + - + - ]: 9596 : args.ForceSetArg("-mempoolexpiry",
90 [ + - ]: 4798 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 999)));
91 : 4798 : }
92 : :
93 : 4798 : void Finish(FuzzedDataProvider& fuzzed_data_provider, MockedTxPool& tx_pool, Chainstate& chainstate)
94 : : {
95 [ + - + - ]: 14394 : WITH_LOCK(::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
96 : 4798 : {
97 : 4798 : BlockAssembler::Options options;
98 : 4798 : options.nBlockMaxWeight = fuzzed_data_provider.ConsumeIntegralInRange(0U, MAX_BLOCK_WEIGHT);
99 : 4798 : options.blockMinFeeRate = CFeeRate{ConsumeMoney(fuzzed_data_provider, /*max=*/COIN)};
100 : 4798 : auto assembler = BlockAssembler{chainstate, &tx_pool, options};
101 [ + - + - ]: 4798 : auto block_template = assembler.CreateNewBlock(CScript{} << OP_TRUE);
102 [ + - ]: 4798 : Assert(block_template->block.vtx.size() >= 1);
103 : 4798 : }
104 : 4798 : const auto info_all = tx_pool.infoAll();
105 [ + + ]: 4798 : if (!info_all.empty()) {
106 [ + - ]: 2520 : const auto& tx_to_remove = *PickValue(fuzzed_data_provider, info_all).tx;
107 [ + - + - ]: 7560 : WITH_LOCK(tx_pool.cs, tx_pool.removeRecursive(tx_to_remove, MemPoolRemovalReason::BLOCK /* dummy */));
108 [ + - - + ]: 2520 : assert(tx_pool.size() < info_all.size());
109 [ + - + - : 7560 : WITH_LOCK(::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
+ - ]
110 : : }
111 [ + - ]: 4798 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
112 : 4798 : }
113 : :
114 : 207983 : void MockTime(FuzzedDataProvider& fuzzed_data_provider, const Chainstate& chainstate)
115 : : {
116 : 207983 : const auto time = ConsumeTime(fuzzed_data_provider,
117 [ + - ]: 415966 : chainstate.m_chain.Tip()->GetMedianTimePast() + 1,
118 [ + - ]: 207983 : std::numeric_limits<decltype(chainstate.m_chain.Tip()->nTime)>::max());
119 : 207983 : SetMockTime(time);
120 : 207983 : }
121 : :
122 : 4798 : std::unique_ptr<CTxMemPool> MakeMempool(FuzzedDataProvider& fuzzed_data_provider, const NodeContext& node)
123 : : {
124 : : // Take the default options for tests...
125 : 4798 : CTxMemPool::Options mempool_opts{MemPoolOptionsForTest(node)};
126 : :
127 : : // ...override specific options for this specific fuzz suite
128 : 4798 : mempool_opts.check_ratio = 1;
129 : 4798 : mempool_opts.require_standard = fuzzed_data_provider.ConsumeBool();
130 : :
131 : : // ...and construct a CTxMemPool from it
132 [ + - ]: 4798 : bilingual_str error;
133 [ + - ]: 4798 : auto mempool{std::make_unique<CTxMemPool>(std::move(mempool_opts), error)};
134 : : // ... ignore the error since it might be beneficial to fuzz even when the
135 : : // mempool size is unreasonably small
136 [ + + + - : 5914 : Assert(error.empty() || error.original.starts_with("-maxmempool must be at least "));
+ - ]
137 : 4798 : return mempool;
138 : 4798 : }
139 : :
140 : 95414 : void CheckATMPInvariants(const MempoolAcceptResult& res, bool txid_in_mempool, bool wtxid_in_mempool)
141 : : {
142 : :
143 [ + + - - : 95414 : switch (res.m_result_type) {
- ]
144 : 18472 : case MempoolAcceptResult::ResultType::VALID:
145 : 18472 : {
146 : 18472 : Assert(txid_in_mempool);
147 : 18472 : Assert(wtxid_in_mempool);
148 : 18472 : Assert(res.m_state.IsValid());
149 : 18472 : Assert(!res.m_state.IsInvalid());
150 : 18472 : Assert(res.m_vsize);
151 : 18472 : Assert(res.m_base_fees);
152 : 18472 : Assert(res.m_effective_feerate);
153 : 18472 : Assert(res.m_wtxids_fee_calculations);
154 : 18472 : Assert(!res.m_other_wtxid);
155 : 18472 : break;
156 : : }
157 : 76942 : case MempoolAcceptResult::ResultType::INVALID:
158 : 76942 : {
159 : : // It may be already in the mempool since in ATMP cases we don't set MEMPOOL_ENTRY or DIFFERENT_WITNESS
160 : 76942 : Assert(!res.m_state.IsValid());
161 : 76942 : Assert(res.m_state.IsInvalid());
162 : :
163 : 76942 : const bool is_reconsiderable{res.m_state.GetResult() == TxValidationResult::TX_RECONSIDERABLE};
164 : 76942 : Assert(!res.m_vsize);
165 : 76942 : Assert(!res.m_base_fees);
166 : : // Fee information is provided if the failure is TX_RECONSIDERABLE.
167 : : // In other cases, validation may be unable or unwilling to calculate the fees.
168 : 76942 : Assert(res.m_effective_feerate.has_value() == is_reconsiderable);
169 : 76942 : Assert(res.m_wtxids_fee_calculations.has_value() == is_reconsiderable);
170 : 76942 : Assert(!res.m_other_wtxid);
171 : 76942 : break;
172 : : }
173 : 0 : case MempoolAcceptResult::ResultType::MEMPOOL_ENTRY:
174 : 0 : {
175 : : // ATMP never sets this; only set in package settings
176 : 0 : Assert(false);
177 : 0 : break;
178 : : }
179 : 0 : case MempoolAcceptResult::ResultType::DIFFERENT_WITNESS:
180 : 0 : {
181 : : // ATMP never sets this; only set in package settings
182 : 0 : Assert(false);
183 : 0 : break;
184 : : }
185 : : }
186 : 95414 : }
187 : :
188 [ + - ]: 1664 : FUZZ_TARGET(tx_pool_standard, .init = initialize_tx_pool)
189 : : {
190 : 1252 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
191 : 1252 : const auto& node = g_setup->m_node;
192 : 1252 : auto& chainstate{static_cast<DummyChainState&>(node.chainman->ActiveChainstate())};
193 : :
194 : 1252 : MockTime(fuzzed_data_provider, chainstate);
195 : :
196 : : // All RBF-spendable outpoints
197 : 1252 : std::set<COutPoint> outpoints_rbf;
198 : : // All outpoints counting toward the total supply (subset of outpoints_rbf)
199 : 1252 : std::set<COutPoint> outpoints_supply;
200 [ + + ]: 126452 : for (const auto& outpoint : g_outpoints_coinbase_init_mature) {
201 [ + - + - ]: 125200 : Assert(outpoints_supply.insert(outpoint).second);
202 : : }
203 [ + - ]: 1252 : outpoints_rbf = outpoints_supply;
204 : :
205 : : // The sum of the values of all spendable outpoints
206 : 1252 : constexpr CAmount SUPPLY_TOTAL{COINBASE_MATURITY * 50 * COIN};
207 : :
208 [ + - ]: 1252 : SetMempoolConstraints(*node.args, fuzzed_data_provider);
209 [ + - ]: 1252 : auto tx_pool_{MakeMempool(fuzzed_data_provider, node)};
210 [ + - ]: 1252 : MockedTxPool& tx_pool = *static_cast<MockedTxPool*>(tx_pool_.get());
211 : :
212 [ + - ]: 1252 : chainstate.SetMempool(&tx_pool);
213 : :
214 : : // Helper to query an amount
215 [ + - + - ]: 3756 : const CCoinsViewMemPool amount_view{WITH_LOCK(::cs_main, return &chainstate.CoinsTip()), tx_pool};
216 : 17601682 : const auto GetAmount = [&](const COutPoint& outpoint) {
217 [ + - ]: 17600430 : auto coin{amount_view.GetCoin(outpoint).value()};
218 : 17600430 : return coin.out.nValue;
219 : 17601682 : };
220 : :
221 [ + + + + ]: 96666 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 300)
222 : : {
223 : 95414 : {
224 : : // Total supply is the mempool fee + all outpoints
225 [ + - ]: 190828 : CAmount supply_now{WITH_LOCK(tx_pool.cs, return tx_pool.GetTotalFee())};
226 [ + + ]: 15518726 : for (const auto& op : outpoints_supply) {
227 [ + - ]: 15423312 : supply_now += GetAmount(op);
228 : : }
229 [ + - ]: 95414 : Assert(supply_now == SUPPLY_TOTAL);
230 : : }
231 [ + - ]: 95414 : Assert(!outpoints_supply.empty());
232 : :
233 : : // Create transaction to add to the mempool
234 : 190828 : const CTransactionRef tx = [&] {
235 : 95414 : CMutableTransaction tx_mut;
236 [ + + ]: 95414 : tx_mut.version = fuzzed_data_provider.ConsumeBool() ? TRUC_VERSION : CTransaction::CURRENT_VERSION;
237 [ + + ]: 95414 : tx_mut.nLockTime = fuzzed_data_provider.ConsumeBool() ? 0 : fuzzed_data_provider.ConsumeIntegral<uint32_t>();
238 : 95414 : const auto num_in = fuzzed_data_provider.ConsumeIntegralInRange<int>(1, outpoints_rbf.size());
239 : 95414 : const auto num_out = fuzzed_data_provider.ConsumeIntegralInRange<int>(1, outpoints_rbf.size() * 2);
240 : :
241 : 95414 : CAmount amount_in{0};
242 [ + + ]: 2272532 : for (int i = 0; i < num_in; ++i) {
243 : : // Pop random outpoint
244 : 2177118 : auto pop = outpoints_rbf.begin();
245 : 2177118 : std::advance(pop, fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, outpoints_rbf.size() - 1));
246 : 2177118 : const auto outpoint = *pop;
247 : 2177118 : outpoints_rbf.erase(pop);
248 [ + - ]: 2177118 : amount_in += GetAmount(outpoint);
249 : :
250 : : // Create input
251 : 2177118 : const auto sequence = ConsumeSequence(fuzzed_data_provider);
252 : 2177118 : const auto script_sig = CScript{};
253 [ + - + + : 6531354 : const auto script_wit_stack = std::vector<std::vector<uint8_t>>{WITNESS_STACK_ELEM_OP_TRUE};
- - ]
254 : 2177118 : CTxIn in;
255 : 2177118 : in.prevout = outpoint;
256 : 2177118 : in.nSequence = sequence;
257 : 2177118 : in.scriptSig = script_sig;
258 [ + - ]: 2177118 : in.scriptWitness.stack = script_wit_stack;
259 : :
260 [ + - ]: 2177118 : tx_mut.vin.push_back(in);
261 : 2177118 : }
262 : 95414 : const auto amount_fee = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-1000, amount_in);
263 : 95414 : const auto amount_out = (amount_in - amount_fee) / num_out;
264 [ + + ]: 6745214 : for (int i = 0; i < num_out; ++i) {
265 [ + - ]: 6649800 : tx_mut.vout.emplace_back(amount_out, P2WSH_OP_TRUE);
266 : : }
267 [ + - ]: 95414 : auto tx = MakeTransactionRef(tx_mut);
268 : : // Restore previously removed outpoints
269 [ + + ]: 2272532 : for (const auto& in : tx->vin) {
270 [ + - + - ]: 2177118 : Assert(outpoints_rbf.insert(in.prevout).second);
271 : : }
272 : 95414 : return tx;
273 [ + - ]: 2367946 : }();
274 : :
275 [ + + ]: 95414 : if (fuzzed_data_provider.ConsumeBool()) {
276 [ + - ]: 85169 : MockTime(fuzzed_data_provider, chainstate);
277 : : }
278 [ + + ]: 95414 : if (fuzzed_data_provider.ConsumeBool()) {
279 [ + - ]: 70958 : tx_pool.RollingFeeUpdate();
280 : : }
281 [ + + ]: 95414 : if (fuzzed_data_provider.ConsumeBool()) {
282 [ + + ]: 80268 : const auto& txid = fuzzed_data_provider.ConsumeBool() ?
283 : 69606 : tx->GetHash() :
284 : 5331 : PickValue(fuzzed_data_provider, outpoints_rbf).hash;
285 : 74937 : const auto delta = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-50 * COIN, +50 * COIN);
286 [ + - ]: 74937 : tx_pool.PrioritiseTransaction(txid.ToUint256(), delta);
287 : : }
288 : :
289 : : // Remember all removed and added transactions
290 [ + - ]: 95414 : std::set<CTransactionRef> removed;
291 : 95414 : std::set<CTransactionRef> added;
292 [ + - ]: 95414 : auto txr = std::make_shared<TransactionsDelta>(removed, added);
293 [ + - + - ]: 190828 : node.validation_signals->RegisterSharedValidationInterface(txr);
294 : 95414 : const bool bypass_limits = fuzzed_data_provider.ConsumeBool();
295 : :
296 : : // Make sure ProcessNewPackage on one transaction works.
297 : : // The result is not guaranteed to be the same as what is returned by ATMP.
298 [ + - + - : 477070 : const auto result_package = WITH_LOCK(::cs_main,
+ - + + +
- - - -
- ]
299 : : return ProcessNewPackage(chainstate, tx_pool, {tx}, true, /*client_maxfeerate=*/{}));
300 : : // If something went wrong due to a package-specific policy, it might not return a
301 : : // validation result for the transaction.
302 [ + - ]: 95414 : if (result_package.m_state.GetResult() != PackageValidationResult::PCKG_POLICY) {
303 : 95414 : auto it = result_package.m_tx_results.find(tx->GetWitnessHash());
304 [ + - ]: 95414 : Assert(it != result_package.m_tx_results.end());
305 [ + + + - : 179792 : Assert(it->second.m_result_type == MempoolAcceptResult::ResultType::VALID ||
+ - ]
306 : : it->second.m_result_type == MempoolAcceptResult::ResultType::INVALID);
307 : : }
308 : :
309 [ + - + - ]: 286242 : const auto res = WITH_LOCK(::cs_main, return AcceptToMemoryPool(chainstate, tx, GetTime(), bypass_limits, /*test_accept=*/false));
310 : 95414 : const bool accepted = res.m_result_type == MempoolAcceptResult::ResultType::VALID;
311 [ + - ]: 95414 : node.validation_signals->SyncWithValidationInterfaceQueue();
312 [ + - + - ]: 190828 : node.validation_signals->UnregisterSharedValidationInterface(txr);
313 : :
314 [ + - ]: 95414 : bool txid_in_mempool = tx_pool.exists(GenTxid::Txid(tx->GetHash()));
315 [ + - ]: 95414 : bool wtxid_in_mempool = tx_pool.exists(GenTxid::Wtxid(tx->GetWitnessHash()));
316 [ + - ]: 95414 : CheckATMPInvariants(res, txid_in_mempool, wtxid_in_mempool);
317 : :
318 [ + - ]: 95414 : Assert(accepted != added.empty());
319 [ + + ]: 95414 : if (accepted) {
320 [ + - ]: 18472 : Assert(added.size() == 1); // For now, no package acceptance
321 [ + - ]: 18472 : Assert(tx == *added.begin());
322 [ + - ]: 18472 : CheckMempoolTRUCInvariants(tx_pool);
323 : : } else {
324 : : // Do not consider rejected transaction removed
325 : 76942 : removed.erase(tx);
326 : : }
327 : :
328 : : // Helper to insert spent and created outpoints of a tx into collections
329 : 95414 : using Sets = std::vector<std::reference_wrapper<std::set<COutPoint>>>;
330 : 124796 : const auto insert_tx = [](Sets created_by_tx, Sets consumed_by_tx, const auto& tx) {
331 [ + + ]: 432090 : for (size_t i{0}; i < tx.vout.size(); ++i) {
332 [ + + ]: 1159571 : for (auto& set : created_by_tx) {
333 : 756863 : Assert(set.get().emplace(tx.GetHash(), i).second);
334 : : }
335 : : }
336 [ + + ]: 89992 : for (const auto& in : tx.vin) {
337 [ + + ]: 121220 : for (auto& set : consumed_by_tx) {
338 : 60610 : Assert(set.get().insert(in.prevout).second);
339 : : }
340 : : }
341 : 29382 : };
342 : : // Add created outpoints, remove spent outpoints
343 : 95414 : {
344 : : // Outpoints that no longer exist at all
345 : 95414 : std::set<COutPoint> consumed_erased;
346 : : // Outpoints that no longer count toward the total supply
347 : 95414 : std::set<COutPoint> consumed_supply;
348 [ + + ]: 106324 : for (const auto& removed_tx : removed) {
349 [ + - + - : 21820 : insert_tx(/*created_by_tx=*/{consumed_erased}, /*consumed_by_tx=*/{outpoints_supply}, /*tx=*/*removed_tx);
+ - ]
350 : : }
351 [ + + ]: 113886 : for (const auto& added_tx : added) {
352 [ + - + - : 36944 : insert_tx(/*created_by_tx=*/{outpoints_supply, outpoints_rbf}, /*consumed_by_tx=*/{consumed_supply}, /*tx=*/*added_tx);
+ - ]
353 : : }
354 [ + + ]: 143967 : for (const auto& p : consumed_erased) {
355 [ + - ]: 48553 : Assert(outpoints_supply.erase(p) == 1);
356 [ + - ]: 48553 : Assert(outpoints_rbf.erase(p) == 1);
357 : : }
358 [ + + ]: 135427 : for (const auto& p : consumed_supply) {
359 [ + - ]: 40013 : Assert(outpoints_supply.erase(p) == 1);
360 : : }
361 : 95414 : }
362 [ + - + - ]: 286242 : }
363 [ + - ]: 1252 : Finish(fuzzed_data_provider, tx_pool, chainstate);
364 : 1252 : }
365 : :
366 [ + - ]: 3958 : FUZZ_TARGET(tx_pool, .init = initialize_tx_pool)
367 : : {
368 : 3546 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
369 : 3546 : const auto& node = g_setup->m_node;
370 : 3546 : auto& chainstate{static_cast<DummyChainState&>(node.chainman->ActiveChainstate())};
371 : :
372 : 3546 : MockTime(fuzzed_data_provider, chainstate);
373 : :
374 : 3546 : std::vector<Txid> txids;
375 [ + - ]: 3546 : txids.reserve(g_outpoints_coinbase_init_mature.size());
376 [ + + ]: 358146 : for (const auto& outpoint : g_outpoints_coinbase_init_mature) {
377 [ + - ]: 354600 : txids.push_back(outpoint.hash);
378 : : }
379 [ + + ]: 17730 : for (int i{0}; i <= 3; ++i) {
380 : : // Add some immature and non-existent outpoints
381 [ + - + - ]: 14184 : txids.push_back(g_outpoints_coinbase_init_immature.at(i).hash);
382 [ + - ]: 14184 : txids.push_back(Txid::FromUint256(ConsumeUInt256(fuzzed_data_provider)));
383 : : }
384 : :
385 [ + - ]: 3546 : SetMempoolConstraints(*node.args, fuzzed_data_provider);
386 [ + - ]: 3546 : auto tx_pool_{MakeMempool(fuzzed_data_provider, node)};
387 : 3546 : MockedTxPool& tx_pool = *static_cast<MockedTxPool*>(tx_pool_.get());
388 : :
389 : 3546 : chainstate.SetMempool(&tx_pool);
390 : :
391 [ + + + + ]: 219815 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 300)
392 : : {
393 [ + - ]: 216269 : const auto mut_tx = ConsumeTransaction(fuzzed_data_provider, txids);
394 : :
395 [ + + ]: 216269 : if (fuzzed_data_provider.ConsumeBool()) {
396 [ + - ]: 118016 : MockTime(fuzzed_data_provider, chainstate);
397 : : }
398 [ + + ]: 216269 : if (fuzzed_data_provider.ConsumeBool()) {
399 [ + - ]: 156392 : tx_pool.RollingFeeUpdate();
400 : : }
401 [ + + ]: 216269 : if (fuzzed_data_provider.ConsumeBool()) {
402 [ + + ]: 137816 : const auto txid = fuzzed_data_provider.ConsumeBool() ?
403 [ + - ]: 107113 : mut_tx.GetHash() :
404 : 30703 : PickValue(fuzzed_data_provider, txids);
405 : 137816 : const auto delta = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-50 * COIN, +50 * COIN);
406 [ + - ]: 137816 : tx_pool.PrioritiseTransaction(txid.ToUint256(), delta);
407 : : }
408 : :
409 [ + - ]: 216269 : const auto tx = MakeTransactionRef(mut_tx);
410 : 216269 : const bool bypass_limits = fuzzed_data_provider.ConsumeBool();
411 [ + - + - ]: 648807 : const auto res = WITH_LOCK(::cs_main, return AcceptToMemoryPool(chainstate, tx, GetTime(), bypass_limits, /*test_accept=*/false));
412 : 216269 : const bool accepted = res.m_result_type == MempoolAcceptResult::ResultType::VALID;
413 [ + + ]: 216269 : if (accepted) {
414 [ + - ]: 35915 : txids.push_back(tx->GetHash());
415 [ + - ]: 35915 : CheckMempoolTRUCInvariants(tx_pool);
416 : : }
417 [ + - ]: 648807 : }
418 [ + - ]: 3546 : Finish(fuzzed_data_provider, tx_pool, chainstate);
419 : 3546 : }
420 : : } // namespace
|