From: Alexander Popov Date: Sun, 2 Oct 2022 11:04:10 +0000 (+0300) Subject: Change the reason for the 'nosmep' and 'nosmap' checks X-Git-Tag: v0.6.1~87 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=097c09122545b584439ee1fe9379bad04c66680c;hp=205a142312ab687fb7c5327a69164b23c8df3186;p=kconfig-hardened-check.git Change the reason for the 'nosmep' and 'nosmap' checks SMEP and SMAP are enabled by default. --- diff --git a/kconfig_hardened_check/__init__.py b/kconfig_hardened_check/__init__.py index 87fefd1..859a508 100644 --- a/kconfig_hardened_check/__init__.py +++ b/kconfig_hardened_check/__init__.py @@ -698,6 +698,8 @@ def add_cmdline_checks(l, arch): # very complex and not give a 100% guarantee anyway. # 'self_protection', 'defconfig' + l += [CmdlineCheck('self_protection', 'defconfig', 'nosmep', 'is not set')] + l += [CmdlineCheck('self_protection', 'defconfig', 'nosmap', 'is not set')] l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')] if arch == 'ARM64': l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'), @@ -745,9 +747,6 @@ def add_cmdline_checks(l, arch): # 'self_protection', 'clipos' l += [CmdlineCheck('self_protection', 'clipos', 'page_alloc.shuffle', '1')] - # 'self_protection', 'my' - l += [CmdlineCheck('self_protection', 'my', 'nosmep', 'is not set')] - l += [CmdlineCheck('self_protection', 'my', 'nosmap', 'is not set')] # 'cut_attack_surface', 'kspp' if arch == 'X86_64':