]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
randomize_kstack: Remove non-functional per-arch entropy filtering
authorKees Cook <kees@kernel.org>
Wed, 19 Jun 2024 21:47:15 +0000 (14:47 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Jul 2024 07:33:54 +0000 (09:33 +0200)
[ Upstream commit 6db1208bf95b4c091897b597c415e11edeab2e2d ]

An unintended consequence of commit 9c573cd31343 ("randomize_kstack:
Improve entropy diffusion") was that the per-architecture entropy size
filtering reduced how many bits were being added to the mix, rather than
how many bits were being used during the offsetting. All architectures
fell back to the existing default of 0x3FF (10 bits), which will consume
at most 1KiB of stack space. It seems that this is working just fine,
so let's avoid the confusion and update everything to use the default.

The prior intent of the per-architecture limits were:

  arm64: capped at 0x1FF (9 bits), 5 bits effective
  powerpc: uncapped (10 bits), 6 or 7 bits effective
  riscv: uncapped (10 bits), 6 bits effective
  x86: capped at 0xFF (8 bits), 5 (x86_64) or 6 (ia32) bits effective
  s390: capped at 0xFF (8 bits), undocumented effective entropy

Current discussion has led to just dropping the original per-architecture
filters. The additional entropy appears to be safe for arm64, x86,
and s390. Quoting Arnd, "There is no point pretending that 15.75KB is
somehow safe to use while 15.00KB is not."

Co-developed-by: Yuntao Liu <liuyuntao12@huawei.com>
Signed-off-by: Yuntao Liu <liuyuntao12@huawei.com>
Fixes: 9c573cd31343 ("randomize_kstack: Improve entropy diffusion")
Link: https://lore.kernel.org/r/20240617133721.377540-1-liuyuntao12@huawei.com
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com> # s390
Link: https://lore.kernel.org/r/20240619214711.work.953-kees@kernel.org
Signed-off-by: Kees Cook <kees@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm64/kernel/syscall.c
arch/s390/include/asm/entry-common.h
arch/x86/include/asm/entry-common.h

index 9a70d9746b661bfcfab619bbb636ad1d30b80d56..f090e39f69bc4a0507beb745e8bbbd690596b812 100644 (file)
@@ -56,17 +56,15 @@ static void invoke_syscall(struct pt_regs *regs, unsigned int scno,
        syscall_set_return_value(current, regs, 0, ret);
 
        /*
-        * Ultimately, this value will get limited by KSTACK_OFFSET_MAX(),
-        * but not enough for arm64 stack utilization comfort. To keep
-        * reasonable stack head room, reduce the maximum offset to 9 bits.
+        * This value will get limited by KSTACK_OFFSET_MAX(), which is 10
+        * bits. The actual entropy will be further reduced by the compiler
+        * when applying stack alignment constraints: the AAPCS mandates a
+        * 16-byte aligned SP at function boundaries, which will remove the
+        * 4 low bits from any entropy chosen here.
         *
-        * The actual entropy will be further reduced by the compiler when
-        * applying stack alignment constraints: the AAPCS mandates a
-        * 16-byte (i.e. 4-bit) aligned SP at function boundaries.
-        *
-        * The resulting 5 bits of entropy is seen in SP[8:4].
+        * The resulting 6 bits of entropy is seen in SP[9:4].
         */
-       choose_random_kstack_offset(get_random_u16() & 0x1FF);
+       choose_random_kstack_offset(get_random_u16());
 }
 
 static inline bool has_syscall_work(unsigned long flags)
index fdd319a622b065c1a96bcbd0b03fbe83e8d4c17e..622cd08e5f50fd7fdbb0da8fdf0c6444571bb1b8 100644 (file)
@@ -55,7 +55,7 @@ static __always_inline void arch_exit_to_user_mode(void)
 static inline void arch_exit_to_user_mode_prepare(struct pt_regs *regs,
                                                  unsigned long ti_work)
 {
-       choose_random_kstack_offset(get_tod_clock_fast() & 0xff);
+       choose_random_kstack_offset(get_tod_clock_fast());
 }
 
 #define arch_exit_to_user_mode_prepare arch_exit_to_user_mode_prepare
index 7e523bb3d2d31a9a8ab9d32ca65a41b5b765c4c4..fb2809b20b0ac4ea32f902a632e78744fdb3aa2e 100644 (file)
@@ -73,19 +73,16 @@ static inline void arch_exit_to_user_mode_prepare(struct pt_regs *regs,
 #endif
 
        /*
-        * Ultimately, this value will get limited by KSTACK_OFFSET_MAX(),
-        * but not enough for x86 stack utilization comfort. To keep
-        * reasonable stack head room, reduce the maximum offset to 8 bits.
-        *
-        * The actual entropy will be further reduced by the compiler when
-        * applying stack alignment constraints (see cc_stack_align4/8 in
+        * This value will get limited by KSTACK_OFFSET_MAX(), which is 10
+        * bits. The actual entropy will be further reduced by the compiler
+        * when applying stack alignment constraints (see cc_stack_align4/8 in
         * arch/x86/Makefile), which will remove the 3 (x86_64) or 2 (ia32)
         * low bits from any entropy chosen here.
         *
-        * Therefore, final stack offset entropy will be 5 (x86_64) or
-        * 6 (ia32) bits.
+        * Therefore, final stack offset entropy will be 7 (x86_64) or
+        * 8 (ia32) bits.
         */
-       choose_random_kstack_offset(rdtsc() & 0xFF);
+       choose_random_kstack_offset(rdtsc());
 }
 #define arch_exit_to_user_mode_prepare arch_exit_to_user_mode_prepare