Change the reason for the 'nokaslr' check
authorAlexander Popov <alex.popov@linux.com>
Sun, 2 Oct 2022 17:52:47 +0000 (20:52 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 2 Oct 2022 17:52:47 +0000 (20:52 +0300)
KASLR is enabled by default.

kconfig_hardened_check/__init__.py

index e6d84edaafd5643bcf613e8c72fba401780e1ca8..0a1015cdab7759c9f6c91066f0d84fab5f4843ec 100644 (file)
@@ -699,6 +699,7 @@ def add_cmdline_checks(l, arch):
     # 'self_protection', 'defconfig'
     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmep', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmap', 'is not set')]
+    l += [CmdlineCheck('self_protection', 'defconfig', 'nokaslr', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set')]
     if arch == 'ARM64':
@@ -729,7 +730,6 @@ def add_cmdline_checks(l, arch):
              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set'),
                  CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', 'is not set')))]
     # The cmdline checks compatible with the kconfig recommendations of the KSPP project...
-    l += [CmdlineCheck('self_protection', 'kspp', 'nokaslr', 'is not set')]
     l += [OR(CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', '1'),
              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y'),
                  CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', 'is not set')))]