projects
/
kconfig-hardened-check.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f223aea
)
Add STACKPROTECTOR_PER_TASK check for ARM
author
Alexander Popov
<alex.popov@linux.com>
Wed, 13 Mar 2019 09:02:19 +0000
(12:02 +0300)
committer
Alexander Popov
<alex.popov@linux.com>
Wed, 13 Mar 2019 09:02:19 +0000
(12:02 +0300)
kconfig-hardened-check.py
patch
|
blob
|
history
diff --git
a/kconfig-hardened-check.py
b/kconfig-hardened-check.py
index f39995deb4a449f674680301324feede187b9f69..b149567fb1317d64eaada195e01e49bfe264c49d 100755
(executable)
--- 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'))