uml: tidy pgtable.h
[pandora-kernel.git] / arch / um / kernel / trap.c
1 /*
2  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3  * Licensed under the GPL
4  */
5
6 #include <linux/mm.h>
7 #include <linux/sched.h>
8 #include <linux/hardirq.h>
9 #include <asm/current.h>
10 #include <asm/pgtable.h>
11 #include <asm/tlbflush.h>
12 #include "arch.h"
13 #include "as-layout.h"
14 #include "kern_util.h"
15 #include "os.h"
16 #include "skas.h"
17 #include "sysdep/sigcontext.h"
18
19 /*
20  * Note this is constrained to return 0, -EFAULT, -EACCESS, -ENOMEM by
21  * segv().
22  */
23 int handle_page_fault(unsigned long address, unsigned long ip,
24                       int is_write, int is_user, int *code_out)
25 {
26         struct mm_struct *mm = current->mm;
27         struct vm_area_struct *vma;
28         pgd_t *pgd;
29         pud_t *pud;
30         pmd_t *pmd;
31         pte_t *pte;
32         int err = -EFAULT;
33
34         *code_out = SEGV_MAPERR;
35
36         /*
37          * If the fault was during atomic operation, don't take the fault, just
38          * fail.
39          */
40         if (in_atomic())
41                 goto out_nosemaphore;
42
43         down_read(&mm->mmap_sem);
44         vma = find_vma(mm, address);
45         if (!vma)
46                 goto out;
47         else if (vma->vm_start <= address)
48                 goto good_area;
49         else if (!(vma->vm_flags & VM_GROWSDOWN))
50                 goto out;
51         else if (is_user && !ARCH_IS_STACKGROW(address))
52                 goto out;
53         else if (expand_stack(vma, address))
54                 goto out;
55
56 good_area:
57         *code_out = SEGV_ACCERR;
58         if (is_write && !(vma->vm_flags & VM_WRITE))
59                 goto out;
60
61         /* Don't require VM_READ|VM_EXEC for write faults! */
62         if (!is_write && !(vma->vm_flags & (VM_READ | VM_EXEC)))
63                 goto out;
64
65         do {
66                 int fault;
67 survive:
68                 fault = handle_mm_fault(mm, vma, address, is_write);
69                 if (unlikely(fault & VM_FAULT_ERROR)) {
70                         if (fault & VM_FAULT_OOM) {
71                                 err = -ENOMEM;
72                                 goto out_of_memory;
73                         } else if (fault & VM_FAULT_SIGBUS) {
74                                 err = -EACCES;
75                                 goto out;
76                         }
77                         BUG();
78                 }
79                 if (fault & VM_FAULT_MAJOR)
80                         current->maj_flt++;
81                 else
82                         current->min_flt++;
83
84                 pgd = pgd_offset(mm, address);
85                 pud = pud_offset(pgd, address);
86                 pmd = pmd_offset(pud, address);
87                 pte = pte_offset_kernel(pmd, address);
88         } while (!pte_present(*pte));
89         err = 0;
90         /*
91          * The below warning was added in place of
92          *      pte_mkyoung(); if (is_write) pte_mkdirty();
93          * If it's triggered, we'd see normally a hang here (a clean pte is
94          * marked read-only to emulate the dirty bit).
95          * However, the generic code can mark a PTE writable but clean on a
96          * concurrent read fault, triggering this harmlessly. So comment it out.
97          */
98 #if 0
99         WARN_ON(!pte_young(*pte) || (is_write && !pte_dirty(*pte)));
100 #endif
101         flush_tlb_page(vma, address);
102 out:
103         up_read(&mm->mmap_sem);
104 out_nosemaphore:
105         return err;
106
107 /*
108  * We ran out of memory, or some other thing happened to us that made
109  * us unable to handle the page fault gracefully.
110  */
111 out_of_memory:
112         if (is_global_init(current)) {
113                 up_read(&mm->mmap_sem);
114                 yield();
115                 down_read(&mm->mmap_sem);
116                 goto survive;
117         }
118         goto out;
119 }
120
121 static void bad_segv(struct faultinfo fi, unsigned long ip)
122 {
123         struct siginfo si;
124
125         si.si_signo = SIGSEGV;
126         si.si_code = SEGV_ACCERR;
127         si.si_addr = (void __user *) FAULT_ADDRESS(fi);
128         current->thread.arch.faultinfo = fi;
129         force_sig_info(SIGSEGV, &si, current);
130 }
131
132 void segv_handler(int sig, struct uml_pt_regs *regs)
133 {
134         struct faultinfo * fi = UPT_FAULTINFO(regs);
135
136         if (UPT_IS_USER(regs) && !SEGV_IS_FIXABLE(fi)) {
137                 bad_segv(*fi, UPT_IP(regs));
138                 return;
139         }
140         segv(*fi, UPT_IP(regs), UPT_IS_USER(regs), regs);
141 }
142
143 /*
144  * We give a *copy* of the faultinfo in the regs to segv.
145  * This must be done, since nesting SEGVs could overwrite
146  * the info in the regs. A pointer to the info then would
147  * give us bad data!
148  */
149 unsigned long segv(struct faultinfo fi, unsigned long ip, int is_user,
150                    struct uml_pt_regs *regs)
151 {
152         struct siginfo si;
153         jmp_buf *catcher;
154         int err;
155         int is_write = FAULT_WRITE(fi);
156         unsigned long address = FAULT_ADDRESS(fi);
157
158         if (!is_user && (address >= start_vm) && (address < end_vm)) {
159                 flush_tlb_kernel_vm();
160                 return 0;
161         }
162         else if (current->mm == NULL) {
163                 show_regs(container_of(regs, struct pt_regs, regs));
164                 panic("Segfault with no mm");
165         }
166
167         if (SEGV_IS_FIXABLE(&fi) || SEGV_MAYBE_FIXABLE(&fi))
168                 err = handle_page_fault(address, ip, is_write, is_user,
169                                         &si.si_code);
170         else {
171                 err = -EFAULT;
172                 /*
173                  * A thread accessed NULL, we get a fault, but CR2 is invalid.
174                  * This code is used in __do_copy_from_user() of TT mode.
175                  * XXX tt mode is gone, so maybe this isn't needed any more
176                  */
177                 address = 0;
178         }
179
180         catcher = current->thread.fault_catcher;
181         if (!err)
182                 return 0;
183         else if (catcher != NULL) {
184                 current->thread.fault_addr = (void *) address;
185                 UML_LONGJMP(catcher, 1);
186         }
187         else if (current->thread.fault_addr != NULL)
188                 panic("fault_addr set but no fault catcher");
189         else if (!is_user && arch_fixup(ip, regs))
190                 return 0;
191
192         if (!is_user) {
193                 show_regs(container_of(regs, struct pt_regs, regs));
194                 panic("Kernel mode fault at addr 0x%lx, ip 0x%lx",
195                       address, ip);
196         }
197
198         if (err == -EACCES) {
199                 si.si_signo = SIGBUS;
200                 si.si_errno = 0;
201                 si.si_code = BUS_ADRERR;
202                 si.si_addr = (void __user *)address;
203                 current->thread.arch.faultinfo = fi;
204                 force_sig_info(SIGBUS, &si, current);
205         } else if (err == -ENOMEM) {
206                 printk(KERN_INFO "VM: killing process %s\n", current->comm);
207                 do_exit(SIGKILL);
208         } else {
209                 BUG_ON(err != -EFAULT);
210                 si.si_signo = SIGSEGV;
211                 si.si_addr = (void __user *) address;
212                 current->thread.arch.faultinfo = fi;
213                 force_sig_info(SIGSEGV, &si, current);
214         }
215         return 0;
216 }
217
218 void relay_signal(int sig, struct uml_pt_regs *regs)
219 {
220         if (!UPT_IS_USER(regs)) {
221                 if (sig == SIGBUS)
222                         printk(KERN_ERR "Bus error - the host /dev/shm or /tmp "
223                                "mount likely just ran out of space\n");
224                 panic("Kernel mode signal %d", sig);
225         }
226
227         arch_examine_signal(sig, regs);
228
229         current->thread.arch.faultinfo = *UPT_FAULTINFO(regs);
230         force_sig(sig, current);
231 }
232
233 void bus_handler(int sig, struct uml_pt_regs *regs)
234 {
235         if (current->thread.fault_catcher != NULL)
236                 UML_LONGJMP(current->thread.fault_catcher, 1);
237         else relay_signal(sig, regs);
238 }
239
240 void winch(int sig, struct uml_pt_regs *regs)
241 {
242         do_IRQ(WINCH_IRQ, regs);
243 }
244
245 void trap_init(void)
246 {
247 }