Fix the 'decision' for the 'vdso32' check
authorAlexander Popov <alex.popov@linux.com>
Fri, 29 Dec 2023 08:22:06 +0000 (11:22 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 29 Dec 2023 08:22:06 +0000 (11:22 +0300)
kernel_hardening_checker/checks.py

index b89744bbf7d5799082d9b2e0d75fa6b21eba0142..42bfa45fc30dce541dd0d7a7bb0f07d7090f5fe3 100644 (file)
@@ -545,13 +545,13 @@ def add_cmdline_checks(l, arch):
                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y'),
                      CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'is not set')))]
         l += [OR(CmdlineCheck('cut_attack_surface', 'my', 'vdso32', '1'),
-                 CmdlineCheck('cut_attack_surface', 'my', 'vdso32', '0'),
+                 CmdlineCheck('cut_attack_surface', 'kspp', 'vdso32', '0'),
                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set'),
                      CmdlineCheck('cut_attack_surface', 'my', 'vdso32', 'is not set')))] # the vdso32 parameter must not be 2
     if arch == 'X86_32':
         l += [OR(CmdlineCheck('cut_attack_surface', 'my', 'vdso32', '1'),
                  CmdlineCheck('cut_attack_surface', 'my', 'vdso', '1'),
-                 CmdlineCheck('cut_attack_surface', 'my', 'vdso32', '0'),
+                 CmdlineCheck('cut_attack_surface', 'kspp', 'vdso32', '0'),
                  CmdlineCheck('cut_attack_surface', 'my', 'vdso', '0'),
                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set'),
                      CmdlineCheck('cut_attack_surface', 'my', 'vdso32', 'is not set'),