public inbox for linux-riscv@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH V2] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error()
@ 2024-07-31  8:45 Zhe Qiao
  2024-08-01 16:40 ` patchwork-bot+linux-riscv
  0 siblings, 1 reply; 2+ messages in thread
From: Zhe Qiao @ 2024-07-31  8:45 UTC (permalink / raw)
  To: paul.walmsley, palmer, aou, alexghiti, surenb, akpm,
	wangkefeng.wang, qiaozhe, willy
  Cc: linux-riscv, linux-kernel

Handle VM_FAULT_SIGSEGV in the page fault path so that we correctly
kill the process and we don't BUG() the kernel.

Fixes: 07037db5d479 ("RISC-V: Paging and MMU")
Signed-off-by: Zhe Qiao <qiaozhe@iscas.ac.cn>
Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
---
v1->v2:
Modify commit message.
---
 arch/riscv/mm/fault.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/arch/riscv/mm/fault.c b/arch/riscv/mm/fault.c
index 5224f3733802..a9f2b4af8f3f 100644
--- a/arch/riscv/mm/fault.c
+++ b/arch/riscv/mm/fault.c
@@ -61,26 +61,27 @@ static inline void no_context(struct pt_regs *regs, unsigned long addr)
 
 static inline void mm_fault_error(struct pt_regs *regs, unsigned long addr, vm_fault_t fault)
 {
+	if (!user_mode(regs)) {
+		no_context(regs, addr);
+		return;
+	}
+
 	if (fault & VM_FAULT_OOM) {
 		/*
 		 * We ran out of memory, call the OOM killer, and return the userspace
 		 * (which will retry the fault, or kill us if we got oom-killed).
 		 */
-		if (!user_mode(regs)) {
-			no_context(regs, addr);
-			return;
-		}
 		pagefault_out_of_memory();
 		return;
 	} else if (fault & (VM_FAULT_SIGBUS | VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE)) {
 		/* Kernel mode? Handle exceptions or die */
-		if (!user_mode(regs)) {
-			no_context(regs, addr);
-			return;
-		}
 		do_trap(regs, SIGBUS, BUS_ADRERR, addr);
 		return;
+	} else if (fault & VM_FAULT_SIGSEGV) {
+		do_trap(regs, SIGSEGV, SEGV_MAPERR, addr);
+		return;
 	}
+
 	BUG();
 }
 
-- 
2.43.0


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: [PATCH V2] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error()
  2024-07-31  8:45 [PATCH V2] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error() Zhe Qiao
@ 2024-08-01 16:40 ` patchwork-bot+linux-riscv
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+linux-riscv @ 2024-08-01 16:40 UTC (permalink / raw)
  To: Zhe Qiao
  Cc: linux-riscv, paul.walmsley, palmer, aou, alexghiti, surenb, akpm,
	wangkefeng.wang, willy, linux-kernel

Hello:

This patch was applied to riscv/linux.git (fixes)
by Palmer Dabbelt <palmer@rivosinc.com>:

On Wed, 31 Jul 2024 16:45:47 +0800 you wrote:
> Handle VM_FAULT_SIGSEGV in the page fault path so that we correctly
> kill the process and we don't BUG() the kernel.
> 
> Fixes: 07037db5d479 ("RISC-V: Paging and MMU")
> Signed-off-by: Zhe Qiao <qiaozhe@iscas.ac.cn>
> Reviewed-by: Alexandre Ghiti <alexghiti@rivosinc.com>
> 
> [...]

Here is the summary with links:
  - [V2] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error()
    https://git.kernel.org/riscv/c/0c710050c47d

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

end of thread, other threads:[~2024-08-01 16:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-31  8:45 [PATCH V2] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error() Zhe Qiao
2024-08-01 16:40 ` 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