From: Alexander Popov Date: Thu, 22 Aug 2019 10:35:32 +0000 (+0300) Subject: Add SHUFFLE_PAGE_ALLOCATOR from v5.2 X-Git-Tag: v0.5.2~5 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=ce875878f6008e5eb9dd248432d1f4c3471e0f73;p=kconfig-hardened-check.git Add SHUFFLE_PAGE_ALLOCATOR from v5.2 --- diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 10c2997..f431dd0 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -207,6 +207,7 @@ def construct_checklist(checklist, arch): checklist.append(OptCheck('SCHED_STACK_END_CHECK', 'y', 'kspp', 'self_protection')) checklist.append(OptCheck('SLAB_FREELIST_HARDENED', 'y', 'kspp', 'self_protection')) checklist.append(OptCheck('SLAB_FREELIST_RANDOM', 'y', 'kspp', 'self_protection')) + checklist.append(OptCheck('SHUFFLE_PAGE_ALLOCATOR', 'y', 'kspp', 'self_protection')) checklist.append(OptCheck('FORTIFY_SOURCE', 'y', 'kspp', 'self_protection')) checklist.append(OptCheck('GCC_PLUGINS', 'y', 'kspp', 'self_protection')) randstruct_is_set = OptCheck('GCC_PLUGIN_RANDSTRUCT', 'y', 'kspp', 'self_protection')