Bitcoin Core 28.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
package_eval.cpp
Go to the documentation of this file.
1// Copyright (c) 2023 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
6#include <node/context.h>
7#include <node/mempool_args.h>
8#include <node/miner.h>
11#include <test/fuzz/fuzz.h>
12#include <test/fuzz/util.h>
14#include <test/util/mining.h>
15#include <test/util/script.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
25
26namespace {
27
28const TestingSetup* g_setup;
29std::vector<COutPoint> g_outpoints_coinbase_init_mature;
30
31struct MockedTxPool : public CTxMemPool {
32 void RollingFeeUpdate() EXCLUSIVE_LOCKS_REQUIRED(!cs)
33 {
34 LOCK(cs);
35 lastRollingFeeUpdate = GetTime();
36 blockSinceLastRollingFeeBump = true;
37 }
38};
39
40void initialize_tx_pool()
41{
42 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
43 g_setup = testing_setup.get();
44
45 for (int i = 0; i < 2 * COINBASE_MATURITY; ++i) {
46 COutPoint prevout{MineBlock(g_setup->m_node, P2WSH_EMPTY)};
47 if (i < COINBASE_MATURITY) {
48 // Remember the txids to avoid expensive disk access later on
49 g_outpoints_coinbase_init_mature.push_back(prevout);
50 }
51 }
52 g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
53}
54
55struct OutpointsUpdater final : public CValidationInterface {
56 std::set<COutPoint>& m_mempool_outpoints;
57
58 explicit OutpointsUpdater(std::set<COutPoint>& r)
59 : m_mempool_outpoints{r} {}
60
61 void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t /* mempool_sequence */) override
62 {
63 // for coins spent we always want to be able to rbf so they're not removed
64
65 // outputs from this tx can now be spent
66 for (uint32_t index{0}; index < tx.info.m_tx->vout.size(); ++index) {
67 m_mempool_outpoints.insert(COutPoint{tx.info.m_tx->GetHash(), index});
68 }
69 }
70
71 void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t /* mempool_sequence */) override
72 {
73 // outpoints spent by this tx are now available
74 for (const auto& input : tx->vin) {
75 // Could already exist if this was a replacement
76 m_mempool_outpoints.insert(input.prevout);
77 }
78 // outpoints created by this tx no longer exist
79 for (uint32_t index{0}; index < tx->vout.size(); ++index) {
80 m_mempool_outpoints.erase(COutPoint{tx->GetHash(), index});
81 }
82 }
83};
84
85struct TransactionsDelta final : public CValidationInterface {
86 std::set<CTransactionRef>& m_added;
87
88 explicit TransactionsDelta(std::set<CTransactionRef>& a)
89 : m_added{a} {}
90
91 void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t /* mempool_sequence */) override
92 {
93 // Transactions may be entered and booted any number of times
94 m_added.insert(tx.info.m_tx);
95 }
96
97 void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t /* mempool_sequence */) override
98 {
99 // Transactions may be entered and booted any number of times
100 m_added.erase(tx);
101 }
102};
103
104void MockTime(FuzzedDataProvider& fuzzed_data_provider, const Chainstate& chainstate)
105{
106 const auto time = ConsumeTime(fuzzed_data_provider,
107 chainstate.m_chain.Tip()->GetMedianTimePast() + 1,
108 std::numeric_limits<decltype(chainstate.m_chain.Tip()->nTime)>::max());
109 SetMockTime(time);
110}
111
112std::unique_ptr<CTxMemPool> MakeMempool(FuzzedDataProvider& fuzzed_data_provider, const NodeContext& node)
113{
114 // Take the default options for tests...
116
117
118 // ...override specific options for this specific fuzz suite
119 mempool_opts.limits.ancestor_count = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50);
120 mempool_opts.limits.ancestor_size_vbytes = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202) * 1'000;
121 mempool_opts.limits.descendant_count = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 50);
122 mempool_opts.limits.descendant_size_vbytes = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 202) * 1'000;
123 mempool_opts.max_size_bytes = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 200) * 1'000'000;
124 mempool_opts.expiry = std::chrono::hours{fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 999)};
125 // Only interested in 2 cases: sigop cost 0 or when single legacy sigop cost is >> 1KvB
126 nBytesPerSigOp = fuzzed_data_provider.ConsumeIntegralInRange<unsigned>(0, 1) * 10'000;
127
128 mempool_opts.check_ratio = 1;
129 mempool_opts.require_standard = fuzzed_data_provider.ConsumeBool();
130
131 bilingual_str error;
132 // ...and construct a CTxMemPool from it
133 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 Assert(error.empty() || error.original.starts_with("-maxmempool must be at least "));
137 return mempool;
138}
139
140FUZZ_TARGET(tx_package_eval, .init = initialize_tx_pool)
141{
142 FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
143 const auto& node = g_setup->m_node;
144 auto& chainstate{static_cast<DummyChainState&>(node.chainman->ActiveChainstate())};
145
146 MockTime(fuzzed_data_provider, chainstate);
147
148 // All RBF-spendable outpoints outside of the unsubmitted package
149 std::set<COutPoint> mempool_outpoints;
150 std::map<COutPoint, CAmount> outpoints_value;
151 for (const auto& outpoint : g_outpoints_coinbase_init_mature) {
152 Assert(mempool_outpoints.insert(outpoint).second);
153 outpoints_value[outpoint] = 50 * COIN;
154 }
155
156 auto outpoints_updater = std::make_shared<OutpointsUpdater>(mempool_outpoints);
157 node.validation_signals->RegisterSharedValidationInterface(outpoints_updater);
158
159 auto tx_pool_{MakeMempool(fuzzed_data_provider, node)};
160 MockedTxPool& tx_pool = *static_cast<MockedTxPool*>(tx_pool_.get());
161
162 chainstate.SetMempool(&tx_pool);
163
164 LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 300)
165 {
166 Assert(!mempool_outpoints.empty());
167
168 std::vector<CTransactionRef> txs;
169
170 // Make packages of 1-to-26 transactions
171 const auto num_txs = (size_t) fuzzed_data_provider.ConsumeIntegralInRange<int>(1, 26);
172 std::set<COutPoint> package_outpoints;
173 while (txs.size() < num_txs) {
174
175 // Last transaction in a package needs to be a child of parents to get further in validation
176 // so the last transaction to be generated(in a >1 package) must spend all package-made outputs
177 // Note that this test currently only spends package outputs in last transaction.
178 bool last_tx = num_txs > 1 && txs.size() == num_txs - 1;
179
180 // Create transaction to add to the mempool
181 const CTransactionRef tx = [&] {
182 CMutableTransaction tx_mut;
183 tx_mut.version = fuzzed_data_provider.ConsumeBool() ? TRUC_VERSION : CTransaction::CURRENT_VERSION;
184 tx_mut.nLockTime = fuzzed_data_provider.ConsumeBool() ? 0 : fuzzed_data_provider.ConsumeIntegral<uint32_t>();
185 // Last tx will sweep all outpoints in package
186 const auto num_in = last_tx ? package_outpoints.size() : fuzzed_data_provider.ConsumeIntegralInRange<int>(1, mempool_outpoints.size());
187 auto num_out = fuzzed_data_provider.ConsumeIntegralInRange<int>(1, mempool_outpoints.size() * 2);
188
189 auto& outpoints = last_tx ? package_outpoints : mempool_outpoints;
190
191 Assert(!outpoints.empty());
192
193 CAmount amount_in{0};
194 for (size_t i = 0; i < num_in; ++i) {
195 // Pop random outpoint
196 auto pop = outpoints.begin();
197 std::advance(pop, fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, outpoints.size() - 1));
198 const auto outpoint = *pop;
199 outpoints.erase(pop);
200 // no need to update or erase from outpoints_value
201 amount_in += outpoints_value.at(outpoint);
202
203 // Create input
204 const auto sequence = ConsumeSequence(fuzzed_data_provider);
205 const auto script_sig = CScript{};
206 const auto script_wit_stack = fuzzed_data_provider.ConsumeBool() ? P2WSH_EMPTY_TRUE_STACK : P2WSH_EMPTY_TWO_STACK;
207
208 CTxIn in;
209 in.prevout = outpoint;
210 in.nSequence = sequence;
211 in.scriptSig = script_sig;
212 in.scriptWitness.stack = script_wit_stack;
213
214 tx_mut.vin.push_back(in);
215 }
216
217 // Duplicate an input
218 bool dup_input = fuzzed_data_provider.ConsumeBool();
219 if (dup_input) {
220 tx_mut.vin.push_back(tx_mut.vin.back());
221 }
222
223 // Refer to a non-existent input
224 if (fuzzed_data_provider.ConsumeBool()) {
225 tx_mut.vin.emplace_back();
226 }
227
228 // Make a p2pk output to make sigops adjusted vsize to violate TRUC rules, potentially, which is never spent
229 if (last_tx && amount_in > 1000 && fuzzed_data_provider.ConsumeBool()) {
230 tx_mut.vout.emplace_back(1000, CScript() << std::vector<unsigned char>(33, 0x02) << OP_CHECKSIG);
231 // Don't add any other outputs.
232 num_out = 1;
233 amount_in -= 1000;
234 }
235
236 const auto amount_fee = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(0, amount_in);
237 const auto amount_out = (amount_in - amount_fee) / num_out;
238 for (int i = 0; i < num_out; ++i) {
239 tx_mut.vout.emplace_back(amount_out, P2WSH_EMPTY);
240 }
241 auto tx = MakeTransactionRef(tx_mut);
242 // Restore previously removed outpoints, except in-package outpoints
243 if (!last_tx) {
244 for (const auto& in : tx->vin) {
245 // It's a fake input, or a new input, or a duplicate
246 Assert(in == CTxIn() || outpoints.insert(in.prevout).second || dup_input);
247 }
248 // Cache the in-package outpoints being made
249 for (size_t i = 0; i < tx->vout.size(); ++i) {
250 package_outpoints.emplace(tx->GetHash(), i);
251 }
252 }
253 // We need newly-created values for the duration of this run
254 for (size_t i = 0; i < tx->vout.size(); ++i) {
255 outpoints_value[COutPoint(tx->GetHash(), i)] = tx->vout[i].nValue;
256 }
257 return tx;
258 }();
259 txs.push_back(tx);
260 }
261
262 if (fuzzed_data_provider.ConsumeBool()) {
263 MockTime(fuzzed_data_provider, chainstate);
264 }
265 if (fuzzed_data_provider.ConsumeBool()) {
266 tx_pool.RollingFeeUpdate();
267 }
268 if (fuzzed_data_provider.ConsumeBool()) {
269 const auto& txid = fuzzed_data_provider.ConsumeBool() ?
270 txs.back()->GetHash() :
271 PickValue(fuzzed_data_provider, mempool_outpoints).hash;
272 const auto delta = fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-50 * COIN, +50 * COIN);
273 tx_pool.PrioritiseTransaction(txid.ToUint256(), delta);
274 }
275
276 // Remember all added transactions
277 std::set<CTransactionRef> added;
278 auto txr = std::make_shared<TransactionsDelta>(added);
279 node.validation_signals->RegisterSharedValidationInterface(txr);
280
281 // When there are multiple transactions in the package, we call ProcessNewPackage(txs, test_accept=false)
282 // and AcceptToMemoryPool(txs.back(), test_accept=true). When there is only 1 transaction, we might flip it
283 // (the package is a test accept and ATMP is a submission).
284 auto single_submit = txs.size() == 1 && fuzzed_data_provider.ConsumeBool();
285
286 // Exercise client_maxfeerate logic
287 std::optional<CFeeRate> client_maxfeerate{};
288 if (fuzzed_data_provider.ConsumeBool()) {
289 client_maxfeerate = CFeeRate(fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(-1, 50 * COIN), 100);
290 }
291
292 const auto result_package = WITH_LOCK(::cs_main,
293 return ProcessNewPackage(chainstate, tx_pool, txs, /*test_accept=*/single_submit, client_maxfeerate));
294
295 // Always set bypass_limits to false because it is not supported in ProcessNewPackage and
296 // can be a source of divergence.
297 const auto res = WITH_LOCK(::cs_main, return AcceptToMemoryPool(chainstate, txs.back(), GetTime(),
298 /*bypass_limits=*/false, /*test_accept=*/!single_submit));
299 const bool passed = res.m_result_type == MempoolAcceptResult::ResultType::VALID;
300
301 node.validation_signals->SyncWithValidationInterfaceQueue();
302 node.validation_signals->UnregisterSharedValidationInterface(txr);
303
304 // There is only 1 transaction in the package. We did a test-package-accept and a ATMP
305 if (single_submit) {
306 Assert(passed != added.empty());
307 Assert(passed == res.m_state.IsValid());
308 if (passed) {
309 Assert(added.size() == 1);
310 Assert(txs.back() == *added.begin());
311 }
312 } else if (result_package.m_state.GetResult() != PackageValidationResult::PCKG_POLICY) {
313 // We don't know anything about the validity since transactions were randomly generated, so
314 // just use result_package.m_state here. This makes the expect_valid check meaningless, but
315 // we can still verify that the contents of m_tx_results are consistent with m_state.
316 const bool expect_valid{result_package.m_state.IsValid()};
317 Assert(!CheckPackageMempoolAcceptResult(txs, result_package, expect_valid, &tx_pool));
318 } else {
319 // This is empty if it fails early checks, or "full" if transactions are looked at deeper
320 Assert(result_package.m_tx_results.size() == txs.size() || result_package.m_tx_results.empty());
321 }
322
324 }
325
326 node.validation_signals->UnregisterSharedValidationInterface(outpoints_updater);
327
328 WITH_LOCK(::cs_main, tx_pool.check(chainstate.CoinsTip(), chainstate.m_chain.Height() + 1));
329}
330} // namespace
int64_t CAmount
Amount in satoshis (Can be negative)
Definition amount.h:12
static constexpr CAmount COIN
The amount of satoshis in one BTC.
Definition amount.h:15
#define Assert(val)
Identity function.
Definition check.h:77
uint32_t nTime
Definition chain.h:189
int64_t GetMedianTimePast() const
Definition chain.h:278
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition chain.h:433
Fee rate in satoshis per kilovirtualbyte: CAmount / kvB.
Definition feerate.h:33
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition transaction.h:29
Serialized script, used inside transaction inputs and outputs.
Definition script.h:414
static const uint32_t CURRENT_VERSION
An input of a transaction.
Definition transaction.h:67
uint32_t nSequence
Definition transaction.h:71
CScript scriptSig
Definition transaction.h:70
CScriptWitness scriptWitness
Only serialized through CTransaction.
Definition transaction.h:72
COutPoint prevout
Definition transaction.h:69
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition txmempool.h:304
Implement this to subscribe to events generated in validation and mempool.
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition validation.h:513
CChain m_chain
The current chain of blockheaders we consult and build on.
Definition validation.h:593
T ConsumeIntegralInRange(T min, T max)
static const int COINBASE_MATURITY
Coinbase transaction outputs can only be spent after this number of new blocks (network rule)
Definition consensus.h:19
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition cs_main.cpp:8
#define FUZZ_TARGET(...)
Definition fuzz.h:35
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
Definition fuzz.h:22
uint64_t sequence
static void pool cs
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
@ PCKG_POLICY
The package itself is invalid (e.g. too many transactions).
unsigned int nBytesPerSigOp
Definition settings.cpp:10
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
@ OP_CHECKSIG
Definition script.h:189
std::unique_ptr< T > MakeNoLogFileContext(const ChainType chain_type=ChainType::REGTEST, TestOpts opts={})
Make a test setup that has disk access to the debug.log file disabled.
node::NodeContext m_node
A mutable version of CTransaction.
std::vector< CTxOut > vout
std::vector< CTxIn > vin
std::vector< std::vector< unsigned char > > stack
Definition script.h:577
Testing setup that configures a complete environment.
const CTransactionRef m_tx
Bilingual messages:
Definition translation.h:18
bool empty() const
Definition translation.h:29
std::string original
Definition translation.h:19
int64_t ancestor_count
The maximum allowed number of transactions in a package including the entry and its ancestors.
Options struct containing options for constructing a CTxMemPool.
NodeContext struct containing references to chain state and connection state.
Definition context.h:55
std::unique_ptr< ValidationSignals > validation_signals
Issues calls about blocks and transactions.
Definition context.h:85
#define LOCK(cs)
Definition sync.h:257
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
Definition sync.h:301
uint32_t ConsumeSequence(FuzzedDataProvider &fuzzed_data_provider) noexcept
Definition util.cpp:155
int64_t ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
Definition util.cpp:34
auto & PickValue(FuzzedDataProvider &fuzzed_data_provider, Collection &col)
Definition util.h:47
COutPoint MineBlock(const NodeContext &node, const CScript &coinbase_scriptPubKey)
Returns the generated coin.
Definition mining.cpp:63
static const std::vector< std::vector< uint8_t > > P2WSH_EMPTY_TRUE_STACK
Definition script.h:30
static const std::vector< std::vector< uint8_t > > P2WSH_EMPTY_TWO_STACK
Definition script.h:31
static const CScript P2WSH_EMPTY
Definition script.h:22
void CheckMempoolTRUCInvariants(const CTxMemPool &tx_pool)
For every transaction in tx_pool, check TRUC invariants:
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext &node)
Definition txmempool.cpp:20
std::optional< std::string > CheckPackageMempoolAcceptResult(const Package &txns, const PackageMempoolAcceptResult &result, bool expect_valid, const CTxMemPool *mempool)
Check expected properties for every PackageMempoolAcceptResult, regardless of value.
Definition txmempool.cpp:43
#define EXCLUSIVE_LOCKS_REQUIRED(...)
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
Definition time.cpp:44
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
Definition time.cpp:32
static constexpr decltype(CTransaction::version) TRUC_VERSION
Definition truc_policy.h:20
PackageMempoolAcceptResult ProcessNewPackage(Chainstate &active_chainstate, CTxMemPool &pool, const Package &package, bool test_accept, const std::optional< CFeeRate > &client_maxfeerate)
Validate (and maybe submit) a package to the mempool.
MempoolAcceptResult AcceptToMemoryPool(Chainstate &active_chainstate, const CTransactionRef &tx, int64_t accept_time, bool bypass_limits, bool test_accept)
Try to add a transaction to the mempool.