KASAN: Linux Kernel Memory Error Detection Tool
KASAN stands for Kernel Address Sanitizer, a dynamic memory error detection tool primarily used to check for memory out-of-bounds access and use-after-free issues. 1. How to Enable KASAN Add the following configuration to the kernel defconfig: CONFIG_SLUB_DEBUG=y CONFIG_SLUB_DEBUG_ON=y CONFIG_KASAN=...