Merge to Fedora kernel-2.6.7-1.441
[linux-2.6.git] / arch / ppc64 / mm / fault.c
1 /*
2  *  arch/ppc/mm/fault.c
3  *
4  *  PowerPC version 
5  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6  *
7  *  Derived from "arch/i386/mm/fault.c"
8  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
9  *
10  *  Modified by Cort Dougan and Paul Mackerras.
11  *
12  *  Modified for PPC64 by Dave Engebretsen (engebret@ibm.com)
13  *
14  *  This program is free software; you can redistribute it and/or
15  *  modify it under the terms of the GNU General Public License
16  *  as published by the Free Software Foundation; either version
17  *  2 of the License, or (at your option) any later version.
18  */
19
20 #include <linux/config.h>
21 #include <linux/signal.h>
22 #include <linux/sched.h>
23 #include <linux/kernel.h>
24 #include <linux/errno.h>
25 #include <linux/string.h>
26 #include <linux/types.h>
27 #include <linux/mman.h>
28 #include <linux/mm.h>
29 #include <linux/interrupt.h>
30 #include <linux/smp_lock.h>
31 #include <linux/module.h>
32
33 #include <asm/page.h>
34 #include <asm/pgtable.h>
35 #include <asm/mmu.h>
36 #include <asm/mmu_context.h>
37 #include <asm/system.h>
38 #include <asm/uaccess.h>
39
40 /*
41  * Check whether the instruction at regs->nip is a store using
42  * an update addressing form which will update r1.
43  */
44 static int store_updates_sp(struct pt_regs *regs)
45 {
46         unsigned int inst;
47
48         if (get_user(inst, (unsigned int __user *)regs->nip))
49                 return 0;
50         /* check for 1 in the rA field */
51         if (((inst >> 16) & 0x1f) != 1)
52                 return 0;
53         /* check major opcode */
54         switch (inst >> 26) {
55         case 37:        /* stwu */
56         case 39:        /* stbu */
57         case 45:        /* sthu */
58         case 53:        /* stfsu */
59         case 55:        /* stfdu */
60                 return 1;
61         case 62:        /* std or stdu */
62                 return (inst & 3) == 1;
63         case 31:
64                 /* check minor opcode */
65                 switch ((inst >> 1) & 0x3ff) {
66                 case 181:       /* stdux */
67                 case 183:       /* stwux */
68                 case 247:       /* stbux */
69                 case 439:       /* sthux */
70                 case 695:       /* stfsux */
71                 case 759:       /* stfdux */
72                         return 1;
73                 }
74         }
75         return 0;
76 }
77
78 /*
79  * The error_code parameter is
80  *  - DSISR for a non-SLB data access fault,
81  *  - SRR1 & 0x08000000 for a non-SLB instruction access fault
82  *  - 0 any SLB fault.
83  * The return value is 0 if the fault was handled, or the signal
84  * number if this is a kernel fault that can't be handled here.
85  */
86 int do_page_fault(struct pt_regs *regs, unsigned long address,
87                   unsigned long error_code)
88 {
89         struct vm_area_struct * vma;
90         struct mm_struct *mm = current->mm;
91         siginfo_t info;
92         unsigned long code = SEGV_MAPERR;
93         unsigned long is_write = error_code & 0x02000000;
94         unsigned long trap = TRAP(regs);
95
96         if (trap == 0x300 || trap == 0x380) {
97                 if (debugger_fault_handler(regs))
98                         return 0;
99         }
100
101         /* On a kernel SLB miss we can only check for a valid exception entry */
102         if (!user_mode(regs) && (trap == 0x380 || address >= TASK_SIZE))
103                 return SIGSEGV;
104
105         if (error_code & 0x00400000) {
106                 if (debugger_dabr_match(regs))
107                         return 0;
108         }
109
110         if (in_atomic() || mm == NULL) {
111                 if (!user_mode(regs))
112                         return SIGSEGV;
113                 /* in_atomic() in user mode is really bad,
114                    as is current->mm == NULL. */
115                 printk(KERN_EMERG "Page fault in user mode with"
116                        "in_atomic() = %d mm = %p\n", in_atomic(), mm);
117                 printk(KERN_EMERG "NIP = %lx  MSR = %lx\n",
118                        regs->nip, regs->msr);
119                 die("Weird page fault", regs, SIGSEGV);
120         }
121
122         down_read(&mm->mmap_sem);
123         vma = find_vma(mm, address);
124         if (!vma)
125                 goto bad_area;
126
127         if (vma->vm_start <= address) {
128                 goto good_area;
129         }
130         if (!(vma->vm_flags & VM_GROWSDOWN))
131                 goto bad_area;
132
133         /*
134          * N.B. The POWER/Open ABI allows programs to access up to
135          * 288 bytes below the stack pointer.
136          * The kernel signal delivery code writes up to about 1.5kB
137          * below the stack pointer (r1) before decrementing it.
138          * The exec code can write slightly over 640kB to the stack
139          * before setting the user r1.  Thus we allow the stack to
140          * expand to 1MB without further checks.
141          */
142         if (address + 0x100000 < vma->vm_end) {
143                 /* get user regs even if this fault is in kernel mode */
144                 struct pt_regs *uregs = current->thread.regs;
145                 if (uregs == NULL)
146                         goto bad_area;
147
148                 /*
149                  * A user-mode access to an address a long way below
150                  * the stack pointer is only valid if the instruction
151                  * is one which would update the stack pointer to the
152                  * address accessed if the instruction completed,
153                  * i.e. either stwu rs,n(r1) or stwux rs,r1,rb
154                  * (or the byte, halfword, float or double forms).
155                  *
156                  * If we don't check this then any write to the area
157                  * between the last mapped region and the stack will
158                  * expand the stack rather than segfaulting.
159                  */
160                 if (address + 2048 < uregs->gpr[1]
161                     && (!user_mode(regs) || !store_updates_sp(regs)))
162                         goto bad_area;
163         }
164
165         if (expand_stack(vma, address))
166                 goto bad_area;
167
168 good_area:
169         code = SEGV_ACCERR;
170
171         /* a write */
172         if (is_write) {
173                 if (!(vma->vm_flags & VM_WRITE))
174                         goto bad_area;
175         /* a read */
176         } else {
177                 /* protection fault */
178                 if (error_code & 0x08000000)
179                         goto bad_area;
180                 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
181                         goto bad_area;
182         }
183
184  survive:
185         /*
186          * If for any reason at all we couldn't handle the fault,
187          * make sure we exit gracefully rather than endlessly redo
188          * the fault.
189          */
190         switch (handle_mm_fault(mm, vma, address, is_write)) {
191
192         case VM_FAULT_MINOR:
193                 current->min_flt++;
194                 break;
195         case VM_FAULT_MAJOR:
196                 current->maj_flt++;
197                 break;
198         case VM_FAULT_SIGBUS:
199                 goto do_sigbus;
200         case VM_FAULT_OOM:
201                 goto out_of_memory;
202         default:
203                 BUG();
204         }
205
206         up_read(&mm->mmap_sem);
207         return 0;
208
209 bad_area:
210         up_read(&mm->mmap_sem);
211
212         /* User mode accesses cause a SIGSEGV */
213         if (user_mode(regs)) {
214                 info.si_signo = SIGSEGV;
215                 info.si_errno = 0;
216                 info.si_code = code;
217                 info.si_addr = (void *) address;
218                 force_sig_info(SIGSEGV, &info, current);
219                 return 0;
220         }
221
222         return SIGSEGV;
223
224 /*
225  * We ran out of memory, or some other thing happened to us that made
226  * us unable to handle the page fault gracefully.
227  */
228 out_of_memory:
229         up_read(&mm->mmap_sem);
230         if (current->pid == 1) {
231                 yield();
232                 down_read(&mm->mmap_sem);
233                 goto survive;
234         }
235         printk("VM: killing process %s\n", current->comm);
236         if (user_mode(regs))
237                 do_exit(SIGKILL);
238         return SIGKILL;
239
240 do_sigbus:
241         up_read(&mm->mmap_sem);
242         if (user_mode(regs)) {
243                 info.si_signo = SIGBUS;
244                 info.si_errno = 0;
245                 info.si_code = BUS_ADRERR;
246                 info.si_addr = (void *)address;
247                 force_sig_info(SIGBUS, &info, current);
248                 return 0;
249         }
250         return SIGBUS;
251 }
252
253 /*
254  * bad_page_fault is called when we have a bad access from the kernel.
255  * It is called from do_page_fault above and from some of the procedures
256  * in traps.c.
257  */
258 void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
259 {
260         const struct exception_table_entry *entry;
261
262         /* Are we prepared to handle this fault?  */
263         if ((entry = search_exception_tables(regs->nip)) != NULL) {
264                 regs->nip = entry->fixup;
265                 return;
266         }
267
268         /* kernel has accessed a bad area */
269         die("Kernel access of bad area", regs, sig);
270 }