Branch data Line data Source code
1 : : // Copyright (c) 2020-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 <addrman.h>
6 : : #include <banman.h>
7 : : #include <kernel/chainparams.h>
8 : : #include <net.h>
9 : : #include <net_processing.h>
10 : : #include <primitives/block.h>
11 : : #include <primitives/transaction.h>
12 : : #include <protocol.h>
13 : : #include <sync.h>
14 : : #include <test/fuzz/FuzzedDataProvider.h>
15 : : #include <test/fuzz/fuzz.h>
16 : : #include <test/fuzz/util.h>
17 : : #include <test/fuzz/util/net.h>
18 : : #include <test/util/net.h>
19 : : #include <test/util/random.h>
20 : : #include <test/util/setup_common.h>
21 : : #include <test/util/time.h>
22 : : #include <test/util/validation.h>
23 : : #include <uint256.h>
24 : : #include <util/check.h>
25 : : #include <util/time.h>
26 : : #include <validation.h>
27 : : #include <validationinterface.h>
28 : :
29 : : #include <functional>
30 : : #include <ios>
31 : : #include <memory>
32 : : #include <optional>
33 : : #include <string>
34 : : #include <utility>
35 : : #include <vector>
36 : :
37 : : namespace {
38 : : TestingSetup* g_setup;
39 : :
40 : : } // namespace
41 : :
42 : : extern void MakeRandDeterministicDANGEROUS(const uint256& seed) noexcept;
43 : :
44 : 1 : void initialize_process_messages()
45 : : {
46 : 1 : FakeNodeClock init_clock{}; // Uses the existing mock time
47 : 1 : static const auto testing_setup{
48 : : MakeNoLogFileContext<TestingSetup>(
49 : : /*chain_type=*/ChainType::REGTEST,
50 : : {}),
51 [ + - + - : 1 : };
+ - ]
52 [ + - ]: 1 : g_setup = testing_setup.get();
53 : : // Replace validation_signals before creating chainman and mempool so they use it.
54 [ + - + - ]: 1 : g_setup->m_node.validation_signals = std::make_unique<ValidationSignals>(std::make_unique<ImmediateBackgroundTaskRunner>());
55 [ + - ]: 2 : ResetChainmanAndMempool(*g_setup, init_clock);
56 : 1 : }
57 : :
58 [ + - ]: 5845 : FUZZ_TARGET(process_messages, .init = initialize_process_messages)
59 : : {
60 : 5371 : SeedRandomStateForTest(SeedRand::ZEROS);
61 : 5371 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
62 : :
63 : 5371 : auto& node{g_setup->m_node};
64 : 5371 : auto& connman{static_cast<ConnmanTestMsg&>(*node.connman)};
65 : 5371 : connman.Reset();
66 : 5371 : auto& chainman{static_cast<TestChainstateManager&>(*node.chainman)};
67 [ + - ]: 10742 : const auto block_index_size{WITH_LOCK(chainman.GetMutex(), return chainman.BlockIndex().size())};
68 [ + - ]: 10742 : const auto initial_sequence{WITH_LOCK(node.mempool->cs, return node.mempool->GetSequence())};
69 : 5371 : FakeNodeClock node_clock{1610000000s}; // 2021-01-07, arbitrary
70 [ + - ]: 5371 : FakeSteadyClock steady_clock;
71 [ + - ]: 5371 : chainman.ResetIbd();
72 [ + - ]: 5371 : chainman.DisableNextWrite();
73 : :
74 : : // Reset, so that dangling pointers can be detected by sanitizers.
75 [ + + ]: 5371 : node.banman.reset();
76 [ + - ]: 5371 : node.addrman.reset();
77 [ + - ]: 5371 : node.peerman.reset();
78 [ + - ]: 5371 : node.addrman = std::make_unique<AddrMan>(*node.netgroupman, /*deterministic=*/true, /*consistency_check_ratio=*/0);
79 : 10742 : node.peerman = PeerManager::make(connman, *node.addrman,
80 : : /*banman=*/nullptr, chainman,
81 [ + - ]: 5371 : *node.mempool, *node.warnings,
82 : : PeerManager::Options{
83 : : .reconcile_txs = true,
84 : : .deterministic_rng = true,
85 : 5371 : });
86 [ + - ]: 5371 : connman.SetMsgProc(node.peerman.get());
87 [ + - ]: 5371 : connman.SetAddrman(*node.addrman);
88 : :
89 [ + - ]: 5371 : node.validation_signals->RegisterValidationInterface(node.peerman.get());
90 : :
91 [ + - ]: 5371 : LOCK(NetEventsInterface::g_msgproc_mutex);
92 : :
93 : 5371 : std::vector<CNode*> peers;
94 : 5371 : const auto num_peers_to_add = fuzzed_data_provider.ConsumeIntegralInRange(1, 3);
95 [ + + ]: 14558 : for (int i = 0; i < num_peers_to_add; ++i) {
96 [ + - ]: 9187 : peers.push_back(ConsumeNodeAsUniquePtr(fuzzed_data_provider, steady_clock, i).release());
97 : 9187 : CNode& p2p_node = *peers.back();
98 : :
99 : 9187 : FillNode(fuzzed_data_provider, connman, p2p_node);
100 : :
101 [ + - ]: 9187 : connman.AddTestNode(p2p_node);
102 : : }
103 : :
104 : : // Toggle IBD from within the loop, so that some messages may be processed
105 : : // under IBD and the rest after leaving it. JumpOutOfIbd() latches, so guard
106 : : // it to call at most once.
107 : : bool jump_out_of_ibd{false};
108 [ + + + + ]: 68456 : LIMITED_WHILE (fuzzed_data_provider.ConsumeBool(), 30) {
109 [ + + ]: 63085 : if (!jump_out_of_ibd) jump_out_of_ibd = fuzzed_data_provider.ConsumeBool();
110 [ + + + + : 63085 : if (jump_out_of_ibd && chainman.IsInitialBlockDownload()) chainman.JumpOutOfIbd();
+ - ]
111 [ + - + - ]: 63085 : const std::string random_message_type{fuzzed_data_provider.ConsumeBytesAsString(CMessageHeader::MESSAGE_TYPE_SIZE).c_str()};
112 : :
113 [ + - ]: 63085 : node_clock.set(ConsumeTime(fuzzed_data_provider));
114 : :
115 [ + - ]: 63085 : CSerializedNetMsg net_msg;
116 [ + - ]: 63085 : net_msg.m_type = random_message_type;
117 : 63085 : net_msg.data = ConsumeRandomLengthByteVector(fuzzed_data_provider, MAX_PROTOCOL_MESSAGE_LENGTH);
118 : :
119 : 63085 : CNode& random_node = *PickValue(fuzzed_data_provider, peers);
120 : :
121 [ + - ]: 63085 : connman.FlushSendBuffer(random_node);
122 [ + - ]: 63085 : (void)connman.ReceiveMsgFrom(random_node, std::move(net_msg));
123 : :
124 : : bool more_work{true};
125 [ + + ]: 367350 : while (more_work) { // Ensure that every message is eventually processed in some way or another
126 [ + - ]: 304265 : random_node.fPauseSend = false;
127 : :
128 : 304265 : try {
129 [ + - ]: 304265 : more_work = connman.ProcessMessagesOnce(random_node);
130 [ - - ]: 0 : } catch (const std::ios_base::failure&) {
131 : 0 : }
132 [ + - ]: 304265 : node.peerman->SendMessages(random_node);
133 : : }
134 : 63085 : }
135 [ + - ]: 5371 : node.validation_signals->SyncWithValidationInterfaceQueue();
136 [ + - ]: 5371 : node.validation_signals->UnregisterValidationInterface(node.peerman.get());
137 [ + - ]: 5371 : node.connman->StopNodes();
138 [ + - ][ + - ]: 10742 : const auto end_sequence{WITH_LOCK(node.mempool->cs, return node.mempool->GetSequence())};
139 [ + - ][ + - : 10742 : if (block_index_size != WITH_LOCK(chainman.GetMutex(), return chainman.BlockIndex().size()) || initial_sequence != end_sequence) {
+ + - + ]
140 : : // Reuse the global chainman and mempool, but reset them when dirty.
141 : 185 : MakeRandDeterministicDANGEROUS(uint256::ZERO);
142 [ + - ]: 370 : ResetChainmanAndMempool(*g_setup, node_clock);
143 : : }
144 [ + - ]: 10742 : }
|