forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
235 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
# Copyright (c) 2023-present The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or https://opensource.org/license/mit/. | ||
|
||
add_subdirectory(util) | ||
|
||
add_executable(fuzz | ||
addition_overflow.cpp | ||
addrman.cpp | ||
asmap.cpp | ||
asmap_direct.cpp | ||
autofile.cpp | ||
banman.cpp | ||
base_encode_decode.cpp | ||
bech32.cpp | ||
bip324.cpp | ||
bitdeque.cpp | ||
block.cpp | ||
block_header.cpp | ||
blockfilter.cpp | ||
bloom_filter.cpp | ||
buffered_file.cpp | ||
chain.cpp | ||
checkqueue.cpp | ||
coins_view.cpp | ||
coinscache_sim.cpp | ||
connman.cpp | ||
crypto.cpp | ||
crypto_aes256.cpp | ||
crypto_aes256cbc.cpp | ||
crypto_chacha20.cpp | ||
crypto_common.cpp | ||
crypto_diff_fuzz_chacha20.cpp | ||
crypto_hkdf_hmac_sha256_l32.cpp | ||
crypto_poly1305.cpp | ||
cuckoocache.cpp | ||
decode_tx.cpp | ||
descriptor_parse.cpp | ||
deserialize.cpp | ||
eval_script.cpp | ||
fee_rate.cpp | ||
fees.cpp | ||
flatfile.cpp | ||
float.cpp | ||
golomb_rice.cpp | ||
headerssync.cpp | ||
hex.cpp | ||
http_request.cpp | ||
integer.cpp | ||
key.cpp | ||
key_io.cpp | ||
kitchen_sink.cpp | ||
load_external_block_file.cpp | ||
locale.cpp | ||
merkleblock.cpp | ||
message.cpp | ||
miniscript.cpp | ||
minisketch.cpp | ||
mini_miner.cpp | ||
muhash.cpp | ||
multiplication_overflow.cpp | ||
net.cpp | ||
net_permissions.cpp | ||
netaddress.cpp | ||
netbase_dns_lookup.cpp | ||
node_eviction.cpp | ||
p2p_transport_serialization.cpp | ||
package_eval.cpp | ||
parse_hd_keypath.cpp | ||
parse_numbers.cpp | ||
parse_script.cpp | ||
parse_univalue.cpp | ||
partially_downloaded_block.cpp | ||
policy_estimator.cpp | ||
policy_estimator_io.cpp | ||
poolresource.cpp | ||
pow.cpp | ||
prevector.cpp | ||
primitives_transaction.cpp | ||
process_message.cpp | ||
process_messages.cpp | ||
protocol.cpp | ||
psbt.cpp | ||
random.cpp | ||
rbf.cpp | ||
rolling_bloom_filter.cpp | ||
rpc.cpp | ||
script.cpp | ||
script_assets_test_minimizer.cpp | ||
$<$<TARGET_EXISTS:bitcoinconsensus>:script_bitcoin_consensus.cpp> | ||
script_descriptor_cache.cpp | ||
script_flags.cpp | ||
script_format.cpp | ||
script_interpreter.cpp | ||
script_ops.cpp | ||
script_sigcache.cpp | ||
script_sign.cpp | ||
scriptnum_ops.cpp | ||
secp256k1_ec_seckey_import_export_der.cpp | ||
secp256k1_ecdsa_signature_parse_der_lax.cpp | ||
signature_checker.cpp | ||
signet.cpp | ||
socks5.cpp | ||
span.cpp | ||
spanparsing.cpp | ||
string.cpp | ||
strprintf.cpp | ||
system.cpp | ||
timedata.cpp | ||
torcontrol.cpp | ||
transaction.cpp | ||
tx_in.cpp | ||
tx_out.cpp | ||
tx_pool.cpp | ||
txorphan.cpp | ||
txrequest.cpp | ||
utxo_snapshot.cpp | ||
utxo_total_supply.cpp | ||
validation_load_mempool.cpp | ||
versionbits.cpp | ||
) | ||
target_link_libraries(fuzz | ||
core | ||
test_fuzz | ||
bitcoin_cli | ||
bitcoin_common | ||
minisketch | ||
leveldb | ||
univalue | ||
secp256k1 | ||
$<TARGET_NAME_IF_EXISTS:bitcoinconsensus> | ||
Boost::headers | ||
libevent::libevent | ||
) | ||
|
||
if(ENABLE_WALLET) | ||
target_sources(fuzz | ||
PRIVATE | ||
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/coincontrol.cpp | ||
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/coinselection.cpp | ||
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/fees.cpp | ||
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/parse_iso8601.cpp | ||
$<$<BOOL:${USE_SQLITE}>:${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/notifications.cpp> | ||
) | ||
target_link_libraries(fuzz bitcoin_wallet) | ||
endif() | ||
|
||
set(builtin_mul_overflow_source " | ||
bool f(long long x, long long y, long long* p) | ||
{ | ||
return __builtin_mul_overflow(x, y, p); | ||
} | ||
int main() { return 0; } | ||
") | ||
include(CheckCXXSourceCompiles) | ||
check_cxx_source_compiles("${builtin_mul_overflow_source}" HAVE_BUILTIN_MUL_OVERFLOW) | ||
if(HAVE_BUILTIN_MUL_OVERFLOW) | ||
target_compile_definitions(fuzz PRIVATE HAVE_BUILTIN_MUL_OVERFLOW) | ||
else() | ||
set(CMAKE_REQUIRED_LINK_OPTIONS rtlib=compiler-rt) | ||
set(CMAKE_REQUIRED_LIBRARIES gcc_s) | ||
check_cxx_source_compiles("${builtin_mul_overflow_source}" HAVE_BUILTIN_MUL_OVERFLOW_NEEDS_LINK_TO_RT) | ||
if(HAVE_BUILTIN_MUL_OVERFLOW_NEEDS_LINK_TO_RT) | ||
target_compile_definitions(fuzz PRIVATE HAVE_BUILTIN_MUL_OVERFLOW) | ||
target_link_options(fuzz PRIVATE ${CMAKE_REQUIRED_LINK_OPTIONS}) | ||
target_link_libraries(fuzz PRIVATE ${CMAKE_REQUIRED_LIBRARIES}) | ||
endif() | ||
set(CMAKE_REQUIRED_LINK_OPTIONS) | ||
set(CMAKE_REQUIRED_LIBRARIES) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (c) 2023-present The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or https://opensource.org/license/mit/. | ||
|
||
if(NOT FUZZ_OSS) | ||
include(CheckSourceCompilesAndLinks) | ||
check_cxx_source_links_with_flags("-fsanitize=${SANITIZERS}" " | ||
#include <cstdint> | ||
#include <cstddef> | ||
extern \"C\" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { return 0; } | ||
// No main() function. | ||
" BINARY_LINKS_WITHOUT_MAIN_FUNCTION | ||
) | ||
endif() | ||
|
||
add_library(test_fuzz STATIC EXCLUDE_FROM_ALL | ||
mempool.cpp | ||
net.cpp | ||
../fuzz.cpp | ||
../util.cpp | ||
) | ||
target_compile_definitions(test_fuzz | ||
PRIVATE | ||
$<$<NOT:$<BOOL:${BINARY_LINKS_WITHOUT_MAIN_FUNCTION}>>:PROVIDE_FUZZ_MAIN_FUNCTION> | ||
) | ||
target_link_libraries(test_fuzz | ||
PRIVATE | ||
core | ||
test_util | ||
bitcoin_node | ||
Boost::headers | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters