Add the FAULT_INJECTION check
authorAlexander Popov <alex.popov@linux.com>
Sun, 7 Jul 2024 15:39:22 +0000 (18:39 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 7 Jul 2024 15:39:22 +0000 (18:39 +0300)
Thanks to @izh1979 for the idea.

kernel_hardening_checker/checks.py

index b8cc895be0fe2ef7784500494fae936526106b6c..6b89bd791c6c05a5f8ef32b177d7bf6a612634b4 100755 (executable)
@@ -423,6 +423,7 @@ def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None:
     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'CORESIGHT', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'XFS_SUPPORT_V4', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'BLK_DEV_WRITE_MOUNTED', 'is not set')]
+    l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'FAULT_INJECTION', 'is not set')]
     l += [OR(KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'TRIM_UNUSED_KSYMS', 'y'),
              modules_not_set)]
     l += [OR(KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'MAGIC_SYSRQ_SERIAL', 'is not set'),