From: Balbir Singh Date: Tue, 15 Nov 2016 06:56:15 +0000 (+1100) Subject: powerpc/mm: Detect instruction fetch denied and report X-Git-Tag: v5.15~12232^2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d18ad026844b60d933c25ae38360f86a8cf41eb;p=platform%2Fkernel%2Flinux-starfive.git powerpc/mm: Detect instruction fetch denied and report ISA 3 allows for prevention of instruction fetch and execution of user mode pages. If such an error occurs, SRR1 bit 35 reports the error. We catch and report the error in do_page_fault(). Signed-off-by: Balbir Singh Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c index 73932f4..a17029aa 100644 --- a/arch/powerpc/mm/fault.c +++ b/arch/powerpc/mm/fault.c @@ -391,6 +391,12 @@ good_area: if (is_exec) { /* + * An execution fault + no execute ? + */ + if (regs->msr & SRR1_ISI_N_OR_G) + goto bad_area; + + /* * Allow execution from readable areas if the MMU does not * provide separate controls over reading and executing. * @@ -404,6 +410,7 @@ good_area: (cpu_has_feature(CPU_FTR_NOEXECUTE) || !(vma->vm_flags & (VM_READ | VM_WRITE)))) goto bad_area; + #ifdef CONFIG_PPC_STD_MMU /* * protfault should only happen due to us