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 <consensus/consensus.h>
6 : : #include <net.h>
7 : : #include <net_processing.h>
8 : : #include <primitives/transaction.h>
9 : : #include <protocol.h>
10 : : #include <script/script.h>
11 : : #include <sync.h>
12 : : #include <test/fuzz/FuzzedDataProvider.h>
13 : : #include <test/fuzz/fuzz.h>
14 : : #include <test/fuzz/util.h>
15 : : #include <test/fuzz/util/net.h>
16 : : #include <test/util/mining.h>
17 : : #include <test/util/net.h>
18 : : #include <test/util/setup_common.h>
19 : : #include <test/util/validation.h>
20 : : #include <util/check.h>
21 : : #include <util/time.h>
22 : : #include <validationinterface.h>
23 : :
24 : : #include <cstdlib>
25 : : #include <iostream>
26 : : #include <memory>
27 : : #include <string>
28 : : #include <string_view>
29 : : #include <vector>
30 : :
31 : : namespace {
32 : : const TestingSetup* g_setup;
33 : : std::string_view LIMIT_TO_MESSAGE_TYPE{};
34 : : } // namespace
35 : :
36 : 1 : void initialize_process_message()
37 : : {
38 [ - + ]: 1 : if (const auto val{std::getenv("LIMIT_TO_MESSAGE_TYPE")}) {
39 : 0 : LIMIT_TO_MESSAGE_TYPE = val;
40 : 0 : Assert(std::count(ALL_NET_MESSAGE_TYPES.begin(), ALL_NET_MESSAGE_TYPES.end(), LIMIT_TO_MESSAGE_TYPE)); // Unknown message type passed
41 : : }
42 : :
43 : 1 : static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(
44 : : /*chain_type=*/ChainType::REGTEST,
45 [ + - + - : 2 : {.extra_args = {"-txreconciliation"}});
+ - ]
46 : 1 : g_setup = testing_setup.get();
47 [ + + ]: 201 : for (int i = 0; i < 2 * COINBASE_MATURITY; i++) {
48 [ + - + - ]: 400 : MineBlock(g_setup->m_node, CScript() << OP_TRUE);
49 : : }
50 : 1 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
51 [ + - ]: 2 : }
52 : :
53 [ + - ]: 3445 : FUZZ_TARGET(process_message, .init = initialize_process_message)
54 : : {
55 : 3033 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
56 : :
57 : 3033 : ConnmanTestMsg& connman = *static_cast<ConnmanTestMsg*>(g_setup->m_node.connman.get());
58 : 3033 : auto& chainman = static_cast<TestChainstateManager&>(*g_setup->m_node.chainman);
59 : 3033 : SetMockTime(1610000000); // any time to successfully reset ibd
60 : 3033 : chainman.ResetIbd();
61 : :
62 : 3033 : LOCK(NetEventsInterface::g_msgproc_mutex);
63 : :
64 [ + - + - ]: 3033 : const std::string random_message_type{fuzzed_data_provider.ConsumeBytesAsString(CMessageHeader::MESSAGE_TYPE_SIZE).c_str()};
65 [ - + - - ]: 3033 : if (!LIMIT_TO_MESSAGE_TYPE.empty() && random_message_type != LIMIT_TO_MESSAGE_TYPE) {
66 : 0 : return;
67 : : }
68 : 3033 : CNode& p2p_node = *ConsumeNodeAsUniquePtr(fuzzed_data_provider).release();
69 : :
70 [ + - ]: 3033 : connman.AddTestNode(p2p_node);
71 : 3033 : FillNode(fuzzed_data_provider, connman, p2p_node);
72 : :
73 : 3033 : const auto mock_time = ConsumeTime(fuzzed_data_provider);
74 [ + - ]: 3033 : SetMockTime(mock_time);
75 : :
76 [ + - ]: 3033 : CSerializedNetMsg net_msg;
77 [ + - ]: 3033 : net_msg.m_type = random_message_type;
78 : 3033 : net_msg.data = ConsumeRandomLengthByteVector(fuzzed_data_provider, MAX_PROTOCOL_MESSAGE_LENGTH);
79 : :
80 [ + - ]: 3033 : connman.FlushSendBuffer(p2p_node);
81 [ + - ]: 3033 : (void)connman.ReceiveMsgFrom(p2p_node, std::move(net_msg));
82 : :
83 : : bool more_work{true};
84 [ + + ]: 771968 : while (more_work) {
85 [ + - ]: 768935 : p2p_node.fPauseSend = false;
86 : 768935 : try {
87 [ + - ]: 768935 : more_work = connman.ProcessMessagesOnce(p2p_node);
88 [ - - ]: 0 : } catch (const std::ios_base::failure&) {
89 : 0 : }
90 [ + - ]: 768935 : g_setup->m_node.peerman->SendMessages(&p2p_node);
91 : : }
92 [ + - ]: 3033 : g_setup->m_node.validation_signals->SyncWithValidationInterfaceQueue();
93 [ + - ]: 3033 : g_setup->m_node.connman->StopNodes();
94 [ - - + - ]: 6066 : }
|