[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1530311985-31251-6-git-send-email-yang.shi@linux.alibaba.com>
Date: Sat, 30 Jun 2018 06:39:45 +0800
From: Yang Shi <yang.shi@...ux.alibaba.com>
To: mhocko@...nel.org, willy@...radead.org, ldufour@...ux.vnet.ibm.com,
akpm@...ux-foundation.org, peterz@...radead.org, mingo@...hat.com,
acme@...nel.org, alexander.shishkin@...ux.intel.com,
jolsa@...hat.com, namhyung@...nel.org, tglx@...utronix.de,
hpa@...or.com
Cc: yang.shi@...ux.alibaba.com, linux-mm@...ck.org, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [RFC v3 PATCH 5/5] x86: check VM_DEAD flag in page fault
Check VM_DEAD flag of vma in page fault handler, if it is set, trigger
SIGSEGV.
Cc: Michal Hocko <mhocko@...nel.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: "H. Peter Anvin" <hpa@...or.com>
Signed-off-by: Yang Shi <yang.shi@...ux.alibaba.com>
---
arch/x86/mm/fault.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
index 9a84a0d..3fd2da5 100644
--- a/arch/x86/mm/fault.c
+++ b/arch/x86/mm/fault.c
@@ -1357,6 +1357,10 @@ static inline bool smap_violation(int error_code, struct pt_regs *regs)
bad_area(regs, error_code, address);
return;
}
+ if (unlikely(vma->vm_flags & VM_DEAD)) {
+ bad_area(regs, error_code, address);
+ return;
+ }
if (error_code & X86_PF_USER) {
/*
* Accessing the stack below %sp is always a bug.
--
1.8.3.1
Powered by blists - more mailing lists