Don't fail if dev.tty.legacy_tiocsti not found
authorEneas U de Queiroz <cotequeiroz@gmail.com>
Fri, 10 Nov 2023 18:02:57 +0000 (15:02 -0300)
committerAlexander Popov <alex.popov@linux.com>
Thu, 2 May 2024 09:18:14 +0000 (12:18 +0300)
The sysctl is available for Kernel 6.2 and later only.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
kernel_hardening_checker/checks.py

index 9f48d5849f6a675a3d560ec0138a2ad8da44e956..0e0f2051ec777ce217fb6e5980a1ad7bf2ecb6be 100644 (file)
@@ -680,7 +680,8 @@ def add_sysctl_checks(l, _arch):
              AND(KconfigCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set'),
                  have_config_file))]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.kptr_restrict', '2')]
-    l += [SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.legacy_tiocsti', '0')]
+    l += [OR(SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.legacy_tiocsti', '0'),
+             SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.legacy_tiocsti', 'is not set'))]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'vm.unprivileged_userfaultfd', '0')]
           # At first, it disabled unprivileged userfaultfd,
           # and since v5.11 it enables unprivileged userfaultfd for user-mode only.