Back to home page

OSCL-LXR

 
 

    


0001 The Kernel Address Sanitizer (KASAN)
0002 ====================================
0003 
0004 Overview
0005 --------
0006 
0007 Kernel Address Sanitizer (KASAN) is a dynamic memory safety error detector
0008 designed to find out-of-bounds and use-after-free bugs.
0009 
0010 KASAN has three modes:
0011 
0012 1. Generic KASAN
0013 2. Software Tag-Based KASAN
0014 3. Hardware Tag-Based KASAN
0015 
0016 Generic KASAN, enabled with CONFIG_KASAN_GENERIC, is the mode intended for
0017 debugging, similar to userspace ASan. This mode is supported on many CPU
0018 architectures, but it has significant performance and memory overheads.
0019 
0020 Software Tag-Based KASAN or SW_TAGS KASAN, enabled with CONFIG_KASAN_SW_TAGS,
0021 can be used for both debugging and dogfood testing, similar to userspace HWASan.
0022 This mode is only supported for arm64, but its moderate memory overhead allows
0023 using it for testing on memory-restricted devices with real workloads.
0024 
0025 Hardware Tag-Based KASAN or HW_TAGS KASAN, enabled with CONFIG_KASAN_HW_TAGS,
0026 is the mode intended to be used as an in-field memory bug detector or as a
0027 security mitigation. This mode only works on arm64 CPUs that support MTE
0028 (Memory Tagging Extension), but it has low memory and performance overheads and
0029 thus can be used in production.
0030 
0031 For details about the memory and performance impact of each KASAN mode, see the
0032 descriptions of the corresponding Kconfig options.
0033 
0034 The Generic and the Software Tag-Based modes are commonly referred to as the
0035 software modes. The Software Tag-Based and the Hardware Tag-Based modes are
0036 referred to as the tag-based modes.
0037 
0038 Support
0039 -------
0040 
0041 Architectures
0042 ~~~~~~~~~~~~~
0043 
0044 Generic KASAN is supported on x86_64, arm, arm64, powerpc, riscv, s390, and
0045 xtensa, and the tag-based KASAN modes are supported only on arm64.
0046 
0047 Compilers
0048 ~~~~~~~~~
0049 
0050 Software KASAN modes use compile-time instrumentation to insert validity checks
0051 before every memory access and thus require a compiler version that provides
0052 support for that. The Hardware Tag-Based mode relies on hardware to perform
0053 these checks but still requires a compiler version that supports the memory
0054 tagging instructions.
0055 
0056 Generic KASAN requires GCC version 8.3.0 or later
0057 or any Clang version supported by the kernel.
0058 
0059 Software Tag-Based KASAN requires GCC 11+
0060 or any Clang version supported by the kernel.
0061 
0062 Hardware Tag-Based KASAN requires GCC 10+ or Clang 12+.
0063 
0064 Memory types
0065 ~~~~~~~~~~~~
0066 
0067 Generic KASAN supports finding bugs in all of slab, page_alloc, vmap, vmalloc,
0068 stack, and global memory.
0069 
0070 Software Tag-Based KASAN supports slab, page_alloc, vmalloc, and stack memory.
0071 
0072 Hardware Tag-Based KASAN supports slab, page_alloc, and non-executable vmalloc
0073 memory.
0074 
0075 For slab, both software KASAN modes support SLUB and SLAB allocators, while
0076 Hardware Tag-Based KASAN only supports SLUB.
0077 
0078 Usage
0079 -----
0080 
0081 To enable KASAN, configure the kernel with::
0082 
0083           CONFIG_KASAN=y
0084 
0085 and choose between ``CONFIG_KASAN_GENERIC`` (to enable Generic KASAN),
0086 ``CONFIG_KASAN_SW_TAGS`` (to enable Software Tag-Based KASAN), and
0087 ``CONFIG_KASAN_HW_TAGS`` (to enable Hardware Tag-Based KASAN).
0088 
0089 For the software modes, also choose between ``CONFIG_KASAN_OUTLINE`` and
0090 ``CONFIG_KASAN_INLINE``. Outline and inline are compiler instrumentation types.
0091 The former produces a smaller binary while the latter is up to 2 times faster.
0092 
0093 To include alloc and free stack traces of affected slab objects into reports,
0094 enable ``CONFIG_STACKTRACE``. To include alloc and free stack traces of affected
0095 physical pages, enable ``CONFIG_PAGE_OWNER`` and boot with ``page_owner=on``.
0096 
0097 Boot parameters
0098 ~~~~~~~~~~~~~~~
0099 
0100 KASAN is affected by the generic ``panic_on_warn`` command line parameter.
0101 When it is enabled, KASAN panics the kernel after printing a bug report.
0102 
0103 By default, KASAN prints a bug report only for the first invalid memory access.
0104 With ``kasan_multi_shot``, KASAN prints a report on every invalid access. This
0105 effectively disables ``panic_on_warn`` for KASAN reports.
0106 
0107 Alternatively, independent of ``panic_on_warn``, the ``kasan.fault=`` boot
0108 parameter can be used to control panic and reporting behaviour:
0109 
0110 - ``kasan.fault=report`` or ``=panic`` controls whether to only print a KASAN
0111   report or also panic the kernel (default: ``report``). The panic happens even
0112   if ``kasan_multi_shot`` is enabled.
0113 
0114 Hardware Tag-Based KASAN mode (see the section about various modes below) is
0115 intended for use in production as a security mitigation. Therefore, it supports
0116 additional boot parameters that allow disabling KASAN or controlling features:
0117 
0118 - ``kasan=off`` or ``=on`` controls whether KASAN is enabled (default: ``on``).
0119 
0120 - ``kasan.mode=sync``, ``=async`` or ``=asymm`` controls whether KASAN
0121   is configured in synchronous, asynchronous or asymmetric mode of
0122   execution (default: ``sync``).
0123   Synchronous mode: a bad access is detected immediately when a tag
0124   check fault occurs.
0125   Asynchronous mode: a bad access detection is delayed. When a tag check
0126   fault occurs, the information is stored in hardware (in the TFSR_EL1
0127   register for arm64). The kernel periodically checks the hardware and
0128   only reports tag faults during these checks.
0129   Asymmetric mode: a bad access is detected synchronously on reads and
0130   asynchronously on writes.
0131 
0132 - ``kasan.vmalloc=off`` or ``=on`` disables or enables tagging of vmalloc
0133   allocations (default: ``on``).
0134 
0135 - ``kasan.stacktrace=off`` or ``=on`` disables or enables alloc and free stack
0136   traces collection (default: ``on``).
0137 
0138 Error reports
0139 ~~~~~~~~~~~~~
0140 
0141 A typical KASAN report looks like this::
0142 
0143     ==================================================================
0144     BUG: KASAN: slab-out-of-bounds in kmalloc_oob_right+0xa8/0xbc [test_kasan]
0145     Write of size 1 at addr ffff8801f44ec37b by task insmod/2760
0146 
0147     CPU: 1 PID: 2760 Comm: insmod Not tainted 4.19.0-rc3+ #698
0148     Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1 04/01/2014
0149     Call Trace:
0150      dump_stack+0x94/0xd8
0151      print_address_description+0x73/0x280
0152      kasan_report+0x144/0x187
0153      __asan_report_store1_noabort+0x17/0x20
0154      kmalloc_oob_right+0xa8/0xbc [test_kasan]
0155      kmalloc_tests_init+0x16/0x700 [test_kasan]
0156      do_one_initcall+0xa5/0x3ae
0157      do_init_module+0x1b6/0x547
0158      load_module+0x75df/0x8070
0159      __do_sys_init_module+0x1c6/0x200
0160      __x64_sys_init_module+0x6e/0xb0
0161      do_syscall_64+0x9f/0x2c0
0162      entry_SYSCALL_64_after_hwframe+0x44/0xa9
0163     RIP: 0033:0x7f96443109da
0164     RSP: 002b:00007ffcf0b51b08 EFLAGS: 00000202 ORIG_RAX: 00000000000000af
0165     RAX: ffffffffffffffda RBX: 000055dc3ee521a0 RCX: 00007f96443109da
0166     RDX: 00007f96445cff88 RSI: 0000000000057a50 RDI: 00007f9644992000
0167     RBP: 000055dc3ee510b0 R08: 0000000000000003 R09: 0000000000000000
0168     R10: 00007f964430cd0a R11: 0000000000000202 R12: 00007f96445cff88
0169     R13: 000055dc3ee51090 R14: 0000000000000000 R15: 0000000000000000
0170 
0171     Allocated by task 2760:
0172      save_stack+0x43/0xd0
0173      kasan_kmalloc+0xa7/0xd0
0174      kmem_cache_alloc_trace+0xe1/0x1b0
0175      kmalloc_oob_right+0x56/0xbc [test_kasan]
0176      kmalloc_tests_init+0x16/0x700 [test_kasan]
0177      do_one_initcall+0xa5/0x3ae
0178      do_init_module+0x1b6/0x547
0179      load_module+0x75df/0x8070
0180      __do_sys_init_module+0x1c6/0x200
0181      __x64_sys_init_module+0x6e/0xb0
0182      do_syscall_64+0x9f/0x2c0
0183      entry_SYSCALL_64_after_hwframe+0x44/0xa9
0184 
0185     Freed by task 815:
0186      save_stack+0x43/0xd0
0187      __kasan_slab_free+0x135/0x190
0188      kasan_slab_free+0xe/0x10
0189      kfree+0x93/0x1a0
0190      umh_complete+0x6a/0xa0
0191      call_usermodehelper_exec_async+0x4c3/0x640
0192      ret_from_fork+0x35/0x40
0193 
0194     The buggy address belongs to the object at ffff8801f44ec300
0195      which belongs to the cache kmalloc-128 of size 128
0196     The buggy address is located 123 bytes inside of
0197      128-byte region [ffff8801f44ec300, ffff8801f44ec380)
0198     The buggy address belongs to the page:
0199     page:ffffea0007d13b00 count:1 mapcount:0 mapping:ffff8801f7001640 index:0x0
0200     flags: 0x200000000000100(slab)
0201     raw: 0200000000000100 ffffea0007d11dc0 0000001a0000001a ffff8801f7001640
0202     raw: 0000000000000000 0000000080150015 00000001ffffffff 0000000000000000
0203     page dumped because: kasan: bad access detected
0204 
0205     Memory state around the buggy address:
0206      ffff8801f44ec200: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
0207      ffff8801f44ec280: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
0208     >ffff8801f44ec300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03
0209                                                                     ^
0210      ffff8801f44ec380: fc fc fc fc fc fc fc fc fb fb fb fb fb fb fb fb
0211      ffff8801f44ec400: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
0212     ==================================================================
0213 
0214 The report header summarizes what kind of bug happened and what kind of access
0215 caused it. It is followed by a stack trace of the bad access, a stack trace of
0216 where the accessed memory was allocated (in case a slab object was accessed),
0217 and a stack trace of where the object was freed (in case of a use-after-free
0218 bug report). Next comes a description of the accessed slab object and the
0219 information about the accessed memory page.
0220 
0221 In the end, the report shows the memory state around the accessed address.
0222 Internally, KASAN tracks memory state separately for each memory granule, which
0223 is either 8 or 16 aligned bytes depending on KASAN mode. Each number in the
0224 memory state section of the report shows the state of one of the memory
0225 granules that surround the accessed address.
0226 
0227 For Generic KASAN, the size of each memory granule is 8. The state of each
0228 granule is encoded in one shadow byte. Those 8 bytes can be accessible,
0229 partially accessible, freed, or be a part of a redzone. KASAN uses the following
0230 encoding for each shadow byte: 00 means that all 8 bytes of the corresponding
0231 memory region are accessible; number N (1 <= N <= 7) means that the first N
0232 bytes are accessible, and other (8 - N) bytes are not; any negative value
0233 indicates that the entire 8-byte word is inaccessible. KASAN uses different
0234 negative values to distinguish between different kinds of inaccessible memory
0235 like redzones or freed memory (see mm/kasan/kasan.h).
0236 
0237 In the report above, the arrow points to the shadow byte ``03``, which means
0238 that the accessed address is partially accessible.
0239 
0240 For tag-based KASAN modes, this last report section shows the memory tags around
0241 the accessed address (see the `Implementation details`_ section).
0242 
0243 Note that KASAN bug titles (like ``slab-out-of-bounds`` or ``use-after-free``)
0244 are best-effort: KASAN prints the most probable bug type based on the limited
0245 information it has. The actual type of the bug might be different.
0246 
0247 Generic KASAN also reports up to two auxiliary call stack traces. These stack
0248 traces point to places in code that interacted with the object but that are not
0249 directly present in the bad access stack trace. Currently, this includes
0250 call_rcu() and workqueue queuing.
0251 
0252 Implementation details
0253 ----------------------
0254 
0255 Generic KASAN
0256 ~~~~~~~~~~~~~
0257 
0258 Software KASAN modes use shadow memory to record whether each byte of memory is
0259 safe to access and use compile-time instrumentation to insert shadow memory
0260 checks before each memory access.
0261 
0262 Generic KASAN dedicates 1/8th of kernel memory to its shadow memory (16TB
0263 to cover 128TB on x86_64) and uses direct mapping with a scale and offset to
0264 translate a memory address to its corresponding shadow address.
0265 
0266 Here is the function which translates an address to its corresponding shadow
0267 address::
0268 
0269     static inline void *kasan_mem_to_shadow(const void *addr)
0270     {
0271         return (void *)((unsigned long)addr >> KASAN_SHADOW_SCALE_SHIFT)
0272                 + KASAN_SHADOW_OFFSET;
0273     }
0274 
0275 where ``KASAN_SHADOW_SCALE_SHIFT = 3``.
0276 
0277 Compile-time instrumentation is used to insert memory access checks. Compiler
0278 inserts function calls (``__asan_load*(addr)``, ``__asan_store*(addr)``) before
0279 each memory access of size 1, 2, 4, 8, or 16. These functions check whether
0280 memory accesses are valid or not by checking corresponding shadow memory.
0281 
0282 With inline instrumentation, instead of making function calls, the compiler
0283 directly inserts the code to check shadow memory. This option significantly
0284 enlarges the kernel, but it gives an x1.1-x2 performance boost over the
0285 outline-instrumented kernel.
0286 
0287 Generic KASAN is the only mode that delays the reuse of freed objects via
0288 quarantine (see mm/kasan/quarantine.c for implementation).
0289 
0290 Software Tag-Based KASAN
0291 ~~~~~~~~~~~~~~~~~~~~~~~~
0292 
0293 Software Tag-Based KASAN uses a software memory tagging approach to checking
0294 access validity. It is currently only implemented for the arm64 architecture.
0295 
0296 Software Tag-Based KASAN uses the Top Byte Ignore (TBI) feature of arm64 CPUs
0297 to store a pointer tag in the top byte of kernel pointers. It uses shadow memory
0298 to store memory tags associated with each 16-byte memory cell (therefore, it
0299 dedicates 1/16th of the kernel memory for shadow memory).
0300 
0301 On each memory allocation, Software Tag-Based KASAN generates a random tag, tags
0302 the allocated memory with this tag, and embeds the same tag into the returned
0303 pointer.
0304 
0305 Software Tag-Based KASAN uses compile-time instrumentation to insert checks
0306 before each memory access. These checks make sure that the tag of the memory
0307 that is being accessed is equal to the tag of the pointer that is used to access
0308 this memory. In case of a tag mismatch, Software Tag-Based KASAN prints a bug
0309 report.
0310 
0311 Software Tag-Based KASAN also has two instrumentation modes (outline, which
0312 emits callbacks to check memory accesses; and inline, which performs the shadow
0313 memory checks inline). With outline instrumentation mode, a bug report is
0314 printed from the function that performs the access check. With inline
0315 instrumentation, a ``brk`` instruction is emitted by the compiler, and a
0316 dedicated ``brk`` handler is used to print bug reports.
0317 
0318 Software Tag-Based KASAN uses 0xFF as a match-all pointer tag (accesses through
0319 pointers with the 0xFF pointer tag are not checked). The value 0xFE is currently
0320 reserved to tag freed memory regions.
0321 
0322 Hardware Tag-Based KASAN
0323 ~~~~~~~~~~~~~~~~~~~~~~~~
0324 
0325 Hardware Tag-Based KASAN is similar to the software mode in concept but uses
0326 hardware memory tagging support instead of compiler instrumentation and
0327 shadow memory.
0328 
0329 Hardware Tag-Based KASAN is currently only implemented for arm64 architecture
0330 and based on both arm64 Memory Tagging Extension (MTE) introduced in ARMv8.5
0331 Instruction Set Architecture and Top Byte Ignore (TBI).
0332 
0333 Special arm64 instructions are used to assign memory tags for each allocation.
0334 Same tags are assigned to pointers to those allocations. On every memory
0335 access, hardware makes sure that the tag of the memory that is being accessed is
0336 equal to the tag of the pointer that is used to access this memory. In case of a
0337 tag mismatch, a fault is generated, and a report is printed.
0338 
0339 Hardware Tag-Based KASAN uses 0xFF as a match-all pointer tag (accesses through
0340 pointers with the 0xFF pointer tag are not checked). The value 0xFE is currently
0341 reserved to tag freed memory regions.
0342 
0343 If the hardware does not support MTE (pre ARMv8.5), Hardware Tag-Based KASAN
0344 will not be enabled. In this case, all KASAN boot parameters are ignored.
0345 
0346 Note that enabling CONFIG_KASAN_HW_TAGS always results in in-kernel TBI being
0347 enabled. Even when ``kasan.mode=off`` is provided or when the hardware does not
0348 support MTE (but supports TBI).
0349 
0350 Hardware Tag-Based KASAN only reports the first found bug. After that, MTE tag
0351 checking gets disabled.
0352 
0353 Shadow memory
0354 -------------
0355 
0356 The contents of this section are only applicable to software KASAN modes.
0357 
0358 The kernel maps memory in several different parts of the address space.
0359 The range of kernel virtual addresses is large: there is not enough real
0360 memory to support a real shadow region for every address that could be
0361 accessed by the kernel. Therefore, KASAN only maps real shadow for certain
0362 parts of the address space.
0363 
0364 Default behaviour
0365 ~~~~~~~~~~~~~~~~~
0366 
0367 By default, architectures only map real memory over the shadow region
0368 for the linear mapping (and potentially other small areas). For all
0369 other areas - such as vmalloc and vmemmap space - a single read-only
0370 page is mapped over the shadow area. This read-only shadow page
0371 declares all memory accesses as permitted.
0372 
0373 This presents a problem for modules: they do not live in the linear
0374 mapping but in a dedicated module space. By hooking into the module
0375 allocator, KASAN temporarily maps real shadow memory to cover them.
0376 This allows detection of invalid accesses to module globals, for example.
0377 
0378 This also creates an incompatibility with ``VMAP_STACK``: if the stack
0379 lives in vmalloc space, it will be shadowed by the read-only page, and
0380 the kernel will fault when trying to set up the shadow data for stack
0381 variables.
0382 
0383 CONFIG_KASAN_VMALLOC
0384 ~~~~~~~~~~~~~~~~~~~~
0385 
0386 With ``CONFIG_KASAN_VMALLOC``, KASAN can cover vmalloc space at the
0387 cost of greater memory usage. Currently, this is supported on x86,
0388 arm64, riscv, s390, and powerpc.
0389 
0390 This works by hooking into vmalloc and vmap and dynamically
0391 allocating real shadow memory to back the mappings.
0392 
0393 Most mappings in vmalloc space are small, requiring less than a full
0394 page of shadow space. Allocating a full shadow page per mapping would
0395 therefore be wasteful. Furthermore, to ensure that different mappings
0396 use different shadow pages, mappings would have to be aligned to
0397 ``KASAN_GRANULE_SIZE * PAGE_SIZE``.
0398 
0399 Instead, KASAN shares backing space across multiple mappings. It allocates
0400 a backing page when a mapping in vmalloc space uses a particular page
0401 of the shadow region. This page can be shared by other vmalloc
0402 mappings later on.
0403 
0404 KASAN hooks into the vmap infrastructure to lazily clean up unused shadow
0405 memory.
0406 
0407 To avoid the difficulties around swapping mappings around, KASAN expects
0408 that the part of the shadow region that covers the vmalloc space will
0409 not be covered by the early shadow page but will be left unmapped.
0410 This will require changes in arch-specific code.
0411 
0412 This allows ``VMAP_STACK`` support on x86 and can simplify support of
0413 architectures that do not have a fixed module region.
0414 
0415 For developers
0416 --------------
0417 
0418 Ignoring accesses
0419 ~~~~~~~~~~~~~~~~~
0420 
0421 Software KASAN modes use compiler instrumentation to insert validity checks.
0422 Such instrumentation might be incompatible with some parts of the kernel, and
0423 therefore needs to be disabled.
0424 
0425 Other parts of the kernel might access metadata for allocated objects.
0426 Normally, KASAN detects and reports such accesses, but in some cases (e.g.,
0427 in memory allocators), these accesses are valid.
0428 
0429 For software KASAN modes, to disable instrumentation for a specific file or
0430 directory, add a ``KASAN_SANITIZE`` annotation to the respective kernel
0431 Makefile:
0432 
0433 - For a single file (e.g., main.o)::
0434 
0435     KASAN_SANITIZE_main.o := n
0436 
0437 - For all files in one directory::
0438 
0439     KASAN_SANITIZE := n
0440 
0441 For software KASAN modes, to disable instrumentation on a per-function basis,
0442 use the KASAN-specific ``__no_sanitize_address`` function attribute or the
0443 generic ``noinstr`` one.
0444 
0445 Note that disabling compiler instrumentation (either on a per-file or a
0446 per-function basis) makes KASAN ignore the accesses that happen directly in
0447 that code for software KASAN modes. It does not help when the accesses happen
0448 indirectly (through calls to instrumented functions) or with Hardware
0449 Tag-Based KASAN, which does not use compiler instrumentation.
0450 
0451 For software KASAN modes, to disable KASAN reports in a part of the kernel code
0452 for the current task, annotate this part of the code with a
0453 ``kasan_disable_current()``/``kasan_enable_current()`` section. This also
0454 disables the reports for indirect accesses that happen through function calls.
0455 
0456 For tag-based KASAN modes, to disable access checking, use
0457 ``kasan_reset_tag()`` or ``page_kasan_tag_reset()``. Note that temporarily
0458 disabling access checking via ``page_kasan_tag_reset()`` requires saving and
0459 restoring the per-page KASAN tag via ``page_kasan_tag``/``page_kasan_tag_set``.
0460 
0461 Tests
0462 ~~~~~
0463 
0464 There are KASAN tests that allow verifying that KASAN works and can detect
0465 certain types of memory corruptions. The tests consist of two parts:
0466 
0467 1. Tests that are integrated with the KUnit Test Framework. Enabled with
0468 ``CONFIG_KASAN_KUNIT_TEST``. These tests can be run and partially verified
0469 automatically in a few different ways; see the instructions below.
0470 
0471 2. Tests that are currently incompatible with KUnit. Enabled with
0472 ``CONFIG_KASAN_MODULE_TEST`` and can only be run as a module. These tests can
0473 only be verified manually by loading the kernel module and inspecting the
0474 kernel log for KASAN reports.
0475 
0476 Each KUnit-compatible KASAN test prints one of multiple KASAN reports if an
0477 error is detected. Then the test prints its number and status.
0478 
0479 When a test passes::
0480 
0481         ok 28 - kmalloc_double_kzfree
0482 
0483 When a test fails due to a failed ``kmalloc``::
0484 
0485         # kmalloc_large_oob_right: ASSERTION FAILED at lib/test_kasan.c:163
0486         Expected ptr is not null, but is
0487         not ok 4 - kmalloc_large_oob_right
0488 
0489 When a test fails due to a missing KASAN report::
0490 
0491         # kmalloc_double_kzfree: EXPECTATION FAILED at lib/test_kasan.c:974
0492         KASAN failure expected in "kfree_sensitive(ptr)", but none occurred
0493         not ok 44 - kmalloc_double_kzfree
0494 
0495 
0496 At the end the cumulative status of all KASAN tests is printed. On success::
0497 
0498         ok 1 - kasan
0499 
0500 Or, if one of the tests failed::
0501 
0502         not ok 1 - kasan
0503 
0504 There are a few ways to run KUnit-compatible KASAN tests.
0505 
0506 1. Loadable module
0507 
0508    With ``CONFIG_KUNIT`` enabled, KASAN-KUnit tests can be built as a loadable
0509    module and run by loading ``test_kasan.ko`` with ``insmod`` or ``modprobe``.
0510 
0511 2. Built-In
0512 
0513    With ``CONFIG_KUNIT`` built-in, KASAN-KUnit tests can be built-in as well.
0514    In this case, the tests will run at boot as a late-init call.
0515 
0516 3. Using kunit_tool
0517 
0518    With ``CONFIG_KUNIT`` and ``CONFIG_KASAN_KUNIT_TEST`` built-in, it is also
0519    possible to use ``kunit_tool`` to see the results of KUnit tests in a more
0520    readable way. This will not print the KASAN reports of the tests that passed.
0521    See `KUnit documentation <https://www.kernel.org/doc/html/latest/dev-tools/kunit/index.html>`_
0522    for more up-to-date information on ``kunit_tool``.
0523 
0524 .. _KUnit: https://www.kernel.org/doc/html/latest/dev-tools/kunit/index.html