]> git.saurik.com Git - apple/xnu.git/blame - san/kasan-blacklist
xnu-4570.1.46.tar.gz
[apple/xnu.git] / san / kasan-blacklist
CommitLineData
5ba3f43e
A
1# This file declares the list of source files that should be exempt from
2# AddressSanitizer instrumentation. Usually, this is because a file is used by
3# the AddressSanitizer runtime itself, or because the code executes before
4# the runtime has been initialized.
5
6# Exclude linker sets
7type:struct linker_set_entry
8type:linker_set_entry
9
10# Exclude KASAN itself
11src:./san/kasan.c
12src:./san/kasan-fakestack.c
13src:./san/kasan-x86_64.c
14src:./san/kasan-memintrinsics.c
15src:./san/kasan_dynamic_blacklist.c
16
17# Try really hard to avoid panicing while debugging
18src:./osfmk/kdp/*
19src:./osfmk/kern/debug.c
20
21# Exclude KASAN dependencies
22# XXX: could this be relaxed since fakestack is reentrant?
23src:./osfmk/kern/zalloc.c
24