Add RANDOMIZE_KSTACK_OFFSET_DEFAULT
authorAlexander Popov <alex.popov@linux.com>
Fri, 20 Aug 2021 16:34:35 +0000 (19:34 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 10 Sep 2021 12:08:24 +0000 (15:08 +0300)
This refers to the pull request #52.

Thanks to Levente Polyak aka @anthraxx.

kconfig_hardened_check/__init__.py

index c69380c19cd35ef91f4d4f43571a6640dc0aa719..d9ef361d34a38a2d7eae28ca7c4b0df37415bc59 100644 (file)
@@ -19,6 +19,7 @@
 #    init_on_free=1 (since v5.3, otherwise slub_debug=P and page_poison=1)
 #    loadpin.enforce=1
 #    debugfs=no-mount (or off if possible)
+#    randomize_kstack_offset=1
 #
 #    Mitigations of CPU vulnerabilities:
 #       Аrch-independent:
@@ -422,6 +423,8 @@ def construct_checklist(l, arch):
               OptCheck('self_protection', 'my', 'UBSAN_MISC', 'is not set'),
               OptCheck('self_protection', 'my', 'UBSAN_TRAP', 'y'))]
     l += [OptCheck('self_protection', 'my', 'RESET_ATTACK_MITIGATION', 'y')] # needs userspace support (systemd)
+    if arch in ('X86_64', 'ARM64', 'X86_32'):
+        l += [OptCheck('self_protection', 'my', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y')]
     if arch == 'X86_64':
         l += [AND(OptCheck('self_protection', 'my', 'AMD_IOMMU_V2', 'y'),
                   iommu_support_is_set)]