Page MenuHomeFreeBSD

cdefs: Use __has_feature to gate the definition of __nosanitize*
ClosedPublic

Authored by markj on Oct 19 2024, 2:30 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jun 5, 8:26 AM
Unknown Object (File)
Sun, May 24, 2:37 AM
Unknown Object (File)
Fri, May 22, 9:31 AM
Unknown Object (File)
Wed, May 13, 5:15 AM
Unknown Object (File)
Wed, May 13, 5:14 AM
Unknown Object (File)
Wed, May 13, 5:13 AM
Unknown Object (File)
May 3 2026, 6:19 PM
Unknown Object (File)
Apr 25 2026, 6:38 PM
Subscribers

Details

Summary

clang 12 does not implement the coverage sanitizer, and the build fails
when attribute((no_sanitize("coverage"))) is used.

Try to work around the problem by giving __nosanitize* a non-trivial
definition only when the corresponding sanitizer is actually enabled in
the build.

Tested by reading disassembly of pmap_update_strided() and pmap_enter()
in a kernel compiled with "options COVERAGE", and similar sanity checks
for the other sanitizers. I also test-booted KASAN and KMSAN kernels in
amd64 bhyve.

Suggested by: jrtc27
Fixes: a78bacf3b0ec ("cdefs: Add __nosanitizecoverage")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj requested review of this revision.Oct 19 2024, 2:30 PM

Why test for clang? Is gcc broken for sanitizers?

This revision is now accepted and ready to land.Oct 19 2024, 2:47 PM
In D47193#1076016, @imp wrote:

Why test for clang? Is gcc broken for sanitizers?

See commit 4c235c0083837. I've never tested gcc+kernel sanitizers and I doubt they will just work (though hopefully it wouldn't require a lot of effort).