From: Alexander Popov Date: Wed, 20 Apr 2022 14:13:50 +0000 (+0300) Subject: Add the KSPP recommendation of KFENCE X-Git-Tag: v0.5.17~16 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=6b4d42b89355f4d1be2fc7c1e98e9448bd39504f;hp=d3c6af4a5110662f98fab6d81cdf2ba1595ab350;p=kconfig-hardened-check.git Add the KSPP recommendation of KFENCE --- diff --git a/kconfig_hardened_check/__init__.py b/kconfig_hardened_check/__init__.py index ebc1381..b34d6d5 100644 --- a/kconfig_hardened_check/__init__.py +++ b/kconfig_hardened_check/__init__.py @@ -387,6 +387,7 @@ def add_kconfig_checks(l, arch): l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_NOTIFIERS', 'y')] l += [KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y')] l += [KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_LATENT_ENTROPY', 'y')] + l += [KconfigCheck('self_protection', 'kspp', 'KFENCE', 'y')] randstruct_is_set = KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT', 'y') l += [randstruct_is_set] hardened_usercopy_is_set = KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y')