Skip to content

Commit 4b8d5ee

Browse files
Merge #1532: cmake: Disable eager MSan in ctime_tests
f55703b autotools: Delete unneeded compiler test (Hennadii Stepanov) 396e885 autotools: Align MSan checking code with CMake's implementation (Hennadii Stepanov) abde59f cmake: Report more compiler details in summary (Hennadii Stepanov) 7abf979 cmake: Disable `ctime_tests` if build with `-fsanitize=memory` (Hennadii Stepanov) Pull request description: Same as #1517, but for the CMakle build system. The second commit improves the configure summary (similar to hebasto/bitcoin#189. ACKs for top commit: real-or-random: ACK f55703b Tree-SHA512: 18190c062ae6e27d0ecbe7460cc22c960b25c0d35aa4b94f151d4b1c48f16e99fd5ecdfcb359784f95995292633d30d3d23b75a12be3aca5afffcc1e7e7daf31
2 parents 1791f6f + f55703b commit 4b8d5ee

File tree

4 files changed

+45
-5
lines changed

4 files changed

+45
-5
lines changed

CMakeLists.txt

+20-2
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,17 @@ endif()
263263

264264
set(CMAKE_C_VISIBILITY_PRESET hidden)
265265

266+
set(print_msan_notice)
267+
if(SECP256K1_BUILD_CTIME_TESTS)
268+
include(CheckMemorySanitizer)
269+
check_memory_sanitizer(msan_enabled)
270+
if(msan_enabled)
271+
try_append_c_flags(-fno-sanitize-memory-param-retval)
272+
set(print_msan_notice YES)
273+
endif()
274+
unset(msan_enabled)
275+
endif()
276+
266277
# Ask CTest to create a "check" target (e.g., make check) as alias for the "test" target.
267278
# CTEST_TEST_TARGET_ALIAS is not documented but supposed to be user-facing.
268279
# See: https://gitlab.kitware.com/cmake/cmake/-/commit/816c9d1aa1f2b42d40c81a991b68c96eb12b6d2
@@ -332,7 +343,7 @@ message("Valgrind .............................. ${SECP256K1_VALGRIND}")
332343
get_directory_property(definitions COMPILE_DEFINITIONS)
333344
string(REPLACE ";" " " definitions "${definitions}")
334345
message("Preprocessor defined macros ........... ${definitions}")
335-
message("C compiler ............................ ${CMAKE_C_COMPILER}")
346+
message("C compiler ............................ ${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}, ${CMAKE_C_COMPILER}")
336347
message("CFLAGS ................................ ${CMAKE_C_FLAGS}")
337348
get_directory_property(compile_options COMPILE_OPTIONS)
338349
string(REPLACE ";" " " compile_options "${compile_options}")
@@ -358,7 +369,14 @@ endif()
358369
if(SECP256K1_LATE_CFLAGS)
359370
message("SECP256K1_LATE_CFLAGS ................. ${SECP256K1_LATE_CFLAGS}")
360371
endif()
361-
message("\n")
372+
message("")
373+
if(print_msan_notice)
374+
message(
375+
"Note:\n"
376+
" MemorySanitizer detected, tried to add -fno-sanitize-memory-param-retval to compile options\n"
377+
" to avoid false positives in ctime_tests. Pass -DSECP256K1_BUILD_CTIME_TESTS=OFF to avoid this.\n"
378+
)
379+
endif()
362380
if(SECP256K1_EXPERIMENTAL)
363381
message(
364382
" ******\n"

build-aux/m4/bitcoin_secp.m4

+6-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,14 @@ AC_MSG_CHECKING(whether MemorySanitizer is enabled)
5050
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
5151
#if defined(__has_feature)
5252
# if __has_feature(memory_sanitizer)
53-
# error "MemorySanitizer is enabled."
53+
/* MemorySanitizer is enabled. */
54+
# elif
55+
# error "MemorySanitizer is disabled."
5456
# endif
57+
#else
58+
# error "__has_feature is not defined."
5559
#endif
56-
]])], [msan_enabled=no], [msan_enabled=yes])
60+
]])], [msan_enabled=yes], [msan_enabled=no])
5761
AC_MSG_RESULT([$msan_enabled])
5862
])
5963

cmake/CheckMemorySanitizer.cmake

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
include_guard(GLOBAL)
2+
include(CheckCSourceCompiles)
3+
4+
function(check_memory_sanitizer output)
5+
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
6+
check_c_source_compiles("
7+
#if defined(__has_feature)
8+
# if __has_feature(memory_sanitizer)
9+
/* MemorySanitizer is enabled. */
10+
# elif
11+
# error \"MemorySanitizer is disabled.\"
12+
# endif
13+
#else
14+
# error \"__has_feature is not defined.\"
15+
#endif
16+
" HAVE_MSAN)
17+
set(${output} ${HAVE_MSAN} PARENT_SCOPE)
18+
endfunction()

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ if test x"$enable_ctime_tests" = x"auto"; then
248248
fi
249249

250250
print_msan_notice=no
251-
if test x"$enable_ctime_tests" = x"yes" && test x"$GCC" = x"yes"; then
251+
if test x"$enable_ctime_tests" = x"yes"; then
252252
SECP_MSAN_CHECK
253253
# MSan on Clang >=16 reports unitialized memory in function parameters and return values, even if
254254
# the uninitalized variable is never actually "used". This is called "eager" checking, and it's

0 commit comments

Comments
 (0)