2 * linux/arch/arm/mm/fault.c
4 * Copyright (C) 1995 Linus Torvalds
5 * Modifications for ARM processor (c) 1995-2004 Russell King
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/signal.h>
14 #include <linux/hardirq.h>
15 #include <linux/init.h>
16 #include <linux/kprobes.h>
17 #include <linux/uaccess.h>
18 #include <linux/page-flags.h>
19 #include <linux/sched.h>
20 #include <linux/highmem.h>
22 #include <asm/system.h>
23 #include <asm/pgtable.h>
24 #include <asm/tlbflush.h>
29 * Fault status register encodings. We steal bit 31 for our own purposes.
31 #define FSR_LNX_PF (1 << 31)
32 #define FSR_WRITE (1 << 11)
33 #define FSR_FS4 (1 << 10)
34 #define FSR_FS3_0 (15)
36 static inline int fsr_fs(unsigned int fsr
)
38 return (fsr
& FSR_FS3_0
) | (fsr
& FSR_FS4
) >> 6;
44 static inline int notify_page_fault(struct pt_regs
*regs
, unsigned int fsr
)
48 if (!user_mode(regs
)) {
49 /* kprobe_running() needs smp_processor_id() */
51 if (kprobe_running() && kprobe_fault_handler(regs
, fsr
))
59 static inline int notify_page_fault(struct pt_regs
*regs
, unsigned int fsr
)
66 * This is useful to dump out the page tables associated with
69 void show_pte(struct mm_struct
*mm
, unsigned long addr
)
76 printk(KERN_ALERT
"pgd = %p\n", mm
->pgd
);
77 pgd
= pgd_offset(mm
, addr
);
78 printk(KERN_ALERT
"[%08lx] *pgd=%08lx", addr
, pgd_val(*pgd
));
92 pmd
= pmd_offset(pgd
, addr
);
93 if (PTRS_PER_PMD
!= 1)
94 printk(", *pmd=%08lx", pmd_val(*pmd
));
104 /* We must not map this if we have highmem enabled */
105 if (PageHighMem(pfn_to_page(pmd_val(*pmd
) >> PAGE_SHIFT
)))
108 pte
= pte_offset_map(pmd
, addr
);
109 printk(", *pte=%08lx", pte_val(*pte
));
110 printk(", *ppte=%08lx", pte_val(pte
[-PTRS_PER_PTE
]));
116 #else /* CONFIG_MMU */
117 void show_pte(struct mm_struct
*mm
, unsigned long addr
)
119 #endif /* CONFIG_MMU */
122 * Oops. The kernel tried to access some page that wasn't present.
125 __do_kernel_fault(struct mm_struct
*mm
, unsigned long addr
, unsigned int fsr
,
126 struct pt_regs
*regs
)
129 * Are we prepared to handle this kernel fault?
131 if (fixup_exception(regs
))
135 * No handler, we'll have to terminate things with extreme prejudice.
139 "Unable to handle kernel %s at virtual address %08lx\n",
140 (addr
< PAGE_SIZE
) ? "NULL pointer dereference" :
141 "paging request", addr
);
144 die("Oops", regs
, fsr
);
150 * Something tried to access memory that isn't in our memory map..
151 * User mode accesses just cause a SIGSEGV
154 __do_user_fault(struct task_struct
*tsk
, unsigned long addr
,
155 unsigned int fsr
, unsigned int sig
, int code
,
156 struct pt_regs
*regs
)
160 #ifdef CONFIG_DEBUG_USER
161 if (user_debug
& UDBG_SEGV
) {
162 printk(KERN_DEBUG
"%s: unhandled page fault (%d) at 0x%08lx, code 0x%03x\n",
163 tsk
->comm
, sig
, addr
, fsr
);
164 show_pte(tsk
->mm
, addr
);
169 tsk
->thread
.address
= addr
;
170 tsk
->thread
.error_code
= fsr
;
171 tsk
->thread
.trap_no
= 14;
175 si
.si_addr
= (void __user
*)addr
;
176 force_sig_info(sig
, &si
, tsk
);
179 void do_bad_area(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
181 struct task_struct
*tsk
= current
;
182 struct mm_struct
*mm
= tsk
->active_mm
;
185 * If we are in kernel mode at this point, we
186 * have no context to handle this fault with.
189 __do_user_fault(tsk
, addr
, fsr
, SIGSEGV
, SEGV_MAPERR
, regs
);
191 __do_kernel_fault(mm
, addr
, fsr
, regs
);
195 #define VM_FAULT_BADMAP 0x010000
196 #define VM_FAULT_BADACCESS 0x020000
199 * Check that the permissions on the VMA allow for the fault which occurred.
200 * If we encountered a write fault, we must have write permission, otherwise
201 * we allow any permission.
203 static inline bool access_error(unsigned int fsr
, struct vm_area_struct
*vma
)
205 unsigned int mask
= VM_READ
| VM_WRITE
| VM_EXEC
;
209 if (fsr
& FSR_LNX_PF
)
212 return vma
->vm_flags
& mask
? false : true;
216 __do_page_fault(struct mm_struct
*mm
, unsigned long addr
, unsigned int fsr
,
217 struct task_struct
*tsk
)
219 struct vm_area_struct
*vma
;
222 vma
= find_vma(mm
, addr
);
223 fault
= VM_FAULT_BADMAP
;
226 if (unlikely(vma
->vm_start
> addr
))
230 * Ok, we have a good vm_area for this
231 * memory access, so we can handle it.
234 if (access_error(fsr
, vma
)) {
235 fault
= VM_FAULT_BADACCESS
;
240 * If for any reason at all we couldn't handle the fault, make
241 * sure we exit gracefully rather than endlessly redo the fault.
243 fault
= handle_mm_fault(mm
, vma
, addr
& PAGE_MASK
, (fsr
& FSR_WRITE
) ? FAULT_FLAG_WRITE
: 0);
244 if (unlikely(fault
& VM_FAULT_ERROR
))
246 if (fault
& VM_FAULT_MAJOR
)
253 if (vma
->vm_flags
& VM_GROWSDOWN
&& !expand_stack(vma
, addr
))
260 do_page_fault(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
262 struct task_struct
*tsk
;
263 struct mm_struct
*mm
;
264 int fault
, sig
, code
;
266 if (notify_page_fault(regs
, fsr
))
273 * If we're in an interrupt or have no user
274 * context, we must not take the fault..
276 if (in_atomic() || !mm
)
280 * As per x86, we may deadlock here. However, since the kernel only
281 * validly references user space from well defined areas of the code,
282 * we can bug out early if this is from code which shouldn't.
284 if (!down_read_trylock(&mm
->mmap_sem
)) {
285 if (!user_mode(regs
) && !search_exception_tables(regs
->ARM_pc
))
287 down_read(&mm
->mmap_sem
);
290 * The above down_read_trylock() might have succeeded in
291 * which case, we'll have missed the might_sleep() from
295 #ifdef CONFIG_DEBUG_VM
296 if (!user_mode(regs
) &&
297 !search_exception_tables(regs
->ARM_pc
))
302 fault
= __do_page_fault(mm
, addr
, fsr
, tsk
);
303 up_read(&mm
->mmap_sem
);
306 * Handle the "normal" case first - VM_FAULT_MAJOR / VM_FAULT_MINOR
308 if (likely(!(fault
& (VM_FAULT_ERROR
| VM_FAULT_BADMAP
| VM_FAULT_BADACCESS
))))
311 if (fault
& VM_FAULT_OOM
) {
313 * We ran out of memory, call the OOM killer, and return to
314 * userspace (which will retry the fault, or kill us if we
317 pagefault_out_of_memory();
322 * If we are in kernel mode at this point, we
323 * have no context to handle this fault with.
325 if (!user_mode(regs
))
328 if (fault
& VM_FAULT_SIGBUS
) {
330 * We had some memory, but were unable to
331 * successfully fix up this page fault.
337 * Something tried to access memory that
338 * isn't in our memory map..
341 code
= fault
== VM_FAULT_BADACCESS
?
342 SEGV_ACCERR
: SEGV_MAPERR
;
345 __do_user_fault(tsk
, addr
, fsr
, sig
, code
, regs
);
349 __do_kernel_fault(mm
, addr
, fsr
, regs
);
352 #else /* CONFIG_MMU */
354 do_page_fault(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
358 #endif /* CONFIG_MMU */
361 * First Level Translation Fault Handler
363 * We enter here because the first level page table doesn't contain
364 * a valid entry for the address.
366 * If the address is in kernel space (>= TASK_SIZE), then we are
367 * probably faulting in the vmalloc() area.
369 * If the init_task's first level page tables contains the relevant
370 * entry, we copy the it to this task. If not, we send the process
371 * a signal, fixup the exception, or oops the kernel.
373 * NOTE! We MUST NOT take any locks for this case. We may be in an
374 * interrupt or a critical region, and should only copy the information
375 * from the master page table, nothing more.
379 do_translation_fault(unsigned long addr
, unsigned int fsr
,
380 struct pt_regs
*regs
)
386 if (addr
< TASK_SIZE
)
387 return do_page_fault(addr
, fsr
, regs
);
389 index
= pgd_index(addr
);
392 * FIXME: CP15 C1 is write only on ARMv3 architectures.
394 pgd
= cpu_get_pgd() + index
;
395 pgd_k
= init_mm
.pgd
+ index
;
397 if (pgd_none(*pgd_k
))
400 if (!pgd_present(*pgd
))
401 set_pgd(pgd
, *pgd_k
);
403 pmd_k
= pmd_offset(pgd_k
, addr
);
404 pmd
= pmd_offset(pgd
, addr
);
406 if (pmd_none(*pmd_k
))
409 copy_pmd(pmd
, pmd_k
);
413 do_bad_area(addr
, fsr
, regs
);
416 #else /* CONFIG_MMU */
418 do_translation_fault(unsigned long addr
, unsigned int fsr
,
419 struct pt_regs
*regs
)
423 #endif /* CONFIG_MMU */
426 * Some section permission faults need to be handled gracefully.
427 * They can happen due to a __{get,put}_user during an oops.
430 do_sect_fault(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
432 do_bad_area(addr
, fsr
, regs
);
437 * This abort handler always returns "fault".
440 do_bad(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
445 static struct fsr_info
{
446 int (*fn
)(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
);
452 * The following are the standard ARMv3 and ARMv4 aborts. ARMv5
453 * defines these to be "precise" aborts.
455 { do_bad
, SIGSEGV
, 0, "vector exception" },
456 { do_bad
, SIGILL
, BUS_ADRALN
, "alignment exception" },
457 { do_bad
, SIGKILL
, 0, "terminal exception" },
458 { do_bad
, SIGILL
, BUS_ADRALN
, "alignment exception" },
459 { do_bad
, SIGBUS
, 0, "external abort on linefetch" },
460 { do_translation_fault
, SIGSEGV
, SEGV_MAPERR
, "section translation fault" },
461 { do_bad
, SIGBUS
, 0, "external abort on linefetch" },
462 { do_page_fault
, SIGSEGV
, SEGV_MAPERR
, "page translation fault" },
463 { do_bad
, SIGBUS
, 0, "external abort on non-linefetch" },
464 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "section domain fault" },
465 { do_bad
, SIGBUS
, 0, "external abort on non-linefetch" },
466 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "page domain fault" },
467 { do_bad
, SIGBUS
, 0, "external abort on translation" },
468 { do_sect_fault
, SIGSEGV
, SEGV_ACCERR
, "section permission fault" },
469 { do_bad
, SIGBUS
, 0, "external abort on translation" },
470 { do_page_fault
, SIGSEGV
, SEGV_ACCERR
, "page permission fault" },
472 * The following are "imprecise" aborts, which are signalled by bit
473 * 10 of the FSR, and may not be recoverable. These are only
474 * supported if the CPU abort handler supports bit 10.
476 { do_bad
, SIGBUS
, 0, "unknown 16" },
477 { do_bad
, SIGBUS
, 0, "unknown 17" },
478 { do_bad
, SIGBUS
, 0, "unknown 18" },
479 { do_bad
, SIGBUS
, 0, "unknown 19" },
480 { do_bad
, SIGBUS
, 0, "lock abort" }, /* xscale */
481 { do_bad
, SIGBUS
, 0, "unknown 21" },
482 { do_bad
, SIGBUS
, BUS_OBJERR
, "imprecise external abort" }, /* xscale */
483 { do_bad
, SIGBUS
, 0, "unknown 23" },
484 { do_bad
, SIGBUS
, 0, "dcache parity error" }, /* xscale */
485 { do_bad
, SIGBUS
, 0, "unknown 25" },
486 { do_bad
, SIGBUS
, 0, "unknown 26" },
487 { do_bad
, SIGBUS
, 0, "unknown 27" },
488 { do_bad
, SIGBUS
, 0, "unknown 28" },
489 { do_bad
, SIGBUS
, 0, "unknown 29" },
490 { do_bad
, SIGBUS
, 0, "unknown 30" },
491 { do_bad
, SIGBUS
, 0, "unknown 31" }
495 hook_fault_code(int nr
, int (*fn
)(unsigned long, unsigned int, struct pt_regs
*),
496 int sig
, const char *name
)
498 if (nr
>= 0 && nr
< ARRAY_SIZE(fsr_info
)) {
499 fsr_info
[nr
].fn
= fn
;
500 fsr_info
[nr
].sig
= sig
;
501 fsr_info
[nr
].name
= name
;
506 * Dispatch a data abort to the relevant handler.
508 asmlinkage
void __exception
509 do_DataAbort(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
511 const struct fsr_info
*inf
= fsr_info
+ fsr_fs(fsr
);
514 if (!inf
->fn(addr
, fsr
& ~FSR_LNX_PF
, regs
))
517 printk(KERN_ALERT
"Unhandled fault: %s (0x%03x) at 0x%08lx\n",
518 inf
->name
, fsr
, addr
);
520 info
.si_signo
= inf
->sig
;
522 info
.si_code
= inf
->code
;
523 info
.si_addr
= (void __user
*)addr
;
524 arm_notify_die("", regs
, &info
, fsr
, 0);
528 static struct fsr_info ifsr_info
[] = {
529 { do_bad
, SIGBUS
, 0, "unknown 0" },
530 { do_bad
, SIGBUS
, 0, "unknown 1" },
531 { do_bad
, SIGBUS
, 0, "debug event" },
532 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "section access flag fault" },
533 { do_bad
, SIGBUS
, 0, "unknown 4" },
534 { do_translation_fault
, SIGSEGV
, SEGV_MAPERR
, "section translation fault" },
535 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "page access flag fault" },
536 { do_page_fault
, SIGSEGV
, SEGV_MAPERR
, "page translation fault" },
537 { do_bad
, SIGBUS
, 0, "external abort on non-linefetch" },
538 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "section domain fault" },
539 { do_bad
, SIGBUS
, 0, "unknown 10" },
540 { do_bad
, SIGSEGV
, SEGV_ACCERR
, "page domain fault" },
541 { do_bad
, SIGBUS
, 0, "external abort on translation" },
542 { do_sect_fault
, SIGSEGV
, SEGV_ACCERR
, "section permission fault" },
543 { do_bad
, SIGBUS
, 0, "external abort on translation" },
544 { do_page_fault
, SIGSEGV
, SEGV_ACCERR
, "page permission fault" },
545 { do_bad
, SIGBUS
, 0, "unknown 16" },
546 { do_bad
, SIGBUS
, 0, "unknown 17" },
547 { do_bad
, SIGBUS
, 0, "unknown 18" },
548 { do_bad
, SIGBUS
, 0, "unknown 19" },
549 { do_bad
, SIGBUS
, 0, "unknown 20" },
550 { do_bad
, SIGBUS
, 0, "unknown 21" },
551 { do_bad
, SIGBUS
, 0, "unknown 22" },
552 { do_bad
, SIGBUS
, 0, "unknown 23" },
553 { do_bad
, SIGBUS
, 0, "unknown 24" },
554 { do_bad
, SIGBUS
, 0, "unknown 25" },
555 { do_bad
, SIGBUS
, 0, "unknown 26" },
556 { do_bad
, SIGBUS
, 0, "unknown 27" },
557 { do_bad
, SIGBUS
, 0, "unknown 28" },
558 { do_bad
, SIGBUS
, 0, "unknown 29" },
559 { do_bad
, SIGBUS
, 0, "unknown 30" },
560 { do_bad
, SIGBUS
, 0, "unknown 31" },
563 asmlinkage
void __exception
564 do_PrefetchAbort(unsigned long addr
, unsigned int ifsr
, struct pt_regs
*regs
)
566 const struct fsr_info
*inf
= ifsr_info
+ fsr_fs(ifsr
);
569 if (!inf
->fn(addr
, ifsr
| FSR_LNX_PF
, regs
))
572 printk(KERN_ALERT
"Unhandled prefetch abort: %s (0x%03x) at 0x%08lx\n",
573 inf
->name
, ifsr
, addr
);
575 info
.si_signo
= inf
->sig
;
577 info
.si_code
= inf
->code
;
578 info
.si_addr
= (void __user
*)addr
;
579 arm_notify_die("", regs
, &info
, ifsr
, 0);