31const Coin EMPTY_COIN{};
42 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
43 g_setup = testing_setup.get();
54 while (fuzzed_data_provider.ConsumeBool()) {
61 Coin coin = random_coin;
62 bool expected_code_path =
false;
63 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
65 coins_view_cache.AddCoin(random_out_point, std::move(coin), possible_overwrite);
66 expected_code_path = true;
67 } catch (
const std::logic_error& e) {
68 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
69 assert(!possible_overwrite);
70 expected_code_path = true;
73 assert(expected_code_path);
76 (void)coins_view_cache.Flush();
79 coins_view_cache.SetBestBlock(
ConsumeUInt256(fuzzed_data_provider));
83 (void)coins_view_cache.SpendCoin(random_out_point, fuzzed_data_provider.ConsumeBool() ? &move_to :
nullptr);
86 coins_view_cache.Uncache(random_out_point);
89 if (fuzzed_data_provider.ConsumeBool()) {
92 coins_view_cache.SetBackend(backend_coins_view);
95 const std::optional<COutPoint> opt_out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
99 random_out_point = *opt_out_point;
102 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
106 random_coin = *opt_coin;
109 const std::optional<CMutableTransaction> opt_mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider);
110 if (!opt_mutable_transaction) {
113 random_mutable_transaction = *opt_mutable_transaction;
117 while (fuzzed_data_provider.ConsumeBool()) {
119 coins_cache_entry.
flags = fuzzed_data_provider.ConsumeIntegral<
unsigned char>();
120 if (fuzzed_data_provider.ConsumeBool()) {
121 coins_cache_entry.
coin = random_coin;
123 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
127 coins_cache_entry.
coin = *opt_coin;
129 coins_map.emplace(random_out_point, std::move(coins_cache_entry));
131 bool expected_code_path =
false;
133 coins_view_cache.BatchWrite(coins_map, fuzzed_data_provider.ConsumeBool() ?
ConsumeUInt256(fuzzed_data_provider) : coins_view_cache.GetBestBlock());
134 expected_code_path =
true;
135 }
catch (
const std::logic_error& e) {
136 if (e.what() == std::string{
"FRESH flag misapplied to coin that exists in parent cache"}) {
137 expected_code_path =
true;
140 assert(expected_code_path);
145 const Coin& coin_using_access_coin = coins_view_cache.AccessCoin(random_out_point);
146 const bool exists_using_access_coin = !(coin_using_access_coin == EMPTY_COIN);
147 const bool exists_using_have_coin = coins_view_cache.HaveCoin(random_out_point);
148 const bool exists_using_have_coin_in_cache = coins_view_cache.HaveCoinInCache(random_out_point);
149 Coin coin_using_get_coin;
150 const bool exists_using_get_coin = coins_view_cache.GetCoin(random_out_point, coin_using_get_coin);
151 if (exists_using_get_coin) {
152 assert(coin_using_get_coin == coin_using_access_coin);
154 assert((exists_using_access_coin && exists_using_have_coin_in_cache && exists_using_have_coin && exists_using_get_coin) ||
155 (!exists_using_access_coin && !exists_using_have_coin_in_cache && !exists_using_have_coin && !exists_using_get_coin));
156 const bool exists_using_have_coin_in_backend = backend_coins_view.
HaveCoin(random_out_point);
157 if (exists_using_have_coin_in_backend) {
158 assert(exists_using_have_coin);
160 Coin coin_using_backend_get_coin;
161 if (backend_coins_view.
GetCoin(random_out_point, coin_using_backend_get_coin)) {
162 assert(exists_using_have_coin_in_backend);
163 assert(coin_using_get_coin == coin_using_backend_get_coin);
165 assert(!exists_using_have_coin_in_backend);
170 bool expected_code_path =
false;
172 (void)coins_view_cache.Cursor();
173 }
catch (
const std::logic_error&) {
174 expected_code_path =
true;
176 assert(expected_code_path);
177 (void)coins_view_cache.DynamicMemoryUsage();
178 (void)coins_view_cache.EstimateSize();
179 (void)coins_view_cache.GetBestBlock();
180 (void)coins_view_cache.GetCacheSize();
181 (void)coins_view_cache.GetHeadBlocks();
182 (void)coins_view_cache.HaveInputs(
CTransaction{random_mutable_transaction});
186 std::unique_ptr<CCoinsViewCursor> coins_view_cursor = backend_coins_view.Cursor();
187 assert(!coins_view_cursor);
188 (void)backend_coins_view.EstimateSize();
189 (void)backend_coins_view.GetBestBlock();
190 (void)backend_coins_view.GetHeadBlocks();
193 if (fuzzed_data_provider.ConsumeBool()) {
195 fuzzed_data_provider,
197 const CTransaction transaction{random_mutable_transaction};
198 bool is_spent =
false;
199 for (
const CTxOut& tx_out : transaction.vout) {
200 if (Coin{tx_out, 0, transaction.IsCoinBase()}.IsSpent()) {
209 bool expected_code_path =
false;
210 const int height = fuzzed_data_provider.ConsumeIntegral<
int>();
211 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
213 AddCoins(coins_view_cache, transaction, height, possible_overwrite);
214 expected_code_path =
true;
215 }
catch (
const std::logic_error& e) {
216 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
217 assert(!possible_overwrite);
218 expected_code_path =
true;
221 assert(expected_code_path);
230 const CTransaction transaction{random_mutable_transaction};
241 if (
Consensus::CheckTxInputs(transaction, state, coins_view_cache, fuzzed_data_provider.ConsumeIntegralInRange<
int>(0, std::numeric_limits<int>::max()), tx_fee_out)) {
246 const CTransaction transaction{random_mutable_transaction};
255 const CTransaction transaction{random_mutable_transaction};
261 const auto flags{fuzzed_data_provider.ConsumeIntegral<uint32_t>()};
271 bool expected_code_path =
false;
274 }
catch (
const std::logic_error&) {
275 expected_code_path =
true;
277 assert(expected_code_path);
bool MoneyRange(const CAmount &nValue)
int64_t CAmount
Amount in satoshis (Can be negative)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Abstract view on the open txout dataset.
virtual bool GetCoin(const COutPoint &outpoint, Coin &coin) const
Retrieve the Coin (unspent transaction output) for a given outpoint.
virtual bool HaveCoin(const COutPoint &outpoint) const
Just check whether a given outpoint is unspent.
An outpoint - a combination of a transaction hash and an index n into its vout.
The basic transaction that is broadcasted on the network and contained in blocks.
An output of a transaction.
CTxOut out
unspent transaction output
bool IsSpent() const
Either this coin never existed (see e.g.
uint32_t nHeight
at which height this containing transaction was included in the active block chain
unsigned int fCoinBase
whether containing transaction was a coinbase
void AddCoins(CCoinsViewCache &cache, const CTransaction &tx, int nHeight, bool check_for_overwrite)
Utility function to add all of a transaction's outputs to a cache.
std::unordered_map< COutPoint, CCoinsCacheEntry, SaltedOutpointHasher > CCoinsMap
void initialize_coins_view()
FUZZ_TARGET_INIT(coins_view, initialize_coins_view)
static bool GetUTXOStats(CCoinsView *view, BlockManager &blockman, CCoinsStats &stats, T hash_obj, const std::function< void()> &interruption_point, const CBlockIndex *pindex)
Calculate statistics about the unspent transaction output set.
bool CheckTxInputs(const CTransaction &tx, TxValidationState &state, const CCoinsViewCache &inputs, int nSpendHeight, CAmount &txfee)
Check whether all inputs of this transaction are valid (no double spends and amounts) This does not m...
bool operator==(const CNetAddr &a, const CNetAddr &b)
bool AreInputsStandard(const CTransaction &tx, const CCoinsViewCache &mapInputs, bool taproot_active)
Check transaction inputs to mitigate two potential denial-of-service attacks:
bool IsWitnessStandard(const CTransaction &tx, const CCoinsViewCache &mapInputs)
Check if the transaction is over standard P2WSH resources limit: 3600bytes witnessScript size,...
A Coin in one level of the coins database caching hierarchy.
A mutable version of CTransaction.
std::unique_ptr< ChainstateManager > chainman
Testing setup that configures a complete environment.
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
bool ContainsSpentInput(const CTransaction &tx, const CCoinsViewCache &inputs) noexcept
uint256 ConsumeUInt256(FuzzedDataProvider &fuzzed_data_provider) noexcept
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
bool CheckTransaction(const CTransaction &tx, TxValidationState &state)
int64_t GetTransactionSigOpCost(const CTransaction &tx, const CCoinsViewCache &inputs, uint32_t flags)
Compute total signature operation cost of a transaction.
unsigned int GetP2SHSigOpCount(const CTransaction &tx, const CCoinsViewCache &inputs)
Count ECDSA signature operations in pay-to-script-hash inputs.