2020-01-22 17:23:48 -03:00
|
|
|
// Copyright (c) 2020 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <banman.h>
|
|
|
|
#include <chainparams.h>
|
|
|
|
#include <consensus/consensus.h>
|
|
|
|
#include <net.h>
|
|
|
|
#include <net_processing.h>
|
|
|
|
#include <protocol.h>
|
|
|
|
#include <scheduler.h>
|
|
|
|
#include <script/script.h>
|
|
|
|
#include <streams.h>
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
|
|
#include <test/fuzz/fuzz.h>
|
|
|
|
#include <test/util/mining.h>
|
2020-05-10 20:12:25 -04:00
|
|
|
#include <test/util/net.h>
|
2020-01-22 17:23:48 -03:00
|
|
|
#include <test/util/setup_common.h>
|
2020-11-06 11:03:51 -03:00
|
|
|
#include <test/util/validation.h>
|
2020-01-22 17:23:48 -03:00
|
|
|
#include <util/memory.h>
|
|
|
|
#include <validationinterface.h>
|
|
|
|
#include <version.h>
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <cassert>
|
|
|
|
#include <chrono>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace {
|
2020-04-08 19:48:38 -04:00
|
|
|
const TestingSetup* g_setup;
|
2020-01-22 17:23:48 -03:00
|
|
|
} // namespace
|
|
|
|
|
2020-12-03 12:42:49 -03:00
|
|
|
void initialize_process_message()
|
2020-01-22 17:23:48 -03:00
|
|
|
{
|
2020-04-08 19:48:38 -04:00
|
|
|
static TestingSetup setup{
|
|
|
|
CBaseChainParams::REGTEST,
|
|
|
|
{
|
|
|
|
"-nodebuglogfile",
|
|
|
|
},
|
|
|
|
};
|
2020-01-22 17:23:48 -03:00
|
|
|
g_setup = &setup;
|
|
|
|
|
|
|
|
for (int i = 0; i < 2 * COINBASE_MATURITY; i++) {
|
|
|
|
MineBlock(g_setup->m_node, CScript() << OP_TRUE);
|
|
|
|
}
|
|
|
|
SyncWithValidationInterfaceQueue();
|
|
|
|
}
|
|
|
|
|
2020-12-03 12:42:49 -03:00
|
|
|
void fuzz_target(const std::vector<uint8_t>& buffer, const std::string& LIMIT_TO_MESSAGE_TYPE)
|
2020-01-22 17:23:48 -03:00
|
|
|
{
|
|
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
2020-05-10 20:12:25 -04:00
|
|
|
ConnmanTestMsg& connman = *(ConnmanTestMsg*)g_setup->m_node.connman.get();
|
2020-11-06 11:03:51 -03:00
|
|
|
TestChainState& chainstate = *(TestChainState*)&g_setup->m_node.chainman->ActiveChainstate();
|
|
|
|
chainstate.ResetIbd();
|
2020-01-22 17:23:48 -03:00
|
|
|
const std::string random_message_type{fuzzed_data_provider.ConsumeBytesAsString(CMessageHeader::COMMAND_SIZE).c_str()};
|
|
|
|
if (!LIMIT_TO_MESSAGE_TYPE.empty() && random_message_type != LIMIT_TO_MESSAGE_TYPE) {
|
|
|
|
return;
|
|
|
|
}
|
2020-11-06 11:03:51 -03:00
|
|
|
const bool jump_out_of_ibd{fuzzed_data_provider.ConsumeBool()};
|
|
|
|
if (jump_out_of_ibd) chainstate.JumpOutOfIbd();
|
2020-01-22 17:23:48 -03:00
|
|
|
CDataStream random_bytes_data_stream{fuzzed_data_provider.ConsumeRemainingBytes<unsigned char>(), SER_NETWORK, PROTOCOL_VERSION};
|
2020-08-11 23:37:32 -04:00
|
|
|
CNode& p2p_node = *MakeUnique<CNode>(0, ServiceFlags(NODE_NETWORK | NODE_WITNESS | NODE_BLOOM), 0, INVALID_SOCKET, CAddress{CService{in_addr{0x0100007f}, 7777}, NODE_NETWORK}, 0, 0, CAddress{}, std::string{}, ConnectionType::OUTBOUND_FULL_RELAY).release();
|
2020-01-22 17:23:48 -03:00
|
|
|
p2p_node.fSuccessfullyConnected = true;
|
|
|
|
p2p_node.nVersion = PROTOCOL_VERSION;
|
2020-06-05 03:22:53 -04:00
|
|
|
p2p_node.SetCommonVersion(PROTOCOL_VERSION);
|
2020-05-10 20:12:25 -04:00
|
|
|
connman.AddTestNode(p2p_node);
|
2020-08-29 05:31:11 -04:00
|
|
|
g_setup->m_node.peerman->InitializeNode(&p2p_node);
|
2020-01-22 17:23:48 -03:00
|
|
|
try {
|
2020-08-29 05:31:11 -04:00
|
|
|
g_setup->m_node.peerman->ProcessMessage(p2p_node, random_message_type, random_bytes_data_stream,
|
2020-11-06 11:03:51 -03:00
|
|
|
GetTime<std::chrono::microseconds>(), std::atomic<bool>{false});
|
2020-04-24 08:29:47 -04:00
|
|
|
} catch (const std::ios_base::failure&) {
|
2020-01-22 17:23:48 -03:00
|
|
|
}
|
2020-11-12 14:06:00 -03:00
|
|
|
{
|
|
|
|
LOCK(p2p_node.cs_sendProcessing);
|
|
|
|
g_setup->m_node.peerman->SendMessages(&p2p_node);
|
|
|
|
}
|
2020-01-22 17:23:48 -03:00
|
|
|
SyncWithValidationInterfaceQueue();
|
2020-05-04 20:16:22 -04:00
|
|
|
LOCK2(::cs_main, g_cs_orphans); // See init.cpp for rationale for implicit locking order requirement
|
|
|
|
g_setup->m_node.connman->StopNodes();
|
2020-01-22 17:23:48 -03:00
|
|
|
}
|
2020-12-03 12:42:49 -03:00
|
|
|
|
|
|
|
FUZZ_TARGET_INIT(process_message, initialize_process_message) { fuzz_target(buffer, ""); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_addr, initialize_process_message) { fuzz_target(buffer, "addr"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_block, initialize_process_message) { fuzz_target(buffer, "block"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_blocktxn, initialize_process_message) { fuzz_target(buffer, "blocktxn"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_cmpctblock, initialize_process_message) { fuzz_target(buffer, "cmpctblock"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_feefilter, initialize_process_message) { fuzz_target(buffer, "feefilter"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_filteradd, initialize_process_message) { fuzz_target(buffer, "filteradd"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_filterclear, initialize_process_message) { fuzz_target(buffer, "filterclear"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_filterload, initialize_process_message) { fuzz_target(buffer, "filterload"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_getaddr, initialize_process_message) { fuzz_target(buffer, "getaddr"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_getblocks, initialize_process_message) { fuzz_target(buffer, "getblocks"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_getblocktxn, initialize_process_message) { fuzz_target(buffer, "getblocktxn"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_getdata, initialize_process_message) { fuzz_target(buffer, "getdata"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_getheaders, initialize_process_message) { fuzz_target(buffer, "getheaders"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_headers, initialize_process_message) { fuzz_target(buffer, "headers"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_inv, initialize_process_message) { fuzz_target(buffer, "inv"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_mempool, initialize_process_message) { fuzz_target(buffer, "mempool"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_notfound, initialize_process_message) { fuzz_target(buffer, "notfound"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_ping, initialize_process_message) { fuzz_target(buffer, "ping"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_pong, initialize_process_message) { fuzz_target(buffer, "pong"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_sendcmpct, initialize_process_message) { fuzz_target(buffer, "sendcmpct"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_sendheaders, initialize_process_message) { fuzz_target(buffer, "sendheaders"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_tx, initialize_process_message) { fuzz_target(buffer, "tx"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_verack, initialize_process_message) { fuzz_target(buffer, "verack"); }
|
|
|
|
FUZZ_TARGET_INIT(process_message_version, initialize_process_message) { fuzz_target(buffer, "version"); }
|