[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 13/21] fuzz: add configure flag --enable-fuzzing
From: |
Oleinik, Alexander |
Subject: |
[PATCH v6 13/21] fuzz: add configure flag --enable-fuzzing |
Date: |
Fri, 29 Nov 2019 21:34:48 +0000 |
Signed-off-by: Alexander Bulekov <address@hidden>
Reviewed-by: Stefan Hajnoczi <address@hidden>
---
configure | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/configure b/configure
index 6099be1d84..5fb2494a8e 100755
--- a/configure
+++ b/configure
@@ -504,6 +504,7 @@ debug_mutex="no"
libpmem=""
default_devices="yes"
plugins="no"
+fuzzing="no"
supported_cpu="no"
supported_os="no"
@@ -633,6 +634,15 @@ int main(void) { return 0; }
EOF
}
+write_c_fuzzer_skeleton() {
+ cat > $TMPC <<EOF
+#include <stdint.h>
+#include <sys/types.h>
+int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
+int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; }
+EOF
+}
+
if check_define __linux__ ; then
targetos="Linux"
elif check_define _WIN32 ; then
@@ -1539,6 +1549,10 @@ for opt do
;;
--disable-plugins) plugins="no"
;;
+ --enable-fuzzing) fuzzing=yes
+ ;;
+ --disable-fuzzing) fuzzing=no
+ ;;
*)
echo "ERROR: unknown option $opt"
echo "Try '$0 --help' for more information"
@@ -6018,6 +6032,15 @@ EOF
fi
fi
+##########################################
+# checks for fuzzer
+if test "$fuzzing" = "yes" ; then
+ write_c_fuzzer_skeleton
+ if compile_prog "$CPU_CFLAGS -Werror -fsanitize=address,fuzzer" ""; then
+ have_fuzzer=yes
+ fi
+fi
+
##########################################
# check for libpmem
@@ -6599,6 +6622,7 @@ echo "libpmem support $libpmem"
echo "libudev $libudev"
echo "default devices $default_devices"
echo "plugin support $plugins"
+echo "fuzzing support $fuzzing"
if test "$supported_cpu" = "no"; then
echo
@@ -7435,6 +7459,16 @@ fi
if test "$sheepdog" = "yes" ; then
echo "CONFIG_SHEEPDOG=y" >> $config_host_mak
fi
+if test "$fuzzing" = "yes" ; then
+ if test "$have_fuzzer" = "yes"; then
+ FUZZ_LDFLAGS=" -fsanitize=address,fuzzer"
+ FUZZ_CFLAGS=" -fsanitize=address,fuzzer"
+ CFLAGS=" -fsanitize=address"
+ else
+ error_exit "Your compiler doesn't support -fsanitize=address,fuzzer"
+ exit 1
+ fi
+fi
if test "$plugins" = "yes" ; then
echo "CONFIG_PLUGIN=y" >> $config_host_mak
@@ -7538,6 +7572,11 @@ if test "$libudev" != "no"; then
echo "CONFIG_LIBUDEV=y" >> $config_host_mak
echo "LIBUDEV_LIBS=$libudev_libs" >> $config_host_mak
fi
+if test "$fuzzing" != "no"; then
+ echo "CONFIG_FUZZ=y" >> $config_host_mak
+ echo "FUZZ_CFLAGS=$FUZZ_CFLAGS" >> $config_host_mak
+ echo "FUZZ_LDFLAGS=$FUZZ_LDFLAGS" >> $config_host_mak
+fi
if test "$edk2_blobs" = "yes" ; then
echo "DECOMPRESS_EDK2_BLOBS=y" >> $config_host_mak
--
2.23.0
- [PATCH v6 00/21] Add virtual device fuzzing support, Oleinik, Alexander, 2019/11/29
- [PATCH v6 01/21] softmmu: split off vl.c:main() into main.c, Oleinik, Alexander, 2019/11/29
- [PATCH v6 02/21] libqos: Rename i2c_send and i2c_recv, Oleinik, Alexander, 2019/11/29
- [PATCH v6 07/21] qtest: add in-process incoming command handler, Oleinik, Alexander, 2019/11/29
- [PATCH v6 06/21] module: check module wasn't already initialized, Oleinik, Alexander, 2019/11/29
- [PATCH v6 04/21] qtest: add qtest_server_send abstraction, Oleinik, Alexander, 2019/11/29
- [PATCH v6 13/21] fuzz: add configure flag --enable-fuzzing,
Oleinik, Alexander <=
- [PATCH v6 05/21] libqtest: Add a layer of abstraciton to send/recv, Oleinik, Alexander, 2019/11/29
- [PATCH v6 03/21] fuzz: Add FUZZ_TARGET module type, Oleinik, Alexander, 2019/11/29
- [PATCH v6 09/21] libqos: split qos-test and libqos makefile vars, Oleinik, Alexander, 2019/11/29
- [PATCH v6 11/21] libqtest: make bufwrite rely on the TransportOps, Oleinik, Alexander, 2019/11/29
- [PATCH v6 10/21] libqos: move useful qos-test funcs to qos_external, Oleinik, Alexander, 2019/11/29
- [PATCH v6 14/21] fuzz: Add target/fuzz makefile rules, Oleinik, Alexander, 2019/11/29
- [PATCH v6 15/21] fuzz: add fuzzer skeleton, Oleinik, Alexander, 2019/11/29
- [PATCH v6 21/21] fuzz: add documentation to docs/devel/, Oleinik, Alexander, 2019/11/29
- [PATCH v6 19/21] fuzz: add virtio-net fuzz target, Oleinik, Alexander, 2019/11/29
- [PATCH v6 12/21] libqtest: add in-process qtest.c tx/rx handlers, Oleinik, Alexander, 2019/11/29