Check the 'rodata' cmdline parameter on the arches except ARM64
authorAlexander Popov <alex.popov@linux.com>
Sat, 13 Aug 2022 23:16:18 +0000 (02:16 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 13 Aug 2022 23:16:18 +0000 (02:16 +0300)
kconfig_hardened_check/__init__.py

index c8d0334e0e965804d498dae02e7d64815e83f644..6487be1395887f0ede949e392d5b34a8248a04ca 100644 (file)
@@ -654,6 +654,9 @@ def add_cmdline_checks(l, arch):
         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'),
                  AND(KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y'),
                      CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set')))]
+    else:
+        l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', '1'),
+                 CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set'))]
 
     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', '1'),
              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y'),