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 : 277608 : void RollingFeeUpdate() EXCLUSIVE_LOCKS_REQUIRED(!cs)
36 : : {
37 : 277608 : LOCK(cs);
38 [ + - ]: 277608 : lastRollingFeeUpdate = GetTime();
39 [ + - ]: 277608 : blockSinceLastRollingFeeBump = true;
40 : 277608 : }
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 : 2 : BlockAssembler::Options options;
49 : 2 : options.coinbase_output_script = P2WSH_OP_TRUE;
50 : :
51 [ + + ]: 402 : for (int i = 0; i < 2 * COINBASE_MATURITY; ++i) {
52 [ + - ]: 400 : COutPoint prevout{MineBlock(g_setup->m_node, options)};
53 : : // Remember the txids to avoid expensive disk access later on
54 [ + + ]: 400 : auto& outpoints = i < COINBASE_MATURITY ?
55 : : g_outpoints_coinbase_init_mature :
56 : : g_outpoints_coinbase_init_immature;
57 [ + - ]: 400 : outpoints.push_back(prevout);
58 : : }
59 [ + - ]: 2 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
60 [ + - ]: 4 : }
61 : :
62 : : struct TransactionsDelta final : public CValidationInterface {
63 : : std::set<CTransactionRef>& m_removed;
64 : : std::set<CTransactionRef>& m_added;
65 : :
66 : 138083 : explicit TransactionsDelta(std::set<CTransactionRef>& r, std::set<CTransactionRef>& a)
67 : 138083 : : m_removed{r}, m_added{a} {}
68 : :
69 : 33576 : void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t /* mempool_sequence */) override
70 : : {
71 : 33576 : Assert(m_added.insert(tx.info.m_tx).second);
72 : 33576 : }
73 : :
74 : 26817 : void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t /* mempool_sequence */) override
75 : : {
76 : 26817 : Assert(m_removed.insert(tx).second);
77 : 26817 : }
78 : : };
79 : :
80 : 5871 : void SetMempoolConstraints(ArgsManager& args, FuzzedDataProvider& fuzzed_data_provider)
81 : : {
82 [ + - + - ]: 11742 : args.ForceSetArg("-limitancestorcount",
83 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50)));
84 [ + - + - ]: 11742 : args.ForceSetArg("-limitancestorsize",
85 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202)));
86 [ + - + - ]: 11742 : args.ForceSetArg("-limitdescendantcount",
87 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50)));
88 [ + - + - ]: 11742 : args.ForceSetArg("-limitdescendantsize",
89 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202)));
90 [ + - + - ]: 11742 : args.ForceSetArg("-maxmempool",
91 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 200)));
92 [ + - + - ]: 11742 : args.ForceSetArg("-mempoolexpiry",
93 [ + - ]: 5871 : ToString(fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 999)));
94 : 5871 : }
95 : :
96 : 5871 : void Finish(FuzzedDataProvider& fuzzed_data_provider, MockedTxPool& tx_pool, Chainstate& chainstate)
97 : : {
98 [ + - + - ]: 17613 : WITH_LOCK(::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
99 : 5871 : {
100 : 5871 : BlockAssembler::Options options;
101 : 5871 : options.nBlockMaxWeight = fuzzed_data_provider.ConsumeIntegralInRange(0U, MAX_BLOCK_WEIGHT);
102 [ + - ]: 5871 : options.blockMinFeeRate = CFeeRate{ConsumeMoney(fuzzed_data_provider, /*max=*/COIN)};
103 [ + - ]: 5871 : auto assembler = BlockAssembler{chainstate, &tx_pool, options};
104 [ + - ]: 5871 : auto block_template = assembler.CreateNewBlock();
105 [ + - ]: 5871 : Assert(block_template->block.vtx.size() >= 1);
106 : 5871 : }
107 : 5871 : const auto info_all = tx_pool.infoAll();
108 [ + + ]: 5871 : if (!info_all.empty()) {
109 [ + - ]: 3163 : const auto& tx_to_remove = *PickValue(fuzzed_data_provider, info_all).tx;
110 [ + - + - ]: 9489 : WITH_LOCK(tx_pool.cs, tx_pool.removeRecursive(tx_to_remove, MemPoolRemovalReason::BLOCK /* dummy */));
111 [ + - - + ]: 3163 : assert(tx_pool.size() < info_all.size());
112 [ + - + - : 9489 : WITH_LOCK(::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
+ - ]
113 : : }
114 [ + - ]: 5871 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
115 : 5871 : }
116 : :
117 : 263720 : void MockTime(FuzzedDataProvider& fuzzed_data_provider, const Chainstate& chainstate)
118 : : {
119 : 263720 : const auto time = ConsumeTime(fuzzed_data_provider,
120 [ + - ]: 527440 : chainstate.m_chain.Tip()->GetMedianTimePast() + 1,
121 [ + - ]: 263720 : std::numeric_limits<decltype(chainstate.m_chain.Tip()->nTime)>::max());
122 : 263720 : SetMockTime(time);
123 : 263720 : }
124 : :
125 : 5871 : std::unique_ptr<CTxMemPool> MakeMempool(FuzzedDataProvider& fuzzed_data_provider, const NodeContext& node)
126 : : {
127 : : // Take the default options for tests...
128 : 5871 : CTxMemPool::Options mempool_opts{MemPoolOptionsForTest(node)};
129 : :
130 : : // ...override specific options for this specific fuzz suite
131 : 5871 : mempool_opts.check_ratio = 1;
132 : 5871 : mempool_opts.require_standard = fuzzed_data_provider.ConsumeBool();
133 : :
134 : : // ...and construct a CTxMemPool from it
135 [ + - ]: 5871 : bilingual_str error;
136 [ + - ]: 5871 : auto mempool{std::make_unique<CTxMemPool>(std::move(mempool_opts), error)};
137 : : // ... ignore the error since it might be beneficial to fuzz even when the
138 : : // mempool size is unreasonably small
139 [ + + + - : 7409 : Assert(error.empty() || error.original.starts_with("-maxmempool must be at least "));
+ - ]
140 : 5871 : return mempool;
141 : 5871 : }
142 : :
143 : 138083 : void CheckATMPInvariants(const MempoolAcceptResult& res, bool txid_in_mempool, bool wtxid_in_mempool)
144 : : {
145 : :
146 [ + + - - : 138083 : switch (res.m_result_type) {
- ]
147 : 33576 : case MempoolAcceptResult::ResultType::VALID:
148 : 33576 : {
149 : 33576 : Assert(txid_in_mempool);
150 : 33576 : Assert(wtxid_in_mempool);
151 : 33576 : Assert(res.m_state.IsValid());
152 : 33576 : Assert(!res.m_state.IsInvalid());
153 : 33576 : Assert(res.m_vsize);
154 : 33576 : Assert(res.m_base_fees);
155 : 33576 : Assert(res.m_effective_feerate);
156 : 33576 : Assert(res.m_wtxids_fee_calculations);
157 : 33576 : Assert(!res.m_other_wtxid);
158 : 33576 : break;
159 : : }
160 : 104507 : case MempoolAcceptResult::ResultType::INVALID:
161 : 104507 : {
162 : : // It may be already in the mempool since in ATMP cases we don't set MEMPOOL_ENTRY or DIFFERENT_WITNESS
163 : 104507 : Assert(!res.m_state.IsValid());
164 : 104507 : Assert(res.m_state.IsInvalid());
165 : :
166 : 104507 : const bool is_reconsiderable{res.m_state.GetResult() == TxValidationResult::TX_RECONSIDERABLE};
167 : 104507 : Assert(!res.m_vsize);
168 : 104507 : Assert(!res.m_base_fees);
169 : : // Fee information is provided if the failure is TX_RECONSIDERABLE.
170 : : // In other cases, validation may be unable or unwilling to calculate the fees.
171 : 104507 : Assert(res.m_effective_feerate.has_value() == is_reconsiderable);
172 : 104507 : Assert(res.m_wtxids_fee_calculations.has_value() == is_reconsiderable);
173 : 104507 : Assert(!res.m_other_wtxid);
174 : 104507 : break;
175 : : }
176 : 0 : case MempoolAcceptResult::ResultType::MEMPOOL_ENTRY:
177 : 0 : {
178 : : // ATMP never sets this; only set in package settings
179 : 0 : Assert(false);
180 : 0 : break;
181 : : }
182 : 0 : case MempoolAcceptResult::ResultType::DIFFERENT_WITNESS:
183 : 0 : {
184 : : // ATMP never sets this; only set in package settings
185 : 0 : Assert(false);
186 : 0 : break;
187 : : }
188 : : }
189 : 138083 : }
190 : :
191 [ + - ]: 2097 : FUZZ_TARGET(tx_pool_standard, .init = initialize_tx_pool)
192 : : {
193 : 1683 : SeedRandomStateForTest(SeedRand::ZEROS);
194 : 1683 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
195 : 1683 : const auto& node = g_setup->m_node;
196 : 1683 : auto& chainstate{static_cast<DummyChainState&>(node.chainman->ActiveChainstate())};
197 : :
198 : 1683 : MockTime(fuzzed_data_provider, chainstate);
199 : :
200 : : // All RBF-spendable outpoints
201 : 1683 : std::set<COutPoint> outpoints_rbf;
202 : : // All outpoints counting toward the total supply (subset of outpoints_rbf)
203 : 1683 : std::set<COutPoint> outpoints_supply;
204 [ + + ]: 169983 : for (const auto& outpoint : g_outpoints_coinbase_init_mature) {
205 [ + - + - ]: 168300 : Assert(outpoints_supply.insert(outpoint).second);
206 : : }
207 [ + - ]: 1683 : outpoints_rbf = outpoints_supply;
208 : :
209 : : // The sum of the values of all spendable outpoints
210 : 1683 : constexpr CAmount SUPPLY_TOTAL{COINBASE_MATURITY * 50 * COIN};
211 : :
212 [ + - ]: 1683 : SetMempoolConstraints(*node.args, fuzzed_data_provider);
213 [ + - ]: 1683 : auto tx_pool_{MakeMempool(fuzzed_data_provider, node)};
214 [ + - ]: 1683 : MockedTxPool& tx_pool = *static_cast<MockedTxPool*>(tx_pool_.get());
215 : :
216 [ + - ]: 1683 : chainstate.SetMempool(&tx_pool);
217 : :
218 : : // Helper to query an amount
219 [ + - + - ]: 5049 : const CCoinsViewMemPool amount_view{WITH_LOCK(::cs_main, return &chainstate.CoinsTip()), tx_pool};
220 : 28331285 : const auto GetAmount = [&](const COutPoint& outpoint) {
221 [ + - ]: 28329602 : auto coin{amount_view.GetCoin(outpoint).value()};
222 : 28329602 : return coin.out.nValue;
223 : 28331285 : };
224 : :
225 [ + + + + ]: 139766 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 300)
226 : : {
227 : 138083 : {
228 : : // Total supply is the mempool fee + all outpoints
229 [ + - ]: 276166 : CAmount supply_now{WITH_LOCK(tx_pool.cs, return tx_pool.GetTotalFee())};
230 [ + + ]: 23932262 : for (const auto& op : outpoints_supply) {
231 [ + - ]: 23794179 : supply_now += GetAmount(op);
232 : : }
233 [ + - ]: 138083 : Assert(supply_now == SUPPLY_TOTAL);
234 : : }
235 [ + - ]: 138083 : Assert(!outpoints_supply.empty());
236 : :
237 : : // Create transaction to add to the mempool
238 : 276166 : const CTransactionRef tx = [&] {
239 : 138083 : CMutableTransaction tx_mut;
240 [ + + ]: 138083 : tx_mut.version = fuzzed_data_provider.ConsumeBool() ? TRUC_VERSION : CTransaction::CURRENT_VERSION;
241 [ + + ]: 138083 : tx_mut.nLockTime = fuzzed_data_provider.ConsumeBool() ? 0 : fuzzed_data_provider.ConsumeIntegral<uint32_t>();
242 : 138083 : const auto num_in = fuzzed_data_provider.ConsumeIntegralInRange<int>(1, outpoints_rbf.size());
243 : 138083 : const auto num_out = fuzzed_data_provider.ConsumeIntegralInRange<int>(1, outpoints_rbf.size() * 2);
244 : :
245 : 138083 : CAmount amount_in{0};
246 [ + + ]: 4673506 : for (int i = 0; i < num_in; ++i) {
247 : : // Pop random outpoint
248 : 4535423 : auto pop = outpoints_rbf.begin();
249 : 4535423 : std::advance(pop, fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, outpoints_rbf.size() - 1));
250 : 4535423 : const auto outpoint = *pop;
251 : 4535423 : outpoints_rbf.erase(pop);
252 [ + - ]: 4535423 : amount_in += GetAmount(outpoint);
253 : :
254 : : // Create input
255 : 4535423 : const auto sequence = ConsumeSequence(fuzzed_data_provider);
256 : 4535423 : const auto script_sig = CScript{};
257 [ + - + + : 13606269 : const auto script_wit_stack = std::vector<std::vector<uint8_t>>{WITNESS_STACK_ELEM_OP_TRUE};
- - ]
258 : 4535423 : CTxIn in;
259 : 4535423 : in.prevout = outpoint;
260 : 4535423 : in.nSequence = sequence;
261 : 4535423 : in.scriptSig = script_sig;
262 [ + - ]: 4535423 : in.scriptWitness.stack = script_wit_stack;
263 : :
264 [ + - ]: 4535423 : tx_mut.vin.push_back(in);
265 : 4535423 : }
266 : 138083 : const auto amount_fee = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-1000, amount_in);
267 : 138083 : const auto amount_out = (amount_in - amount_fee) / num_out;
268 [ + + ]: 11387567 : for (int i = 0; i < num_out; ++i) {
269 [ + - ]: 11249484 : tx_mut.vout.emplace_back(amount_out, P2WSH_OP_TRUE);
270 : : }
271 [ + - ]: 138083 : auto tx = MakeTransactionRef(tx_mut);
272 : : // Restore previously removed outpoints
273 [ + + ]: 4673506 : for (const auto& in : tx->vin) {
274 [ + - + - ]: 4535423 : Assert(outpoints_rbf.insert(in.prevout).second);
275 : : }
276 : 138083 : return tx;
277 [ + - ]: 4811589 : }();
278 : :
279 [ + + ]: 138083 : if (fuzzed_data_provider.ConsumeBool()) {
280 [ + - ]: 123781 : MockTime(fuzzed_data_provider, chainstate);
281 : : }
282 [ + + ]: 138083 : if (fuzzed_data_provider.ConsumeBool()) {
283 [ + - ]: 96343 : tx_pool.RollingFeeUpdate();
284 : : }
285 [ + + ]: 138083 : if (fuzzed_data_provider.ConsumeBool()) {
286 [ + + ]: 110032 : const auto& txid = fuzzed_data_provider.ConsumeBool() ?
287 : 96998 : tx->GetHash() :
288 : 6517 : PickValue(fuzzed_data_provider, outpoints_rbf).hash;
289 : 103515 : const auto delta = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-50 * COIN, +50 * COIN);
290 [ + - ]: 103515 : tx_pool.PrioritiseTransaction(txid.ToUint256(), delta);
291 : : }
292 : :
293 : : // Remember all removed and added transactions
294 [ + - ]: 138083 : std::set<CTransactionRef> removed;
295 : 138083 : std::set<CTransactionRef> added;
296 [ + - ]: 138083 : auto txr = std::make_shared<TransactionsDelta>(removed, added);
297 [ + - + - ]: 276166 : node.validation_signals->RegisterSharedValidationInterface(txr);
298 : 138083 : const bool bypass_limits = fuzzed_data_provider.ConsumeBool();
299 : :
300 : : // Make sure ProcessNewPackage on one transaction works.
301 : : // The result is not guaranteed to be the same as what is returned by ATMP.
302 [ + - + - : 690415 : const auto result_package = WITH_LOCK(::cs_main,
+ - + + +
- - - -
- ]
303 : : return ProcessNewPackage(chainstate, tx_pool, {tx}, true, /*client_maxfeerate=*/{}));
304 : : // If something went wrong due to a package-specific policy, it might not return a
305 : : // validation result for the transaction.
306 [ + - ]: 138083 : if (result_package.m_state.GetResult() != PackageValidationResult::PCKG_POLICY) {
307 : 138083 : auto it = result_package.m_tx_results.find(tx->GetWitnessHash());
308 [ + - ]: 138083 : Assert(it != result_package.m_tx_results.end());
309 [ + + + - : 257400 : Assert(it->second.m_result_type == MempoolAcceptResult::ResultType::VALID ||
+ - ]
310 : : it->second.m_result_type == MempoolAcceptResult::ResultType::INVALID);
311 : : }
312 : :
313 [ + - + - ]: 414249 : const auto res = WITH_LOCK(::cs_main, return AcceptToMemoryPool(chainstate, tx, GetTime(), bypass_limits, /*test_accept=*/false));
314 : 138083 : const bool accepted = res.m_result_type == MempoolAcceptResult::ResultType::VALID;
315 [ + - ]: 138083 : node.validation_signals->SyncWithValidationInterfaceQueue();
316 [ + - + - ]: 276166 : node.validation_signals->UnregisterSharedValidationInterface(txr);
317 : :
318 [ + - ]: 138083 : bool txid_in_mempool = tx_pool.exists(GenTxid::Txid(tx->GetHash()));
319 [ + - ]: 138083 : bool wtxid_in_mempool = tx_pool.exists(GenTxid::Wtxid(tx->GetWitnessHash()));
320 [ + - ]: 138083 : CheckATMPInvariants(res, txid_in_mempool, wtxid_in_mempool);
321 : :
322 [ + - ]: 138083 : Assert(accepted != added.empty());
323 [ + + ]: 138083 : if (accepted) {
324 [ + - ]: 33576 : Assert(added.size() == 1); // For now, no package acceptance
325 [ + - ]: 33576 : Assert(tx == *added.begin());
326 [ + - ]: 33576 : CheckMempoolTRUCInvariants(tx_pool);
327 : : } else {
328 : : // Do not consider rejected transaction removed
329 : 104507 : removed.erase(tx);
330 : : }
331 : :
332 : : // Helper to insert spent and created outpoints of a tx into collections
333 : 138083 : using Sets = std::vector<std::reference_wrapper<std::set<COutPoint>>>;
334 : 195035 : const auto insert_tx = [](Sets created_by_tx, Sets consumed_by_tx, const auto& tx) {
335 [ + + ]: 685483 : for (size_t i{0}; i < tx.vout.size(); ++i) {
336 [ + + ]: 1806904 : for (auto& set : created_by_tx) {
337 : 1178373 : Assert(set.get().emplace(tx.GetHash(), i).second);
338 : : }
339 : : }
340 [ + + ]: 158250 : for (const auto& in : tx.vin) {
341 [ + + ]: 202596 : for (auto& set : consumed_by_tx) {
342 : 101298 : Assert(set.get().insert(in.prevout).second);
343 : : }
344 : : }
345 : 56952 : };
346 : : // Add created outpoints, remove spent outpoints
347 : 138083 : {
348 : : // Outpoints that no longer exist at all
349 : 138083 : std::set<COutPoint> consumed_erased;
350 : : // Outpoints that no longer count toward the total supply
351 : 138083 : std::set<COutPoint> consumed_supply;
352 [ + + ]: 161459 : for (const auto& removed_tx : removed) {
353 [ + - + - : 46752 : insert_tx(/*created_by_tx=*/{consumed_erased}, /*consumed_by_tx=*/{outpoints_supply}, /*tx=*/*removed_tx);
+ - ]
354 : : }
355 [ + + ]: 171659 : for (const auto& added_tx : added) {
356 [ + - + - : 67152 : insert_tx(/*created_by_tx=*/{outpoints_supply, outpoints_rbf}, /*consumed_by_tx=*/{consumed_supply}, /*tx=*/*added_tx);
+ - ]
357 : : }
358 [ + + ]: 216772 : for (const auto& p : consumed_erased) {
359 [ + - ]: 78689 : Assert(outpoints_supply.erase(p) == 1);
360 [ + - ]: 78689 : Assert(outpoints_rbf.erase(p) == 1);
361 : : }
362 [ + + ]: 201319 : for (const auto& p : consumed_supply) {
363 [ + - ]: 63236 : Assert(outpoints_supply.erase(p) == 1);
364 : : }
365 : 138083 : }
366 [ + - + - ]: 414249 : }
367 [ + - ]: 1683 : Finish(fuzzed_data_provider, tx_pool, chainstate);
368 : 1683 : }
369 : :
370 [ + - ]: 4602 : FUZZ_TARGET(tx_pool, .init = initialize_tx_pool)
371 : : {
372 : 4188 : SeedRandomStateForTest(SeedRand::ZEROS);
373 : 4188 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
374 : 4188 : const auto& node = g_setup->m_node;
375 : 4188 : auto& chainstate{static_cast<DummyChainState&>(node.chainman->ActiveChainstate())};
376 : :
377 : 4188 : MockTime(fuzzed_data_provider, chainstate);
378 : :
379 : 4188 : std::vector<Txid> txids;
380 [ + - ]: 4188 : txids.reserve(g_outpoints_coinbase_init_mature.size());
381 [ + + ]: 422988 : for (const auto& outpoint : g_outpoints_coinbase_init_mature) {
382 [ + - ]: 418800 : txids.push_back(outpoint.hash);
383 : : }
384 [ + + ]: 20940 : for (int i{0}; i <= 3; ++i) {
385 : : // Add some immature and non-existent outpoints
386 [ + - + - ]: 16752 : txids.push_back(g_outpoints_coinbase_init_immature.at(i).hash);
387 [ + - ]: 16752 : txids.push_back(Txid::FromUint256(ConsumeUInt256(fuzzed_data_provider)));
388 : : }
389 : :
390 [ + - ]: 4188 : SetMempoolConstraints(*node.args, fuzzed_data_provider);
391 [ + - ]: 4188 : auto tx_pool_{MakeMempool(fuzzed_data_provider, node)};
392 : 4188 : MockedTxPool& tx_pool = *static_cast<MockedTxPool*>(tx_pool_.get());
393 : :
394 : 4188 : chainstate.SetMempool(&tx_pool);
395 : :
396 [ + + + + ]: 262340 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 300)
397 : : {
398 [ + - ]: 258152 : const auto mut_tx = ConsumeTransaction(fuzzed_data_provider, txids);
399 : :
400 [ + + ]: 258152 : if (fuzzed_data_provider.ConsumeBool()) {
401 [ + - ]: 134068 : MockTime(fuzzed_data_provider, chainstate);
402 : : }
403 [ + + ]: 258152 : if (fuzzed_data_provider.ConsumeBool()) {
404 [ + - ]: 181265 : tx_pool.RollingFeeUpdate();
405 : : }
406 [ + + ]: 258152 : if (fuzzed_data_provider.ConsumeBool()) {
407 [ + + ]: 157485 : const auto txid = fuzzed_data_provider.ConsumeBool() ?
408 [ + - ]: 120187 : mut_tx.GetHash() :
409 : 37298 : PickValue(fuzzed_data_provider, txids);
410 : 157485 : const auto delta = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-50 * COIN, +50 * COIN);
411 [ + - ]: 157485 : tx_pool.PrioritiseTransaction(txid.ToUint256(), delta);
412 : : }
413 : :
414 [ + - ]: 258152 : const auto tx = MakeTransactionRef(mut_tx);
415 : 258152 : const bool bypass_limits = fuzzed_data_provider.ConsumeBool();
416 [ + - + - ]: 774456 : const auto res = WITH_LOCK(::cs_main, return AcceptToMemoryPool(chainstate, tx, GetTime(), bypass_limits, /*test_accept=*/false));
417 : 258152 : const bool accepted = res.m_result_type == MempoolAcceptResult::ResultType::VALID;
418 [ + + ]: 258152 : if (accepted) {
419 [ + - ]: 49023 : txids.push_back(tx->GetHash());
420 [ + - ]: 49023 : CheckMempoolTRUCInvariants(tx_pool);
421 : : }
422 [ + - ]: 774456 : }
423 [ + - ]: 4188 : Finish(fuzzed_data_provider, tx_pool, chainstate);
424 : 4188 : }
425 : : } // namespace
|