From: Alexander Popov Date: Wed, 13 Mar 2019 09:02:19 +0000 (+0300) Subject: Add STACKPROTECTOR_PER_TASK check for ARM X-Git-Tag: v0.5.2~32 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=becad4962ffd613aabcf8a317b2c779ff95d4545;p=kconfig-hardened-check.git Add STACKPROTECTOR_PER_TASK check for ARM --- diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index f39995d..b149567 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -245,6 +245,8 @@ def construct_checklist(arch): page_poisoning_is_set)) if debug_mode or arch == 'X86_32': checklist.append(OptCheck('PAGE_TABLE_ISOLATION', 'y', 'my', 'self_protection')) + if debug_mode or arch == 'ARM': + checklist.append(OptCheck('STACKPROTECTOR_PER_TASK', 'y', 'my', 'self_protection')) if debug_mode or arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32': checklist.append(OptCheck('SECURITY', 'y', 'defconfig', 'security_policy'))