diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-11 20:53:41 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-11 20:53:41 +0200 |
commit | 70bcc46b8264923f82d0676389ee406e242f45be (patch) | |
tree | 2241277a4cd82dfa57708cd5c971a69b3b77dc55 | |
parent | 6c8c121cc15932e97dafd11c841078addfeee195 (diff) |
configure.ac: enable ASAN, LSAN and UBSAN
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | configure.ac | 13 | ||||
-rw-r--r-- | src/Makefile.am | 4 |
2 files changed, 16 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 76d87ad..456b783 100644 --- a/configure.ac +++ b/configure.ac @@ -174,7 +174,7 @@ AC_MSG_RESULT([${with_rngdev}]) AC_DEFINE_UNQUOTED([RNGDEV], ["${with_rngdev}"], [set the path to the random device you want to use for pt_random]) -dnl `--enable-asserts`: Disabled per defult +dnl `--enable-asserts`: Disabled per default AC_ARG_ENABLE([asserts], [AS_HELP_STRING([--enable-asserts], [Enable asserts(). (default: disabled)])],[asserts_enabled=yes],) asserts_enabled=$(echo ${asserts_enabled}) @@ -184,6 +184,16 @@ case ${asserts_enabled} in *) AC_MSG_ERROR([Unknown option \`${asserts_enabled}\` for --enable-asserts]) ;; esac +dnl `--enable-sanitizer`: Disabled per default +AC_ARG_ENABLE([sanitizer], + [AS_HELP_STRING([--enable-sanitizer], [Enable ASAN, LSAN and UBSAN. (default: disabled)])],[sanitizer_enabled=yes],) +sanitizer_enabled=$(echo ${sanitizer_enabled}) +case ${sanitizer_enabled} in + 1|y|yes) sanitizer_enabled=yes ;; + ''|0|n|no) sanitizer_enabled=no ;; + *) AC_MSG_ERROR([Unknown option \`${sanitizer_enabled}\` for --enable-sanitizer]) ;; +esac + dnl Check libpcap headers/functions. if test x"${pcap_enabled}" != x -a \ x"${use_msw}" != xyes; then @@ -247,6 +257,7 @@ AM_CONDITIONAL([HAVE_ICMPFILTER], [test x"${with_icmp_filter}" = xyes]) AM_CONDITIONAL([HAVE_ARC4RANDOM], [test x"${arc4random_enabled}" = xyes]) AM_CONDITIONAL([USE_CUSTOMRNG], [test x"${use_customrng}" = xyes]) AM_CONDITIONAL([DISABLE_ASSERTS], [test x"${asserts_enabled}" != xyes]) +AM_CONDITIONAL([ENABLE_SANITIZER], [test x"${sanitizer_enabled}" = xyes]) dnl output config headers AC_CONFIG_HEADERS([src/config.h:src/config.h.in]) diff --git a/src/Makefile.am b/src/Makefile.am index a0d6512..33ec531 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -34,6 +34,10 @@ if DISABLE_ASSERTS ptunnel_ng_CFLAGS += -DNDEBUG=1 endif +if ENABLE_SANITIZER +ptunnel_ng_CFLAGS += -fsanitize=address -fsanitize=leak -fsanitize=undefined +endif + ptunnel_ng_SOURCES = \ md5.c \ challenge.c \ |