30 const Coin EMPTY_COIN{};
41 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
42 g_setup = testing_setup.get();
60 Coin coin = random_coin;
61 bool expected_code_path =
false;
62 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
64 coins_view_cache.AddCoin(random_out_point, std::move(coin), possible_overwrite);
65 expected_code_path =
true;
66 }
catch (
const std::logic_error& e) {
67 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
68 assert(!possible_overwrite);
69 expected_code_path =
true;
72 assert(expected_code_path);
75 (void)coins_view_cache.Flush();
78 coins_view_cache.SetBestBlock(
ConsumeUInt256(fuzzed_data_provider));
82 (void)coins_view_cache.SpendCoin(random_out_point, fuzzed_data_provider.ConsumeBool() ? &move_to :
nullptr);
85 coins_view_cache.Uncache(random_out_point);
88 if (fuzzed_data_provider.ConsumeBool()) {
91 coins_view_cache.SetBackend(backend_coins_view);
94 const std::optional<COutPoint> opt_out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
98 random_out_point = *opt_out_point;
101 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
105 random_coin = *opt_coin;
108 const std::optional<CMutableTransaction> opt_mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider);
109 if (!opt_mutable_transaction) {
112 random_mutable_transaction = *opt_mutable_transaction;
118 coins_cache_entry.
flags = fuzzed_data_provider.ConsumeIntegral<
unsigned char>();
119 if (fuzzed_data_provider.ConsumeBool()) {
120 coins_cache_entry.
coin = random_coin;
122 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
126 coins_cache_entry.
coin = *opt_coin;
128 coins_map.emplace(random_out_point, std::move(coins_cache_entry));
130 bool expected_code_path =
false;
132 coins_view_cache.BatchWrite(coins_map, fuzzed_data_provider.ConsumeBool() ?
ConsumeUInt256(fuzzed_data_provider) : coins_view_cache.GetBestBlock());
133 expected_code_path =
true;
134 }
catch (
const std::logic_error& e) {
135 if (e.what() == std::string{
"FRESH flag misapplied to coin that exists in parent cache"}) {
136 expected_code_path =
true;
139 assert(expected_code_path);
144 const Coin& coin_using_access_coin = coins_view_cache.AccessCoin(random_out_point);
145 const bool exists_using_access_coin = !(coin_using_access_coin == EMPTY_COIN);
146 const bool exists_using_have_coin = coins_view_cache.HaveCoin(random_out_point);
147 const bool exists_using_have_coin_in_cache = coins_view_cache.HaveCoinInCache(random_out_point);
148 Coin coin_using_get_coin;
149 const bool exists_using_get_coin = coins_view_cache.GetCoin(random_out_point, coin_using_get_coin);
150 if (exists_using_get_coin) {
151 assert(coin_using_get_coin == coin_using_access_coin);
153 assert((exists_using_access_coin && exists_using_have_coin_in_cache && exists_using_have_coin && exists_using_get_coin) ||
154 (!exists_using_access_coin && !exists_using_have_coin_in_cache && !exists_using_have_coin && !exists_using_get_coin));
155 const bool exists_using_have_coin_in_backend = backend_coins_view.
HaveCoin(random_out_point);
156 if (exists_using_have_coin_in_backend) {
157 assert(exists_using_have_coin);
159 Coin coin_using_backend_get_coin;
160 if (backend_coins_view.
GetCoin(random_out_point, coin_using_backend_get_coin)) {
161 assert(exists_using_have_coin_in_backend);
162 assert(coin_using_get_coin == coin_using_backend_get_coin);
164 assert(!exists_using_have_coin_in_backend);
169 bool expected_code_path =
false;
171 (void)coins_view_cache.Cursor();
172 }
catch (
const std::logic_error&) {
173 expected_code_path =
true;
175 assert(expected_code_path);
176 (void)coins_view_cache.DynamicMemoryUsage();
177 (void)coins_view_cache.EstimateSize();
178 (void)coins_view_cache.GetBestBlock();
179 (void)coins_view_cache.GetCacheSize();
180 (void)coins_view_cache.GetHeadBlocks();
181 (void)coins_view_cache.HaveInputs(
CTransaction{random_mutable_transaction});
185 std::unique_ptr<CCoinsViewCursor> coins_view_cursor = backend_coins_view.
Cursor();
186 assert(!coins_view_cursor);
192 if (fuzzed_data_provider.ConsumeBool()) {
194 fuzzed_data_provider,
196 const CTransaction transaction{random_mutable_transaction};
197 bool is_spent =
false;
198 for (
const CTxOut& tx_out : transaction.vout) {
199 if (Coin{tx_out, 0, transaction.IsCoinBase()}.IsSpent()) {
208 bool expected_code_path =
false;
209 const int height{int(fuzzed_data_provider.ConsumeIntegral<uint32_t>() >> 1)};
210 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
212 AddCoins(coins_view_cache, transaction, height, possible_overwrite);
213 expected_code_path =
true;
214 }
catch (
const std::logic_error& e) {
215 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
216 assert(!possible_overwrite);
217 expected_code_path =
true;
220 assert(expected_code_path);
228 const CTransaction transaction{random_mutable_transaction};
239 if (
Consensus::CheckTxInputs(transaction, state, coins_view_cache, fuzzed_data_provider.ConsumeIntegralInRange<
int>(0, std::numeric_limits<int>::max()), tx_fee_out)) {
244 const CTransaction transaction{random_mutable_transaction};
253 const CTransaction transaction{random_mutable_transaction};
259 const auto flags{fuzzed_data_provider.ConsumeIntegral<uint32_t>()};
bool IsSpent() const
Either this coin never existed (see e.g.
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...
A Coin in one level of the coins database caching hierarchy.
virtual bool GetCoin(const COutPoint &outpoint, Coin &coin) const
Retrieve the Coin (unspent transaction output) for a given outpoint.
bool operator==(const CNetAddr &a, const CNetAddr &b)
bool MoneyRange(const CAmount &nValue)
CTxOut out
unspent transaction output
unsigned int fCoinBase
whether containing transaction was a coinbase
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
virtual bool HaveCoin(const COutPoint &outpoint) const
Just check whether a given outpoint is unspent.
FUZZ_TARGET_INIT(coins_view, initialize_coins_view)
void initialize_coins_view()
bool IsWitnessStandard(const CTransaction &tx, const CCoinsViewCache &mapInputs)
Check if the transaction is over standard P2WSH resources limit: 3600bytes witnessScript size...
int64_t CAmount
Amount in satoshis (Can be negative)
bool AreInputsStandard(const CTransaction &tx, const CCoinsViewCache &mapInputs)
Check transaction inputs to mitigate two potential denial-of-service attacks:
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.
uint32_t nHeight
at which height this containing transaction was included in the active block chain ...
int64_t GetTransactionSigOpCost(const CTransaction &tx, const CCoinsViewCache &inputs, uint32_t flags)
Compute total signature operation cost of a transaction.
Abstract view on the open txout dataset.
std::unordered_map< COutPoint, CCoinsCacheEntry, SaltedOutpointHasher > CCoinsMap
bool ContainsSpentInput(const CTransaction &tx, const CCoinsViewCache &inputs) noexcept
virtual std::vector< uint256 > GetHeadBlocks() const
Retrieve the range of blocks that may have been only partially written.
An output of a transaction.
An outpoint - a combination of a transaction hash and an index n into its vout.
virtual size_t EstimateSize() const
Estimate database size (0 if not implemented)
virtual uint256 GetBestBlock() const
Retrieve the block hash whose state this CCoinsView currently represents.
unsigned int GetP2SHSigOpCount(const CTransaction &tx, const CCoinsViewCache &inputs)
Count ECDSA signature operations in pay-to-script-hash inputs.
A mutable version of CTransaction.
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
virtual std::unique_ptr< CCoinsViewCursor > Cursor() const
Get a cursor to iterate over the whole state.
The basic transaction that is broadcasted on the network and contained in blocks. ...
CCoinsView that adds a memory cache for transactions to another CCoinsView.
uint256 ConsumeUInt256(FuzzedDataProvider &fuzzed_data_provider) noexcept
bool CheckTransaction(const CTransaction &tx, TxValidationState &state)
Testing setup that configures a complete environment.