Skip unprivileged_bpf_disabled if BPF_SYSCALL not set
authorEneas U de Queiroz <cotequeiroz@gmail.com>
Wed, 6 Sep 2023 17:20:53 +0000 (14:20 -0300)
committerAlexander Popov <alex.popov@linux.com>
Thu, 2 May 2024 09:18:14 +0000 (12:18 +0300)
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
kernel_hardening_checker/checks.py

index fa5c08a9e0854ec97151727e7dd41e8905f8042a..9f48d5849f6a675a3d560ec0138a2ad8da44e956 100644 (file)
@@ -676,7 +676,9 @@ def add_sysctl_checks(l, _arch):
                  have_config_file))]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'user.max_user_namespaces', '0')] # may break the upower daemon in Ubuntu
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.ldisc_autoload', '0')]
-    l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.unprivileged_bpf_disabled', '1')]
+    l += [OR(SysctlCheck('cut_attack_surface', 'kspp', 'kernel.unprivileged_bpf_disabled', '1'),
+             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 += [SysctlCheck('cut_attack_surface', 'kspp', 'vm.unprivileged_userfaultfd', '0')]