Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Jan 2024 18:20:18 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 06fc42c0cb1f - stable/14 - libc/amd64: Disable ASAN for amd64_archlevel.c
Message-ID:  <202401301820.40UIKIqc010979@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=06fc42c0cb1f34063a206d82c7076cba4caf13b9

commit 06fc42c0cb1f34063a206d82c7076cba4caf13b9
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-01-28 02:49:41 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-01-30 18:01:58 +0000

    libc/amd64: Disable ASAN for amd64_archlevel.c
    
    The code in this file runs before the sanitizer can initialize its
    shadow map.
    
    Fixes:  ad2fac552c3f ("lib/libc/amd64: add archlevel-based simd dispatch framework")
    
    (cherry picked from commit 4dedcb1bb54cbbe8043c79ad733f966b6ffc6972)
---
 lib/libc/amd64/string/Makefile.inc | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/libc/amd64/string/Makefile.inc b/lib/libc/amd64/string/Makefile.inc
index b1369841bc74..d5bb646c5c53 100644
--- a/lib/libc/amd64/string/Makefile.inc
+++ b/lib/libc/amd64/string/Makefile.inc
@@ -28,3 +28,9 @@ MDSRCS+= \
 	strspn.S \
 	timingsafe_bcmp.S \
 	timingsafe_memcmp.S
+
+.if ${MK_ASAN} != "no"
+# Disable ASAN for amd64_archlevel.c since its code is executed before the
+# sanitizer runtime can initialize itself.
+CFLAGS.amd64_archlevel.c+=	-fno-sanitize=address
+.endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401301820.40UIKIqc010979>