From b2f369e56e13dc135d57c53210ea7ab38b239e94 Mon Sep 17 00:00:00 2001 From: Marco Elver Date: Fri, 4 Oct 2019 13:43:02 +0200 Subject: executor, host, csource: Add support to enable KCSAN By default, the current KCSAN .config does not enable KCSAN during boot, since we encounter races during boot which would prevent syzkaller from ever executing. This adds support to detect if KCSAN is available, and enables it on the fuzzer host. --- executor/executor_linux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor/executor_linux.h') diff --git a/executor/executor_linux.h b/executor/executor_linux.h index fdd274162..45a0bf8aa 100644 --- a/executor/executor_linux.h +++ b/executor/executor_linux.h @@ -181,4 +181,5 @@ static feature_t features[] = { {"leak", setup_leak}, {"fault", setup_fault}, {"binfmt_misc", setup_binfmt_misc}, + {"kcsan", setup_kcsan}, }; -- cgit mrf-deployment