Add STACKPROTECTOR_PER_TASK check for ARM
authorAlexander Popov <alex.popov@linux.com>
Wed, 13 Mar 2019 09:02:19 +0000 (12:02 +0300)
committerAlexander Popov <alex.popov@linux.com>
Wed, 13 Mar 2019 09:02:19 +0000 (12:02 +0300)
kconfig-hardened-check.py

index f39995deb4a449f674680301324feede187b9f69..b149567fb1317d64eaada195e01e49bfe264c49d 100755 (executable)
@@ -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'))