Add the nobti check
authorAlexander Popov <alex.popov@linux.com>
Sat, 10 Dec 2022 06:32:21 +0000 (09:32 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 10 Dec 2022 06:32:21 +0000 (09:32 +0300)
kconfig_hardened_check/__init__.py

index 71840aa321092e6dff2a211de60973044c105efd..34ecb2546514695c51dc17eed564e292a127b355 100644 (file)
@@ -21,8 +21,6 @@
 #       ARM64:
 #           kpti=on
 #
-#    Should NOT be set:
-#           arm64.nobti
 #           arm64.nopauth
 #           arm64.nomte
 #
@@ -728,6 +726,7 @@ def add_cmdline_checks(l, arch):
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospec_store_bypass_disable', 'is not set')]
+    l += [CmdlineCheck('self_protection', 'defconfig', 'arm64.nobti', 'is not set')]
     l += [OR(CmdlineCheck('self_protection', 'defconfig', 'mitigations', 'is not off'),
              CmdlineCheck('self_protection', 'defconfig', 'mitigations', 'is not set'))]
     l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spectre_v2', 'is not off'),