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 <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 <serialize.h> 12 : : #include <span.h> 13 : : #include <streams.h> 14 : : #include <sync.h> 15 : : #include <test/fuzz/FuzzedDataProvider.h> 16 : : #include <test/fuzz/fuzz.h> 17 [ + - ]: 173 : #include <test/fuzz/util.h> 18 [ + - ]: 173 : #include <test/fuzz/util/net.h> 19 : : #include <test/util/mining.h> 20 : : #include <test/util/net.h> 21 : : #include <test/util/setup_common.h> 22 : : #include <test/util/validation.h> 23 : : #include <util/chaintype.h> 24 : : #include <util/check.h> 25 : : #include <util/time.h> 26 : : #include <validation.h> 27 : : #include <validationinterface.h> 28 : : #include <version.h> 29 : : 30 : : 31 : : #include <atomic> 32 : : #include <cstdlib> 33 : : #include <iostream> 34 : : #include <memory> 35 : : #include <string> 36 : : #include <string_view> 37 : : #include <vector> 38 : : 39 : : namespace { 40 : : const TestingSetup* g_setup; 41 : : std::string_view LIMIT_TO_MESSAGE_TYPE{}; 42 : : } // namespace 43 : : 44 : 1 : void initialize_process_message() 45 : : { 46 [ + - ]: 1 : if (const auto val{std::getenv("LIMIT_TO_MESSAGE_TYPE")}) { 47 : 0 : LIMIT_TO_MESSAGE_TYPE = val; 48 : 0 : Assert(std::count(getAllNetMessageTypes().begin(), getAllNetMessageTypes().end(), LIMIT_TO_MESSAGE_TYPE)); // Unknown message type passed 49 : 0 : } 50 : : 51 [ + - - + : 2 : static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>( - + ] 52 : : /*chain_type=*/ChainType::REGTEST, 53 [ + - ]: 1 : /*extra_args=*/{"-txreconciliation"}); 54 : 1 : g_setup = testing_setup.get(); 55 [ + + ]: 201 : for (int i = 0; i < 2 * COINBASE_MATURITY; i++) { 56 [ + - + - ]: 200 : MineBlock(g_setup->m_node, CScript() << OP_TRUE); 57 : 200 : } 58 : 1 : SyncWithValidationInterfaceQueue(); 59 : 1 : } 60 : : 61 [ + - - + ]: 2148 : FUZZ_TARGET(process_message, .init = initialize_process_message) 62 : : { 63 : 1802 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size()); 64 : : 65 : 1802 : ConnmanTestMsg& connman = *static_cast<ConnmanTestMsg*>(g_setup->m_node.connman.get()); 66 : 1802 : auto& chainman = static_cast<TestChainstateManager&>(*g_setup->m_node.chainman); 67 : 1802 : SetMockTime(1610000000); // any time to successfully reset ibd 68 : 1802 : chainman.ResetIbd(); 69 : : 70 : 1802 : LOCK(NetEventsInterface::g_msgproc_mutex); 71 : : 72 [ + - + - ]: 1802 : const std::string random_message_type{fuzzed_data_provider.ConsumeBytesAsString(CMessageHeader::COMMAND_SIZE).c_str()}; 73 [ - + # # ]: 1802 : if (!LIMIT_TO_MESSAGE_TYPE.empty() && random_message_type != LIMIT_TO_MESSAGE_TYPE) { 74 : 173 : return; 75 : : } 76 [ + - ]: 1802 : CNode& p2p_node = *ConsumeNodeAsUniquePtr(fuzzed_data_provider).release(); 77 : : 78 [ + - ]: 1802 : connman.AddTestNode(p2p_node); 79 : 1802 : FillNode(fuzzed_data_provider, connman, p2p_node); 80 : : 81 : 1802 : const auto mock_time = ConsumeTime(fuzzed_data_provider); 82 [ + - ]: 1802 : SetMockTime(mock_time); 83 [ + - ]: 173 : 84 : : // fuzzed_data_provider is fully consumed after this call, don't use it 85 [ + - + - : 1802 : CDataStream random_bytes_data_stream{fuzzed_data_provider.ConsumeRemainingBytes<unsigned char>(), SER_NETWORK, PROTOCOL_VERSION}; + - ] 86 : : try { 87 [ + + ]: 1802 : g_setup->m_node.peerman->ProcessMessage(p2p_node, random_message_type, random_bytes_data_stream, 88 [ + - ]: 1802 : GetTime<std::chrono::microseconds>(), std::atomic<bool>{false}); 89 [ + - ]: 1802 : } catch (const std::ios_base::failure&) { 90 [ + - ]: 259 : } 91 [ + - ]: 1802 : g_setup->m_node.peerman->SendMessages(&p2p_node); 92 [ + - ]: 1802 : SyncWithValidationInterfaceQueue(); 93 [ + - ]: 1802 : g_setup->m_node.connman->StopNodes(); 94 [ - + ]: 2061 : }