xref: /openbmc/linux/arch/powerpc/mm/fault.c (revision 8d30c14cab30d405a05f2aaceda1e9ad57800f36)
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>
2014cf11afSPaul Mackerras #include <linux/kernel.h>
2114cf11afSPaul Mackerras #include <linux/errno.h>
2214cf11afSPaul Mackerras #include <linux/string.h>
2314cf11afSPaul Mackerras #include <linux/types.h>
2414cf11afSPaul Mackerras #include <linux/ptrace.h>
2514cf11afSPaul Mackerras #include <linux/mman.h>
2614cf11afSPaul Mackerras #include <linux/mm.h>
2714cf11afSPaul Mackerras #include <linux/interrupt.h>
2814cf11afSPaul Mackerras #include <linux/highmem.h>
2914cf11afSPaul Mackerras #include <linux/module.h>
3014cf11afSPaul Mackerras #include <linux/kprobes.h>
311eeb66a1SChristoph Hellwig #include <linux/kdebug.h>
3214cf11afSPaul Mackerras 
3340900194SBrian King #include <asm/firmware.h>
3414cf11afSPaul Mackerras #include <asm/page.h>
3514cf11afSPaul Mackerras #include <asm/pgtable.h>
3614cf11afSPaul Mackerras #include <asm/mmu.h>
3714cf11afSPaul Mackerras #include <asm/mmu_context.h>
3814cf11afSPaul Mackerras #include <asm/system.h>
3914cf11afSPaul Mackerras #include <asm/uaccess.h>
4014cf11afSPaul Mackerras #include <asm/tlbflush.h>
4114cf11afSPaul Mackerras #include <asm/siginfo.h>
4214cf11afSPaul Mackerras 
439f90b997SChristoph Hellwig 
444f9e87c0SAnil S Keshavamurthy #ifdef CONFIG_KPROBES
459f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs)
464f9e87c0SAnil S Keshavamurthy {
479f90b997SChristoph Hellwig 	int ret = 0;
489f90b997SChristoph Hellwig 
499f90b997SChristoph Hellwig 	/* kprobe_running() needs smp_processor_id() */
509f90b997SChristoph Hellwig 	if (!user_mode(regs)) {
519f90b997SChristoph Hellwig 		preempt_disable();
529f90b997SChristoph Hellwig 		if (kprobe_running() && kprobe_fault_handler(regs, 11))
539f90b997SChristoph Hellwig 			ret = 1;
549f90b997SChristoph Hellwig 		preempt_enable();
554f9e87c0SAnil S Keshavamurthy 	}
564f9e87c0SAnil S Keshavamurthy 
579f90b997SChristoph Hellwig 	return ret;
584f9e87c0SAnil S Keshavamurthy }
594f9e87c0SAnil S Keshavamurthy #else
609f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs)
614f9e87c0SAnil S Keshavamurthy {
629f90b997SChristoph Hellwig 	return 0;
634f9e87c0SAnil S Keshavamurthy }
644f9e87c0SAnil S Keshavamurthy #endif
654f9e87c0SAnil S Keshavamurthy 
6614cf11afSPaul Mackerras /*
6714cf11afSPaul Mackerras  * Check whether the instruction at regs->nip is a store using
6814cf11afSPaul Mackerras  * an update addressing form which will update r1.
6914cf11afSPaul Mackerras  */
7014cf11afSPaul Mackerras static int store_updates_sp(struct pt_regs *regs)
7114cf11afSPaul Mackerras {
7214cf11afSPaul Mackerras 	unsigned int inst;
7314cf11afSPaul Mackerras 
7414cf11afSPaul Mackerras 	if (get_user(inst, (unsigned int __user *)regs->nip))
7514cf11afSPaul Mackerras 		return 0;
7614cf11afSPaul Mackerras 	/* check for 1 in the rA field */
7714cf11afSPaul Mackerras 	if (((inst >> 16) & 0x1f) != 1)
7814cf11afSPaul Mackerras 		return 0;
7914cf11afSPaul Mackerras 	/* check major opcode */
8014cf11afSPaul Mackerras 	switch (inst >> 26) {
8114cf11afSPaul Mackerras 	case 37:	/* stwu */
8214cf11afSPaul Mackerras 	case 39:	/* stbu */
8314cf11afSPaul Mackerras 	case 45:	/* sthu */
8414cf11afSPaul Mackerras 	case 53:	/* stfsu */
8514cf11afSPaul Mackerras 	case 55:	/* stfdu */
8614cf11afSPaul Mackerras 		return 1;
8714cf11afSPaul Mackerras 	case 62:	/* std or stdu */
8814cf11afSPaul Mackerras 		return (inst & 3) == 1;
8914cf11afSPaul Mackerras 	case 31:
9014cf11afSPaul Mackerras 		/* check minor opcode */
9114cf11afSPaul Mackerras 		switch ((inst >> 1) & 0x3ff) {
9214cf11afSPaul Mackerras 		case 181:	/* stdux */
9314cf11afSPaul Mackerras 		case 183:	/* stwux */
9414cf11afSPaul Mackerras 		case 247:	/* stbux */
9514cf11afSPaul Mackerras 		case 439:	/* sthux */
9614cf11afSPaul Mackerras 		case 695:	/* stfsux */
9714cf11afSPaul Mackerras 		case 759:	/* stfdux */
9814cf11afSPaul Mackerras 			return 1;
9914cf11afSPaul Mackerras 		}
10014cf11afSPaul Mackerras 	}
10114cf11afSPaul Mackerras 	return 0;
10214cf11afSPaul Mackerras }
10314cf11afSPaul Mackerras 
10414cf11afSPaul Mackerras /*
10514cf11afSPaul Mackerras  * For 600- and 800-family processors, the error_code parameter is DSISR
10614cf11afSPaul Mackerras  * for a data fault, SRR1 for an instruction fault. For 400-family processors
10714cf11afSPaul Mackerras  * the error_code parameter is ESR for a data fault, 0 for an instruction
10814cf11afSPaul Mackerras  * fault.
10914cf11afSPaul Mackerras  * For 64-bit processors, the error_code parameter is
11014cf11afSPaul Mackerras  *  - DSISR for a non-SLB data access fault,
11114cf11afSPaul Mackerras  *  - SRR1 & 0x08000000 for a non-SLB instruction access fault
11214cf11afSPaul Mackerras  *  - 0 any SLB fault.
11314cf11afSPaul Mackerras  *
11414cf11afSPaul Mackerras  * The return value is 0 if the fault was handled, or the signal
11514cf11afSPaul Mackerras  * number if this is a kernel fault that can't be handled here.
11614cf11afSPaul Mackerras  */
11714cf11afSPaul Mackerras int __kprobes do_page_fault(struct pt_regs *regs, unsigned long address,
11814cf11afSPaul Mackerras 			    unsigned long error_code)
11914cf11afSPaul Mackerras {
12014cf11afSPaul Mackerras 	struct vm_area_struct * vma;
12114cf11afSPaul Mackerras 	struct mm_struct *mm = current->mm;
12214cf11afSPaul Mackerras 	siginfo_t info;
12314cf11afSPaul Mackerras 	int code = SEGV_MAPERR;
12483c54070SNick Piggin 	int is_write = 0, ret;
12514cf11afSPaul Mackerras 	int trap = TRAP(regs);
12614cf11afSPaul Mackerras  	int is_exec = trap == 0x400;
12714cf11afSPaul Mackerras 
12814cf11afSPaul Mackerras #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
12914cf11afSPaul Mackerras 	/*
13014cf11afSPaul Mackerras 	 * Fortunately the bit assignments in SRR1 for an instruction
13114cf11afSPaul Mackerras 	 * fault and DSISR for a data fault are mostly the same for the
13214cf11afSPaul Mackerras 	 * bits we are interested in.  But there are some bits which
13314cf11afSPaul Mackerras 	 * indicate errors in DSISR but can validly be set in SRR1.
13414cf11afSPaul Mackerras 	 */
13514cf11afSPaul Mackerras 	if (trap == 0x400)
13614cf11afSPaul Mackerras 		error_code &= 0x48200000;
13714cf11afSPaul Mackerras 	else
13814cf11afSPaul Mackerras 		is_write = error_code & DSISR_ISSTORE;
13914cf11afSPaul Mackerras #else
14014cf11afSPaul Mackerras 	is_write = error_code & ESR_DST;
14114cf11afSPaul Mackerras #endif /* CONFIG_4xx || CONFIG_BOOKE */
14214cf11afSPaul Mackerras 
1439f90b997SChristoph Hellwig 	if (notify_page_fault(regs))
14414cf11afSPaul Mackerras 		return 0;
14514cf11afSPaul Mackerras 
146c3b75bd7SMichael Neuling 	if (unlikely(debugger_fault_handler(regs)))
14714cf11afSPaul Mackerras 		return 0;
14814cf11afSPaul Mackerras 
14914cf11afSPaul Mackerras 	/* On a kernel SLB miss we can only check for a valid exception entry */
15014cf11afSPaul Mackerras 	if (!user_mode(regs) && (address >= TASK_SIZE))
15114cf11afSPaul Mackerras 		return SIGSEGV;
15214cf11afSPaul Mackerras 
15314cf11afSPaul Mackerras #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE))
15414cf11afSPaul Mackerras   	if (error_code & DSISR_DABRMATCH) {
15514cf11afSPaul Mackerras 		/* DABR match */
156bce6c5fdSAnton Blanchard 		do_dabr(regs, address, error_code);
15714cf11afSPaul Mackerras 		return 0;
15814cf11afSPaul Mackerras 	}
15914cf11afSPaul Mackerras #endif /* !(CONFIG_4xx || CONFIG_BOOKE)*/
16014cf11afSPaul Mackerras 
16114cf11afSPaul Mackerras 	if (in_atomic() || mm == NULL) {
16214cf11afSPaul Mackerras 		if (!user_mode(regs))
16314cf11afSPaul Mackerras 			return SIGSEGV;
16414cf11afSPaul Mackerras 		/* in_atomic() in user mode is really bad,
16514cf11afSPaul Mackerras 		   as is current->mm == NULL. */
16614cf11afSPaul Mackerras 		printk(KERN_EMERG "Page fault in user mode with "
16714cf11afSPaul Mackerras 		       "in_atomic() = %d mm = %p\n", in_atomic(), mm);
16814cf11afSPaul Mackerras 		printk(KERN_EMERG "NIP = %lx  MSR = %lx\n",
16914cf11afSPaul Mackerras 		       regs->nip, regs->msr);
17014cf11afSPaul Mackerras 		die("Weird page fault", regs, SIGSEGV);
17114cf11afSPaul Mackerras 	}
17214cf11afSPaul Mackerras 
17314cf11afSPaul Mackerras 	/* When running in the kernel we expect faults to occur only to
17414cf11afSPaul Mackerras 	 * addresses in user space.  All other faults represent errors in the
175fc5266eaSAnton Blanchard 	 * kernel and should generate an OOPS.  Unfortunately, in the case of an
176fc5266eaSAnton Blanchard 	 * erroneous fault occurring in a code path which already holds mmap_sem
17714cf11afSPaul Mackerras 	 * we will deadlock attempting to validate the fault against the
17814cf11afSPaul Mackerras 	 * address space.  Luckily the kernel only validly references user
17914cf11afSPaul Mackerras 	 * space from well defined areas of code, which are listed in the
18014cf11afSPaul Mackerras 	 * exceptions table.
18114cf11afSPaul Mackerras 	 *
18214cf11afSPaul Mackerras 	 * As the vast majority of faults will be valid we will only perform
183fc5266eaSAnton Blanchard 	 * the source reference check when there is a possibility of a deadlock.
18414cf11afSPaul Mackerras 	 * Attempt to lock the address space, if we cannot we then validate the
18514cf11afSPaul Mackerras 	 * source.  If this is invalid we can skip the address space check,
18614cf11afSPaul Mackerras 	 * thus avoiding the deadlock.
18714cf11afSPaul Mackerras 	 */
18814cf11afSPaul Mackerras 	if (!down_read_trylock(&mm->mmap_sem)) {
18914cf11afSPaul Mackerras 		if (!user_mode(regs) && !search_exception_tables(regs->nip))
19014cf11afSPaul Mackerras 			goto bad_area_nosemaphore;
19114cf11afSPaul Mackerras 
19214cf11afSPaul Mackerras 		down_read(&mm->mmap_sem);
19314cf11afSPaul Mackerras 	}
19414cf11afSPaul Mackerras 
19514cf11afSPaul Mackerras 	vma = find_vma(mm, address);
19614cf11afSPaul Mackerras 	if (!vma)
19714cf11afSPaul Mackerras 		goto bad_area;
19814cf11afSPaul Mackerras 	if (vma->vm_start <= address)
19914cf11afSPaul Mackerras 		goto good_area;
20014cf11afSPaul Mackerras 	if (!(vma->vm_flags & VM_GROWSDOWN))
20114cf11afSPaul Mackerras 		goto bad_area;
20214cf11afSPaul Mackerras 
20314cf11afSPaul Mackerras 	/*
20414cf11afSPaul Mackerras 	 * N.B. The POWER/Open ABI allows programs to access up to
20514cf11afSPaul Mackerras 	 * 288 bytes below the stack pointer.
20614cf11afSPaul Mackerras 	 * The kernel signal delivery code writes up to about 1.5kB
20714cf11afSPaul Mackerras 	 * below the stack pointer (r1) before decrementing it.
20814cf11afSPaul Mackerras 	 * The exec code can write slightly over 640kB to the stack
20914cf11afSPaul Mackerras 	 * before setting the user r1.  Thus we allow the stack to
21014cf11afSPaul Mackerras 	 * expand to 1MB without further checks.
21114cf11afSPaul Mackerras 	 */
21214cf11afSPaul Mackerras 	if (address + 0x100000 < vma->vm_end) {
21314cf11afSPaul Mackerras 		/* get user regs even if this fault is in kernel mode */
21414cf11afSPaul Mackerras 		struct pt_regs *uregs = current->thread.regs;
21514cf11afSPaul Mackerras 		if (uregs == NULL)
21614cf11afSPaul Mackerras 			goto bad_area;
21714cf11afSPaul Mackerras 
21814cf11afSPaul Mackerras 		/*
21914cf11afSPaul Mackerras 		 * A user-mode access to an address a long way below
22014cf11afSPaul Mackerras 		 * the stack pointer is only valid if the instruction
22114cf11afSPaul Mackerras 		 * is one which would update the stack pointer to the
22214cf11afSPaul Mackerras 		 * address accessed if the instruction completed,
22314cf11afSPaul Mackerras 		 * i.e. either stwu rs,n(r1) or stwux rs,r1,rb
22414cf11afSPaul Mackerras 		 * (or the byte, halfword, float or double forms).
22514cf11afSPaul Mackerras 		 *
22614cf11afSPaul Mackerras 		 * If we don't check this then any write to the area
22714cf11afSPaul Mackerras 		 * between the last mapped region and the stack will
22814cf11afSPaul Mackerras 		 * expand the stack rather than segfaulting.
22914cf11afSPaul Mackerras 		 */
23014cf11afSPaul Mackerras 		if (address + 2048 < uregs->gpr[1]
23114cf11afSPaul Mackerras 		    && (!user_mode(regs) || !store_updates_sp(regs)))
23214cf11afSPaul Mackerras 			goto bad_area;
23314cf11afSPaul Mackerras 	}
23414cf11afSPaul Mackerras 	if (expand_stack(vma, address))
23514cf11afSPaul Mackerras 		goto bad_area;
23614cf11afSPaul Mackerras 
23714cf11afSPaul Mackerras good_area:
23814cf11afSPaul Mackerras 	code = SEGV_ACCERR;
23914cf11afSPaul Mackerras #if defined(CONFIG_6xx)
24014cf11afSPaul Mackerras 	if (error_code & 0x95700000)
24114cf11afSPaul Mackerras 		/* an error such as lwarx to I/O controller space,
24214cf11afSPaul Mackerras 		   address matching DABR, eciwx, etc. */
24314cf11afSPaul Mackerras 		goto bad_area;
24414cf11afSPaul Mackerras #endif /* CONFIG_6xx */
24514cf11afSPaul Mackerras #if defined(CONFIG_8xx)
24614cf11afSPaul Mackerras         /* The MPC8xx seems to always set 0x80000000, which is
24714cf11afSPaul Mackerras          * "undefined".  Of those that can be set, this is the only
24814cf11afSPaul Mackerras          * one which seems bad.
24914cf11afSPaul Mackerras          */
25014cf11afSPaul Mackerras 	if (error_code & 0x10000000)
25114cf11afSPaul Mackerras                 /* Guarded storage error. */
25214cf11afSPaul Mackerras 		goto bad_area;
25314cf11afSPaul Mackerras #endif /* CONFIG_8xx */
25414cf11afSPaul Mackerras 
25514cf11afSPaul Mackerras 	if (is_exec) {
256*8d30c14cSBenjamin Herrenschmidt #ifdef CONFIG_PPC_STD_MMU
257*8d30c14cSBenjamin Herrenschmidt 		/* Protection fault on exec go straight to failure on
258*8d30c14cSBenjamin Herrenschmidt 		 * Hash based MMUs as they either don't support per-page
259*8d30c14cSBenjamin Herrenschmidt 		 * execute permission, or if they do, it's handled already
260*8d30c14cSBenjamin Herrenschmidt 		 * at the hash level. This test would probably have to
261*8d30c14cSBenjamin Herrenschmidt 		 * be removed if we change the way this works to make hash
262*8d30c14cSBenjamin Herrenschmidt 		 * processors use the same I/D cache coherency mechanism
263*8d30c14cSBenjamin Herrenschmidt 		 * as embedded.
264*8d30c14cSBenjamin Herrenschmidt 		 */
26514cf11afSPaul Mackerras 		if (error_code & DSISR_PROTFAULT)
26614cf11afSPaul Mackerras 			goto bad_area;
267*8d30c14cSBenjamin Herrenschmidt #endif /* CONFIG_PPC_STD_MMU */
268*8d30c14cSBenjamin Herrenschmidt 
26908ae6cc1SPaul Mackerras 		/*
27008ae6cc1SPaul Mackerras 		 * Allow execution from readable areas if the MMU does not
27108ae6cc1SPaul Mackerras 		 * provide separate controls over reading and executing.
272*8d30c14cSBenjamin Herrenschmidt 		 *
273*8d30c14cSBenjamin Herrenschmidt 		 * Note: That code used to not be enabled for 4xx/BookE.
274*8d30c14cSBenjamin Herrenschmidt 		 * It is now as I/D cache coherency for these is done at
275*8d30c14cSBenjamin Herrenschmidt 		 * set_pte_at() time and I see no reason why the test
276*8d30c14cSBenjamin Herrenschmidt 		 * below wouldn't be valid on those processors. This -may-
277*8d30c14cSBenjamin Herrenschmidt 		 * break programs compiled with a really old ABI though.
27808ae6cc1SPaul Mackerras 		 */
27908ae6cc1SPaul Mackerras 		if (!(vma->vm_flags & VM_EXEC) &&
28008ae6cc1SPaul Mackerras 		    (cpu_has_feature(CPU_FTR_NOEXECUTE) ||
28108ae6cc1SPaul Mackerras 		     !(vma->vm_flags & (VM_READ | VM_WRITE))))
28214cf11afSPaul Mackerras 			goto bad_area;
28314cf11afSPaul Mackerras 	/* a write */
28414cf11afSPaul Mackerras 	} else if (is_write) {
28514cf11afSPaul Mackerras 		if (!(vma->vm_flags & VM_WRITE))
28614cf11afSPaul Mackerras 			goto bad_area;
28714cf11afSPaul Mackerras 	/* a read */
28814cf11afSPaul Mackerras 	} else {
28914cf11afSPaul Mackerras 		/* protection fault */
29014cf11afSPaul Mackerras 		if (error_code & 0x08000000)
29114cf11afSPaul Mackerras 			goto bad_area;
292df67b3daSJason Baron 		if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
29314cf11afSPaul Mackerras 			goto bad_area;
29414cf11afSPaul Mackerras 	}
29514cf11afSPaul Mackerras 
29614cf11afSPaul Mackerras 	/*
29714cf11afSPaul Mackerras 	 * If for any reason at all we couldn't handle the fault,
29814cf11afSPaul Mackerras 	 * make sure we exit gracefully rather than endlessly redo
29914cf11afSPaul Mackerras 	 * the fault.
30014cf11afSPaul Mackerras 	 */
30114cf11afSPaul Mackerras  survive:
30283c54070SNick Piggin 	ret = handle_mm_fault(mm, vma, address, is_write);
30383c54070SNick Piggin 	if (unlikely(ret & VM_FAULT_ERROR)) {
30483c54070SNick Piggin 		if (ret & VM_FAULT_OOM)
30514cf11afSPaul Mackerras 			goto out_of_memory;
30683c54070SNick Piggin 		else if (ret & VM_FAULT_SIGBUS)
30783c54070SNick Piggin 			goto do_sigbus;
30814cf11afSPaul Mackerras 		BUG();
30914cf11afSPaul Mackerras 	}
31040900194SBrian King 	if (ret & VM_FAULT_MAJOR) {
31183c54070SNick Piggin 		current->maj_flt++;
31240900194SBrian King #ifdef CONFIG_PPC_SMLPAR
31340900194SBrian King 		if (firmware_has_feature(FW_FEATURE_CMO)) {
31440900194SBrian King 			preempt_disable();
315a6326e98SRobert Jennings 			get_lppaca()->page_ins += (1 << PAGE_FACTOR);
31640900194SBrian King 			preempt_enable();
31740900194SBrian King 		}
31840900194SBrian King #endif
31940900194SBrian King 	} else
32083c54070SNick Piggin 		current->min_flt++;
32114cf11afSPaul Mackerras 	up_read(&mm->mmap_sem);
32214cf11afSPaul Mackerras 	return 0;
32314cf11afSPaul Mackerras 
32414cf11afSPaul Mackerras bad_area:
32514cf11afSPaul Mackerras 	up_read(&mm->mmap_sem);
32614cf11afSPaul Mackerras 
32714cf11afSPaul Mackerras bad_area_nosemaphore:
32814cf11afSPaul Mackerras 	/* User mode accesses cause a SIGSEGV */
32914cf11afSPaul Mackerras 	if (user_mode(regs)) {
33014cf11afSPaul Mackerras 		_exception(SIGSEGV, regs, code, address);
33114cf11afSPaul Mackerras 		return 0;
33214cf11afSPaul Mackerras 	}
33314cf11afSPaul Mackerras 
33414cf11afSPaul Mackerras 	if (is_exec && (error_code & DSISR_PROTFAULT)
33514cf11afSPaul Mackerras 	    && printk_ratelimit())
33614cf11afSPaul Mackerras 		printk(KERN_CRIT "kernel tried to execute NX-protected"
33714cf11afSPaul Mackerras 		       " page (%lx) - exploit attempt? (uid: %d)\n",
3381330deb0SDavid Howells 		       address, current_uid());
33914cf11afSPaul Mackerras 
34014cf11afSPaul Mackerras 	return SIGSEGV;
34114cf11afSPaul Mackerras 
34214cf11afSPaul Mackerras /*
34314cf11afSPaul Mackerras  * We ran out of memory, or some other thing happened to us that made
34414cf11afSPaul Mackerras  * us unable to handle the page fault gracefully.
34514cf11afSPaul Mackerras  */
34614cf11afSPaul Mackerras out_of_memory:
34714cf11afSPaul Mackerras 	up_read(&mm->mmap_sem);
348b460cbc5SSerge E. Hallyn 	if (is_global_init(current)) {
34914cf11afSPaul Mackerras 		yield();
35014cf11afSPaul Mackerras 		down_read(&mm->mmap_sem);
35114cf11afSPaul Mackerras 		goto survive;
35214cf11afSPaul Mackerras 	}
35314cf11afSPaul Mackerras 	printk("VM: killing process %s\n", current->comm);
35414cf11afSPaul Mackerras 	if (user_mode(regs))
355effe24bdSwill schmidt 		do_group_exit(SIGKILL);
35614cf11afSPaul Mackerras 	return SIGKILL;
35714cf11afSPaul Mackerras 
35814cf11afSPaul Mackerras do_sigbus:
35914cf11afSPaul Mackerras 	up_read(&mm->mmap_sem);
36014cf11afSPaul Mackerras 	if (user_mode(regs)) {
36114cf11afSPaul Mackerras 		info.si_signo = SIGBUS;
36214cf11afSPaul Mackerras 		info.si_errno = 0;
36314cf11afSPaul Mackerras 		info.si_code = BUS_ADRERR;
36414cf11afSPaul Mackerras 		info.si_addr = (void __user *)address;
36514cf11afSPaul Mackerras 		force_sig_info(SIGBUS, &info, current);
36614cf11afSPaul Mackerras 		return 0;
36714cf11afSPaul Mackerras 	}
36814cf11afSPaul Mackerras 	return SIGBUS;
36914cf11afSPaul Mackerras }
37014cf11afSPaul Mackerras 
37114cf11afSPaul Mackerras /*
37214cf11afSPaul Mackerras  * bad_page_fault is called when we have a bad access from the kernel.
37314cf11afSPaul Mackerras  * It is called from the DSI and ISI handlers in head.S and from some
37414cf11afSPaul Mackerras  * of the procedures in traps.c.
37514cf11afSPaul Mackerras  */
37614cf11afSPaul Mackerras void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
37714cf11afSPaul Mackerras {
37814cf11afSPaul Mackerras 	const struct exception_table_entry *entry;
37914cf11afSPaul Mackerras 
38014cf11afSPaul Mackerras 	/* Are we prepared to handle this fault?  */
38114cf11afSPaul Mackerras 	if ((entry = search_exception_tables(regs->nip)) != NULL) {
38214cf11afSPaul Mackerras 		regs->nip = entry->fixup;
38314cf11afSPaul Mackerras 		return;
38414cf11afSPaul Mackerras 	}
38514cf11afSPaul Mackerras 
38614cf11afSPaul Mackerras 	/* kernel has accessed a bad area */
387723925b7SOlof Johansson 
388723925b7SOlof Johansson 	switch (regs->trap) {
389723925b7SOlof Johansson 	case 0x300:
390723925b7SOlof Johansson 	case 0x380:
391a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
392a416dd8dSMichael Ellerman 			"data at address 0x%08lx\n", regs->dar);
393723925b7SOlof Johansson 		break;
394723925b7SOlof Johansson 	case 0x400:
395723925b7SOlof Johansson 	case 0x480:
396a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
397a416dd8dSMichael Ellerman 			"instruction fetch\n");
398723925b7SOlof Johansson 		break;
399723925b7SOlof Johansson 	default:
400a416dd8dSMichael Ellerman 		printk(KERN_ALERT "Unable to handle kernel paging request for "
401a416dd8dSMichael Ellerman 			"unknown fault\n");
402a416dd8dSMichael Ellerman 		break;
403723925b7SOlof Johansson 	}
404723925b7SOlof Johansson 	printk(KERN_ALERT "Faulting instruction address: 0x%08lx\n",
405723925b7SOlof Johansson 		regs->nip);
406723925b7SOlof Johansson 
40714cf11afSPaul Mackerras 	die("Kernel access of bad area", regs, sig);
40814cf11afSPaul Mackerras }
409