Move the MSan sanity check to a source file.
OSS-Fuzz builds fuzz/*.c without matching config, which pulls in crypto/internal.h. See https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9583. Change-Id: I4bd16f8741816ebef00d8102fd1f79b0cb16f6a3 Reviewed-on: https://boringssl-review.googlesource.com/30024 Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
parent
9af1edbe22
commit
ed09f2d5cd
@ -19,6 +19,19 @@
|
|||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(OPENSSL_MSAN) && !defined(OPENSSL_NO_ASM)
|
||||||
|
// MSan works by instrumenting memory accesses in the compiler. Accesses from
|
||||||
|
// uninstrumented code, such as assembly, are invisible to it. MSan will
|
||||||
|
// incorrectly report reads from assembly-initialized memory as uninitialized.
|
||||||
|
// If building BoringSSL with MSan, exclude assembly files from the build and
|
||||||
|
// define OPENSSL_NO_ASM.
|
||||||
|
//
|
||||||
|
// This is checked here rather than in a header because the consumer might not
|
||||||
|
// define OPENSSL_NO_ASM. It is only necessary for BoringSSL source files to be
|
||||||
|
// built with it.
|
||||||
|
#error "BoringSSL must be built with assembly disabled to use MSan."
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_STATIC_ARMCAP) && \
|
#if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_STATIC_ARMCAP) && \
|
||||||
(defined(OPENSSL_X86) || defined(OPENSSL_X86_64) || \
|
(defined(OPENSSL_X86) || defined(OPENSSL_X86_64) || \
|
||||||
defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64) || \
|
defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64) || \
|
||||||
|
@ -151,19 +151,6 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(OPENSSL_MSAN) && !defined(OPENSSL_NO_ASM)
|
|
||||||
// MSan works by instrumenting memory accesses in the compiler. Accesses from
|
|
||||||
// uninstrumented code, such as assembly, are invisible to it. MSan will
|
|
||||||
// incorrectly report reads from assembly-initialized memory as uninitialized.
|
|
||||||
// If building BoringSSL with MSan, exclude assembly files from the build and
|
|
||||||
// define OPENSSL_NO_ASM.
|
|
||||||
//
|
|
||||||
// This is checked here rather than in base.h because the consumer might not
|
|
||||||
// define OPENSSL_NO_ASM. It is only necessary for BoringSSL source files to be
|
|
||||||
// built with it.
|
|
||||||
#error "BoringSSL must be built with assembly disabled to use MSan."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(OPENSSL_X86) || defined(OPENSSL_X86_64) || defined(OPENSSL_ARM) || \
|
#if defined(OPENSSL_X86) || defined(OPENSSL_X86_64) || defined(OPENSSL_ARM) || \
|
||||||
defined(OPENSSL_AARCH64) || defined(OPENSSL_PPC64LE)
|
defined(OPENSSL_AARCH64) || defined(OPENSSL_PPC64LE)
|
||||||
// OPENSSL_cpuid_setup initializes the platform-specific feature cache.
|
// OPENSSL_cpuid_setup initializes the platform-specific feature cache.
|
||||||
|
Loading…
Reference in New Issue
Block a user