2017-08-22 07:25:50 +08:00
|
|
|
set(LIBFUZZER_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS})
|
|
|
|
if (NOT COMPILER_RT_STANDALONE_BUILD)
|
2018-07-17 03:41:49 +08:00
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan ubsan)
|
|
|
|
if (COMPILER_RT_HAS_MSAN)
|
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS msan)
|
|
|
|
endif()
|
|
|
|
if (COMPILER_RT_HAS_DFSAN)
|
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS dfsan)
|
|
|
|
endif()
|
2019-10-29 01:21:01 +08:00
|
|
|
if(NOT APPLE AND COMPILER_RT_HAS_LLD AND TARGET lld)
|
2018-07-13 02:52:10 +08:00
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS lld)
|
|
|
|
endif()
|
2017-08-22 07:25:50 +08:00
|
|
|
endif()
|
|
|
|
|
2019-04-28 17:44:53 +08:00
|
|
|
set(FUZZER_TEST_ARCH ${FUZZER_SUPPORTED_ARCH})
|
2018-06-22 05:19:43 +08:00
|
|
|
if (APPLE)
|
2019-04-28 17:44:53 +08:00
|
|
|
darwin_filter_host_archs(FUZZER_SUPPORTED_ARCH FUZZER_TEST_ARCH)
|
2018-06-22 05:19:43 +08:00
|
|
|
endif()
|
|
|
|
|
2017-08-22 07:25:50 +08:00
|
|
|
if(COMPILER_RT_INCLUDE_TESTS)
|
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS FuzzerUnitTests)
|
Add FuzzedDataProvider helper class / single header library.
Summary:
This class is useful for writing fuzz target that have multiple inputs.
Current CL imports the existing `FuzzedDataProvider` from Chromium
without any modifications. Feel free to review it thoroughly, if you're
interested, but I'd prefer changing the class in a follow up CL.
The CL also introduces an exhaustive test for the library, as the behavior
of `FuzzedDataProvider` must not change over time.
In follow up CLs I'm planning on changing some implementation details
(I can share a doc with some comments to be addressed). After that, we
will document how `FuzzedDataProvider` should be used.
I have tested this on Linux, Windows and Mac platforms.
Reviewers: morehouse, metzman, kcc
Reviewed By: morehouse
Subscribers: metzman, thakis, rnk, mgorny, ormris, delcypher, #sanitizers, llvm-commits
Tags: #llvm, #sanitizers
Differential Revision: https://reviews.llvm.org/D62733
llvm-svn: 363071
2019-06-11 22:30:18 +08:00
|
|
|
list(APPEND LIBFUZZER_TEST_DEPS FuzzedDataProviderUnitTests)
|
2017-08-22 07:25:50 +08:00
|
|
|
endif()
|
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
add_custom_target(check-fuzzer)
|
2017-08-22 07:25:50 +08:00
|
|
|
|
|
|
|
if(COMPILER_RT_INCLUDE_TESTS)
|
|
|
|
# libFuzzer unit tests.
|
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/unit/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/unit/lit.site.cfg.py)
|
2018-01-18 04:39:14 +08:00
|
|
|
add_lit_testsuite(check-fuzzer-unit "Running Fuzzer unit tests"
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/unit
|
|
|
|
DEPENDS ${LIBFUZZER_TEST_DEPS})
|
|
|
|
set_target_properties(check-fuzzer-unit PROPERTIES FOLDER "Compiler-RT Tests")
|
|
|
|
add_dependencies(check-fuzzer check-fuzzer-unit)
|
2017-08-22 07:25:50 +08:00
|
|
|
endif()
|
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
macro(test_fuzzer stdlib)
|
|
|
|
cmake_parse_arguments(TEST "" "" "DEPS" ${ARGN})
|
|
|
|
string(REPLACE "+" "x" stdlib_name ${stdlib})
|
|
|
|
string(REPLACE "-" ";" stdlib_list ${stdlib_name})
|
|
|
|
set(STDLIB_CAPITALIZED "")
|
|
|
|
foreach(part IN LISTS stdlib_list)
|
|
|
|
string(SUBSTRING ${part} 0 1 first_letter)
|
|
|
|
string(TOUPPER ${first_letter} first_letter)
|
|
|
|
string(REGEX REPLACE "^.(.*)" "${first_letter}\\1" part "${part}")
|
|
|
|
set(STDLIB_CAPITALIZED "${STDLIB_CAPITALIZED}${part}")
|
|
|
|
endforeach()
|
2019-04-28 17:44:53 +08:00
|
|
|
foreach(arch ${FUZZER_TEST_ARCH})
|
2018-01-18 04:39:14 +08:00
|
|
|
set(LIBFUZZER_TEST_COMPILER ${COMPILER_RT_TEST_COMPILER})
|
|
|
|
get_test_cc_for_arch(${arch} LIBFUZZER_TEST_COMPILER LIBFUZZER_TEST_FLAGS)
|
2017-08-22 07:25:50 +08:00
|
|
|
|
2019-05-01 01:58:55 +08:00
|
|
|
set(LIBFUZZER_TEST_TARGET_ARCH ${arch})
|
2018-06-20 21:33:42 +08:00
|
|
|
set(LIBFUZZER_TEST_APPLE_PLATFORM "osx")
|
2020-02-15 03:35:06 +08:00
|
|
|
set(LIBFUZZER_TEST_MIN_DEPLOYMENT_TARGET_FLAG "${DARWIN_osx_MIN_VER_FLAG}")
|
2018-06-20 21:33:42 +08:00
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
set(LIBFUZZER_TEST_STDLIB ${stdlib})
|
2017-08-22 07:25:50 +08:00
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
string(TOUPPER ${arch} ARCH_UPPER_CASE)
|
|
|
|
set(CONFIG_NAME ${ARCH_UPPER_CASE}${STDLIB_CAPITALIZED}${OS_NAME}Config)
|
2017-08-22 08:54:57 +08:00
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
# LIT-based libFuzzer tests.
|
|
|
|
configure_lit_site_cfg(
|
2019-06-28 04:56:04 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py
|
2018-01-18 04:39:14 +08:00
|
|
|
)
|
2018-01-17 08:42:48 +08:00
|
|
|
|
2018-05-25 07:55:53 +08:00
|
|
|
add_lit_testsuite(check-fuzzer-${stdlib_name}-${arch}
|
2018-06-22 05:19:24 +08:00
|
|
|
"Running libFuzzer ${stdlib} tests for arch ${arch}"
|
2018-05-25 07:55:53 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/
|
2018-01-18 04:39:14 +08:00
|
|
|
DEPENDS ${LIBFUZZER_TEST_DEPS})
|
|
|
|
if(TEST_DEPS)
|
2018-05-25 07:55:53 +08:00
|
|
|
add_dependencies(check-fuzzer-${stdlib_name}-${arch} ${TEST_DEPS})
|
2018-01-18 04:39:14 +08:00
|
|
|
endif()
|
2018-05-25 07:55:53 +08:00
|
|
|
set_target_properties(check-fuzzer-${stdlib_name}-${arch}
|
|
|
|
PROPERTIES FOLDER "Compiler-RT Tests")
|
|
|
|
add_dependencies(check-fuzzer check-fuzzer-${stdlib_name}-${arch})
|
2018-01-18 04:39:14 +08:00
|
|
|
endforeach()
|
|
|
|
endmacro()
|
2018-01-18 01:24:56 +08:00
|
|
|
|
2018-01-18 04:39:14 +08:00
|
|
|
test_fuzzer("default")
|
|
|
|
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
|
|
|
|
if(TARGET cxx_shared)
|
|
|
|
test_fuzzer("libc++" DEPS cxx_shared)
|
|
|
|
endif()
|
|
|
|
if(TARGET cxx_static)
|
|
|
|
test_fuzzer("static-libc++" DEPS cxx_static)
|
|
|
|
endif()
|
|
|
|
endif()
|
2018-06-15 04:46:07 +08:00
|
|
|
|
|
|
|
if (APPLE)
|
2020-01-23 08:26:45 +08:00
|
|
|
set(LIBFUZZER_TEST_COMPILER ${COMPILER_RT_TEST_COMPILER})
|
|
|
|
set(FUZZER_APPLE_PLATFORMS ${FUZZER_SUPPORTED_OS})
|
|
|
|
foreach(platform ${FUZZER_APPLE_PLATFORMS})
|
|
|
|
if ("${platform}" STREQUAL "osx")
|
|
|
|
# Skip macOS because it's handled by the code above that builds tests for the host machine.
|
|
|
|
continue()
|
|
|
|
endif()
|
|
|
|
list_intersect(
|
|
|
|
FUZZER_TEST_${platform}_ARCHS
|
|
|
|
FUZZER_SUPPORTED_ARCH
|
|
|
|
DARWIN_${platform}_ARCHS
|
|
|
|
)
|
|
|
|
foreach(arch ${FUZZER_TEST_${platform}_ARCHS})
|
|
|
|
get_test_cflags_for_apple_platform(
|
|
|
|
"${platform}"
|
|
|
|
"${arch}"
|
|
|
|
LIBFUZZER_TEST_FLAGS
|
|
|
|
)
|
|
|
|
string(TOUPPER "${arch}" ARCH_UPPER_CASE)
|
|
|
|
get_capitalized_apple_platform("${platform}" PLATFORM_CAPITALIZED)
|
|
|
|
set(CONFIG_NAME "${PLATFORM_CAPITALIZED}${ARCH_UPPER_CASE}Config")
|
|
|
|
set(LIBFUZZER_TEST_CONFIG_SUFFIX "-${arch}-${platform}")
|
|
|
|
set(LIBFUZZER_TEST_APPLE_PLATFORM "${platform}")
|
|
|
|
set(LIBFUZZER_TEST_TARGET_ARCH "${arch}")
|
2020-02-15 03:35:06 +08:00
|
|
|
set(LIBFUZZER_TEST_MIN_DEPLOYMENT_TARGET_FLAG "${DARWIN_${platform}_MIN_VER_FLAG}")
|
2020-01-23 08:26:45 +08:00
|
|
|
configure_lit_site_cfg(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.py.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/lit.site.cfg.py
|
|
|
|
)
|
|
|
|
add_lit_testsuite(check-fuzzer-${platform}-${arch} "libFuzzer ${platform} ${arch} tests"
|
2020-02-07 07:26:10 +08:00
|
|
|
EXCLUDE_FROM_CHECK_ALL
|
2020-01-23 08:26:45 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${CONFIG_NAME}/
|
|
|
|
DEPENDS ${LIBFUZZER_TEST_DEPS})
|
|
|
|
endforeach()
|
2018-06-15 04:46:07 +08:00
|
|
|
endforeach()
|
|
|
|
endif()
|