2 * Meta page fault handling.
4 * Copyright (C) 2005-2012 Imagination Technologies Ltd.
7 #include <linux/mman.h>
9 #include <linux/kernel.h>
10 #include <linux/ptrace.h>
11 #include <linux/interrupt.h>
12 #include <linux/uaccess.h>
14 #include <asm/tlbflush.h>
16 #include <asm/traps.h>
18 /* Clear any pending catch buffer state. */
19 static void clear_cbuf_entry(struct pt_regs
*regs
, unsigned long addr
,
22 PTBICTXEXTCB0 cbuf
= regs
->extcb0
;
25 /* Instruction fetch faults leave no catch buffer state. */
26 case TBIXXF_SIGNUM_IGF
:
27 case TBIXXF_SIGNUM_IPF
:
30 if (cbuf
[0].CBAddr
== addr
) {
32 cbuf
[0].CBFlags
&= ~TXCATCH0_FAULT_BITS
;
34 /* And, as this is the ONLY catch entry, we
35 * need to clear the cbuf bit from the context!
37 regs
->ctx
.SaveMask
&= ~(TBICTX_CBUF_BIT
|
42 pr_err("Failed to clear cbuf entry!\n");
46 int show_unhandled_signals
= 1;
48 int do_page_fault(struct pt_regs
*regs
, unsigned long address
,
49 unsigned int write_access
, unsigned int trapno
)
51 struct task_struct
*tsk
;
53 struct vm_area_struct
*vma
, *prev_vma
;
56 unsigned int flags
= FAULT_FLAG_ALLOW_RETRY
| FAULT_FLAG_KILLABLE
;
60 if ((address
>= VMALLOC_START
) && (address
< VMALLOC_END
)) {
62 * Synchronize this task's top level page-table
63 * with the 'reference' page table.
65 * Do _not_ use "tsk" here. We might be inside
66 * an interrupt in the middle of a task switch..
68 int offset
= pgd_index(address
);
74 pgd
= ((pgd_t
*)mmu_get_base()) + offset
;
75 pgd_k
= swapper_pg_dir
+ offset
;
77 /* This will never happen with the folded page table. */
78 if (!pgd_present(*pgd
)) {
79 if (!pgd_present(*pgd_k
))
80 goto bad_area_nosemaphore
;
85 pud
= pud_offset(pgd
, address
);
86 pud_k
= pud_offset(pgd_k
, address
);
87 if (!pud_present(*pud_k
))
88 goto bad_area_nosemaphore
;
91 pmd
= pmd_offset(pud
, address
);
92 pmd_k
= pmd_offset(pud_k
, address
);
93 if (!pmd_present(*pmd_k
))
94 goto bad_area_nosemaphore
;
97 pte_k
= pte_offset_kernel(pmd_k
, address
);
98 if (!pte_present(*pte_k
))
99 goto bad_area_nosemaphore
;
101 /* May only be needed on Chorus2 */
108 if (in_atomic() || !mm
)
112 flags
|= FAULT_FLAG_USER
;
114 down_read(&mm
->mmap_sem
);
116 vma
= find_vma_prev(mm
, address
, &prev_vma
);
118 if (!vma
|| address
< vma
->vm_start
)
119 goto check_expansion
;
123 if (!(vma
->vm_flags
& VM_WRITE
))
125 flags
|= FAULT_FLAG_WRITE
;
127 if (!(vma
->vm_flags
& (VM_READ
| VM_EXEC
| VM_WRITE
)))
132 * If for any reason at all we couldn't handle the fault,
133 * make sure we exit gracefully rather than endlessly redo
136 fault
= handle_mm_fault(mm
, vma
, address
, flags
);
138 if ((fault
& VM_FAULT_RETRY
) && fatal_signal_pending(current
))
141 if (unlikely(fault
& VM_FAULT_ERROR
)) {
142 if (fault
& VM_FAULT_OOM
)
144 else if (fault
& VM_FAULT_SIGSEGV
)
146 else if (fault
& VM_FAULT_SIGBUS
)
150 if (flags
& FAULT_FLAG_ALLOW_RETRY
) {
151 if (fault
& VM_FAULT_MAJOR
)
155 if (fault
& VM_FAULT_RETRY
) {
156 flags
&= ~FAULT_FLAG_ALLOW_RETRY
;
157 flags
|= FAULT_FLAG_TRIED
;
160 * No need to up_read(&mm->mmap_sem) as we would
161 * have already released it in __lock_page_or_retry
169 up_read(&mm
->mmap_sem
);
174 if (vma
&& (expand_stack(vma
, address
) == 0))
178 up_read(&mm
->mmap_sem
);
180 bad_area_nosemaphore
:
181 if (user_mode(regs
)) {
182 info
.si_signo
= SIGSEGV
;
184 info
.si_code
= SEGV_MAPERR
;
185 info
.si_addr
= (__force
void __user
*)address
;
186 info
.si_trapno
= trapno
;
188 if (show_unhandled_signals
&& unhandled_signal(tsk
, SIGSEGV
) &&
189 printk_ratelimit()) {
190 pr_info("%s%s[%d]: segfault at %lx pc %08x sp %08x write %d trap %#x (%s)",
191 task_pid_nr(tsk
) > 1 ? KERN_INFO
: KERN_EMERG
,
192 tsk
->comm
, task_pid_nr(tsk
), address
,
193 regs
->ctx
.CurrPC
, regs
->ctx
.AX
[0].U0
,
194 write_access
, trapno
, trap_name(trapno
));
195 print_vma_addr(" in ", regs
->ctx
.CurrPC
);
196 print_vma_addr(" rtp in ", regs
->ctx
.DX
[4].U1
);
200 force_sig_info(SIGSEGV
, &info
, tsk
);
206 up_read(&mm
->mmap_sem
);
209 * Send a sigbus, regardless of whether we were in kernel
212 info
.si_signo
= SIGBUS
;
214 info
.si_code
= BUS_ADRERR
;
215 info
.si_addr
= (__force
void __user
*)address
;
216 info
.si_trapno
= trapno
;
217 force_sig_info(SIGBUS
, &info
, tsk
);
219 /* Kernel mode? Handle exceptions or die */
220 if (!user_mode(regs
))
226 * We ran out of memory, or some other thing happened to us that made
227 * us unable to handle the page fault gracefully.
230 up_read(&mm
->mmap_sem
);
231 if (user_mode(regs
)) {
232 pagefault_out_of_memory();
237 /* Are we prepared to handle this kernel fault? */
238 if (fixup_exception(regs
)) {
239 clear_cbuf_entry(regs
, address
, trapno
);
243 die("Oops", regs
, (write_access
<< 15) | trapno
, address
);