public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] riscv: process: Fix kernel gp leakage
@ 2024-03-27  6:12 Stefan O'Rear
  2024-03-27  8:43 ` [External] " yunhui cui
  2024-04-04 22:20 ` patchwork-bot+linux-riscv
  0 siblings, 2 replies; 7+ messages in thread
From: Stefan O'Rear @ 2024-03-27  6:12 UTC (permalink / raw)
  To: linux-riscv, Paul Walmsley, Palmer Dabbelt, Albert Ou,
	linux-kernel
  Cc: Stefan O'Rear

childregs represents the registers which are active for the new thread
in user context. For a kernel thread, childregs->gp is never used since
the kernel gp is not touched by switch_to. For a user mode helper, the
gp value can be observed in user space after execve or possibly by other
means.

Fixes: 7db91e57a0ac ("RISC-V: Task implementation")
Signed-off-by: Stefan O'Rear <sorear@fastmail.com>
---
 arch/riscv/kernel/process.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/arch/riscv/kernel/process.c b/arch/riscv/kernel/process.c
index 92922dbd5b5c..51042f48da17 100644
--- a/arch/riscv/kernel/process.c
+++ b/arch/riscv/kernel/process.c
@@ -27,8 +27,6 @@
 #include <asm/vector.h>
 #include <asm/cpufeature.h>
 
-register unsigned long gp_in_global __asm__("gp");
-
 #if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_STACKPROTECTOR_PER_TASK)
 #include <linux/stackprotector.h>
 unsigned long __stack_chk_guard __read_mostly;
@@ -207,7 +205,6 @@ int copy_thread(struct task_struct *p, const struct kernel_clone_args *args)
 	if (unlikely(args->fn)) {
 		/* Kernel thread */
 		memset(childregs, 0, sizeof(struct pt_regs));
-		childregs->gp = gp_in_global;
 		/* Supervisor/Machine, irqs on: */
 		childregs->status = SR_PP | SR_PIE;
 
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-04-04 22:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-27  6:12 [PATCH] riscv: process: Fix kernel gp leakage Stefan O'Rear
2024-03-27  8:43 ` [External] " yunhui cui
2024-03-27 16:53   ` Stefan O'Rear
2024-03-28 12:09     ` yunhui cui
2024-04-02  9:21     ` Alexandre Ghiti
2024-04-04 20:13       ` Palmer Dabbelt
2024-04-04 22:20 ` patchwork-bot+linux-riscv

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox