2 * Page fault handler for SH with an MMU.
4 * Copyright (C) 1999 Niibe Yutaka
5 * Copyright (C) 2003 - 2012 Paul Mundt
7 * Based on linux/arch/i386/mm/fault.c:
8 * Copyright (C) 1995 Linus Torvalds
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file "COPYING" in the main directory of this archive
14 #include <linux/kernel.h>
16 #include <linux/sched/signal.h>
17 #include <linux/hardirq.h>
18 #include <linux/kprobes.h>
19 #include <linux/perf_event.h>
20 #include <linux/kdebug.h>
21 #include <linux/uaccess.h>
22 #include <asm/io_trapped.h>
23 #include <asm/mmu_context.h>
24 #include <asm/tlbflush.h>
25 #include <asm/traps.h>
28 force_sig_info_fault(int si_signo
, int si_code
, unsigned long address
)
30 force_sig_fault(si_signo
, si_code
, (void __user
*)address
);
34 * This is useful to dump out the page tables associated with
37 static void show_pte(struct mm_struct
*mm
, unsigned long addr
)
50 printk(KERN_ALERT
"pgd = %p\n", pgd
);
51 pgd
+= pgd_index(addr
);
52 printk(KERN_ALERT
"[%08lx] *pgd=%0*Lx", addr
,
53 (u32
)(sizeof(*pgd
) * 2), (u64
)pgd_val(*pgd
));
68 pud
= pud_offset(pgd
, addr
);
69 if (PTRS_PER_PUD
!= 1)
70 printk(", *pud=%0*Lx", (u32
)(sizeof(*pud
) * 2),
81 pmd
= pmd_offset(pud
, addr
);
82 if (PTRS_PER_PMD
!= 1)
83 printk(", *pmd=%0*Lx", (u32
)(sizeof(*pmd
) * 2),
94 /* We must not map this if we have highmem enabled */
95 if (PageHighMem(pfn_to_page(pmd_val(*pmd
) >> PAGE_SHIFT
)))
98 pte
= pte_offset_kernel(pmd
, addr
);
99 printk(", *pte=%0*Lx", (u32
)(sizeof(*pte
) * 2),
106 static inline pmd_t
*vmalloc_sync_one(pgd_t
*pgd
, unsigned long address
)
108 unsigned index
= pgd_index(address
);
114 pgd_k
= init_mm
.pgd
+ index
;
116 if (!pgd_present(*pgd_k
))
119 pud
= pud_offset(pgd
, address
);
120 pud_k
= pud_offset(pgd_k
, address
);
121 if (!pud_present(*pud_k
))
124 if (!pud_present(*pud
))
125 set_pud(pud
, *pud_k
);
127 pmd
= pmd_offset(pud
, address
);
128 pmd_k
= pmd_offset(pud_k
, address
);
129 if (!pmd_present(*pmd_k
))
132 if (!pmd_present(*pmd
))
133 set_pmd(pmd
, *pmd_k
);
136 * The page tables are fully synchronised so there must
137 * be another reason for the fault. Return NULL here to
138 * signal that we have not taken care of the fault.
140 BUG_ON(pmd_page(*pmd
) != pmd_page(*pmd_k
));
147 #ifdef CONFIG_SH_STORE_QUEUES
148 #define __FAULT_ADDR_LIMIT P3_ADDR_MAX
150 #define __FAULT_ADDR_LIMIT VMALLOC_END
154 * Handle a fault on the vmalloc or module mapping area
156 static noinline
int vmalloc_fault(unsigned long address
)
162 /* Make sure we are in vmalloc/module/P3 area: */
163 if (!(address
>= VMALLOC_START
&& address
< __FAULT_ADDR_LIMIT
))
167 * Synchronize this task's top level page-table
168 * with the 'reference' page table.
170 * Do _not_ use "current" here. We might be inside
171 * an interrupt in the middle of a task switch..
174 pmd_k
= vmalloc_sync_one(pgd_k
, address
);
178 pte_k
= pte_offset_kernel(pmd_k
, address
);
179 if (!pte_present(*pte_k
))
186 show_fault_oops(struct pt_regs
*regs
, unsigned long address
)
188 if (!oops_may_print())
191 printk(KERN_ALERT
"BUG: unable to handle kernel ");
192 if (address
< PAGE_SIZE
)
193 printk(KERN_CONT
"NULL pointer dereference");
195 printk(KERN_CONT
"paging request");
197 printk(KERN_CONT
" at %08lx\n", address
);
198 printk(KERN_ALERT
"PC:");
199 printk_address(regs
->pc
, 1);
201 show_pte(NULL
, address
);
205 no_context(struct pt_regs
*regs
, unsigned long error_code
,
206 unsigned long address
)
208 /* Are we prepared to handle this kernel fault? */
209 if (fixup_exception(regs
))
212 if (handle_trapped_io(regs
, address
))
216 * Oops. The kernel tried to access some bad page. We'll have to
217 * terminate things with extreme prejudice.
221 show_fault_oops(regs
, address
);
223 die("Oops", regs
, error_code
);
229 __bad_area_nosemaphore(struct pt_regs
*regs
, unsigned long error_code
,
230 unsigned long address
, int si_code
)
232 /* User mode accesses just cause a SIGSEGV */
233 if (user_mode(regs
)) {
235 * It's possible to have interrupts off here:
239 force_sig_info_fault(SIGSEGV
, si_code
, address
);
244 no_context(regs
, error_code
, address
);
248 bad_area_nosemaphore(struct pt_regs
*regs
, unsigned long error_code
,
249 unsigned long address
)
251 __bad_area_nosemaphore(regs
, error_code
, address
, SEGV_MAPERR
);
255 __bad_area(struct pt_regs
*regs
, unsigned long error_code
,
256 unsigned long address
, int si_code
)
258 struct mm_struct
*mm
= current
->mm
;
261 * Something tried to access memory that isn't in our memory map..
262 * Fix it, but check if it's kernel or user first..
264 up_read(&mm
->mmap_sem
);
266 __bad_area_nosemaphore(regs
, error_code
, address
, si_code
);
270 bad_area(struct pt_regs
*regs
, unsigned long error_code
, unsigned long address
)
272 __bad_area(regs
, error_code
, address
, SEGV_MAPERR
);
276 bad_area_access_error(struct pt_regs
*regs
, unsigned long error_code
,
277 unsigned long address
)
279 __bad_area(regs
, error_code
, address
, SEGV_ACCERR
);
283 do_sigbus(struct pt_regs
*regs
, unsigned long error_code
, unsigned long address
)
285 struct task_struct
*tsk
= current
;
286 struct mm_struct
*mm
= tsk
->mm
;
288 up_read(&mm
->mmap_sem
);
290 /* Kernel mode? Handle exceptions or die: */
291 if (!user_mode(regs
))
292 no_context(regs
, error_code
, address
);
294 force_sig_info_fault(SIGBUS
, BUS_ADRERR
, address
);
298 mm_fault_error(struct pt_regs
*regs
, unsigned long error_code
,
299 unsigned long address
, vm_fault_t fault
)
302 * Pagefault was interrupted by SIGKILL. We have no reason to
303 * continue pagefault.
305 if (fatal_signal_pending(current
)) {
306 if (!(fault
& VM_FAULT_RETRY
))
307 up_read(¤t
->mm
->mmap_sem
);
308 if (!user_mode(regs
))
309 no_context(regs
, error_code
, address
);
313 if (!(fault
& VM_FAULT_ERROR
))
316 if (fault
& VM_FAULT_OOM
) {
317 /* Kernel mode? Handle exceptions or die: */
318 if (!user_mode(regs
)) {
319 up_read(¤t
->mm
->mmap_sem
);
320 no_context(regs
, error_code
, address
);
323 up_read(¤t
->mm
->mmap_sem
);
326 * We ran out of memory, call the OOM killer, and return the
327 * userspace (which will retry the fault, or kill us if we got
330 pagefault_out_of_memory();
332 if (fault
& VM_FAULT_SIGBUS
)
333 do_sigbus(regs
, error_code
, address
);
334 else if (fault
& VM_FAULT_SIGSEGV
)
335 bad_area(regs
, error_code
, address
);
343 static inline int access_error(int error_code
, struct vm_area_struct
*vma
)
345 if (error_code
& FAULT_CODE_WRITE
) {
346 /* write, present and write, not present: */
347 if (unlikely(!(vma
->vm_flags
& VM_WRITE
)))
352 /* ITLB miss on NX page */
353 if (unlikely((error_code
& FAULT_CODE_ITLB
) &&
354 !(vma
->vm_flags
& VM_EXEC
)))
357 /* read, not present: */
358 if (unlikely(!(vma
->vm_flags
& (VM_READ
| VM_EXEC
| VM_WRITE
))))
364 static int fault_in_kernel_space(unsigned long address
)
366 return address
>= TASK_SIZE
;
370 * This routine handles page faults. It determines the address,
371 * and the problem, and then passes it off to one of the appropriate
374 asmlinkage
void __kprobes
do_page_fault(struct pt_regs
*regs
,
375 unsigned long error_code
,
376 unsigned long address
)
379 struct task_struct
*tsk
;
380 struct mm_struct
*mm
;
381 struct vm_area_struct
* vma
;
383 unsigned int flags
= FAULT_FLAG_ALLOW_RETRY
| FAULT_FLAG_KILLABLE
;
387 vec
= lookup_exception_vector();
390 * We fault-in kernel-space virtual memory on-demand. The
391 * 'reference' page table is init_mm.pgd.
393 * NOTE! We MUST NOT take any locks for this case. We may
394 * be in an interrupt or a critical region, and should
395 * only copy the information from the master page table,
398 if (unlikely(fault_in_kernel_space(address
))) {
399 if (vmalloc_fault(address
) >= 0)
401 if (kprobe_page_fault(regs
, vec
))
404 bad_area_nosemaphore(regs
, error_code
, address
);
408 if (unlikely(kprobe_page_fault(regs
, vec
)))
411 /* Only enable interrupts if they were on before the fault */
412 if ((regs
->sr
& SR_IMASK
) != SR_IMASK
)
415 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS
, 1, regs
, address
);
418 * If we're in an interrupt, have no user context or are running
419 * with pagefaults disabled then we must not take the fault:
421 if (unlikely(faulthandler_disabled() || !mm
)) {
422 bad_area_nosemaphore(regs
, error_code
, address
);
427 down_read(&mm
->mmap_sem
);
429 vma
= find_vma(mm
, address
);
430 if (unlikely(!vma
)) {
431 bad_area(regs
, error_code
, address
);
434 if (likely(vma
->vm_start
<= address
))
436 if (unlikely(!(vma
->vm_flags
& VM_GROWSDOWN
))) {
437 bad_area(regs
, error_code
, address
);
440 if (unlikely(expand_stack(vma
, address
))) {
441 bad_area(regs
, error_code
, address
);
446 * Ok, we have a good vm_area for this memory access, so
450 if (unlikely(access_error(error_code
, vma
))) {
451 bad_area_access_error(regs
, error_code
, address
);
455 set_thread_fault_code(error_code
);
458 flags
|= FAULT_FLAG_USER
;
459 if (error_code
& FAULT_CODE_WRITE
)
460 flags
|= FAULT_FLAG_WRITE
;
463 * If for any reason at all we couldn't handle the fault,
464 * make sure we exit gracefully rather than endlessly redo
467 fault
= handle_mm_fault(vma
, address
, flags
);
469 if (unlikely(fault
& (VM_FAULT_RETRY
| VM_FAULT_ERROR
)))
470 if (mm_fault_error(regs
, error_code
, address
, fault
))
473 if (flags
& FAULT_FLAG_ALLOW_RETRY
) {
474 if (fault
& VM_FAULT_MAJOR
) {
476 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ
, 1,
480 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN
, 1,
483 if (fault
& VM_FAULT_RETRY
) {
484 flags
&= ~FAULT_FLAG_ALLOW_RETRY
;
485 flags
|= FAULT_FLAG_TRIED
;
488 * No need to up_read(&mm->mmap_sem) as we would
489 * have already released it in __lock_page_or_retry
496 up_read(&mm
->mmap_sem
);