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)
Tue, Jul 28, 2:49 PM
Unknown Object (File)
Mon, Jul 27, 5:15 PM
Unknown Object (File)
Sat, Jul 25, 6:36 AM
Unknown Object (File)
Fri, Jul 24, 6:00 AM
Unknown Object (File)
Fri, Jul 24, 12:44 AM
Unknown Object (File)
Sat, Jul 18, 4:14 PM
Unknown Object (File)
Sun, Jul 12, 10:04 AM
Unknown Object (File)
Fri, Jul 10, 1:01 AM
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).