Drop the INTEGRITY check
authorAlexander Popov <alex.popov@linux.com>
Sun, 9 Apr 2023 23:48:08 +0000 (02:48 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 9 Apr 2023 23:48:08 +0000 (02:48 +0300)
CONFIG_INTEGRITY is useless without enabling IMA/EVM.
We can't require enabling IMA/EVM because there are other
file system integrity mechanisms like DM_VERITY, FS_VERITY, etc.
So there is no reason to check CONFIG_INTEGRITY.

Refers to #75

kconfig_hardened_check/checks.py

index c087bbc5d229b7e3e451f2dc418b432473022d56..60841e2fc12a8935e65ec0228d00e0609d8045dc 100644 (file)
@@ -394,10 +394,6 @@ def add_kconfig_checks(l, arch):
              modules_not_set)]
 
     # 'harden_userspace'
-    if arch in ('X86_64', 'ARM64', 'X86_32'):
-        l += [KconfigCheck('harden_userspace', 'defconfig', 'INTEGRITY', 'y')]
-    if arch == 'ARM':
-        l += [KconfigCheck('harden_userspace', 'my', 'INTEGRITY', 'y')]
     if arch == 'ARM64':
         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_BTI', 'y')]