Branch data Line data Source code
1 : : // Copyright (c) 2024-present 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 <test/fuzz/FuzzedDataProvider.h>
6 : : #include <test/fuzz/fuzz.h>
7 : : #include <test/fuzz/util.h>
8 : : #include <test/fuzz/util/wallet.h>
9 : : #include <test/util/random.h>
10 : : #include <test/util/setup_common.h>
11 : : #include <util/time.h>
12 : : #include <wallet/coincontrol.h>
13 : : #include <wallet/context.h>
14 : : #include <wallet/spend.h>
15 : : #include <wallet/test/util.h>
16 : : #include <wallet/wallet.h>
17 : : #include <validation.h>
18 : : #include <addresstype.h>
19 : :
20 : : using util::ToString;
21 : :
22 : : namespace wallet {
23 : : namespace {
24 : : const TestingSetup* g_setup;
25 : :
26 : 1 : void initialize_setup()
27 : : {
28 [ + - + - ]: 2 : static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
29 : 1 : g_setup = testing_setup.get();
30 [ + - ]: 2 : }
31 : :
32 [ + - ]: 2250 : FUZZ_TARGET(wallet_create_transaction, .init = initialize_setup)
33 : : {
34 : 1836 : SeedRandomStateForTest(SeedRand::ZEROS);
35 : 1836 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
36 : 1836 : SetMockTime(ConsumeTime(fuzzed_data_provider));
37 : 1836 : const auto& node = g_setup->m_node;
38 : 1836 : Chainstate& chainstate{node.chainman->ActiveChainstate()};
39 : 1836 : ArgsManager& args = *node.args;
40 [ + - + - ]: 3672 : args.ForceSetArg("-dustrelayfee", ToString(fuzzed_data_provider.ConsumeIntegralInRange<CAmount>(0, MAX_MONEY)));
41 : 1836 : FuzzedWallet fuzzed_wallet{
42 : 1836 : *g_setup->m_node.chain,
43 : : "fuzzed_wallet_a",
44 : : "tprv8ZgxMBicQKsPd1QwsGgzfu2pcPYbBosZhJknqreRHgsWx32nNEhMjGQX2cgFL8n6wz9xdDYwLcs78N4nsCo32cxEX8RBtwGsEGgybLiQJfk",
45 [ + - + - ]: 3672 : };
46 : :
47 [ + - ]: 1836 : CCoinControl coin_control;
48 [ + + ]: 1836 : if (fuzzed_data_provider.ConsumeBool()) coin_control.m_version = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
49 : 1836 : coin_control.m_avoid_partial_spends = fuzzed_data_provider.ConsumeBool();
50 : 1836 : coin_control.m_include_unsafe_inputs = fuzzed_data_provider.ConsumeBool();
51 [ + + ]: 1836 : if (fuzzed_data_provider.ConsumeBool()) coin_control.m_confirm_target = fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(0, 999'000);
52 [ + + + - ]: 3672 : coin_control.destChange = fuzzed_data_provider.ConsumeBool() ? fuzzed_wallet.GetDestination(fuzzed_data_provider) : ConsumeTxDestination(fuzzed_data_provider);
53 [ + + ]: 1836 : if (fuzzed_data_provider.ConsumeBool()) coin_control.m_change_type = fuzzed_data_provider.PickValueInArray(OUTPUT_TYPES);
54 [ + + - + ]: 1836 : if (fuzzed_data_provider.ConsumeBool()) coin_control.m_feerate = CFeeRate(ConsumeMoney(fuzzed_data_provider, /*max=*/COIN));
55 : 1836 : coin_control.m_allow_other_inputs = fuzzed_data_provider.ConsumeBool();
56 : 1836 : coin_control.m_locktime = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
57 : 1836 : coin_control.fOverrideFeeRate = fuzzed_data_provider.ConsumeBool();
58 : :
59 : 1836 : int next_locktime{0};
60 : 1836 : CAmount all_values{0};
61 [ + + + - ]: 16134 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000)
62 : : {
63 [ + - ]: 14534 : CMutableTransaction tx;
64 : 14534 : tx.nLockTime = next_locktime++;
65 [ + - ]: 14534 : tx.vout.resize(1);
66 : 14534 : CAmount n_value{ConsumeMoney(fuzzed_data_provider)};
67 : 14534 : all_values += n_value;
68 [ + + ]: 14534 : if (all_values > MAX_MONEY) return;
69 [ + - ]: 14298 : tx.vout[0].nValue = n_value;
70 [ + - + - ]: 14298 : tx.vout[0].scriptPubKey = GetScriptForDestination(fuzzed_wallet.GetDestination(fuzzed_data_provider));
71 [ + - ]: 14298 : LOCK(fuzzed_wallet.wallet->cs_wallet);
72 [ + - ]: 14298 : auto txid{tx.GetHash()};
73 [ + - + - : 42894 : auto ret{fuzzed_wallet.wallet->mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(txid), std::forward_as_tuple(MakeTransactionRef(std::move(tx)), TxStateConfirmed{chainstate.m_chain.Tip()->GetBlockHash(), chainstate.m_chain.Height(), /*index=*/0}))};
+ - - + ]
74 [ - + ]: 14298 : assert(ret.second);
75 : 28596 : }
76 : :
77 : 1600 : std::vector<CRecipient> recipients;
78 [ + + + + ]: 7307 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 100) {
79 : 5707 : CTxDestination destination;
80 [ + - ]: 5707 : CallOneOf(
81 : : fuzzed_data_provider,
82 : 2798 : [&] {
83 : 2798 : destination = fuzzed_wallet.GetDestination(fuzzed_data_provider);
84 : 2798 : },
85 : 2205 : [&] {
86 : 2205 : CScript script;
87 [ + - ]: 2205 : script << OP_RETURN;
88 : 2205 : destination = CNoDestination{script};
89 : 2205 : },
90 : 704 : [&] {
91 : 704 : destination = ConsumeTxDestination(fuzzed_data_provider);
92 : 704 : }
93 : : );
94 [ + - ]: 11414 : recipients.push_back({destination,
95 : 5707 : /*nAmount=*/ConsumeMoney(fuzzed_data_provider),
96 : 5707 : /*fSubtractFeeFromAmount=*/fuzzed_data_provider.ConsumeBool()});
97 : 5707 : }
98 : :
99 : 1600 : std::optional<unsigned int> change_pos;
100 [ + + ]: 1600 : if (fuzzed_data_provider.ConsumeBool()) change_pos = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
101 [ + - ]: 1600 : (void)CreateTransaction(*fuzzed_wallet.wallet, recipients, change_pos, coin_control);
102 [ + - + - : 9379 : }
+ - ]
103 : : } // namespace
104 : : } // namespace wallet
|