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> 32cdd6c482SIngo Molnar #include <linux/perf_event.h> 3314cf11afSPaul Mackerras 3440900194SBrian King #include <asm/firmware.h> 3514cf11afSPaul Mackerras #include <asm/page.h> 3614cf11afSPaul Mackerras #include <asm/pgtable.h> 3714cf11afSPaul Mackerras #include <asm/mmu.h> 3814cf11afSPaul Mackerras #include <asm/mmu_context.h> 3914cf11afSPaul Mackerras #include <asm/system.h> 4014cf11afSPaul Mackerras #include <asm/uaccess.h> 4114cf11afSPaul Mackerras #include <asm/tlbflush.h> 4214cf11afSPaul Mackerras #include <asm/siginfo.h> 435efab4a0SJoakim Tjernlund #include <mm/mmu_decl.h> 449f90b997SChristoph Hellwig 454f9e87c0SAnil S Keshavamurthy #ifdef CONFIG_KPROBES 469f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs) 474f9e87c0SAnil S Keshavamurthy { 489f90b997SChristoph Hellwig int ret = 0; 499f90b997SChristoph Hellwig 509f90b997SChristoph Hellwig /* kprobe_running() needs smp_processor_id() */ 519f90b997SChristoph Hellwig if (!user_mode(regs)) { 529f90b997SChristoph Hellwig preempt_disable(); 539f90b997SChristoph Hellwig if (kprobe_running() && kprobe_fault_handler(regs, 11)) 549f90b997SChristoph Hellwig ret = 1; 559f90b997SChristoph Hellwig preempt_enable(); 564f9e87c0SAnil S Keshavamurthy } 574f9e87c0SAnil S Keshavamurthy 589f90b997SChristoph Hellwig return ret; 594f9e87c0SAnil S Keshavamurthy } 604f9e87c0SAnil S Keshavamurthy #else 619f90b997SChristoph Hellwig static inline int notify_page_fault(struct pt_regs *regs) 624f9e87c0SAnil S Keshavamurthy { 639f90b997SChristoph Hellwig return 0; 644f9e87c0SAnil S Keshavamurthy } 654f9e87c0SAnil S Keshavamurthy #endif 664f9e87c0SAnil S Keshavamurthy 6714cf11afSPaul Mackerras /* 6814cf11afSPaul Mackerras * Check whether the instruction at regs->nip is a store using 6914cf11afSPaul Mackerras * an update addressing form which will update r1. 7014cf11afSPaul Mackerras */ 7114cf11afSPaul Mackerras static int store_updates_sp(struct pt_regs *regs) 7214cf11afSPaul Mackerras { 7314cf11afSPaul Mackerras unsigned int inst; 7414cf11afSPaul Mackerras 7514cf11afSPaul Mackerras if (get_user(inst, (unsigned int __user *)regs->nip)) 7614cf11afSPaul Mackerras return 0; 7714cf11afSPaul Mackerras /* check for 1 in the rA field */ 7814cf11afSPaul Mackerras if (((inst >> 16) & 0x1f) != 1) 7914cf11afSPaul Mackerras return 0; 8014cf11afSPaul Mackerras /* check major opcode */ 8114cf11afSPaul Mackerras switch (inst >> 26) { 8214cf11afSPaul Mackerras case 37: /* stwu */ 8314cf11afSPaul Mackerras case 39: /* stbu */ 8414cf11afSPaul Mackerras case 45: /* sthu */ 8514cf11afSPaul Mackerras case 53: /* stfsu */ 8614cf11afSPaul Mackerras case 55: /* stfdu */ 8714cf11afSPaul Mackerras return 1; 8814cf11afSPaul Mackerras case 62: /* std or stdu */ 8914cf11afSPaul Mackerras return (inst & 3) == 1; 9014cf11afSPaul Mackerras case 31: 9114cf11afSPaul Mackerras /* check minor opcode */ 9214cf11afSPaul Mackerras switch ((inst >> 1) & 0x3ff) { 9314cf11afSPaul Mackerras case 181: /* stdux */ 9414cf11afSPaul Mackerras case 183: /* stwux */ 9514cf11afSPaul Mackerras case 247: /* stbux */ 9614cf11afSPaul Mackerras case 439: /* sthux */ 9714cf11afSPaul Mackerras case 695: /* stfsux */ 9814cf11afSPaul Mackerras case 759: /* stfdux */ 9914cf11afSPaul Mackerras return 1; 10014cf11afSPaul Mackerras } 10114cf11afSPaul Mackerras } 10214cf11afSPaul Mackerras return 0; 10314cf11afSPaul Mackerras } 10414cf11afSPaul Mackerras 10514cf11afSPaul Mackerras /* 10614cf11afSPaul Mackerras * For 600- and 800-family processors, the error_code parameter is DSISR 10714cf11afSPaul Mackerras * for a data fault, SRR1 for an instruction fault. For 400-family processors 10814cf11afSPaul Mackerras * the error_code parameter is ESR for a data fault, 0 for an instruction 10914cf11afSPaul Mackerras * fault. 11014cf11afSPaul Mackerras * For 64-bit processors, the error_code parameter is 11114cf11afSPaul Mackerras * - DSISR for a non-SLB data access fault, 11214cf11afSPaul Mackerras * - SRR1 & 0x08000000 for a non-SLB instruction access fault 11314cf11afSPaul Mackerras * - 0 any SLB fault. 11414cf11afSPaul Mackerras * 11514cf11afSPaul Mackerras * The return value is 0 if the fault was handled, or the signal 11614cf11afSPaul Mackerras * number if this is a kernel fault that can't be handled here. 11714cf11afSPaul Mackerras */ 11814cf11afSPaul Mackerras int __kprobes do_page_fault(struct pt_regs *regs, unsigned long address, 11914cf11afSPaul Mackerras unsigned long error_code) 12014cf11afSPaul Mackerras { 12114cf11afSPaul Mackerras struct vm_area_struct * vma; 12214cf11afSPaul Mackerras struct mm_struct *mm = current->mm; 12314cf11afSPaul Mackerras siginfo_t info; 12414cf11afSPaul Mackerras int code = SEGV_MAPERR; 12583c54070SNick Piggin int is_write = 0, ret; 12614cf11afSPaul Mackerras int trap = TRAP(regs); 12714cf11afSPaul Mackerras int is_exec = trap == 0x400; 12814cf11afSPaul Mackerras 12914cf11afSPaul Mackerras #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE)) 13014cf11afSPaul Mackerras /* 13114cf11afSPaul Mackerras * Fortunately the bit assignments in SRR1 for an instruction 13214cf11afSPaul Mackerras * fault and DSISR for a data fault are mostly the same for the 13314cf11afSPaul Mackerras * bits we are interested in. But there are some bits which 13414cf11afSPaul Mackerras * indicate errors in DSISR but can validly be set in SRR1. 13514cf11afSPaul Mackerras */ 13614cf11afSPaul Mackerras if (trap == 0x400) 13714cf11afSPaul Mackerras error_code &= 0x48200000; 13814cf11afSPaul Mackerras else 13914cf11afSPaul Mackerras is_write = error_code & DSISR_ISSTORE; 14014cf11afSPaul Mackerras #else 14114cf11afSPaul Mackerras is_write = error_code & ESR_DST; 14214cf11afSPaul Mackerras #endif /* CONFIG_4xx || CONFIG_BOOKE */ 14314cf11afSPaul Mackerras 1449f90b997SChristoph Hellwig if (notify_page_fault(regs)) 14514cf11afSPaul Mackerras return 0; 14614cf11afSPaul Mackerras 147c3b75bd7SMichael Neuling if (unlikely(debugger_fault_handler(regs))) 14814cf11afSPaul Mackerras return 0; 14914cf11afSPaul Mackerras 15014cf11afSPaul Mackerras /* On a kernel SLB miss we can only check for a valid exception entry */ 15114cf11afSPaul Mackerras if (!user_mode(regs) && (address >= TASK_SIZE)) 15214cf11afSPaul Mackerras return SIGSEGV; 15314cf11afSPaul Mackerras 1549c7cc234SK.Prasad #if !(defined(CONFIG_4xx) || defined(CONFIG_BOOKE) || \ 1559c7cc234SK.Prasad defined(CONFIG_PPC_BOOK3S_64)) 15614cf11afSPaul Mackerras if (error_code & DSISR_DABRMATCH) { 15714cf11afSPaul Mackerras /* DABR match */ 158bce6c5fdSAnton Blanchard do_dabr(regs, address, error_code); 15914cf11afSPaul Mackerras return 0; 16014cf11afSPaul Mackerras } 1619c7cc234SK.Prasad #endif 16214cf11afSPaul Mackerras 16314cf11afSPaul Mackerras if (in_atomic() || mm == NULL) { 16414cf11afSPaul Mackerras if (!user_mode(regs)) 16514cf11afSPaul Mackerras return SIGSEGV; 16614cf11afSPaul Mackerras /* in_atomic() in user mode is really bad, 16714cf11afSPaul Mackerras as is current->mm == NULL. */ 16814cf11afSPaul Mackerras printk(KERN_EMERG "Page fault in user mode with " 16914cf11afSPaul Mackerras "in_atomic() = %d mm = %p\n", in_atomic(), mm); 17014cf11afSPaul Mackerras printk(KERN_EMERG "NIP = %lx MSR = %lx\n", 17114cf11afSPaul Mackerras regs->nip, regs->msr); 17214cf11afSPaul Mackerras die("Weird page fault", regs, SIGSEGV); 17314cf11afSPaul Mackerras } 17414cf11afSPaul Mackerras 175cdd6c482SIngo Molnar perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address); 1767dd1fcc2SPeter Zijlstra 17714cf11afSPaul Mackerras /* When running in the kernel we expect faults to occur only to 17814cf11afSPaul Mackerras * addresses in user space. All other faults represent errors in the 179fc5266eaSAnton Blanchard * kernel and should generate an OOPS. Unfortunately, in the case of an 180fc5266eaSAnton Blanchard * erroneous fault occurring in a code path which already holds mmap_sem 18114cf11afSPaul Mackerras * we will deadlock attempting to validate the fault against the 18214cf11afSPaul Mackerras * address space. Luckily the kernel only validly references user 18314cf11afSPaul Mackerras * space from well defined areas of code, which are listed in the 18414cf11afSPaul Mackerras * exceptions table. 18514cf11afSPaul Mackerras * 18614cf11afSPaul Mackerras * As the vast majority of faults will be valid we will only perform 187fc5266eaSAnton Blanchard * the source reference check when there is a possibility of a deadlock. 18814cf11afSPaul Mackerras * Attempt to lock the address space, if we cannot we then validate the 18914cf11afSPaul Mackerras * source. If this is invalid we can skip the address space check, 19014cf11afSPaul Mackerras * thus avoiding the deadlock. 19114cf11afSPaul Mackerras */ 19214cf11afSPaul Mackerras if (!down_read_trylock(&mm->mmap_sem)) { 19314cf11afSPaul Mackerras if (!user_mode(regs) && !search_exception_tables(regs->nip)) 19414cf11afSPaul Mackerras goto bad_area_nosemaphore; 19514cf11afSPaul Mackerras 19614cf11afSPaul Mackerras down_read(&mm->mmap_sem); 19714cf11afSPaul Mackerras } 19814cf11afSPaul Mackerras 19914cf11afSPaul Mackerras vma = find_vma(mm, address); 20014cf11afSPaul Mackerras if (!vma) 20114cf11afSPaul Mackerras goto bad_area; 20214cf11afSPaul Mackerras if (vma->vm_start <= address) 20314cf11afSPaul Mackerras goto good_area; 20414cf11afSPaul Mackerras if (!(vma->vm_flags & VM_GROWSDOWN)) 20514cf11afSPaul Mackerras goto bad_area; 20614cf11afSPaul Mackerras 20714cf11afSPaul Mackerras /* 20814cf11afSPaul Mackerras * N.B. The POWER/Open ABI allows programs to access up to 20914cf11afSPaul Mackerras * 288 bytes below the stack pointer. 21014cf11afSPaul Mackerras * The kernel signal delivery code writes up to about 1.5kB 21114cf11afSPaul Mackerras * below the stack pointer (r1) before decrementing it. 21214cf11afSPaul Mackerras * The exec code can write slightly over 640kB to the stack 21314cf11afSPaul Mackerras * before setting the user r1. Thus we allow the stack to 21414cf11afSPaul Mackerras * expand to 1MB without further checks. 21514cf11afSPaul Mackerras */ 21614cf11afSPaul Mackerras if (address + 0x100000 < vma->vm_end) { 21714cf11afSPaul Mackerras /* get user regs even if this fault is in kernel mode */ 21814cf11afSPaul Mackerras struct pt_regs *uregs = current->thread.regs; 21914cf11afSPaul Mackerras if (uregs == NULL) 22014cf11afSPaul Mackerras goto bad_area; 22114cf11afSPaul Mackerras 22214cf11afSPaul Mackerras /* 22314cf11afSPaul Mackerras * A user-mode access to an address a long way below 22414cf11afSPaul Mackerras * the stack pointer is only valid if the instruction 22514cf11afSPaul Mackerras * is one which would update the stack pointer to the 22614cf11afSPaul Mackerras * address accessed if the instruction completed, 22714cf11afSPaul Mackerras * i.e. either stwu rs,n(r1) or stwux rs,r1,rb 22814cf11afSPaul Mackerras * (or the byte, halfword, float or double forms). 22914cf11afSPaul Mackerras * 23014cf11afSPaul Mackerras * If we don't check this then any write to the area 23114cf11afSPaul Mackerras * between the last mapped region and the stack will 23214cf11afSPaul Mackerras * expand the stack rather than segfaulting. 23314cf11afSPaul Mackerras */ 23414cf11afSPaul Mackerras if (address + 2048 < uregs->gpr[1] 23514cf11afSPaul Mackerras && (!user_mode(regs) || !store_updates_sp(regs))) 23614cf11afSPaul Mackerras goto bad_area; 23714cf11afSPaul Mackerras } 23814cf11afSPaul Mackerras if (expand_stack(vma, address)) 23914cf11afSPaul Mackerras goto bad_area; 24014cf11afSPaul Mackerras 24114cf11afSPaul Mackerras good_area: 24214cf11afSPaul Mackerras code = SEGV_ACCERR; 24314cf11afSPaul Mackerras #if defined(CONFIG_6xx) 24414cf11afSPaul Mackerras if (error_code & 0x95700000) 24514cf11afSPaul Mackerras /* an error such as lwarx to I/O controller space, 24614cf11afSPaul Mackerras address matching DABR, eciwx, etc. */ 24714cf11afSPaul Mackerras goto bad_area; 24814cf11afSPaul Mackerras #endif /* CONFIG_6xx */ 24914cf11afSPaul Mackerras #if defined(CONFIG_8xx) 2505efab4a0SJoakim Tjernlund /* 8xx sometimes need to load a invalid/non-present TLBs. 2515efab4a0SJoakim Tjernlund * These must be invalidated separately as linux mm don't. 2525efab4a0SJoakim Tjernlund */ 2535efab4a0SJoakim Tjernlund if (error_code & 0x40000000) /* no translation? */ 2545efab4a0SJoakim Tjernlund _tlbil_va(address, 0, 0, 0); 2555efab4a0SJoakim Tjernlund 25614cf11afSPaul Mackerras /* The MPC8xx seems to always set 0x80000000, which is 25714cf11afSPaul Mackerras * "undefined". Of those that can be set, this is the only 25814cf11afSPaul Mackerras * one which seems bad. 25914cf11afSPaul Mackerras */ 26014cf11afSPaul Mackerras if (error_code & 0x10000000) 26114cf11afSPaul Mackerras /* Guarded storage error. */ 26214cf11afSPaul Mackerras goto bad_area; 26314cf11afSPaul Mackerras #endif /* CONFIG_8xx */ 26414cf11afSPaul Mackerras 26514cf11afSPaul Mackerras if (is_exec) { 2668d30c14cSBenjamin Herrenschmidt #ifdef CONFIG_PPC_STD_MMU 2678d30c14cSBenjamin Herrenschmidt /* Protection fault on exec go straight to failure on 2688d30c14cSBenjamin Herrenschmidt * Hash based MMUs as they either don't support per-page 2698d30c14cSBenjamin Herrenschmidt * execute permission, or if they do, it's handled already 2708d30c14cSBenjamin Herrenschmidt * at the hash level. This test would probably have to 2718d30c14cSBenjamin Herrenschmidt * be removed if we change the way this works to make hash 2728d30c14cSBenjamin Herrenschmidt * processors use the same I/D cache coherency mechanism 2738d30c14cSBenjamin Herrenschmidt * as embedded. 2748d30c14cSBenjamin Herrenschmidt */ 27514cf11afSPaul Mackerras if (error_code & DSISR_PROTFAULT) 27614cf11afSPaul Mackerras goto bad_area; 2778d30c14cSBenjamin Herrenschmidt #endif /* CONFIG_PPC_STD_MMU */ 2788d30c14cSBenjamin Herrenschmidt 27908ae6cc1SPaul Mackerras /* 28008ae6cc1SPaul Mackerras * Allow execution from readable areas if the MMU does not 28108ae6cc1SPaul Mackerras * provide separate controls over reading and executing. 2828d30c14cSBenjamin Herrenschmidt * 2838d30c14cSBenjamin Herrenschmidt * Note: That code used to not be enabled for 4xx/BookE. 2848d30c14cSBenjamin Herrenschmidt * It is now as I/D cache coherency for these is done at 2858d30c14cSBenjamin Herrenschmidt * set_pte_at() time and I see no reason why the test 2868d30c14cSBenjamin Herrenschmidt * below wouldn't be valid on those processors. This -may- 2878d30c14cSBenjamin Herrenschmidt * break programs compiled with a really old ABI though. 28808ae6cc1SPaul Mackerras */ 28908ae6cc1SPaul Mackerras if (!(vma->vm_flags & VM_EXEC) && 29008ae6cc1SPaul Mackerras (cpu_has_feature(CPU_FTR_NOEXECUTE) || 29108ae6cc1SPaul Mackerras !(vma->vm_flags & (VM_READ | VM_WRITE)))) 29214cf11afSPaul Mackerras goto bad_area; 29314cf11afSPaul Mackerras /* a write */ 29414cf11afSPaul Mackerras } else if (is_write) { 29514cf11afSPaul Mackerras if (!(vma->vm_flags & VM_WRITE)) 29614cf11afSPaul Mackerras goto bad_area; 29714cf11afSPaul Mackerras /* a read */ 29814cf11afSPaul Mackerras } else { 29914cf11afSPaul Mackerras /* protection fault */ 30014cf11afSPaul Mackerras if (error_code & 0x08000000) 30114cf11afSPaul Mackerras goto bad_area; 302df67b3daSJason Baron if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE))) 30314cf11afSPaul Mackerras goto bad_area; 30414cf11afSPaul Mackerras } 30514cf11afSPaul Mackerras 30614cf11afSPaul Mackerras /* 30714cf11afSPaul Mackerras * If for any reason at all we couldn't handle the fault, 30814cf11afSPaul Mackerras * make sure we exit gracefully rather than endlessly redo 30914cf11afSPaul Mackerras * the fault. 31014cf11afSPaul Mackerras */ 311d06063ccSLinus Torvalds ret = handle_mm_fault(mm, vma, address, is_write ? FAULT_FLAG_WRITE : 0); 31283c54070SNick Piggin if (unlikely(ret & VM_FAULT_ERROR)) { 31383c54070SNick Piggin if (ret & VM_FAULT_OOM) 31414cf11afSPaul Mackerras goto out_of_memory; 31583c54070SNick Piggin else if (ret & VM_FAULT_SIGBUS) 31683c54070SNick Piggin goto do_sigbus; 31714cf11afSPaul Mackerras BUG(); 31814cf11afSPaul Mackerras } 31940900194SBrian King if (ret & VM_FAULT_MAJOR) { 32083c54070SNick Piggin current->maj_flt++; 321cdd6c482SIngo Molnar perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0, 32278f13e95SPeter Zijlstra regs, address); 32340900194SBrian King #ifdef CONFIG_PPC_SMLPAR 32440900194SBrian King if (firmware_has_feature(FW_FEATURE_CMO)) { 32540900194SBrian King preempt_disable(); 326a6326e98SRobert Jennings get_lppaca()->page_ins += (1 << PAGE_FACTOR); 32740900194SBrian King preempt_enable(); 32840900194SBrian King } 32940900194SBrian King #endif 330ac17dc8eSPeter Zijlstra } else { 33183c54070SNick Piggin current->min_flt++; 332cdd6c482SIngo Molnar perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0, 33378f13e95SPeter Zijlstra regs, address); 334ac17dc8eSPeter Zijlstra } 33514cf11afSPaul Mackerras up_read(&mm->mmap_sem); 33614cf11afSPaul Mackerras return 0; 33714cf11afSPaul Mackerras 33814cf11afSPaul Mackerras bad_area: 33914cf11afSPaul Mackerras up_read(&mm->mmap_sem); 34014cf11afSPaul Mackerras 34114cf11afSPaul Mackerras bad_area_nosemaphore: 34214cf11afSPaul Mackerras /* User mode accesses cause a SIGSEGV */ 34314cf11afSPaul Mackerras if (user_mode(regs)) { 34414cf11afSPaul Mackerras _exception(SIGSEGV, regs, code, address); 34514cf11afSPaul Mackerras return 0; 34614cf11afSPaul Mackerras } 34714cf11afSPaul Mackerras 34814cf11afSPaul Mackerras if (is_exec && (error_code & DSISR_PROTFAULT) 34914cf11afSPaul Mackerras && printk_ratelimit()) 35014cf11afSPaul Mackerras printk(KERN_CRIT "kernel tried to execute NX-protected" 35114cf11afSPaul Mackerras " page (%lx) - exploit attempt? (uid: %d)\n", 3521330deb0SDavid Howells address, current_uid()); 35314cf11afSPaul Mackerras 35414cf11afSPaul Mackerras return SIGSEGV; 35514cf11afSPaul Mackerras 35614cf11afSPaul Mackerras /* 35714cf11afSPaul Mackerras * We ran out of memory, or some other thing happened to us that made 35814cf11afSPaul Mackerras * us unable to handle the page fault gracefully. 35914cf11afSPaul Mackerras */ 36014cf11afSPaul Mackerras out_of_memory: 36114cf11afSPaul Mackerras up_read(&mm->mmap_sem); 362*e460c2c9SBenjamin Herrenschmidt if (!user_mode(regs)) 36314cf11afSPaul Mackerras return SIGKILL; 364*e460c2c9SBenjamin Herrenschmidt pagefault_out_of_memory(); 365*e460c2c9SBenjamin Herrenschmidt return 0; 36614cf11afSPaul Mackerras 36714cf11afSPaul Mackerras do_sigbus: 36814cf11afSPaul Mackerras up_read(&mm->mmap_sem); 36914cf11afSPaul Mackerras if (user_mode(regs)) { 37014cf11afSPaul Mackerras info.si_signo = SIGBUS; 37114cf11afSPaul Mackerras info.si_errno = 0; 37214cf11afSPaul Mackerras info.si_code = BUS_ADRERR; 37314cf11afSPaul Mackerras info.si_addr = (void __user *)address; 37414cf11afSPaul Mackerras force_sig_info(SIGBUS, &info, current); 37514cf11afSPaul Mackerras return 0; 37614cf11afSPaul Mackerras } 37714cf11afSPaul Mackerras return SIGBUS; 37814cf11afSPaul Mackerras } 37914cf11afSPaul Mackerras 38014cf11afSPaul Mackerras /* 38114cf11afSPaul Mackerras * bad_page_fault is called when we have a bad access from the kernel. 38214cf11afSPaul Mackerras * It is called from the DSI and ISI handlers in head.S and from some 38314cf11afSPaul Mackerras * of the procedures in traps.c. 38414cf11afSPaul Mackerras */ 38514cf11afSPaul Mackerras void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig) 38614cf11afSPaul Mackerras { 38714cf11afSPaul Mackerras const struct exception_table_entry *entry; 38814cf11afSPaul Mackerras 38914cf11afSPaul Mackerras /* Are we prepared to handle this fault? */ 39014cf11afSPaul Mackerras if ((entry = search_exception_tables(regs->nip)) != NULL) { 39114cf11afSPaul Mackerras regs->nip = entry->fixup; 39214cf11afSPaul Mackerras return; 39314cf11afSPaul Mackerras } 39414cf11afSPaul Mackerras 39514cf11afSPaul Mackerras /* kernel has accessed a bad area */ 396723925b7SOlof Johansson 397723925b7SOlof Johansson switch (regs->trap) { 398723925b7SOlof Johansson case 0x300: 399723925b7SOlof Johansson case 0x380: 400a416dd8dSMichael Ellerman printk(KERN_ALERT "Unable to handle kernel paging request for " 401a416dd8dSMichael Ellerman "data at address 0x%08lx\n", regs->dar); 402723925b7SOlof Johansson break; 403723925b7SOlof Johansson case 0x400: 404723925b7SOlof Johansson case 0x480: 405a416dd8dSMichael Ellerman printk(KERN_ALERT "Unable to handle kernel paging request for " 406a416dd8dSMichael Ellerman "instruction fetch\n"); 407723925b7SOlof Johansson break; 408723925b7SOlof Johansson default: 409a416dd8dSMichael Ellerman printk(KERN_ALERT "Unable to handle kernel paging request for " 410a416dd8dSMichael Ellerman "unknown fault\n"); 411a416dd8dSMichael Ellerman break; 412723925b7SOlof Johansson } 413723925b7SOlof Johansson printk(KERN_ALERT "Faulting instruction address: 0x%08lx\n", 414723925b7SOlof Johansson regs->nip); 415723925b7SOlof Johansson 41614cf11afSPaul Mackerras die("Kernel access of bad area", regs, sig); 41714cf11afSPaul Mackerras } 418