Branch data Line data Source code
1 : : // Copyright (c) 2020-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 <coins.h>
6 : : #include <consensus/amount.h>
7 : : #include <consensus/tx_check.h>
8 : : #include <consensus/tx_verify.h>
9 : : #include <consensus/validation.h>
10 : : #include <policy/policy.h>
11 : : #include <primitives/transaction.h>
12 : : #include <script/interpreter.h>
13 : : #include <test/fuzz/FuzzedDataProvider.h>
14 : : #include <test/fuzz/fuzz.h>
15 : : #include <test/fuzz/util.h>
16 : : #include <test/util/setup_common.h>
17 : : #include <util/hasher.h>
18 : :
19 : : #include <cassert>
20 : : #include <cstdint>
21 : : #include <limits>
22 : : #include <memory>
23 : : #include <optional>
24 : : #include <stdexcept>
25 : : #include <string>
26 : : #include <utility>
27 : : #include <vector>
28 : :
29 : : namespace {
30 : : const Coin EMPTY_COIN{};
31 : :
32 : 3928 : bool operator==(const Coin& a, const Coin& b)
33 : : {
34 [ + + - + ]: 3928 : if (a.IsSpent() && b.IsSpent()) return true;
35 [ + + + + : 3252 : return a.fCoinBase == b.fCoinBase && a.nHeight == b.nHeight && a.out == b.out;
+ + ]
36 : : }
37 : : } // namespace
38 : :
39 : 1 : void initialize_coins_view()
40 : : {
41 [ + - + - ]: 2 : static const auto testing_setup = MakeNoLogFileContext<>();
42 [ + - ]: 2 : }
43 : :
44 [ + - ]: 2714 : FUZZ_TARGET(coins_view, .init = initialize_coins_view)
45 : : {
46 [ + - ]: 2302 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
47 : 2302 : bool good_data{true};
48 : :
49 : 2302 : CCoinsView backend_coins_view;
50 [ + - ]: 2302 : CCoinsViewCache coins_view_cache{&backend_coins_view, /*deterministic=*/true};
51 : 2302 : COutPoint random_out_point;
52 : 2302 : Coin random_coin;
53 [ + - ]: 2302 : CMutableTransaction random_mutable_transaction;
54 [ + + + + : 511236 : LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 10'000)
+ + ]
55 : : {
56 [ + - ]: 253484 : CallOneOf(
57 : : fuzzed_data_provider,
58 : 62578 : [&] {
59 [ + + ]: 62578 : if (random_coin.IsSpent()) {
60 : : return;
61 : : }
62 : 34831 : Coin coin = random_coin;
63 : 34831 : bool expected_code_path = false;
64 : 34831 : const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
65 : 34831 : try {
66 [ + + ]: 34831 : coins_view_cache.AddCoin(random_out_point, std::move(coin), possible_overwrite);
67 : : expected_code_path = true;
68 [ - + ]: 11414 : } catch (const std::logic_error& e) {
69 [ + - + - ]: 11414 : if (e.what() == std::string{"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
70 [ - + ]: 11414 : assert(!possible_overwrite);
71 : : expected_code_path = true;
72 : : }
73 : 0 : }
74 : 11414 : assert(expected_code_path);
75 : 34831 : },
76 : 35502 : [&] {
77 : 35502 : (void)coins_view_cache.Flush();
78 : 35502 : },
79 : 56963 : [&] {
80 : 56963 : (void)coins_view_cache.Sync();
81 : 56963 : },
82 : 1981 : [&] {
83 : 1981 : coins_view_cache.SetBestBlock(ConsumeUInt256(fuzzed_data_provider));
84 : 1981 : },
85 : 39430 : [&] {
86 : 39430 : Coin move_to;
87 [ + + + - ]: 42111 : (void)coins_view_cache.SpendCoin(random_out_point, fuzzed_data_provider.ConsumeBool() ? &move_to : nullptr);
88 : 39430 : },
89 : 9577 : [&] {
90 : 9577 : coins_view_cache.Uncache(random_out_point);
91 : 9577 : },
92 : 4762 : [&] {
93 [ + + ]: 4762 : if (fuzzed_data_provider.ConsumeBool()) {
94 : 4274 : backend_coins_view = CCoinsView{};
95 : : }
96 : 4762 : coins_view_cache.SetBackend(backend_coins_view);
97 : 4762 : },
98 : 5443 : [&] {
99 : 5443 : const std::optional<COutPoint> opt_out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
100 [ + + ]: 5443 : if (!opt_out_point) {
101 : 42 : good_data = false;
102 : 42 : return;
103 : : }
104 : 5401 : random_out_point = *opt_out_point;
105 : : },
106 : 7680 : [&] {
107 : 7680 : const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
108 [ + + ]: 7680 : if (!opt_coin) {
109 : 75 : good_data = false;
110 : 75 : return;
111 : : }
112 : 7605 : random_coin = *opt_coin;
113 : 7680 : },
114 : 9290 : [&] {
115 : 9290 : const std::optional<CMutableTransaction> opt_mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
116 [ + + ]: 9290 : if (!opt_mutable_transaction) {
117 : 183 : good_data = false;
118 [ - + ]: 183 : return;
119 : : }
120 [ + - ]: 9107 : random_mutable_transaction = *opt_mutable_transaction;
121 : 9290 : },
122 : 20278 : [&] {
123 : 20278 : CoinsCachePair sentinel{};
124 : 20278 : sentinel.second.SelfRef(sentinel);
125 : 20278 : size_t usage{0};
126 [ + - ]: 20278 : CCoinsMapMemoryResource resource;
127 [ + - + - ]: 20278 : CCoinsMap coins_map{0, SaltedOutpointHasher{/*deterministic=*/true}, CCoinsMap::key_equal{}, &resource};
128 [ + - + + : 333609 : LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 10'000)
+ + ]
129 : : {
130 : 313367 : CCoinsCacheEntry coins_cache_entry;
131 : 313367 : const auto flags{fuzzed_data_provider.ConsumeIntegral<uint8_t>()};
132 [ + + ]: 313367 : if (fuzzed_data_provider.ConsumeBool()) {
133 : 308463 : coins_cache_entry.coin = random_coin;
134 : : } else {
135 : 4904 : const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
136 [ + + ]: 4904 : if (!opt_coin) {
137 : 36 : good_data = false;
138 : 36 : return;
139 : : }
140 : 4868 : coins_cache_entry.coin = *opt_coin;
141 : 4868 : }
142 [ + - ]: 313331 : auto it{coins_map.emplace(random_out_point, std::move(coins_cache_entry)).first};
143 : 313331 : it->second.AddFlags(flags, *it, sentinel);
144 [ + + ]: 313331 : usage += it->second.coin.DynamicMemoryUsage();
145 : 313367 : }
146 : 20242 : bool expected_code_path = false;
147 : 20242 : try {
148 : 20242 : auto cursor{CoinsViewCacheCursor(usage, sentinel, coins_map, /*will_erase=*/true)};
149 [ + + + - : 20242 : coins_view_cache.BatchWrite(cursor, fuzzed_data_provider.ConsumeBool() ? ConsumeUInt256(fuzzed_data_provider) : coins_view_cache.GetBestBlock());
+ + ]
150 : : expected_code_path = true;
151 [ - + ]: 5885 : } catch (const std::logic_error& e) {
152 [ + - + - ]: 5885 : if (e.what() == std::string{"FRESH flag misapplied to coin that exists in parent cache"}) {
153 : 5885 : expected_code_path = true;
154 : : }
155 : 0 : }
156 : 5885 : assert(expected_code_path);
157 : 20278 : });
158 : : }
159 : :
160 : 2302 : {
161 [ + - ]: 2302 : const Coin& coin_using_access_coin = coins_view_cache.AccessCoin(random_out_point);
162 : 2302 : const bool exists_using_access_coin = !(coin_using_access_coin == EMPTY_COIN);
163 [ + - ]: 2302 : const bool exists_using_have_coin = coins_view_cache.HaveCoin(random_out_point);
164 [ + - ]: 2302 : const bool exists_using_have_coin_in_cache = coins_view_cache.HaveCoinInCache(random_out_point);
165 [ + - + + ]: 2302 : if (auto coin{coins_view_cache.GetCoin(random_out_point)}) {
166 [ - + ]: 1626 : assert(*coin == coin_using_access_coin);
167 [ + - - + ]: 1626 : assert(exists_using_access_coin && exists_using_have_coin_in_cache && exists_using_have_coin);
168 : : } else {
169 [ + - - + ]: 676 : assert(!exists_using_access_coin && !exists_using_have_coin_in_cache && !exists_using_have_coin);
170 : 2302 : }
171 : : // If HaveCoin on the backend is true, it must also be on the cache if the coin wasn't spent.
172 [ + - ]: 2302 : const bool exists_using_have_coin_in_backend = backend_coins_view.HaveCoin(random_out_point);
173 [ + + - + ]: 2302 : if (!coin_using_access_coin.IsSpent() && exists_using_have_coin_in_backend) {
174 [ # # ]: 0 : assert(exists_using_have_coin);
175 : : }
176 [ + - - + ]: 2302 : if (auto coin{backend_coins_view.GetCoin(random_out_point)}) {
177 [ # # ]: 0 : assert(exists_using_have_coin_in_backend);
178 : : // Note we can't assert that `coin_using_get_coin == *coin` because the coin in
179 : : // the cache may have been modified but not yet flushed.
180 : : } else {
181 [ - + ]: 2302 : assert(!exists_using_have_coin_in_backend);
182 : 2302 : }
183 : : }
184 : :
185 : 2302 : {
186 : 2302 : bool expected_code_path = false;
187 : 2302 : try {
188 : 2302 : (void)coins_view_cache.Cursor();
189 [ - + ]: 2302 : } catch (const std::logic_error&) {
190 : 2302 : expected_code_path = true;
191 : 2302 : }
192 : 2302 : assert(expected_code_path);
193 [ + - ]: 2302 : (void)coins_view_cache.DynamicMemoryUsage();
194 [ + - ]: 2302 : (void)coins_view_cache.EstimateSize();
195 [ + - ]: 2302 : (void)coins_view_cache.GetBestBlock();
196 [ + - ]: 2302 : (void)coins_view_cache.GetCacheSize();
197 [ + - ]: 2302 : (void)coins_view_cache.GetHeadBlocks();
198 [ + - + - ]: 2302 : (void)coins_view_cache.HaveInputs(CTransaction{random_mutable_transaction});
199 : : }
200 : :
201 : 2302 : {
202 [ + - ]: 2302 : std::unique_ptr<CCoinsViewCursor> coins_view_cursor = backend_coins_view.Cursor();
203 [ - + ]: 2302 : assert(!coins_view_cursor);
204 : 2302 : (void)backend_coins_view.EstimateSize();
205 [ + - ]: 2302 : (void)backend_coins_view.GetBestBlock();
206 [ + - ]: 2302 : (void)backend_coins_view.GetHeadBlocks();
207 : 2302 : }
208 : :
209 [ + + ]: 2302 : if (fuzzed_data_provider.ConsumeBool()) {
210 [ + - ]: 1788 : CallOneOf(
211 : : fuzzed_data_provider,
212 : 147 : [&] {
213 : 147 : const CTransaction transaction{random_mutable_transaction};
214 : 147 : bool is_spent = false;
215 [ + + ]: 910869 : for (const CTxOut& tx_out : transaction.vout) {
216 [ + + ]: 910722 : if (Coin{tx_out, 0, transaction.IsCoinBase()}.IsSpent()) {
217 : 13 : is_spent = true;
218 : : }
219 : : }
220 [ + + ]: 147 : if (is_spent) {
221 : : // Avoid:
222 : : // coins.cpp:69: void CCoinsViewCache::AddCoin(const COutPoint &, Coin &&, bool): Assertion `!coin.IsSpent()' failed.
223 : 6 : return;
224 : : }
225 : 141 : bool expected_code_path = false;
226 : 141 : const int height{int(fuzzed_data_provider.ConsumeIntegral<uint32_t>() >> 1)};
227 : 141 : const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
228 : 141 : try {
229 [ + + ]: 141 : AddCoins(coins_view_cache, transaction, height, possible_overwrite);
230 : : expected_code_path = true;
231 [ - + ]: 2 : } catch (const std::logic_error& e) {
232 [ + - + - ]: 2 : if (e.what() == std::string{"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
233 [ - + ]: 2 : assert(!possible_overwrite);
234 : : expected_code_path = true;
235 : : }
236 : 0 : }
237 : 2 : assert(expected_code_path);
238 : 147 : },
239 : 1028 : [&] {
240 [ + - ]: 1028 : (void)AreInputsStandard(CTransaction{random_mutable_transaction}, coins_view_cache);
241 : 1028 : },
242 : 115 : [&] {
243 [ + - ]: 115 : TxValidationState state;
244 : 115 : CAmount tx_fee_out;
245 [ + - ]: 115 : const CTransaction transaction{random_mutable_transaction};
246 [ + + ]: 115 : if (ContainsSpentInput(transaction, coins_view_cache)) {
247 : : // Avoid:
248 : : // consensus/tx_verify.cpp:171: bool Consensus::CheckTxInputs(const CTransaction &, TxValidationState &, const CCoinsViewCache &, int, CAmount &): Assertion `!coin.IsSpent()' failed.
249 : : return;
250 : : }
251 [ + - ]: 102 : TxValidationState dummy;
252 [ + - + + ]: 102 : if (!CheckTransaction(transaction, dummy)) {
253 : : // It is not allowed to call CheckTxInputs if CheckTransaction failed
254 : 66 : return;
255 : : }
256 [ + - + + ]: 36 : if (Consensus::CheckTxInputs(transaction, state, coins_view_cache, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, std::numeric_limits<int>::max()), tx_fee_out)) {
257 [ - + ]: 3 : assert(MoneyRange(tx_fee_out));
258 : : }
259 : 332 : },
260 : 57 : [&] {
261 : 57 : const CTransaction transaction{random_mutable_transaction};
262 [ + + ]: 57 : if (ContainsSpentInput(transaction, coins_view_cache)) {
263 : : // Avoid:
264 : : // consensus/tx_verify.cpp:130: unsigned int GetP2SHSigOpCount(const CTransaction &, const CCoinsViewCache &): Assertion `!coin.IsSpent()' failed.
265 : 27 : return;
266 : : }
267 [ + - ]: 30 : (void)GetP2SHSigOpCount(transaction, coins_view_cache);
268 : 57 : },
269 : 271 : [&] {
270 : 271 : const CTransaction transaction{random_mutable_transaction};
271 [ + + ]: 271 : if (ContainsSpentInput(transaction, coins_view_cache)) {
272 : : // Avoid:
273 : : // consensus/tx_verify.cpp:130: unsigned int GetP2SHSigOpCount(const CTransaction &, const CCoinsViewCache &): Assertion `!coin.IsSpent()' failed.
274 : : return;
275 : : }
276 : 258 : const auto flags{fuzzed_data_provider.ConsumeIntegral<uint32_t>()};
277 [ + + + + ]: 258 : if (!transaction.vin.empty() && (flags & SCRIPT_VERIFY_WITNESS) != 0 && (flags & SCRIPT_VERIFY_P2SH) == 0) {
278 : : // Avoid:
279 : : // script/interpreter.cpp:1705: size_t CountWitnessSigOps(const CScript &, const CScript &, const CScriptWitness *, unsigned int): Assertion `(flags & SCRIPT_VERIFY_P2SH) != 0' failed.
280 : : return;
281 : : }
282 [ + - ]: 257 : (void)GetTransactionSigOpCost(transaction, coins_view_cache, flags);
283 : 271 : },
284 : 170 : [&] {
285 [ + - ]: 170 : (void)IsWitnessStandard(CTransaction{random_mutable_transaction}, coins_view_cache);
286 : 170 : });
287 : : }
288 : 2302 : }
|