5 #include <chainparams.h> 29 const Coin EMPTY_COIN{};
40 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
41 g_setup = testing_setup.get();
59 Coin coin = random_coin;
60 bool expected_code_path =
false;
61 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
63 coins_view_cache.AddCoin(random_out_point, std::move(coin), possible_overwrite);
64 expected_code_path =
true;
65 }
catch (
const std::logic_error& e) {
66 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
67 assert(!possible_overwrite);
68 expected_code_path =
true;
71 assert(expected_code_path);
74 (void)coins_view_cache.Flush();
77 (void)coins_view_cache.Sync();
80 coins_view_cache.SetBestBlock(
ConsumeUInt256(fuzzed_data_provider));
84 (void)coins_view_cache.SpendCoin(random_out_point, fuzzed_data_provider.ConsumeBool() ? &move_to :
nullptr);
87 coins_view_cache.Uncache(random_out_point);
90 if (fuzzed_data_provider.ConsumeBool()) {
93 coins_view_cache.SetBackend(backend_coins_view);
96 const std::optional<COutPoint> opt_out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
100 random_out_point = *opt_out_point;
103 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
107 random_coin = *opt_coin;
110 const std::optional<CMutableTransaction> opt_mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider);
111 if (!opt_mutable_transaction) {
114 random_mutable_transaction = *opt_mutable_transaction;
121 coins_cache_entry.
flags = fuzzed_data_provider.ConsumeIntegral<
unsigned char>();
122 if (fuzzed_data_provider.ConsumeBool()) {
123 coins_cache_entry.
coin = random_coin;
125 const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
129 coins_cache_entry.
coin = *opt_coin;
131 coins_map.emplace(random_out_point, std::move(coins_cache_entry));
133 bool expected_code_path =
false;
135 coins_view_cache.BatchWrite(coins_map, fuzzed_data_provider.ConsumeBool() ?
ConsumeUInt256(fuzzed_data_provider) : coins_view_cache.GetBestBlock());
136 expected_code_path =
true;
137 }
catch (
const std::logic_error& e) {
138 if (e.what() == std::string{
"FRESH flag misapplied to coin that exists in parent cache"}) {
139 expected_code_path =
true;
142 assert(expected_code_path);
147 const Coin& coin_using_access_coin = coins_view_cache.AccessCoin(random_out_point);
148 const bool exists_using_access_coin = !(coin_using_access_coin == EMPTY_COIN);
149 const bool exists_using_have_coin = coins_view_cache.HaveCoin(random_out_point);
150 const bool exists_using_have_coin_in_cache = coins_view_cache.HaveCoinInCache(random_out_point);
151 Coin coin_using_get_coin;
152 const bool exists_using_get_coin = coins_view_cache.GetCoin(random_out_point, coin_using_get_coin);
153 if (exists_using_get_coin) {
154 assert(coin_using_get_coin == coin_using_access_coin);
156 assert((exists_using_access_coin && exists_using_have_coin_in_cache && exists_using_have_coin && exists_using_get_coin) ||
157 (!exists_using_access_coin && !exists_using_have_coin_in_cache && !exists_using_have_coin && !exists_using_get_coin));
159 const bool exists_using_have_coin_in_backend = backend_coins_view.
HaveCoin(random_out_point);
160 if (!coin_using_access_coin.
IsSpent() && exists_using_have_coin_in_backend) {
161 assert(exists_using_have_coin);
163 Coin coin_using_backend_get_coin;
164 if (backend_coins_view.
GetCoin(random_out_point, coin_using_backend_get_coin)) {
165 assert(exists_using_have_coin_in_backend);
169 assert(!exists_using_have_coin_in_backend);
174 bool expected_code_path =
false;
176 (void)coins_view_cache.Cursor();
177 }
catch (
const std::logic_error&) {
178 expected_code_path =
true;
180 assert(expected_code_path);
181 (void)coins_view_cache.DynamicMemoryUsage();
182 (void)coins_view_cache.EstimateSize();
183 (void)coins_view_cache.GetBestBlock();
184 (void)coins_view_cache.GetCacheSize();
185 (void)coins_view_cache.GetHeadBlocks();
186 (void)coins_view_cache.HaveInputs(
CTransaction{random_mutable_transaction});
190 std::unique_ptr<CCoinsViewCursor> coins_view_cursor = backend_coins_view.
Cursor();
191 assert(!coins_view_cursor);
197 if (fuzzed_data_provider.ConsumeBool()) {
199 fuzzed_data_provider,
201 const CTransaction transaction{random_mutable_transaction};
202 bool is_spent =
false;
203 for (
const CTxOut& tx_out : transaction.vout) {
204 if (Coin{tx_out, 0, transaction.IsCoinBase()}.IsSpent()) {
213 bool expected_code_path =
false;
214 const int height{int(fuzzed_data_provider.ConsumeIntegral<uint32_t>() >> 1)};
215 const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
217 AddCoins(coins_view_cache, transaction, height, possible_overwrite);
218 expected_code_path =
true;
219 }
catch (
const std::logic_error& e) {
220 if (e.what() == std::string{
"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
221 assert(!possible_overwrite);
222 expected_code_path =
true;
225 assert(expected_code_path);
233 const CTransaction transaction{random_mutable_transaction};
244 if (
Consensus::CheckTxInputs(transaction, state, coins_view_cache, fuzzed_data_provider.ConsumeIntegralInRange<
int>(0, std::numeric_limits<int>::max()), tx_fee_out)) {
249 const CTransaction transaction{random_mutable_transaction};
258 const CTransaction transaction{random_mutable_transaction};
264 const auto flags{fuzzed_data_provider.ConsumeIntegral<uint32_t>()};
FUZZ_TARGET(coins_view,.init=initialize_coins_view)
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.
CCoinsMap::allocator_type::ResourceType CCoinsMapMemoryResource
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 ...
std::unordered_map< COutPoint, CCoinsCacheEntry, SaltedOutpointHasher, std::equal_to< COutPoint >, PoolAllocator< std::pair< const COutPoint, CCoinsCacheEntry >, sizeof(std::pair< const COutPoint, CCoinsCacheEntry >)+sizeof(void *) *4 > > CCoinsMap
PoolAllocator's MAX_BLOCK_SIZE_BYTES parameter here uses sizeof the data, and adds the size of 4 poin...
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.
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.