kasan.rst 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. .. SPDX-License-Identifier: GPL-2.0
  2. .. Copyright (C) 2023, Google LLC.
  3. Kernel Address Sanitizer (KASAN)
  4. ================================
  5. Overview
  6. --------
  7. Kernel Address Sanitizer (KASAN) is a dynamic memory safety error detector
  8. designed to find out-of-bounds and use-after-free bugs.
  9. KASAN has three modes:
  10. 1. Generic KASAN
  11. 2. Software Tag-Based KASAN
  12. 3. Hardware Tag-Based KASAN
  13. Generic KASAN, enabled with CONFIG_KASAN_GENERIC, is the mode intended for
  14. debugging, similar to userspace ASan. This mode is supported on many CPU
  15. architectures, but it has significant performance and memory overheads.
  16. Software Tag-Based KASAN or SW_TAGS KASAN, enabled with CONFIG_KASAN_SW_TAGS,
  17. can be used for both debugging and dogfood testing, similar to userspace HWASan.
  18. This mode is only supported for arm64, but its moderate memory overhead allows
  19. using it for testing on memory-restricted devices with real workloads.
  20. Hardware Tag-Based KASAN or HW_TAGS KASAN, enabled with CONFIG_KASAN_HW_TAGS,
  21. is the mode intended to be used as an in-field memory bug detector or as a
  22. security mitigation. This mode only works on arm64 CPUs that support MTE
  23. (Memory Tagging Extension), but it has low memory and performance overheads and
  24. thus can be used in production.
  25. For details about the memory and performance impact of each KASAN mode, see the
  26. descriptions of the corresponding Kconfig options.
  27. The Generic and the Software Tag-Based modes are commonly referred to as the
  28. software modes. The Software Tag-Based and the Hardware Tag-Based modes are
  29. referred to as the tag-based modes.
  30. Support
  31. -------
  32. Architectures
  33. ~~~~~~~~~~~~~
  34. Generic KASAN is supported on x86_64, arm, arm64, powerpc, riscv, s390, xtensa,
  35. and loongarch, and the tag-based KASAN modes are supported only on arm64.
  36. Compilers
  37. ~~~~~~~~~
  38. Software KASAN modes use compile-time instrumentation to insert validity checks
  39. before every memory access and thus require a compiler version that provides
  40. support for that. The Hardware Tag-Based mode relies on hardware to perform
  41. these checks but still requires a compiler version that supports the memory
  42. tagging instructions.
  43. Generic KASAN requires GCC version 8.3.0 or later
  44. or any Clang version supported by the kernel.
  45. Software Tag-Based KASAN requires GCC 11+
  46. or any Clang version supported by the kernel.
  47. Hardware Tag-Based KASAN requires GCC 10+ or Clang 12+.
  48. Memory types
  49. ~~~~~~~~~~~~
  50. Generic KASAN supports finding bugs in all of slab, page_alloc, vmap, vmalloc,
  51. stack, and global memory.
  52. Software Tag-Based KASAN supports slab, page_alloc, vmalloc, and stack memory.
  53. Hardware Tag-Based KASAN supports slab, page_alloc, and non-executable vmalloc
  54. memory.
  55. For slab, both software KASAN modes support SLUB and SLAB allocators, while
  56. Hardware Tag-Based KASAN only supports SLUB.
  57. Usage
  58. -----
  59. To enable KASAN, configure the kernel with::
  60. CONFIG_KASAN=y
  61. and choose between ``CONFIG_KASAN_GENERIC`` (to enable Generic KASAN),
  62. ``CONFIG_KASAN_SW_TAGS`` (to enable Software Tag-Based KASAN), and
  63. ``CONFIG_KASAN_HW_TAGS`` (to enable Hardware Tag-Based KASAN).
  64. For the software modes, also choose between ``CONFIG_KASAN_OUTLINE`` and
  65. ``CONFIG_KASAN_INLINE``. Outline and inline are compiler instrumentation types.
  66. The former produces a smaller binary while the latter is up to 2 times faster.
  67. To include alloc and free stack traces of affected slab objects into reports,
  68. enable ``CONFIG_STACKTRACE``. To include alloc and free stack traces of affected
  69. physical pages, enable ``CONFIG_PAGE_OWNER`` and boot with ``page_owner=on``.
  70. Boot parameters
  71. ~~~~~~~~~~~~~~~
  72. KASAN is affected by the generic ``panic_on_warn`` command line parameter.
  73. When it is enabled, KASAN panics the kernel after printing a bug report.
  74. By default, KASAN prints a bug report only for the first invalid memory access.
  75. With ``kasan_multi_shot``, KASAN prints a report on every invalid access. This
  76. effectively disables ``panic_on_warn`` for KASAN reports.
  77. Alternatively, independent of ``panic_on_warn``, the ``kasan.fault=`` boot
  78. parameter can be used to control panic and reporting behaviour:
  79. - ``kasan.fault=report``, ``=panic``, or ``=panic_on_write`` controls whether
  80. to only print a KASAN report, panic the kernel, or panic the kernel on
  81. invalid writes only (default: ``report``). The panic happens even if
  82. ``kasan_multi_shot`` is enabled. Note that when using asynchronous mode of
  83. Hardware Tag-Based KASAN, ``kasan.fault=panic_on_write`` always panics on
  84. asynchronously checked accesses (including reads).
  85. Software and Hardware Tag-Based KASAN modes (see the section about various
  86. modes below) support altering stack trace collection behavior:
  87. - ``kasan.stacktrace=off`` or ``=on`` disables or enables alloc and free stack
  88. traces collection (default: ``on``).
  89. - ``kasan.stack_ring_size=<number of entries>`` specifies the number of entries
  90. in the stack ring (default: ``32768``).
  91. Hardware Tag-Based KASAN mode is intended for use in production as a security
  92. mitigation. Therefore, it supports additional boot parameters that allow
  93. disabling KASAN altogether or controlling its features:
  94. - ``kasan=off`` or ``=on`` controls whether KASAN is enabled (default: ``on``).
  95. - ``kasan.mode=sync``, ``=async`` or ``=asymm`` controls whether KASAN
  96. is configured in synchronous, asynchronous or asymmetric mode of
  97. execution (default: ``sync``).
  98. Synchronous mode: a bad access is detected immediately when a tag
  99. check fault occurs.
  100. Asynchronous mode: a bad access detection is delayed. When a tag check
  101. fault occurs, the information is stored in hardware (in the TFSR_EL1
  102. register for arm64). The kernel periodically checks the hardware and
  103. only reports tag faults during these checks.
  104. Asymmetric mode: a bad access is detected synchronously on reads and
  105. asynchronously on writes.
  106. - ``kasan.vmalloc=off`` or ``=on`` disables or enables tagging of vmalloc
  107. allocations (default: ``on``).
  108. - ``kasan.page_alloc.sample=<sampling interval>`` makes KASAN tag only every
  109. Nth page_alloc allocation with the order equal or greater than
  110. ``kasan.page_alloc.sample.order``, where N is the value of the ``sample``
  111. parameter (default: ``1``, or tag every such allocation).
  112. This parameter is intended to mitigate the performance overhead introduced
  113. by KASAN.
  114. Note that enabling this parameter makes Hardware Tag-Based KASAN skip checks
  115. of allocations chosen by sampling and thus miss bad accesses to these
  116. allocations. Use the default value for accurate bug detection.
  117. - ``kasan.page_alloc.sample.order=<minimum page order>`` specifies the minimum
  118. order of allocations that are affected by sampling (default: ``3``).
  119. Only applies when ``kasan.page_alloc.sample`` is set to a value greater
  120. than ``1``.
  121. This parameter is intended to allow sampling only large page_alloc
  122. allocations, which is the biggest source of the performance overhead.
  123. Error reports
  124. ~~~~~~~~~~~~~
  125. A typical KASAN report looks like this::
  126. ==================================================================
  127. BUG: KASAN: slab-out-of-bounds in kmalloc_oob_right+0xa8/0xbc [kasan_test]
  128. Write of size 1 at addr ffff8801f44ec37b by task insmod/2760
  129. CPU: 1 PID: 2760 Comm: insmod Not tainted 4.19.0-rc3+ #698
  130. Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014
  131. Call Trace:
  132. dump_stack+0x94/0xd8
  133. print_address_description+0x73/0x280
  134. kasan_report+0x144/0x187
  135. __asan_report_store1_noabort+0x17/0x20
  136. kmalloc_oob_right+0xa8/0xbc [kasan_test]
  137. kmalloc_tests_init+0x16/0x700 [kasan_test]
  138. do_one_initcall+0xa5/0x3ae
  139. do_init_module+0x1b6/0x547
  140. load_module+0x75df/0x8070
  141. __do_sys_init_module+0x1c6/0x200
  142. __x64_sys_init_module+0x6e/0xb0
  143. do_syscall_64+0x9f/0x2c0
  144. entry_SYSCALL_64_after_hwframe+0x44/0xa9
  145. RIP: 0033:0x7f96443109da
  146. RSP: 002b:00007ffcf0b51b08 EFLAGS: 00000202 ORIG_RAX: 00000000000000af
  147. RAX: ffffffffffffffda RBX: 000055dc3ee521a0 RCX: 00007f96443109da
  148. RDX: 00007f96445cff88 RSI: 0000000000057a50 RDI: 00007f9644992000
  149. RBP: 000055dc3ee510b0 R08: 0000000000000003 R09: 0000000000000000
  150. R10: 00007f964430cd0a R11: 0000000000000202 R12: 00007f96445cff88
  151. R13: 000055dc3ee51090 R14: 0000000000000000 R15: 0000000000000000
  152. Allocated by task 2760:
  153. save_stack+0x43/0xd0
  154. kasan_kmalloc+0xa7/0xd0
  155. kmem_cache_alloc_trace+0xe1/0x1b0
  156. kmalloc_oob_right+0x56/0xbc [kasan_test]
  157. kmalloc_tests_init+0x16/0x700 [kasan_test]
  158. do_one_initcall+0xa5/0x3ae
  159. do_init_module+0x1b6/0x547
  160. load_module+0x75df/0x8070
  161. __do_sys_init_module+0x1c6/0x200
  162. __x64_sys_init_module+0x6e/0xb0
  163. do_syscall_64+0x9f/0x2c0
  164. entry_SYSCALL_64_after_hwframe+0x44/0xa9
  165. Freed by task 815:
  166. save_stack+0x43/0xd0
  167. __kasan_slab_free+0x135/0x190
  168. kasan_slab_free+0xe/0x10
  169. kfree+0x93/0x1a0
  170. umh_complete+0x6a/0xa0
  171. call_usermodehelper_exec_async+0x4c3/0x640
  172. ret_from_fork+0x35/0x40
  173. The buggy address belongs to the object at ffff8801f44ec300
  174. which belongs to the cache kmalloc-128 of size 128
  175. The buggy address is located 123 bytes inside of
  176. 128-byte region [ffff8801f44ec300, ffff8801f44ec380)
  177. The buggy address belongs to the page:
  178. page:ffffea0007d13b00 count:1 mapcount:0 mapping:ffff8801f7001640 index:0x0
  179. flags: 0x200000000000100(slab)
  180. raw: 0200000000000100 ffffea0007d11dc0 0000001a0000001a ffff8801f7001640
  181. raw: 0000000000000000 0000000080150015 00000001ffffffff 0000000000000000
  182. page dumped because: kasan: bad access detected
  183. Memory state around the buggy address:
  184. ffff8801f44ec200: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
  185. ffff8801f44ec280: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
  186. >ffff8801f44ec300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03
  187. ^
  188. ffff8801f44ec380: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
  189. ffff8801f44ec400: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
  190. ==================================================================
  191. The report header summarizes what kind of bug happened and what kind of access
  192. caused it. It is followed by a stack trace of the bad access, a stack trace of
  193. where the accessed memory was allocated (in case a slab object was accessed),
  194. and a stack trace of where the object was freed (in case of a use-after-free
  195. bug report). Next comes a description of the accessed slab object and the
  196. information about the accessed memory page.
  197. In the end, the report shows the memory state around the accessed address.
  198. Internally, KASAN tracks memory state separately for each memory granule, which
  199. is either 8 or 16 aligned bytes depending on KASAN mode. Each number in the
  200. memory state section of the report shows the state of one of the memory
  201. granules that surround the accessed address.
  202. For Generic KASAN, the size of each memory granule is 8. The state of each
  203. granule is encoded in one shadow byte. Those 8 bytes can be accessible,
  204. partially accessible, freed, or be a part of a redzone. KASAN uses the following
  205. encoding for each shadow byte: 00 means that all 8 bytes of the corresponding
  206. memory region are accessible; number N (1 <= N <= 7) means that the first N
  207. bytes are accessible, and other (8 - N) bytes are not; any negative value
  208. indicates that the entire 8-byte word is inaccessible. KASAN uses different
  209. negative values to distinguish between different kinds of inaccessible memory
  210. like redzones or freed memory (see mm/kasan/kasan.h).
  211. In the report above, the arrow points to the shadow byte ``03``, which means
  212. that the accessed address is partially accessible.
  213. For tag-based KASAN modes, this last report section shows the memory tags around
  214. the accessed address (see the `Implementation details`_ section).
  215. Note that KASAN bug titles (like ``slab-out-of-bounds`` or ``use-after-free``)
  216. are best-effort: KASAN prints the most probable bug type based on the limited
  217. information it has. The actual type of the bug might be different.
  218. Generic KASAN also reports up to two auxiliary call stack traces. These stack
  219. traces point to places in code that interacted with the object but that are not
  220. directly present in the bad access stack trace. Currently, this includes
  221. call_rcu() and workqueue queuing.
  222. CONFIG_KASAN_EXTRA_INFO
  223. ~~~~~~~~~~~~~~~~~~~~~~~
  224. Enabling CONFIG_KASAN_EXTRA_INFO allows KASAN to record and report more
  225. information. The extra information currently supported is the CPU number and
  226. timestamp at allocation and free. More information can help find the cause of
  227. the bug and correlate the error with other system events, at the cost of using
  228. extra memory to record more information (more cost details in the help text of
  229. CONFIG_KASAN_EXTRA_INFO).
  230. Here is the report with CONFIG_KASAN_EXTRA_INFO enabled (only the
  231. different parts are shown)::
  232. ==================================================================
  233. ...
  234. Allocated by task 134 on cpu 5 at 229.133855s:
  235. ...
  236. Freed by task 136 on cpu 3 at 230.199335s:
  237. ...
  238. ==================================================================
  239. Implementation details
  240. ----------------------
  241. Generic KASAN
  242. ~~~~~~~~~~~~~
  243. Software KASAN modes use shadow memory to record whether each byte of memory is
  244. safe to access and use compile-time instrumentation to insert shadow memory
  245. checks before each memory access.
  246. Generic KASAN dedicates 1/8th of kernel memory to its shadow memory (16TB
  247. to cover 128TB on x86_64) and uses direct mapping with a scale and offset to
  248. translate a memory address to its corresponding shadow address.
  249. Here is the function which translates an address to its corresponding shadow
  250. address::
  251. static inline void *kasan_mem_to_shadow(const void *addr)
  252. {
  253. return (void *)((unsigned long)addr >> KASAN_SHADOW_SCALE_SHIFT)
  254. + KASAN_SHADOW_OFFSET;
  255. }
  256. where ``KASAN_SHADOW_SCALE_SHIFT = 3``.
  257. Compile-time instrumentation is used to insert memory access checks. Compiler
  258. inserts function calls (``__asan_load*(addr)``, ``__asan_store*(addr)``) before
  259. each memory access of size 1, 2, 4, 8, or 16. These functions check whether
  260. memory accesses are valid or not by checking corresponding shadow memory.
  261. With inline instrumentation, instead of making function calls, the compiler
  262. directly inserts the code to check shadow memory. This option significantly
  263. enlarges the kernel, but it gives an x1.1-x2 performance boost over the
  264. outline-instrumented kernel.
  265. Generic KASAN is the only mode that delays the reuse of freed objects via
  266. quarantine (see mm/kasan/quarantine.c for implementation).
  267. Software Tag-Based KASAN
  268. ~~~~~~~~~~~~~~~~~~~~~~~~
  269. Software Tag-Based KASAN uses a software memory tagging approach to checking
  270. access validity. It is currently only implemented for the arm64 architecture.
  271. Software Tag-Based KASAN uses the Top Byte Ignore (TBI) feature of arm64 CPUs
  272. to store a pointer tag in the top byte of kernel pointers. It uses shadow memory
  273. to store memory tags associated with each 16-byte memory cell (therefore, it
  274. dedicates 1/16th of the kernel memory for shadow memory).
  275. On each memory allocation, Software Tag-Based KASAN generates a random tag, tags
  276. the allocated memory with this tag, and embeds the same tag into the returned
  277. pointer.
  278. Software Tag-Based KASAN uses compile-time instrumentation to insert checks
  279. before each memory access. These checks make sure that the tag of the memory
  280. that is being accessed is equal to the tag of the pointer that is used to access
  281. this memory. In case of a tag mismatch, Software Tag-Based KASAN prints a bug
  282. report.
  283. Software Tag-Based KASAN also has two instrumentation modes (outline, which
  284. emits callbacks to check memory accesses; and inline, which performs the shadow
  285. memory checks inline). With outline instrumentation mode, a bug report is
  286. printed from the function that performs the access check. With inline
  287. instrumentation, a ``brk`` instruction is emitted by the compiler, and a
  288. dedicated ``brk`` handler is used to print bug reports.
  289. Software Tag-Based KASAN uses 0xFF as a match-all pointer tag (accesses through
  290. pointers with the 0xFF pointer tag are not checked). The value 0xFE is currently
  291. reserved to tag freed memory regions.
  292. Hardware Tag-Based KASAN
  293. ~~~~~~~~~~~~~~~~~~~~~~~~
  294. Hardware Tag-Based KASAN is similar to the software mode in concept but uses
  295. hardware memory tagging support instead of compiler instrumentation and
  296. shadow memory.
  297. Hardware Tag-Based KASAN is currently only implemented for arm64 architecture
  298. and based on both arm64 Memory Tagging Extension (MTE) introduced in ARMv8.5
  299. Instruction Set Architecture and Top Byte Ignore (TBI).
  300. Special arm64 instructions are used to assign memory tags for each allocation.
  301. Same tags are assigned to pointers to those allocations. On every memory
  302. access, hardware makes sure that the tag of the memory that is being accessed is
  303. equal to the tag of the pointer that is used to access this memory. In case of a
  304. tag mismatch, a fault is generated, and a report is printed.
  305. Hardware Tag-Based KASAN uses 0xFF as a match-all pointer tag (accesses through
  306. pointers with the 0xFF pointer tag are not checked). The value 0xFE is currently
  307. reserved to tag freed memory regions.
  308. If the hardware does not support MTE (pre ARMv8.5), Hardware Tag-Based KASAN
  309. will not be enabled. In this case, all KASAN boot parameters are ignored.
  310. Note that enabling CONFIG_KASAN_HW_TAGS always results in in-kernel TBI being
  311. enabled. Even when ``kasan.mode=off`` is provided or when the hardware does not
  312. support MTE (but supports TBI).
  313. Hardware Tag-Based KASAN only reports the first found bug. After that, MTE tag
  314. checking gets disabled.
  315. Shadow memory
  316. -------------
  317. The contents of this section are only applicable to software KASAN modes.
  318. The kernel maps memory in several different parts of the address space.
  319. The range of kernel virtual addresses is large: there is not enough real
  320. memory to support a real shadow region for every address that could be
  321. accessed by the kernel. Therefore, KASAN only maps real shadow for certain
  322. parts of the address space.
  323. Default behaviour
  324. ~~~~~~~~~~~~~~~~~
  325. By default, architectures only map real memory over the shadow region
  326. for the linear mapping (and potentially other small areas). For all
  327. other areas - such as vmalloc and vmemmap space - a single read-only
  328. page is mapped over the shadow area. This read-only shadow page
  329. declares all memory accesses as permitted.
  330. This presents a problem for modules: they do not live in the linear
  331. mapping but in a dedicated module space. By hooking into the module
  332. allocator, KASAN temporarily maps real shadow memory to cover them.
  333. This allows detection of invalid accesses to module globals, for example.
  334. This also creates an incompatibility with ``VMAP_STACK``: if the stack
  335. lives in vmalloc space, it will be shadowed by the read-only page, and
  336. the kernel will fault when trying to set up the shadow data for stack
  337. variables.
  338. CONFIG_KASAN_VMALLOC
  339. ~~~~~~~~~~~~~~~~~~~~
  340. With ``CONFIG_KASAN_VMALLOC``, KASAN can cover vmalloc space at the
  341. cost of greater memory usage. Currently, this is supported on x86,
  342. arm64, riscv, s390, and powerpc.
  343. This works by hooking into vmalloc and vmap and dynamically
  344. allocating real shadow memory to back the mappings.
  345. Most mappings in vmalloc space are small, requiring less than a full
  346. page of shadow space. Allocating a full shadow page per mapping would
  347. therefore be wasteful. Furthermore, to ensure that different mappings
  348. use different shadow pages, mappings would have to be aligned to
  349. ``KASAN_GRANULE_SIZE * PAGE_SIZE``.
  350. Instead, KASAN shares backing space across multiple mappings. It allocates
  351. a backing page when a mapping in vmalloc space uses a particular page
  352. of the shadow region. This page can be shared by other vmalloc
  353. mappings later on.
  354. KASAN hooks into the vmap infrastructure to lazily clean up unused shadow
  355. memory.
  356. To avoid the difficulties around swapping mappings around, KASAN expects
  357. that the part of the shadow region that covers the vmalloc space will
  358. not be covered by the early shadow page but will be left unmapped.
  359. This will require changes in arch-specific code.
  360. This allows ``VMAP_STACK`` support on x86 and can simplify support of
  361. architectures that do not have a fixed module region.
  362. For developers
  363. --------------
  364. Ignoring accesses
  365. ~~~~~~~~~~~~~~~~~
  366. Software KASAN modes use compiler instrumentation to insert validity checks.
  367. Such instrumentation might be incompatible with some parts of the kernel, and
  368. therefore needs to be disabled.
  369. Other parts of the kernel might access metadata for allocated objects.
  370. Normally, KASAN detects and reports such accesses, but in some cases (e.g.,
  371. in memory allocators), these accesses are valid.
  372. For software KASAN modes, to disable instrumentation for a specific file or
  373. directory, add a ``KASAN_SANITIZE`` annotation to the respective kernel
  374. Makefile:
  375. - For a single file (e.g., main.o)::
  376. KASAN_SANITIZE_main.o := n
  377. - For all files in one directory::
  378. KASAN_SANITIZE := n
  379. For software KASAN modes, to disable instrumentation on a per-function basis,
  380. use the KASAN-specific ``__no_sanitize_address`` function attribute or the
  381. generic ``noinstr`` one.
  382. Note that disabling compiler instrumentation (either on a per-file or a
  383. per-function basis) makes KASAN ignore the accesses that happen directly in
  384. that code for software KASAN modes. It does not help when the accesses happen
  385. indirectly (through calls to instrumented functions) or with Hardware
  386. Tag-Based KASAN, which does not use compiler instrumentation.
  387. For software KASAN modes, to disable KASAN reports in a part of the kernel code
  388. for the current task, annotate this part of the code with a
  389. ``kasan_disable_current()``/``kasan_enable_current()`` section. This also
  390. disables the reports for indirect accesses that happen through function calls.
  391. For tag-based KASAN modes, to disable access checking, use
  392. ``kasan_reset_tag()`` or ``page_kasan_tag_reset()``. Note that temporarily
  393. disabling access checking via ``page_kasan_tag_reset()`` requires saving and
  394. restoring the per-page KASAN tag via ``page_kasan_tag``/``page_kasan_tag_set``.
  395. Tests
  396. ~~~~~
  397. There are KASAN tests that allow verifying that KASAN works and can detect
  398. certain types of memory corruptions. The tests consist of two parts:
  399. 1. Tests that are integrated with the KUnit Test Framework. Enabled with
  400. ``CONFIG_KASAN_KUNIT_TEST``. These tests can be run and partially verified
  401. automatically in a few different ways; see the instructions below.
  402. 2. Tests that are currently incompatible with KUnit. Enabled with
  403. ``CONFIG_KASAN_MODULE_TEST`` and can only be run as a module. These tests can
  404. only be verified manually by loading the kernel module and inspecting the
  405. kernel log for KASAN reports.
  406. Each KUnit-compatible KASAN test prints one of multiple KASAN reports if an
  407. error is detected. Then the test prints its number and status.
  408. When a test passes::
  409. ok 28 - kmalloc_double_kzfree
  410. When a test fails due to a failed ``kmalloc``::
  411. # kmalloc_large_oob_right: ASSERTION FAILED at mm/kasan/kasan_test.c:245
  412. Expected ptr is not null, but is
  413. not ok 5 - kmalloc_large_oob_right
  414. When a test fails due to a missing KASAN report::
  415. # kmalloc_double_kzfree: EXPECTATION FAILED at mm/kasan/kasan_test.c:709
  416. KASAN failure expected in "kfree_sensitive(ptr)", but none occurred
  417. not ok 28 - kmalloc_double_kzfree
  418. At the end the cumulative status of all KASAN tests is printed. On success::
  419. ok 1 - kasan
  420. Or, if one of the tests failed::
  421. not ok 1 - kasan
  422. There are a few ways to run KUnit-compatible KASAN tests.
  423. 1. Loadable module
  424. With ``CONFIG_KUNIT`` enabled, KASAN-KUnit tests can be built as a loadable
  425. module and run by loading ``kasan_test.ko`` with ``insmod`` or ``modprobe``.
  426. 2. Built-In
  427. With ``CONFIG_KUNIT`` built-in, KASAN-KUnit tests can be built-in as well.
  428. In this case, the tests will run at boot as a late-init call.
  429. 3. Using kunit_tool
  430. With ``CONFIG_KUNIT`` and ``CONFIG_KASAN_KUNIT_TEST`` built-in, it is also
  431. possible to use ``kunit_tool`` to see the results of KUnit tests in a more
  432. readable way. This will not print the KASAN reports of the tests that passed.
  433. See `KUnit documentation <https://www.kernel.org/doc/html/latest/dev-tools/kunit/index.html>`_
  434. for more up-to-date information on ``kunit_tool``.
  435. .. _KUnit: https://www.kernel.org/doc/html/latest/dev-tools/kunit/index.html