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 : 4373 : bool operator==(const Coin& a, const Coin& b)
33 : : {
34 [ + + - + ]: 4373 : if (a.IsSpent() && b.IsSpent()) return true;
35 [ + + + + : 3468 : 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 [ + - ]: 3053 : FUZZ_TARGET(coins_view, .init = initialize_coins_view)
45 : : {
46 [ + - ]: 2639 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
47 : 2639 : bool good_data{true};
48 : :
49 : 2639 : CCoinsView backend_coins_view;
50 [ + - ]: 2639 : CCoinsViewCache coins_view_cache{&backend_coins_view, /*deterministic=*/true};
51 : 2639 : COutPoint random_out_point;
52 : 2639 : Coin random_coin;
53 [ + - ]: 2639 : CMutableTransaction random_mutable_transaction;
54 [ + + + + : 230420 : LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 10'000)
+ + ]
55 : : {
56 [ + - ]: 112789 : CallOneOf(
57 : : fuzzed_data_provider,
58 : 51987 : [&] {
59 [ + + ]: 51987 : if (random_coin.IsSpent()) {
60 : : return;
61 : : }
62 : 23805 : Coin coin = random_coin;
63 : 23805 : bool expected_code_path = false;
64 : 23805 : const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
65 : 23805 : try {
66 [ + + ]: 23805 : coins_view_cache.AddCoin(random_out_point, std::move(coin), possible_overwrite);
67 : : expected_code_path = true;
68 [ - + ]: 12783 : } catch (const std::logic_error& e) {
69 [ + - + - ]: 12783 : if (e.what() == std::string{"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
70 [ - + ]: 12783 : assert(!possible_overwrite);
71 : : expected_code_path = true;
72 : : }
73 : 0 : }
74 : 12783 : assert(expected_code_path);
75 : 23805 : },
76 : 2672 : [&] {
77 : 2672 : (void)coins_view_cache.Flush();
78 : 2672 : },
79 : 20715 : [&] {
80 : 20715 : (void)coins_view_cache.Sync();
81 : 20715 : },
82 : 1966 : [&] {
83 : 1966 : coins_view_cache.SetBestBlock(ConsumeUInt256(fuzzed_data_provider));
84 : 1966 : },
85 : 5446 : [&] {
86 : 5446 : Coin move_to;
87 [ + + + - ]: 7725 : (void)coins_view_cache.SpendCoin(random_out_point, fuzzed_data_provider.ConsumeBool() ? &move_to : nullptr);
88 : 5446 : },
89 : 3143 : [&] {
90 : 3143 : coins_view_cache.Uncache(random_out_point);
91 : 3143 : },
92 : 2775 : [&] {
93 [ + + ]: 2775 : if (fuzzed_data_provider.ConsumeBool()) {
94 : 2242 : backend_coins_view = CCoinsView{};
95 : : }
96 : 2775 : coins_view_cache.SetBackend(backend_coins_view);
97 : 2775 : },
98 : 839 : [&] {
99 : 839 : const std::optional<COutPoint> opt_out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
100 [ + + ]: 839 : if (!opt_out_point) {
101 : 45 : good_data = false;
102 : 45 : return;
103 : : }
104 : 794 : random_out_point = *opt_out_point;
105 : : },
106 : 8085 : [&] {
107 : 8085 : const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
108 [ + + ]: 8085 : if (!opt_coin) {
109 : 90 : good_data = false;
110 : 90 : return;
111 : : }
112 : 7995 : random_coin = *opt_coin;
113 : 8085 : },
114 : 10074 : [&] {
115 : 10074 : const std::optional<CMutableTransaction> opt_mutable_transaction = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider, TX_WITH_WITNESS);
116 [ + + ]: 10074 : if (!opt_mutable_transaction) {
117 : 183 : good_data = false;
118 [ - + ]: 183 : return;
119 : : }
120 [ + - ]: 9891 : random_mutable_transaction = *opt_mutable_transaction;
121 : 10074 : },
122 : 5087 : [&] {
123 : 5087 : CoinsCachePair sentinel{};
124 : 5087 : sentinel.second.SelfRef(sentinel);
125 : 5087 : size_t usage{0};
126 [ + - ]: 5087 : CCoinsMapMemoryResource resource;
127 [ + - + - ]: 5087 : CCoinsMap coins_map{0, SaltedOutpointHasher{/*deterministic=*/true}, CCoinsMap::key_equal{}, &resource};
128 [ + - + + : 74750 : LIMITED_WHILE(good_data && fuzzed_data_provider.ConsumeBool(), 10'000)
+ + ]
129 : : {
130 : 69781 : CCoinsCacheEntry coins_cache_entry;
131 : 69781 : const auto dirty{fuzzed_data_provider.ConsumeBool()};
132 : 69781 : const auto fresh{fuzzed_data_provider.ConsumeBool()};
133 [ + + ]: 69781 : if (fuzzed_data_provider.ConsumeBool()) {
134 : 69070 : coins_cache_entry.coin = random_coin;
135 : : } else {
136 : 711 : const std::optional<Coin> opt_coin = ConsumeDeserializable<Coin>(fuzzed_data_provider);
137 [ + + ]: 711 : if (!opt_coin) {
138 : 118 : good_data = false;
139 : 118 : return;
140 : : }
141 : 593 : coins_cache_entry.coin = *opt_coin;
142 : 593 : }
143 [ + - ]: 69663 : auto it{coins_map.emplace(random_out_point, std::move(coins_cache_entry)).first};
144 [ + + ]: 69663 : if (dirty) CCoinsCacheEntry::SetDirty(*it, sentinel);
145 [ + + ]: 69663 : if (fresh) CCoinsCacheEntry::SetFresh(*it, sentinel);
146 [ + + ]: 69663 : usage += it->second.coin.DynamicMemoryUsage();
147 : 69781 : }
148 : 4969 : bool expected_code_path = false;
149 : 4969 : try {
150 : 4969 : auto cursor{CoinsViewCacheCursor(usage, sentinel, coins_map, /*will_erase=*/true)};
151 [ + + + - : 4969 : coins_view_cache.BatchWrite(cursor, fuzzed_data_provider.ConsumeBool() ? ConsumeUInt256(fuzzed_data_provider) : coins_view_cache.GetBestBlock());
+ + ]
152 : : expected_code_path = true;
153 [ - + ]: 202 : } catch (const std::logic_error& e) {
154 [ + - + - ]: 202 : if (e.what() == std::string{"FRESH flag misapplied to coin that exists in parent cache"}) {
155 : 202 : expected_code_path = true;
156 : : }
157 : 0 : }
158 : 202 : assert(expected_code_path);
159 : 5087 : });
160 : : }
161 : :
162 : 2639 : {
163 [ + - ]: 2639 : const Coin& coin_using_access_coin = coins_view_cache.AccessCoin(random_out_point);
164 : 2639 : const bool exists_using_access_coin = !(coin_using_access_coin == EMPTY_COIN);
165 [ + - ]: 2639 : const bool exists_using_have_coin = coins_view_cache.HaveCoin(random_out_point);
166 [ + - ]: 2639 : const bool exists_using_have_coin_in_cache = coins_view_cache.HaveCoinInCache(random_out_point);
167 [ + - + + ]: 2639 : if (auto coin{coins_view_cache.GetCoin(random_out_point)}) {
168 [ - + ]: 1734 : assert(*coin == coin_using_access_coin);
169 [ + - - + ]: 1734 : assert(exists_using_access_coin && exists_using_have_coin_in_cache && exists_using_have_coin);
170 : : } else {
171 [ + - - + ]: 905 : assert(!exists_using_access_coin && !exists_using_have_coin_in_cache && !exists_using_have_coin);
172 : 2639 : }
173 : : // If HaveCoin on the backend is true, it must also be on the cache if the coin wasn't spent.
174 [ + - ]: 2639 : const bool exists_using_have_coin_in_backend = backend_coins_view.HaveCoin(random_out_point);
175 [ + + - + ]: 2639 : if (!coin_using_access_coin.IsSpent() && exists_using_have_coin_in_backend) {
176 [ # # ]: 0 : assert(exists_using_have_coin);
177 : : }
178 [ + - - + ]: 2639 : if (auto coin{backend_coins_view.GetCoin(random_out_point)}) {
179 [ # # ]: 0 : assert(exists_using_have_coin_in_backend);
180 : : // Note we can't assert that `coin_using_get_coin == *coin` because the coin in
181 : : // the cache may have been modified but not yet flushed.
182 : : } else {
183 [ - + ]: 2639 : assert(!exists_using_have_coin_in_backend);
184 : 2639 : }
185 : : }
186 : :
187 : 2639 : {
188 : 2639 : bool expected_code_path = false;
189 : 2639 : try {
190 : 2639 : (void)coins_view_cache.Cursor();
191 [ - + ]: 2639 : } catch (const std::logic_error&) {
192 : 2639 : expected_code_path = true;
193 : 2639 : }
194 : 2639 : assert(expected_code_path);
195 [ + - ]: 2639 : (void)coins_view_cache.DynamicMemoryUsage();
196 [ + - ]: 2639 : (void)coins_view_cache.EstimateSize();
197 [ + - ]: 2639 : (void)coins_view_cache.GetBestBlock();
198 [ + - ]: 2639 : (void)coins_view_cache.GetCacheSize();
199 [ + - ]: 2639 : (void)coins_view_cache.GetHeadBlocks();
200 [ + - + - ]: 2639 : (void)coins_view_cache.HaveInputs(CTransaction{random_mutable_transaction});
201 : : }
202 : :
203 : 2639 : {
204 [ + - ]: 2639 : std::unique_ptr<CCoinsViewCursor> coins_view_cursor = backend_coins_view.Cursor();
205 [ - + ]: 2639 : assert(!coins_view_cursor);
206 : 2639 : (void)backend_coins_view.EstimateSize();
207 [ + - ]: 2639 : (void)backend_coins_view.GetBestBlock();
208 [ + - ]: 2639 : (void)backend_coins_view.GetHeadBlocks();
209 : 2639 : }
210 : :
211 [ + + ]: 2639 : if (fuzzed_data_provider.ConsumeBool()) {
212 [ + - ]: 2047 : CallOneOf(
213 : : fuzzed_data_provider,
214 : 184 : [&] {
215 : 184 : const CTransaction transaction{random_mutable_transaction};
216 : 184 : bool is_spent = false;
217 [ + + ]: 1894269 : for (const CTxOut& tx_out : transaction.vout) {
218 [ + + ]: 1894085 : if (Coin{tx_out, 0, transaction.IsCoinBase()}.IsSpent()) {
219 : 13 : is_spent = true;
220 : : }
221 : : }
222 [ + + ]: 184 : if (is_spent) {
223 : : // Avoid:
224 : : // coins.cpp:69: void CCoinsViewCache::AddCoin(const COutPoint &, Coin &&, bool): Assertion `!coin.IsSpent()' failed.
225 : 6 : return;
226 : : }
227 : 178 : bool expected_code_path = false;
228 : 178 : const int height{int(fuzzed_data_provider.ConsumeIntegral<uint32_t>() >> 1)};
229 : 178 : const bool possible_overwrite = fuzzed_data_provider.ConsumeBool();
230 : 178 : try {
231 [ + - ]: 178 : AddCoins(coins_view_cache, transaction, height, possible_overwrite);
232 : : expected_code_path = true;
233 [ - - ]: 0 : } catch (const std::logic_error& e) {
234 [ - - - - ]: 0 : if (e.what() == std::string{"Attempted to overwrite an unspent coin (when possible_overwrite is false)"}) {
235 [ - - ]: 0 : assert(!possible_overwrite);
236 : : expected_code_path = true;
237 : : }
238 : 0 : }
239 : 0 : assert(expected_code_path);
240 : 184 : },
241 : 1193 : [&] {
242 [ + - ]: 1193 : (void)AreInputsStandard(CTransaction{random_mutable_transaction}, coins_view_cache);
243 : 1193 : },
244 : 117 : [&] {
245 [ + - ]: 117 : TxValidationState state;
246 : 117 : CAmount tx_fee_out;
247 [ + - ]: 117 : const CTransaction transaction{random_mutable_transaction};
248 [ + + ]: 117 : if (ContainsSpentInput(transaction, coins_view_cache)) {
249 : : // Avoid:
250 : : // consensus/tx_verify.cpp:171: bool Consensus::CheckTxInputs(const CTransaction &, TxValidationState &, const CCoinsViewCache &, int, CAmount &): Assertion `!coin.IsSpent()' failed.
251 : : return;
252 : : }
253 [ + - ]: 102 : TxValidationState dummy;
254 [ + - + + ]: 102 : if (!CheckTransaction(transaction, dummy)) {
255 : : // It is not allowed to call CheckTxInputs if CheckTransaction failed
256 : 66 : return;
257 : : }
258 [ + - + + ]: 36 : if (Consensus::CheckTxInputs(transaction, state, coins_view_cache, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, std::numeric_limits<int>::max()), tx_fee_out)) {
259 [ - + ]: 3 : assert(MoneyRange(tx_fee_out));
260 : : }
261 : 336 : },
262 : 87 : [&] {
263 : 87 : const CTransaction transaction{random_mutable_transaction};
264 [ + + ]: 87 : if (ContainsSpentInput(transaction, coins_view_cache)) {
265 : : // Avoid:
266 : : // consensus/tx_verify.cpp:130: unsigned int GetP2SHSigOpCount(const CTransaction &, const CCoinsViewCache &): Assertion `!coin.IsSpent()' failed.
267 : 28 : return;
268 : : }
269 [ + - ]: 59 : (void)GetP2SHSigOpCount(transaction, coins_view_cache);
270 : 87 : },
271 : 224 : [&] {
272 : 224 : const CTransaction transaction{random_mutable_transaction};
273 [ + + ]: 224 : if (ContainsSpentInput(transaction, coins_view_cache)) {
274 : : // Avoid:
275 : : // consensus/tx_verify.cpp:130: unsigned int GetP2SHSigOpCount(const CTransaction &, const CCoinsViewCache &): Assertion `!coin.IsSpent()' failed.
276 : : return;
277 : : }
278 : 210 : const auto flags{fuzzed_data_provider.ConsumeIntegral<uint32_t>()};
279 [ + + + + ]: 210 : if (!transaction.vin.empty() && (flags & SCRIPT_VERIFY_WITNESS) != 0 && (flags & SCRIPT_VERIFY_P2SH) == 0) {
280 : : // Avoid:
281 : : // script/interpreter.cpp:1705: size_t CountWitnessSigOps(const CScript &, const CScript &, const CScriptWitness *, unsigned int): Assertion `(flags & SCRIPT_VERIFY_P2SH) != 0' failed.
282 : : return;
283 : : }
284 [ + - ]: 209 : (void)GetTransactionSigOpCost(transaction, coins_view_cache, flags);
285 : 224 : },
286 : 242 : [&] {
287 [ + - ]: 242 : (void)IsWitnessStandard(CTransaction{random_mutable_transaction}, coins_view_cache);
288 : 242 : });
289 : : }
290 : 2639 : }
|