xref: /openbmc/linux/arch/powerpc/mm/fault.c (revision 41b464e5e5675476a5fd923aea8d5a87d2493d93)
114cf11afSPaul Mackerras /*
214cf11afSPaul Mackerras  *  PowerPC version
314cf11afSPaul Mackerras  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
414cf11afSPaul Mackerras  *
514cf11afSPaul Mackerras  *  Derived from "arch/i386/mm/fault.c"
614cf11afSPaul Mackerras  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
714cf11afSPaul Mackerras  *
814cf11afSPaul Mackerras  *  Modified by Cort Dougan and Paul Mackerras.
914cf11afSPaul Mackerras  *
1014cf11afSPaul Mackerras  *  Modified for PPC64 by Dave Engebretsen (engebret@ibm.com)
1114cf11afSPaul Mackerras  *
1214cf11afSPaul Mackerras  *  This program is free software; you can redistribute it and/or
1314cf11afSPaul Mackerras  *  modify it under the terms of the GNU General Public License
1414cf11afSPaul Mackerras  *  as published by the Free Software Foundation; either version
1514cf11afSPaul Mackerras  *  2 of the License, or (at your option) any later version.
1614cf11afSPaul Mackerras  */
1714cf11afSPaul Mackerras 
1814cf11afSPaul Mackerras #include <linux/signal.h>
1914cf11afSPaul Mackerras #include <linux/sched.h>
2068db0cf1SIngo Molnar #include <linux/sched/task_stack.h>
2114cf11afSPaul Mackerras #include <linux/kernel.h>
2214cf11afSPaul Mackerras #include <linux/errno.h>
2314cf11afSPaul Mackerras #include <linux/string.h>
2414cf11afSPaul Mackerras #include <linux/types.h>
2514cf11afSPaul Mackerras #include <linux/ptrace.h>
2614cf11afSPaul Mackerras #include <linux/mman.h>
2714cf11afSPaul Mackerras #include <linux/mm.h>
2814cf11afSPaul Mackerras #include <linux/interrupt.h>
2914cf11afSPaul Mackerras #include <linux/highmem.h>
308a39b05fSPaul Gortmaker #include <linux/extable.h>
3114cf11afSPaul Mackerras #include <linux/kprobes.h>
321eeb66a1SChristoph Hellwig #include <linux/kdebug.h>
33cdd6c482SIngo Molnar #include <linux/perf_event.h>
3476462232SChristian Dietrich #include <linux/ratelimit.h>
35ba12eedeSLi Zhong #include <linux/context_tracking.h>
369d57472fSAnton Blanchard #include <linux/hugetlb.h>
3770ffdb93SDavid Hildenbrand #include <linux/uaccess.h>
3814cf11afSPaul Mackerras 
3940900194SBrian King #include <asm/firmware.h>
4014cf11afSPaul Mackerras #include <asm/page.h>
4114cf11afSPaul Mackerras #include <asm/pgtable.h>
4214cf11afSPaul Mackerras #include <asm/mmu.h>
4314cf11afSPaul Mackerras #include <asm/mmu_context.h>
4414cf11afSPaul Mackerras #include <asm/tlbflush.h>
4514cf11afSPaul Mackerras #include <asm/siginfo.h>
46ae3a197eSDavid Howells #include <asm/debug.h>
479f90b997SChristoph Hellwig 
48c3dcf53aSJimi Xenidis #include "icswx.h"
49c3dcf53aSJimi Xenidis 
504f9e87c0SAnil S Keshavamurthy #ifdef CONFIG_KPROBES
519f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs)
524f9e87c0SAnil S Keshavamurthy {
539f90b997SChristoph Hellwig 	int ret = 0;
549f90b997SChristoph Hellwig 
559f90b997SChristoph Hellwig 	/* kprobe_running() needs smp_processor_id() */
569f90b997SChristoph Hellwig 	if (!user_mode(regs)) {
579f90b997SChristoph Hellwig 		preempt_disable();
589f90b997SChristoph Hellwig 		if (kprobe_running() && kprobe_fault_handler(regs, 11))
599f90b997SChristoph Hellwig 			ret = 1;
609f90b997SChristoph Hellwig 		preempt_enable();
614f9e87c0SAnil S Keshavamurthy 	}
624f9e87c0SAnil S Keshavamurthy 
639f90b997SChristoph Hellwig 	return ret;
644f9e87c0SAnil S Keshavamurthy }
654f9e87c0SAnil S Keshavamurthy #else
669f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs)
674f9e87c0SAnil S Keshavamurthy {
689f90b997SChristoph Hellwig 	return 0;
694f9e87c0SAnil S Keshavamurthy }
704f9e87c0SAnil S Keshavamurthy #endif
714f9e87c0SAnil S Keshavamurthy 
7214cf11afSPaul Mackerras /*
7314cf11afSPaul Mackerras  * Check whether the instruction at regs->nip is a store using
7414cf11afSPaul Mackerras  * an update addressing form which will update r1.
7514cf11afSPaul Mackerras  */
7614cf11afSPaul Mackerras static int store_updates_sp(struct pt_regs *regs)
7714cf11afSPaul Mackerras {
7814cf11afSPaul Mackerras 	unsigned int inst;
7914cf11afSPaul Mackerras 
8014cf11afSPaul Mackerras 	if (get_user(inst, (unsigned int __user *)regs->nip))
8114cf11afSPaul Mackerras 		return 0;
8214cf11afSPaul Mackerras 	/* check for 1 in the rA field */
8314cf11afSPaul Mackerras 	if (((inst >> 16) & 0x1f) != 1)
8414cf11afSPaul Mackerras 		return 0;
8514cf11afSPaul Mackerras 	/* check major opcode */
8614cf11afSPaul Mackerras 	switch (inst >> 26) {
8714cf11afSPaul Mackerras 	case 37:	/* stwu */
8814cf11afSPaul Mackerras 	case 39:	/* stbu */
8914cf11afSPaul Mackerras 	case 45:	/* sthu */
9014cf11afSPaul Mackerras 	case 53:	/* stfsu */
9114cf11afSPaul Mackerras 	case 55:	/* stfdu */
9214cf11afSPaul Mackerras 		return 1;
9314cf11afSPaul Mackerras 	case 62:	/* std or stdu */
9414cf11afSPaul Mackerras 		return (inst & 3) == 1;
9514cf11afSPaul Mackerras 	case 31:
9614cf11afSPaul Mackerras 		/* check minor opcode */
9714cf11afSPaul Mackerras 		switch ((inst >> 1) & 0x3ff) {
9814cf11afSPaul Mackerras 		case 181:	/* stdux */
9914cf11afSPaul Mackerras 		case 183:	/* stwux */
10014cf11afSPaul Mackerras 		case 247:	/* stbux */
10114cf11afSPaul Mackerras 		case 439:	/* sthux */
10214cf11afSPaul Mackerras 		case 695:	/* stfsux */
10314cf11afSPaul Mackerras 		case 759:	/* stfdux */
10414cf11afSPaul Mackerras 			return 1;
10514cf11afSPaul Mackerras 		}
10614cf11afSPaul Mackerras 	}
10714cf11afSPaul Mackerras 	return 0;
10814cf11afSPaul Mackerras }
1099be72573SBenjamin Herrenschmidt /*
1109be72573SBenjamin Herrenschmidt  * do_page_fault error handling helpers
1119be72573SBenjamin Herrenschmidt  */
1129be72573SBenjamin Herrenschmidt 
1139be72573SBenjamin Herrenschmidt #define MM_FAULT_RETURN		0
1149be72573SBenjamin Herrenschmidt #define MM_FAULT_CONTINUE	-1
1159be72573SBenjamin Herrenschmidt #define MM_FAULT_ERR(sig)	(sig)
1169be72573SBenjamin Herrenschmidt 
1173913fdd7SAnton Blanchard static int do_sigbus(struct pt_regs *regs, unsigned long address,
1183913fdd7SAnton Blanchard 		     unsigned int fault)
1199be72573SBenjamin Herrenschmidt {
1209be72573SBenjamin Herrenschmidt 	siginfo_t info;
1219d57472fSAnton Blanchard 	unsigned int lsb = 0;
1229be72573SBenjamin Herrenschmidt 
12363af5262SAnton Blanchard 	if (!user_mode(regs))
12463af5262SAnton Blanchard 		return MM_FAULT_ERR(SIGBUS);
12563af5262SAnton Blanchard 
12641ab5266SAnanth N Mavinakayanahalli 	current->thread.trap_nr = BUS_ADRERR;
1279be72573SBenjamin Herrenschmidt 	info.si_signo = SIGBUS;
1289be72573SBenjamin Herrenschmidt 	info.si_errno = 0;
1299be72573SBenjamin Herrenschmidt 	info.si_code = BUS_ADRERR;
1309be72573SBenjamin Herrenschmidt 	info.si_addr = (void __user *)address;
1313913fdd7SAnton Blanchard #ifdef CONFIG_MEMORY_FAILURE
1323913fdd7SAnton Blanchard 	if (fault & (VM_FAULT_HWPOISON|VM_FAULT_HWPOISON_LARGE)) {
1333913fdd7SAnton Blanchard 		pr_err("MCE: Killing %s:%d due to hardware memory corruption fault at %lx\n",
1343913fdd7SAnton Blanchard 			current->comm, current->pid, address);
1353913fdd7SAnton Blanchard 		info.si_code = BUS_MCEERR_AR;
1363913fdd7SAnton Blanchard 	}
1379d57472fSAnton Blanchard 
1389d57472fSAnton Blanchard 	if (fault & VM_FAULT_HWPOISON_LARGE)
1399d57472fSAnton Blanchard 		lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
1409d57472fSAnton Blanchard 	if (fault & VM_FAULT_HWPOISON)
1419d57472fSAnton Blanchard 		lsb = PAGE_SHIFT;
1423913fdd7SAnton Blanchard #endif
1439d57472fSAnton Blanchard 	info.si_addr_lsb = lsb;
1449be72573SBenjamin Herrenschmidt 	force_sig_info(SIGBUS, &info, current);
1459be72573SBenjamin Herrenschmidt 	return MM_FAULT_RETURN;
1469be72573SBenjamin Herrenschmidt }
1479be72573SBenjamin Herrenschmidt 
1489be72573SBenjamin Herrenschmidt static int mm_fault_error(struct pt_regs *regs, unsigned long addr, int fault)
1499be72573SBenjamin Herrenschmidt {
1509be72573SBenjamin Herrenschmidt 	/*
1519be72573SBenjamin Herrenschmidt 	 * Pagefault was interrupted by SIGKILL. We have no reason to
1529be72573SBenjamin Herrenschmidt 	 * continue the pagefault.
1539be72573SBenjamin Herrenschmidt 	 */
1549be72573SBenjamin Herrenschmidt 	if (fatal_signal_pending(current)) {
1559be72573SBenjamin Herrenschmidt 		/* Coming from kernel, we need to deal with uaccess fixups */
1569be72573SBenjamin Herrenschmidt 		if (user_mode(regs))
1579be72573SBenjamin Herrenschmidt 			return MM_FAULT_RETURN;
1589be72573SBenjamin Herrenschmidt 		return MM_FAULT_ERR(SIGKILL);
1599be72573SBenjamin Herrenschmidt 	}
1609be72573SBenjamin Herrenschmidt 
1619be72573SBenjamin Herrenschmidt 	/* No fault: be happy */
1629be72573SBenjamin Herrenschmidt 	if (!(fault & VM_FAULT_ERROR))
1639be72573SBenjamin Herrenschmidt 		return MM_FAULT_CONTINUE;
1649be72573SBenjamin Herrenschmidt 
1659be72573SBenjamin Herrenschmidt 	/* Out of memory */
166c2d23f91SDavid Rientjes 	if (fault & VM_FAULT_OOM) {
167c2d23f91SDavid Rientjes 		/*
168c2d23f91SDavid Rientjes 		 * We ran out of memory, or some other thing happened to us that
169c2d23f91SDavid Rientjes 		 * made us unable to handle the page fault gracefully.
170c2d23f91SDavid Rientjes 		 */
171c2d23f91SDavid Rientjes 		if (!user_mode(regs))
172c2d23f91SDavid Rientjes 			return MM_FAULT_ERR(SIGKILL);
173c2d23f91SDavid Rientjes 		pagefault_out_of_memory();
174c2d23f91SDavid Rientjes 		return MM_FAULT_RETURN;
175c2d23f91SDavid Rientjes 	}
1769be72573SBenjamin Herrenschmidt 
177819cdcdbSLaurent Dufour 	if (fault & (VM_FAULT_SIGBUS|VM_FAULT_HWPOISON|VM_FAULT_HWPOISON_LARGE))
1783913fdd7SAnton Blanchard 		return do_sigbus(regs, addr, fault);
1799be72573SBenjamin Herrenschmidt 
1809be72573SBenjamin Herrenschmidt 	/* We don't understand the fault code, this is fatal */
1819be72573SBenjamin Herrenschmidt 	BUG();
1829be72573SBenjamin Herrenschmidt 	return MM_FAULT_CONTINUE;
1839be72573SBenjamin Herrenschmidt }
18414cf11afSPaul Mackerras 
18514cf11afSPaul Mackerras /*
186*41b464e5SBenjamin Herrenschmidt  * Define the correct "is_write" bit in error_code based
187*41b464e5SBenjamin Herrenschmidt  * on the processor family
188*41b464e5SBenjamin Herrenschmidt  */
189*41b464e5SBenjamin Herrenschmidt #if (defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
190*41b464e5SBenjamin Herrenschmidt #define page_fault_is_write(__err)	((__err) & ESR_DST)
191*41b464e5SBenjamin Herrenschmidt #else
192*41b464e5SBenjamin Herrenschmidt #define page_fault_is_write(__err)	((__err) & DSISR_ISSTORE)
193*41b464e5SBenjamin Herrenschmidt #endif
194*41b464e5SBenjamin Herrenschmidt 
195*41b464e5SBenjamin Herrenschmidt /*
19614cf11afSPaul Mackerras  * For 600- and 800-family processors, the error_code parameter is DSISR
19714cf11afSPaul Mackerras  * for a data fault, SRR1 for an instruction fault. For 400-family processors
19814cf11afSPaul Mackerras  * the error_code parameter is ESR for a data fault, 0 for an instruction
19914cf11afSPaul Mackerras  * fault.
20014cf11afSPaul Mackerras  * For 64-bit processors, the error_code parameter is
20114cf11afSPaul Mackerras  *  - DSISR for a non-SLB data access fault,
20214cf11afSPaul Mackerras  *  - SRR1 & 0x08000000 for a non-SLB instruction access fault
20314cf11afSPaul Mackerras  *  - 0 any SLB fault.
20414cf11afSPaul Mackerras  *
20514cf11afSPaul Mackerras  * The return value is 0 if the fault was handled, or the signal
20614cf11afSPaul Mackerras  * number if this is a kernel fault that can't be handled here.
20714cf11afSPaul Mackerras  */
2087afad422SBenjamin Herrenschmidt static int __do_page_fault(struct pt_regs *regs, unsigned long address,
20914cf11afSPaul Mackerras 			   unsigned long error_code)
21014cf11afSPaul Mackerras {
21114cf11afSPaul Mackerras 	struct vm_area_struct * vma;
21214cf11afSPaul Mackerras 	struct mm_struct *mm = current->mm;
2139be72573SBenjamin Herrenschmidt 	unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
21414cf11afSPaul Mackerras 	int code = SEGV_MAPERR;
215c433ec04SBenjamin Herrenschmidt  	int is_exec = TRAP(regs) == 0x400;
216da929f6aSChristophe Leroy 	int is_user = user_mode(regs);
217*41b464e5SBenjamin Herrenschmidt 	int is_write = page_fault_is_write(error_code);
2189be72573SBenjamin Herrenschmidt 	int fault;
21969e044ddSAneesh Kumar K.V 	int rc = 0, store_update_sp = 0;
22014cf11afSPaul Mackerras 
221c3dcf53aSJimi Xenidis #ifdef CONFIG_PPC_ICSWX
222c3dcf53aSJimi Xenidis 	/*
223c3dcf53aSJimi Xenidis 	 * we need to do this early because this "data storage
224c3dcf53aSJimi Xenidis 	 * interrupt" does not update the DAR/DEAR so we don't want to
225c3dcf53aSJimi Xenidis 	 * look at it
226c3dcf53aSJimi Xenidis 	 */
227c3dcf53aSJimi Xenidis 	if (error_code & ICSWX_DSI_UCT) {
228ba12eedeSLi Zhong 		rc = acop_handle_fault(regs, address, error_code);
2299be72573SBenjamin Herrenschmidt 		if (rc)
230ba12eedeSLi Zhong 			goto bail;
231c3dcf53aSJimi Xenidis 	}
2329be72573SBenjamin Herrenschmidt #endif /* CONFIG_PPC_ICSWX */
233c3dcf53aSJimi Xenidis 
2349f90b997SChristoph Hellwig 	if (notify_page_fault(regs))
235ba12eedeSLi Zhong 		goto bail;
23614cf11afSPaul Mackerras 
237c3b75bd7SMichael Neuling 	if (unlikely(debugger_fault_handler(regs)))
238ba12eedeSLi Zhong 		goto bail;
23914cf11afSPaul Mackerras 
240d7df2443SBenjamin Herrenschmidt 	/*
241d7df2443SBenjamin Herrenschmidt 	 * The kernel should never take an execute fault nor should it
242d7df2443SBenjamin Herrenschmidt 	 * take a page fault to a kernel address.
243d7df2443SBenjamin Herrenschmidt 	 */
244da929f6aSChristophe Leroy 	if (!is_user && (is_exec || (address >= TASK_SIZE))) {
245ba12eedeSLi Zhong 		rc = SIGSEGV;
246ba12eedeSLi Zhong 		goto bail;
247ba12eedeSLi Zhong 	}
24814cf11afSPaul Mackerras 
249a546498fSBenjamin Herrenschmidt 	/* We restore the interrupt state now */
250a546498fSBenjamin Herrenschmidt 	if (!arch_irq_disabled_regs(regs))
251a546498fSBenjamin Herrenschmidt 		local_irq_enable();
252a546498fSBenjamin Herrenschmidt 
25370ffdb93SDavid Hildenbrand 	if (faulthandler_disabled() || mm == NULL) {
254da929f6aSChristophe Leroy 		if (!is_user) {
255ba12eedeSLi Zhong 			rc = SIGSEGV;
256ba12eedeSLi Zhong 			goto bail;
257ba12eedeSLi Zhong 		}
25870ffdb93SDavid Hildenbrand 		/* faulthandler_disabled() in user mode is really bad,
25914cf11afSPaul Mackerras 		   as is current->mm == NULL. */
26014cf11afSPaul Mackerras 		printk(KERN_EMERG "Page fault in user mode with "
26170ffdb93SDavid Hildenbrand 		       "faulthandler_disabled() = %d mm = %p\n",
26270ffdb93SDavid Hildenbrand 		       faulthandler_disabled(), mm);
26314cf11afSPaul Mackerras 		printk(KERN_EMERG "NIP = %lx  MSR = %lx\n",
26414cf11afSPaul Mackerras 		       regs->nip, regs->msr);
26514cf11afSPaul Mackerras 		die("Weird page fault", regs, SIGSEGV);
26614cf11afSPaul Mackerras 	}
26714cf11afSPaul Mackerras 
268a8b0ca17SPeter Zijlstra 	perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
2697dd1fcc2SPeter Zijlstra 
27069e044ddSAneesh Kumar K.V 	/*
27169e044ddSAneesh Kumar K.V 	 * We want to do this outside mmap_sem, because reading code around nip
27269e044ddSAneesh Kumar K.V 	 * can result in fault, which will cause a deadlock when called with
27369e044ddSAneesh Kumar K.V 	 * mmap_sem held
27469e044ddSAneesh Kumar K.V 	 */
275da929f6aSChristophe Leroy 	if (is_write && is_user)
27669e044ddSAneesh Kumar K.V 		store_update_sp = store_updates_sp(regs);
27769e044ddSAneesh Kumar K.V 
278da929f6aSChristophe Leroy 	if (is_user)
279759496baSJohannes Weiner 		flags |= FAULT_FLAG_USER;
280759496baSJohannes Weiner 
28114cf11afSPaul Mackerras 	/* When running in the kernel we expect faults to occur only to
28214cf11afSPaul Mackerras 	 * addresses in user space.  All other faults represent errors in the
283fc5266eaSAnton Blanchard 	 * kernel and should generate an OOPS.  Unfortunately, in the case of an
284fc5266eaSAnton Blanchard 	 * erroneous fault occurring in a code path which already holds mmap_sem
28514cf11afSPaul Mackerras 	 * we will deadlock attempting to validate the fault against the
28614cf11afSPaul Mackerras 	 * address space.  Luckily the kernel only validly references user
28714cf11afSPaul Mackerras 	 * space from well defined areas of code, which are listed in the
28814cf11afSPaul Mackerras 	 * exceptions table.
28914cf11afSPaul Mackerras 	 *
29014cf11afSPaul Mackerras 	 * As the vast majority of faults will be valid we will only perform
291fc5266eaSAnton Blanchard 	 * the source reference check when there is a possibility of a deadlock.
29214cf11afSPaul Mackerras 	 * Attempt to lock the address space, if we cannot we then validate the
29314cf11afSPaul Mackerras 	 * source.  If this is invalid we can skip the address space check,
29414cf11afSPaul Mackerras 	 * thus avoiding the deadlock.
29514cf11afSPaul Mackerras 	 */
29614cf11afSPaul Mackerras 	if (!down_read_trylock(&mm->mmap_sem)) {
297da929f6aSChristophe Leroy 		if (!is_user && !search_exception_tables(regs->nip))
29814cf11afSPaul Mackerras 			goto bad_area_nosemaphore;
29914cf11afSPaul Mackerras 
3009be72573SBenjamin Herrenschmidt retry:
30114cf11afSPaul Mackerras 		down_read(&mm->mmap_sem);
302a546498fSBenjamin Herrenschmidt 	} else {
303a546498fSBenjamin Herrenschmidt 		/*
304a546498fSBenjamin Herrenschmidt 		 * The above down_read_trylock() might have succeeded in
305a546498fSBenjamin Herrenschmidt 		 * which case we'll have missed the might_sleep() from
306a546498fSBenjamin Herrenschmidt 		 * down_read():
307a546498fSBenjamin Herrenschmidt 		 */
308a546498fSBenjamin Herrenschmidt 		might_sleep();
30914cf11afSPaul Mackerras 	}
31014cf11afSPaul Mackerras 
31114cf11afSPaul Mackerras 	vma = find_vma(mm, address);
31214cf11afSPaul Mackerras 	if (!vma)
31314cf11afSPaul Mackerras 		goto bad_area;
31414cf11afSPaul Mackerras 	if (vma->vm_start <= address)
31514cf11afSPaul Mackerras 		goto good_area;
31614cf11afSPaul Mackerras 	if (!(vma->vm_flags & VM_GROWSDOWN))
31714cf11afSPaul Mackerras 		goto bad_area;
31814cf11afSPaul Mackerras 
31914cf11afSPaul Mackerras 	/*
32014cf11afSPaul Mackerras 	 * N.B. The POWER/Open ABI allows programs to access up to
32114cf11afSPaul Mackerras 	 * 288 bytes below the stack pointer.
32214cf11afSPaul Mackerras 	 * The kernel signal delivery code writes up to about 1.5kB
32314cf11afSPaul Mackerras 	 * below the stack pointer (r1) before decrementing it.
32414cf11afSPaul Mackerras 	 * The exec code can write slightly over 640kB to the stack
32514cf11afSPaul Mackerras 	 * before setting the user r1.  Thus we allow the stack to
32614cf11afSPaul Mackerras 	 * expand to 1MB without further checks.
32714cf11afSPaul Mackerras 	 */
32814cf11afSPaul Mackerras 	if (address + 0x100000 < vma->vm_end) {
32914cf11afSPaul Mackerras 		/* get user regs even if this fault is in kernel mode */
33014cf11afSPaul Mackerras 		struct pt_regs *uregs = current->thread.regs;
33114cf11afSPaul Mackerras 		if (uregs == NULL)
33214cf11afSPaul Mackerras 			goto bad_area;
33314cf11afSPaul Mackerras 
33414cf11afSPaul Mackerras 		/*
33514cf11afSPaul Mackerras 		 * A user-mode access to an address a long way below
33614cf11afSPaul Mackerras 		 * the stack pointer is only valid if the instruction
33714cf11afSPaul Mackerras 		 * is one which would update the stack pointer to the
33814cf11afSPaul Mackerras 		 * address accessed if the instruction completed,
33914cf11afSPaul Mackerras 		 * i.e. either stwu rs,n(r1) or stwux rs,r1,rb
34014cf11afSPaul Mackerras 		 * (or the byte, halfword, float or double forms).
34114cf11afSPaul Mackerras 		 *
34214cf11afSPaul Mackerras 		 * If we don't check this then any write to the area
34314cf11afSPaul Mackerras 		 * between the last mapped region and the stack will
34414cf11afSPaul Mackerras 		 * expand the stack rather than segfaulting.
34514cf11afSPaul Mackerras 		 */
34669e044ddSAneesh Kumar K.V 		if (address + 2048 < uregs->gpr[1] && !store_update_sp)
34714cf11afSPaul Mackerras 			goto bad_area;
34814cf11afSPaul Mackerras 	}
34914cf11afSPaul Mackerras 	if (expand_stack(vma, address))
35014cf11afSPaul Mackerras 		goto bad_area;
35114cf11afSPaul Mackerras 
35214cf11afSPaul Mackerras good_area:
35314cf11afSPaul Mackerras 	code = SEGV_ACCERR;
35414cf11afSPaul Mackerras #if defined(CONFIG_6xx)
35514cf11afSPaul Mackerras 	if (error_code & 0x95700000)
35614cf11afSPaul Mackerras 		/* an error such as lwarx to I/O controller space,
35714cf11afSPaul Mackerras 		   address matching DABR, eciwx, etc. */
35814cf11afSPaul Mackerras 		goto bad_area;
35914cf11afSPaul Mackerras #endif /* CONFIG_6xx */
36014cf11afSPaul Mackerras #if defined(CONFIG_8xx)
36114cf11afSPaul Mackerras         /* The MPC8xx seems to always set 0x80000000, which is
36214cf11afSPaul Mackerras          * "undefined".  Of those that can be set, this is the only
36314cf11afSPaul Mackerras          * one which seems bad.
36414cf11afSPaul Mackerras          */
36514cf11afSPaul Mackerras 	if (error_code & 0x10000000)
36614cf11afSPaul Mackerras                 /* Guarded storage error. */
36714cf11afSPaul Mackerras 		goto bad_area;
36814cf11afSPaul Mackerras #endif /* CONFIG_8xx */
36914cf11afSPaul Mackerras 
37014cf11afSPaul Mackerras 	if (is_exec) {
37108ae6cc1SPaul Mackerras 		/*
37208ae6cc1SPaul Mackerras 		 * Allow execution from readable areas if the MMU does not
37308ae6cc1SPaul Mackerras 		 * provide separate controls over reading and executing.
3748d30c14cSBenjamin Herrenschmidt 		 *
3758d30c14cSBenjamin Herrenschmidt 		 * Note: That code used to not be enabled for 4xx/BookE.
3768d30c14cSBenjamin Herrenschmidt 		 * It is now as I/D cache coherency for these is done at
3778d30c14cSBenjamin Herrenschmidt 		 * set_pte_at() time and I see no reason why the test
3788d30c14cSBenjamin Herrenschmidt 		 * below wouldn't be valid on those processors. This -may-
3798d30c14cSBenjamin Herrenschmidt 		 * break programs compiled with a really old ABI though.
38008ae6cc1SPaul Mackerras 		 */
38108ae6cc1SPaul Mackerras 		if (!(vma->vm_flags & VM_EXEC) &&
38208ae6cc1SPaul Mackerras 		    (cpu_has_feature(CPU_FTR_NOEXECUTE) ||
38308ae6cc1SPaul Mackerras 		     !(vma->vm_flags & (VM_READ | VM_WRITE))))
38414cf11afSPaul Mackerras 			goto bad_area;
38514cf11afSPaul Mackerras 	/* a write */
38614cf11afSPaul Mackerras 	} else if (is_write) {
38714cf11afSPaul Mackerras 		if (!(vma->vm_flags & VM_WRITE))
38814cf11afSPaul Mackerras 			goto bad_area;
389759496baSJohannes Weiner 		flags |= FAULT_FLAG_WRITE;
39014cf11afSPaul Mackerras 	/* a read */
39114cf11afSPaul Mackerras 	} else {
392df67b3daSJason Baron 		if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
39314cf11afSPaul Mackerras 			goto bad_area;
39414cf11afSPaul Mackerras 	}
39518061c17SAneesh Kumar K.V #ifdef CONFIG_PPC_STD_MMU
39618061c17SAneesh Kumar K.V 	/*
39718061c17SAneesh Kumar K.V 	 * For hash translation mode, we should never get a
39818061c17SAneesh Kumar K.V 	 * PROTFAULT. Any update to pte to reduce access will result in us
39918061c17SAneesh Kumar K.V 	 * removing the hash page table entry, thus resulting in a DSISR_NOHPTE
40018061c17SAneesh Kumar K.V 	 * fault instead of DSISR_PROTFAULT.
40118061c17SAneesh Kumar K.V 	 *
40218061c17SAneesh Kumar K.V 	 * A pte update to relax the access will not result in a hash page table
40318061c17SAneesh Kumar K.V 	 * entry invalidate and hence can result in DSISR_PROTFAULT.
40418061c17SAneesh Kumar K.V 	 * ptep_set_access_flags() doesn't do a hpte flush. This is why we have
40518061c17SAneesh Kumar K.V 	 * the special !is_write in the below conditional.
40618061c17SAneesh Kumar K.V 	 *
40718061c17SAneesh Kumar K.V 	 * For platforms that doesn't supports coherent icache and do support
40818061c17SAneesh Kumar K.V 	 * per page noexec bit, we do setup things such that we do the
40918061c17SAneesh Kumar K.V 	 * sync between D/I cache via fault. But that is handled via low level
41018061c17SAneesh Kumar K.V 	 * hash fault code (hash_page_do_lazy_icache()) and we should not reach
41118061c17SAneesh Kumar K.V 	 * here in such case.
41218061c17SAneesh Kumar K.V 	 *
41318061c17SAneesh Kumar K.V 	 * For wrong access that can result in PROTFAULT, the above vma->vm_flags
41418061c17SAneesh Kumar K.V 	 * check should handle those and hence we should fall to the bad_area
41518061c17SAneesh Kumar K.V 	 * handling correctly.
41618061c17SAneesh Kumar K.V 	 *
41718061c17SAneesh Kumar K.V 	 * For embedded with per page exec support that doesn't support coherent
41818061c17SAneesh Kumar K.V 	 * icache we do get PROTFAULT and we handle that D/I cache sync in
41918061c17SAneesh Kumar K.V 	 * set_pte_at while taking the noexec/prot fault. Hence this is WARN_ON
42018061c17SAneesh Kumar K.V 	 * is conditional for server MMU.
42118061c17SAneesh Kumar K.V 	 *
42218061c17SAneesh Kumar K.V 	 * For radix, we can get prot fault for autonuma case, because radix
42318061c17SAneesh Kumar K.V 	 * page table will have them marked noaccess for user.
42418061c17SAneesh Kumar K.V 	 */
42518061c17SAneesh Kumar K.V 	if (!radix_enabled() && !is_write)
42618061c17SAneesh Kumar K.V 		WARN_ON_ONCE(error_code & DSISR_PROTFAULT);
42718061c17SAneesh Kumar K.V #endif /* CONFIG_PPC_STD_MMU */
42814cf11afSPaul Mackerras 
42914cf11afSPaul Mackerras 	/*
43014cf11afSPaul Mackerras 	 * If for any reason at all we couldn't handle the fault,
43114cf11afSPaul Mackerras 	 * make sure we exit gracefully rather than endlessly redo
43214cf11afSPaul Mackerras 	 * the fault.
43314cf11afSPaul Mackerras 	 */
434dcddffd4SKirill A. Shutemov 	fault = handle_mm_fault(vma, address, flags);
43514c02e41SLaurent Dufour 
43614c02e41SLaurent Dufour 	/*
43714c02e41SLaurent Dufour 	 * Handle the retry right now, the mmap_sem has been released in that
43814c02e41SLaurent Dufour 	 * case.
43914c02e41SLaurent Dufour 	 */
44014c02e41SLaurent Dufour 	if (unlikely(fault & VM_FAULT_RETRY)) {
44114c02e41SLaurent Dufour 		/* We retry only once */
44214c02e41SLaurent Dufour 		if (flags & FAULT_FLAG_ALLOW_RETRY) {
44314c02e41SLaurent Dufour 			/*
44414c02e41SLaurent Dufour 			 * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk
44514c02e41SLaurent Dufour 			 * of starvation.
44614c02e41SLaurent Dufour 			 */
44714c02e41SLaurent Dufour 			flags &= ~FAULT_FLAG_ALLOW_RETRY;
44814c02e41SLaurent Dufour 			flags |= FAULT_FLAG_TRIED;
44914c02e41SLaurent Dufour 			if (!fatal_signal_pending(current))
45014c02e41SLaurent Dufour 				goto retry;
45114c02e41SLaurent Dufour 		}
45214c02e41SLaurent Dufour 		/* We will enter mm_fault_error() below */
453819cdcdbSLaurent Dufour 	} else
454819cdcdbSLaurent Dufour 		up_read(&current->mm->mmap_sem);
45514c02e41SLaurent Dufour 
4569be72573SBenjamin Herrenschmidt 	if (unlikely(fault & (VM_FAULT_RETRY|VM_FAULT_ERROR))) {
45733692f27SLinus Torvalds 		if (fault & VM_FAULT_SIGSEGV)
458819cdcdbSLaurent Dufour 			goto bad_area_nosemaphore;
459ba12eedeSLi Zhong 		rc = mm_fault_error(regs, address, fault);
4609be72573SBenjamin Herrenschmidt 		if (rc >= MM_FAULT_RETURN)
461ba12eedeSLi Zhong 			goto bail;
462ba12eedeSLi Zhong 		else
463ba12eedeSLi Zhong 			rc = 0;
46414cf11afSPaul Mackerras 	}
4659be72573SBenjamin Herrenschmidt 
4669be72573SBenjamin Herrenschmidt 	/*
46714c02e41SLaurent Dufour 	 * Major/minor page fault accounting.
4689be72573SBenjamin Herrenschmidt 	 */
4699be72573SBenjamin Herrenschmidt 	if (fault & VM_FAULT_MAJOR) {
47083c54070SNick Piggin 		current->maj_flt++;
471a8b0ca17SPeter Zijlstra 		perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1,
47278f13e95SPeter Zijlstra 			      regs, address);
47340900194SBrian King #ifdef CONFIG_PPC_SMLPAR
47440900194SBrian King 		if (firmware_has_feature(FW_FEATURE_CMO)) {
4757ffcf8ecSAnton Blanchard 			u32 page_ins;
4767ffcf8ecSAnton Blanchard 
47740900194SBrian King 			preempt_disable();
4787ffcf8ecSAnton Blanchard 			page_ins = be32_to_cpu(get_lppaca()->page_ins);
4797ffcf8ecSAnton Blanchard 			page_ins += 1 << PAGE_FACTOR;
4807ffcf8ecSAnton Blanchard 			get_lppaca()->page_ins = cpu_to_be32(page_ins);
48140900194SBrian King 			preempt_enable();
48240900194SBrian King 		}
4839be72573SBenjamin Herrenschmidt #endif /* CONFIG_PPC_SMLPAR */
484ac17dc8eSPeter Zijlstra 	} else {
48583c54070SNick Piggin 		current->min_flt++;
486a8b0ca17SPeter Zijlstra 		perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1,
48778f13e95SPeter Zijlstra 			      regs, address);
488ac17dc8eSPeter Zijlstra 	}
4899be72573SBenjamin Herrenschmidt 
490ba12eedeSLi Zhong 	goto bail;
49114cf11afSPaul Mackerras 
49214cf11afSPaul Mackerras bad_area:
49314cf11afSPaul Mackerras 	up_read(&mm->mmap_sem);
49414cf11afSPaul Mackerras 
49514cf11afSPaul Mackerras bad_area_nosemaphore:
49614cf11afSPaul Mackerras 	/* User mode accesses cause a SIGSEGV */
497da929f6aSChristophe Leroy 	if (is_user) {
49814cf11afSPaul Mackerras 		_exception(SIGSEGV, regs, code, address);
499ba12eedeSLi Zhong 		goto bail;
50014cf11afSPaul Mackerras 	}
50114cf11afSPaul Mackerras 
50276462232SChristian Dietrich 	if (is_exec && (error_code & DSISR_PROTFAULT))
50376462232SChristian Dietrich 		printk_ratelimited(KERN_CRIT "kernel tried to execute NX-protected"
50414cf11afSPaul Mackerras 				   " page (%lx) - exploit attempt? (uid: %d)\n",
5059e184e0aSEric W. Biederman 				   address, from_kuid(&init_user_ns, current_uid()));
50614cf11afSPaul Mackerras 
507ba12eedeSLi Zhong 	rc = SIGSEGV;
508ba12eedeSLi Zhong 
509ba12eedeSLi Zhong bail:
5107afad422SBenjamin Herrenschmidt 	return rc;
5117afad422SBenjamin Herrenschmidt }
5127afad422SBenjamin Herrenschmidt NOKPROBE_SYMBOL(__do_page_fault);
5137afad422SBenjamin Herrenschmidt 
5147afad422SBenjamin Herrenschmidt int do_page_fault(struct pt_regs *regs, unsigned long address,
5157afad422SBenjamin Herrenschmidt 		  unsigned long error_code)
5167afad422SBenjamin Herrenschmidt {
5177afad422SBenjamin Herrenschmidt 	enum ctx_state prev_state = exception_enter();
5187afad422SBenjamin Herrenschmidt 	int rc = __do_page_fault(regs, address, error_code);
519ba12eedeSLi Zhong 	exception_exit(prev_state);
520ba12eedeSLi Zhong 	return rc;
52114cf11afSPaul Mackerras }
52203465f89SNicholas Piggin NOKPROBE_SYMBOL(do_page_fault);
52314cf11afSPaul Mackerras 
52414cf11afSPaul Mackerras /*
52514cf11afSPaul Mackerras  * bad_page_fault is called when we have a bad access from the kernel.
52614cf11afSPaul Mackerras  * It is called from the DSI and ISI handlers in head.S and from some
52714cf11afSPaul Mackerras  * of the procedures in traps.c.
52814cf11afSPaul Mackerras  */
52914cf11afSPaul Mackerras void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
53014cf11afSPaul Mackerras {
53114cf11afSPaul Mackerras 	const struct exception_table_entry *entry;
53214cf11afSPaul Mackerras 
53314cf11afSPaul Mackerras 	/* Are we prepared to handle this fault?  */
53414cf11afSPaul Mackerras 	if ((entry = search_exception_tables(regs->nip)) != NULL) {
53561a92f70SNicholas Piggin 		regs->nip = extable_fixup(entry);
53614cf11afSPaul Mackerras 		return;
53714cf11afSPaul Mackerras 	}
53814cf11afSPaul Mackerras 
53914cf11afSPaul Mackerras 	/* kernel has accessed a bad area */
540723925b7SOlof Johansson 
541723925b7SOlof Johansson 	switch (regs->trap) {
542723925b7SOlof Johansson 	case 0x300:
543723925b7SOlof Johansson 	case 0x380:
544a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
545a416dd8dSMichael Ellerman 			"data at address 0x%08lx\n", regs->dar);
546723925b7SOlof Johansson 		break;
547723925b7SOlof Johansson 	case 0x400:
548723925b7SOlof Johansson 	case 0x480:
549a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
550a416dd8dSMichael Ellerman 			"instruction fetch\n");
551723925b7SOlof Johansson 		break;
552eab861a7SAnton Blanchard 	case 0x600:
553eab861a7SAnton Blanchard 		printk(KERN_ALERT "Unable to handle kernel paging request for "
554eab861a7SAnton Blanchard 			"unaligned access at address 0x%08lx\n", regs->dar);
555eab861a7SAnton Blanchard 		break;
556723925b7SOlof Johansson 	default:
557a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
558a416dd8dSMichael Ellerman 			"unknown fault\n");
559a416dd8dSMichael Ellerman 		break;
560723925b7SOlof Johansson 	}
561723925b7SOlof Johansson 	printk(KERN_ALERT "Faulting instruction address: 0x%08lx\n",
562723925b7SOlof Johansson 		regs->nip);
563723925b7SOlof Johansson 
564a70857e4SAaron Tomlin 	if (task_stack_end_corrupted(current))
56528b54990SAnton Blanchard 		printk(KERN_ALERT "Thread overran stack, or stack corrupted\n");
56628b54990SAnton Blanchard 
56714cf11afSPaul Mackerras 	die("Kernel access of bad area", regs, sig);
56814cf11afSPaul Mackerras }
569