mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-29 13:32:33 +02:00
Merge #18206: tests: Add fuzzing harness for bloom filter classes (CBloomFilter + CRollingBloomFilter)
eabbbe409f
tests: Add fuzzing harness for rolling bloom filter class CRollingBloomFilter (practicalswift)2a6a6ea0f5
tests: Add fuzzing harness for bloom filter class CBloomFilter (practicalswift) Pull request description: Add fuzzing harness for bloom filter classes (`CBloomFilter` + `CRollingBloomFilter`). Test this PR using: ``` $ make distclean $ ./autogen.sh $ CC=clang CXX=clang++ ./configure --enable-fuzz \ --with-sanitizers=address,fuzzer,undefined $ make $ src/test/fuzz/bloom_filter … $ src/test/fuzz/rolling_bloom_filter … ``` ACKs for top commit: MarcoFalke: ACKeabbbe409f
🤞 Tree-SHA512: 765d30bc52e3eb04dbd4d2b8f517387aa61312416e8fea3767250ef5c074e08641699019ee4600d42303de32f98379c20bfc0c0e60cb5154d0338088c1d29cb6
This commit is contained in:
commit
c3b4715923
@ -22,6 +22,7 @@ FUZZ_TARGETS = \
|
|||||||
test/fuzz/blocktransactions_deserialize \
|
test/fuzz/blocktransactions_deserialize \
|
||||||
test/fuzz/blocktransactionsrequest_deserialize \
|
test/fuzz/blocktransactionsrequest_deserialize \
|
||||||
test/fuzz/blockundo_deserialize \
|
test/fuzz/blockundo_deserialize \
|
||||||
|
test/fuzz/bloom_filter \
|
||||||
test/fuzz/bloomfilter_deserialize \
|
test/fuzz/bloomfilter_deserialize \
|
||||||
test/fuzz/coins_deserialize \
|
test/fuzz/coins_deserialize \
|
||||||
test/fuzz/decode_tx \
|
test/fuzz/decode_tx \
|
||||||
@ -50,6 +51,7 @@ FUZZ_TARGETS = \
|
|||||||
test/fuzz/psbt_input_deserialize \
|
test/fuzz/psbt_input_deserialize \
|
||||||
test/fuzz/psbt_output_deserialize \
|
test/fuzz/psbt_output_deserialize \
|
||||||
test/fuzz/pub_key_deserialize \
|
test/fuzz/pub_key_deserialize \
|
||||||
|
test/fuzz/rolling_bloom_filter \
|
||||||
test/fuzz/script \
|
test/fuzz/script \
|
||||||
test/fuzz/script_deserialize \
|
test/fuzz/script_deserialize \
|
||||||
test/fuzz/script_flags \
|
test/fuzz/script_flags \
|
||||||
@ -96,7 +98,8 @@ BITCOIN_TEST_SUITE = \
|
|||||||
FUZZ_SUITE = \
|
FUZZ_SUITE = \
|
||||||
test/fuzz/fuzz.cpp \
|
test/fuzz/fuzz.cpp \
|
||||||
test/fuzz/fuzz.h \
|
test/fuzz/fuzz.h \
|
||||||
test/fuzz/FuzzedDataProvider.h
|
test/fuzz/FuzzedDataProvider.h \
|
||||||
|
test/fuzz/util.h
|
||||||
|
|
||||||
FUZZ_SUITE_LD_COMMON = \
|
FUZZ_SUITE_LD_COMMON = \
|
||||||
$(LIBBITCOIN_SERVER) \
|
$(LIBBITCOIN_SERVER) \
|
||||||
@ -347,6 +350,12 @@ test_fuzz_blockundo_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
|||||||
test_fuzz_blockundo_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
test_fuzz_blockundo_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
||||||
test_fuzz_blockundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
test_fuzz_blockundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
||||||
|
|
||||||
|
test_fuzz_bloom_filter_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||||
|
test_fuzz_bloom_filter_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
|
test_fuzz_bloom_filter_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
||||||
|
test_fuzz_bloom_filter_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
||||||
|
test_fuzz_bloom_filter_SOURCES = $(FUZZ_SUITE) test/fuzz/bloom_filter.cpp
|
||||||
|
|
||||||
test_fuzz_bloomfilter_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOOMFILTER_DESERIALIZE=1
|
test_fuzz_bloomfilter_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOOMFILTER_DESERIALIZE=1
|
||||||
test_fuzz_bloomfilter_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
test_fuzz_bloomfilter_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
test_fuzz_bloomfilter_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
test_fuzz_bloomfilter_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
||||||
@ -515,6 +524,12 @@ test_fuzz_pub_key_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
|||||||
test_fuzz_pub_key_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
test_fuzz_pub_key_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
||||||
test_fuzz_pub_key_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
test_fuzz_pub_key_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
||||||
|
|
||||||
|
test_fuzz_rolling_bloom_filter_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||||
|
test_fuzz_rolling_bloom_filter_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
|
test_fuzz_rolling_bloom_filter_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
||||||
|
test_fuzz_rolling_bloom_filter_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
||||||
|
test_fuzz_rolling_bloom_filter_SOURCES = $(FUZZ_SUITE) test/fuzz/rolling_bloom_filter.cpp
|
||||||
|
|
||||||
test_fuzz_script_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
test_fuzz_script_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||||
test_fuzz_script_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
test_fuzz_script_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||||
test_fuzz_script_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
test_fuzz_script_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
||||||
|
80
src/test/fuzz/bloom_filter.cpp
Normal file
80
src/test/fuzz/bloom_filter.cpp
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
// 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 <bloom.h>
|
||||||
|
#include <optional.h>
|
||||||
|
#include <primitives/transaction.h>
|
||||||
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
|
#include <test/fuzz/fuzz.h>
|
||||||
|
#include <test/fuzz/util.h>
|
||||||
|
#include <uint256.h>
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
void test_one_input(const std::vector<uint8_t>& buffer)
|
||||||
|
{
|
||||||
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
||||||
|
|
||||||
|
CBloomFilter bloom_filter{
|
||||||
|
fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, 10000000),
|
||||||
|
1.0 / fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, std::numeric_limits<unsigned int>::max()),
|
||||||
|
fuzzed_data_provider.ConsumeIntegral<unsigned int>(),
|
||||||
|
static_cast<unsigned char>(fuzzed_data_provider.PickValueInArray({BLOOM_UPDATE_NONE, BLOOM_UPDATE_ALL, BLOOM_UPDATE_P2PUBKEY_ONLY, BLOOM_UPDATE_MASK}))};
|
||||||
|
while (fuzzed_data_provider.remaining_bytes() > 0) {
|
||||||
|
switch (fuzzed_data_provider.ConsumeIntegralInRange(0, 6)) {
|
||||||
|
case 0: {
|
||||||
|
const std::vector<unsigned char>& b = ConsumeRandomLengthByteVector(fuzzed_data_provider);
|
||||||
|
(void)bloom_filter.contains(b);
|
||||||
|
bloom_filter.insert(b);
|
||||||
|
const bool present = bloom_filter.contains(b);
|
||||||
|
assert(present);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 1: {
|
||||||
|
const Optional<COutPoint> out_point = ConsumeDeserializable<COutPoint>(fuzzed_data_provider);
|
||||||
|
if (!out_point) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
(void)bloom_filter.contains(*out_point);
|
||||||
|
bloom_filter.insert(*out_point);
|
||||||
|
const bool present = bloom_filter.contains(*out_point);
|
||||||
|
assert(present);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2: {
|
||||||
|
const Optional<uint256> u256 = ConsumeDeserializable<uint256>(fuzzed_data_provider);
|
||||||
|
if (!u256) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
(void)bloom_filter.contains(*u256);
|
||||||
|
bloom_filter.insert(*u256);
|
||||||
|
const bool present = bloom_filter.contains(*u256);
|
||||||
|
assert(present);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 3:
|
||||||
|
bloom_filter.clear();
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
bloom_filter.reset(fuzzed_data_provider.ConsumeIntegral<unsigned int>());
|
||||||
|
break;
|
||||||
|
case 5: {
|
||||||
|
const Optional<CMutableTransaction> mut_tx = ConsumeDeserializable<CMutableTransaction>(fuzzed_data_provider);
|
||||||
|
if (!mut_tx) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
const CTransaction tx{*mut_tx};
|
||||||
|
(void)bloom_filter.IsRelevantAndUpdate(tx);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 6:
|
||||||
|
bloom_filter.UpdateEmptyFull();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
(void)bloom_filter.IsWithinSizeConstraints();
|
||||||
|
}
|
||||||
|
}
|
50
src/test/fuzz/rolling_bloom_filter.cpp
Normal file
50
src/test/fuzz/rolling_bloom_filter.cpp
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
// 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 <bloom.h>
|
||||||
|
#include <optional.h>
|
||||||
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
|
#include <test/fuzz/fuzz.h>
|
||||||
|
#include <test/fuzz/util.h>
|
||||||
|
#include <uint256.h>
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
void test_one_input(const std::vector<uint8_t>& buffer)
|
||||||
|
{
|
||||||
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
||||||
|
|
||||||
|
CRollingBloomFilter rolling_bloom_filter{
|
||||||
|
fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, 1000),
|
||||||
|
0.999 / fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(1, std::numeric_limits<unsigned int>::max())};
|
||||||
|
while (fuzzed_data_provider.remaining_bytes() > 0) {
|
||||||
|
switch (fuzzed_data_provider.ConsumeIntegralInRange(0, 2)) {
|
||||||
|
case 0: {
|
||||||
|
const std::vector<unsigned char>& b = ConsumeRandomLengthByteVector(fuzzed_data_provider);
|
||||||
|
(void)rolling_bloom_filter.contains(b);
|
||||||
|
rolling_bloom_filter.insert(b);
|
||||||
|
const bool present = rolling_bloom_filter.contains(b);
|
||||||
|
assert(present);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 1: {
|
||||||
|
const Optional<uint256> u256 = ConsumeDeserializable<uint256>(fuzzed_data_provider);
|
||||||
|
if (!u256) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
(void)rolling_bloom_filter.contains(*u256);
|
||||||
|
rolling_bloom_filter.insert(*u256);
|
||||||
|
const bool present = rolling_bloom_filter.contains(*u256);
|
||||||
|
assert(present);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 2:
|
||||||
|
rolling_bloom_filter.reset();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
39
src/test/fuzz/util.h
Normal file
39
src/test/fuzz/util.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#ifndef BITCOIN_TEST_FUZZ_UTIL_H
|
||||||
|
#define BITCOIN_TEST_FUZZ_UTIL_H
|
||||||
|
|
||||||
|
#include <attributes.h>
|
||||||
|
#include <optional.h>
|
||||||
|
#include <serialize.h>
|
||||||
|
#include <streams.h>
|
||||||
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
|
#include <version.h>
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
NODISCARD inline std::vector<uint8_t> ConsumeRandomLengthByteVector(FuzzedDataProvider& fuzzed_data_provider, size_t max_length = 4096) noexcept
|
||||||
|
{
|
||||||
|
const std::string s = fuzzed_data_provider.ConsumeRandomLengthString(max_length);
|
||||||
|
return {s.begin(), s.end()};
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
NODISCARD inline Optional<T> ConsumeDeserializable(FuzzedDataProvider& fuzzed_data_provider, size_t max_length = 4096) noexcept
|
||||||
|
{
|
||||||
|
const std::vector<uint8_t>& buffer = ConsumeRandomLengthByteVector(fuzzed_data_provider, max_length);
|
||||||
|
CDataStream ds{buffer, SER_NETWORK, INIT_PROTO_VERSION};
|
||||||
|
T obj;
|
||||||
|
try {
|
||||||
|
ds >> obj;
|
||||||
|
} catch (const std::ios_base::failure&) {
|
||||||
|
return nullopt;
|
||||||
|
}
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // BITCOIN_TEST_FUZZ_UTIL_H
|
@ -21,6 +21,7 @@ FUZZERS_MISSING_CORPORA = [
|
|||||||
"block_file_info_deserialize",
|
"block_file_info_deserialize",
|
||||||
"block_filter_deserialize",
|
"block_filter_deserialize",
|
||||||
"block_header_and_short_txids_deserialize",
|
"block_header_and_short_txids_deserialize",
|
||||||
|
"bloom_filter",
|
||||||
"decode_tx",
|
"decode_tx",
|
||||||
"fee_rate_deserialize",
|
"fee_rate_deserialize",
|
||||||
"flat_file_pos_deserialize",
|
"flat_file_pos_deserialize",
|
||||||
@ -39,6 +40,7 @@ FUZZERS_MISSING_CORPORA = [
|
|||||||
"psbt_input_deserialize",
|
"psbt_input_deserialize",
|
||||||
"psbt_output_deserialize",
|
"psbt_output_deserialize",
|
||||||
"pub_key_deserialize",
|
"pub_key_deserialize",
|
||||||
|
"rolling_bloom_filter",
|
||||||
"script_deserialize",
|
"script_deserialize",
|
||||||
"strprintf",
|
"strprintf",
|
||||||
"sub_net_deserialize",
|
"sub_net_deserialize",
|
||||||
|
Loading…
Reference in New Issue
Block a user