2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #include "linux/kernel.h"
8 #include "linux/sched.h"
10 #include "linux/spinlock.h"
11 #include "linux/init.h"
12 #include "linux/ptrace.h"
13 #include "asm/semaphore.h"
14 #include "asm/pgtable.h"
15 #include "asm/pgalloc.h"
16 #include "asm/tlbflush.h"
17 #include "asm/a.out.h"
18 #include "asm/current.h"
20 #include "sysdep/sigcontext.h"
21 #include "user_util.h"
22 #include "kern_util.h"
24 #include "chan_kern.h"
25 #include "mconsole_kern.h"
28 #include "sysdep/sigcontext.h"
29 #include "sysdep/ptrace.h"
31 #ifdef CONFIG_MODE_SKAS
36 /* Note this is constrained to return 0, -EFAULT, -EACCESS, -ENOMEM by segv(). */
37 int handle_page_fault(unsigned long address
, unsigned long ip
,
38 int is_write
, int is_user
, int *code_out
)
40 struct mm_struct
*mm
= current
->mm
;
41 struct vm_area_struct
*vma
;
48 *code_out
= SEGV_MAPERR
;
50 /* If the fault was during atomic operation, don't take the fault, just
55 down_read(&mm
->mmap_sem
);
56 vma
= find_vma(mm
, address
);
59 else if(vma
->vm_start
<= address
)
61 else if(!(vma
->vm_flags
& VM_GROWSDOWN
))
63 else if(is_user
&& !ARCH_IS_STACKGROW(address
))
65 else if(expand_stack(vma
, address
))
69 *code_out
= SEGV_ACCERR
;
70 if(is_write
&& !(vma
->vm_flags
& VM_WRITE
))
73 /* Don't require VM_READ|VM_EXEC for write faults! */
74 if(!is_write
&& !(vma
->vm_flags
& (VM_READ
| VM_EXEC
)))
79 switch (handle_mm_fault(mm
, vma
, address
, is_write
)){
95 pgd
= pgd_offset(mm
, address
);
96 pud
= pud_offset(pgd
, address
);
97 pmd
= pmd_offset(pud
, address
);
98 pte
= pte_offset_kernel(pmd
, address
);
99 } while(!pte_present(*pte
));
101 /* The below warning was added in place of
102 * pte_mkyoung(); if (is_write) pte_mkdirty();
103 * If it's triggered, we'd see normally a hang here (a clean pte is
104 * marked read-only to emulate the dirty bit).
105 * However, the generic code can mark a PTE writable but clean on a
106 * concurrent read fault, triggering this harmlessly. So comment it out.
109 WARN_ON(!pte_young(*pte
) || (is_write
&& !pte_dirty(*pte
)));
111 flush_tlb_page(vma
, address
);
113 up_read(&mm
->mmap_sem
);
118 * We ran out of memory, or some other thing happened to us that made
119 * us unable to handle the page fault gracefully.
122 if (is_init(current
)) {
123 up_read(&mm
->mmap_sem
);
125 down_read(&mm
->mmap_sem
);
131 void segv_handler(int sig
, union uml_pt_regs
*regs
)
133 struct faultinfo
* fi
= UPT_FAULTINFO(regs
);
135 if(UPT_IS_USER(regs
) && !SEGV_IS_FIXABLE(fi
)){
136 bad_segv(*fi
, UPT_IP(regs
));
139 segv(*fi
, UPT_IP(regs
), UPT_IS_USER(regs
), regs
);
143 * We give a *copy* of the faultinfo in the regs to segv.
144 * This must be done, since nesting SEGVs could overwrite
145 * the info in the regs. A pointer to the info then would
148 unsigned long segv(struct faultinfo fi
, unsigned long ip
, int is_user
, void *sc
)
153 int is_write
= FAULT_WRITE(fi
);
154 unsigned long address
= FAULT_ADDRESS(fi
);
156 if(!is_user
&& (address
>= start_vm
) && (address
< end_vm
)){
157 flush_tlb_kernel_vm();
160 else if(current
->mm
== NULL
)
161 panic("Segfault with no mm");
163 if (SEGV_IS_FIXABLE(&fi
) || SEGV_MAYBE_FIXABLE(&fi
))
164 err
= handle_page_fault(address
, ip
, is_write
, is_user
, &si
.si_code
);
167 /* A thread accessed NULL, we get a fault, but CR2 is invalid.
168 * This code is used in __do_copy_from_user() of TT mode. */
172 catcher
= current
->thread
.fault_catcher
;
175 else if(catcher
!= NULL
){
176 current
->thread
.fault_addr
= (void *) address
;
177 do_longjmp(catcher
, 1);
179 else if(current
->thread
.fault_addr
!= NULL
)
180 panic("fault_addr set but no fault catcher");
181 else if(!is_user
&& arch_fixup(ip
, sc
))
185 panic("Kernel mode fault at addr 0x%lx, ip 0x%lx",
188 if (err
== -EACCES
) {
189 si
.si_signo
= SIGBUS
;
191 si
.si_code
= BUS_ADRERR
;
192 si
.si_addr
= (void __user
*)address
;
193 current
->thread
.arch
.faultinfo
= fi
;
194 force_sig_info(SIGBUS
, &si
, current
);
195 } else if (err
== -ENOMEM
) {
196 printk("VM: killing process %s\n", current
->comm
);
199 BUG_ON(err
!= -EFAULT
);
200 si
.si_signo
= SIGSEGV
;
201 si
.si_addr
= (void __user
*) address
;
202 current
->thread
.arch
.faultinfo
= fi
;
203 force_sig_info(SIGSEGV
, &si
, current
);
208 void bad_segv(struct faultinfo fi
, unsigned long ip
)
212 si
.si_signo
= SIGSEGV
;
213 si
.si_code
= SEGV_ACCERR
;
214 si
.si_addr
= (void __user
*) FAULT_ADDRESS(fi
);
215 current
->thread
.arch
.faultinfo
= fi
;
216 force_sig_info(SIGSEGV
, &si
, current
);
219 void relay_signal(int sig
, union uml_pt_regs
*regs
)
221 if(arch_handle_signal(sig
, regs
))
224 if(!UPT_IS_USER(regs
)){
226 printk("Bus error - the /dev/shm or /tmp mount likely "
227 "just ran out of space\n");
228 panic("Kernel mode signal %d", sig
);
231 current
->thread
.arch
.faultinfo
= *UPT_FAULTINFO(regs
);
232 force_sig(sig
, current
);
235 void bus_handler(int sig
, union uml_pt_regs
*regs
)
237 if(current
->thread
.fault_catcher
!= NULL
)
238 do_longjmp(current
->thread
.fault_catcher
, 1);
239 else relay_signal(sig
, regs
);
242 void winch(int sig
, union uml_pt_regs
*regs
)
244 do_IRQ(WINCH_IRQ
, regs
);
247 const struct kern_handlers handlinfo_kern
= {
248 .relay_signal
= relay_signal
,
250 .bus_handler
= bus_handler
,
251 .page_fault
= segv_handler
,
252 .sigio_handler
= sigio_handler
,
253 .timer_handler
= timer_handler