2 * linux/arch/i386/mm/fault.c
4 * Copyright (C) 1995 Linus Torvalds
7 #include <linux/signal.h>
8 #include <linux/sched.h>
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/string.h>
12 #include <linux/types.h>
13 #include <linux/ptrace.h>
14 #include <linux/mman.h>
16 #include <linux/smp.h>
17 #include <linux/smp_lock.h>
18 #include <linux/interrupt.h>
19 #include <linux/init.h>
20 #include <linux/tty.h>
21 #include <linux/vt_kern.h> /* For unblank_screen() */
22 #include <linux/highmem.h>
23 #include <linux/module.h>
25 #include <asm/system.h>
26 #include <asm/uaccess.h>
28 #include <asm/kdebug.h>
30 extern void die(const char *,struct pt_regs *,long);
33 * Unlock any spinlocks which will prevent us from getting the
36 void bust_spinlocks(int yes)
38 int loglevel_save = console_loglevel;
49 * OK, the message is on the console. Now we call printk()
50 * without oops_in_progress set so that printk will give klogd
51 * a poke. Hold onto your hats...
53 console_loglevel = 15; /* NMI oopser may have shut the console up */
55 console_loglevel = loglevel_save;
59 * Return EIP plus the CS segment base. The segment limit is also
60 * adjusted, clamped to the kernel/user address space (whichever is
61 * appropriate), and returned in *eip_limit.
63 * The segment is checked, because it might have been changed by another
64 * task between the original faulting instruction and here.
66 * If CS is no longer a valid code segment, or if EIP is beyond the
67 * limit, or if it is a kernel address when CS is not a kernel segment,
68 * then the returned value will be greater than *eip_limit.
70 * This is slow, but is very rarely executed.
72 static inline unsigned long get_segment_eip(struct pt_regs *regs,
73 unsigned long *eip_limit)
75 unsigned long eip = regs->eip;
76 unsigned seg = regs->xcs & 0xffff;
77 u32 seg_ar, seg_limit, base, *desc;
79 /* The standard kernel/user address space limit. */
80 *eip_limit = (seg & 3) ? USER_DS.seg : KERNEL_DS.seg;
82 /* Unlikely, but must come before segment checks. */
83 if (unlikely((regs->eflags & VM_MASK) != 0))
84 return eip + (seg << 4);
86 /* By far the most common cases. */
87 if (likely(seg == __USER_CS || seg == __KERNEL_CS))
90 /* Check the segment exists, is within the current LDT/GDT size,
91 that kernel/user (ring 0..3) has the appropriate privilege,
92 that it's a code segment, and get the limit. */
93 __asm__ ("larl %3,%0; lsll %3,%1"
94 : "=&r" (seg_ar), "=r" (seg_limit) : "0" (0), "rm" (seg));
95 if ((~seg_ar & 0x9800) || eip > seg_limit) {
97 return 1; /* So that returned eip > *eip_limit. */
100 /* Get the GDT/LDT descriptor base.
101 When you look for races in this code remember that
102 LDT and other horrors are only used in user space. */
104 /* Must lock the LDT while reading it. */
105 down(¤t->mm->context.sem);
106 desc = current->mm->context.ldt;
107 desc = (void *)desc + (seg & ~7);
109 /* Must disable preemption while reading the GDT. */
110 desc = (u32 *)&per_cpu(cpu_gdt_table, get_cpu());
111 desc = (void *)desc + (seg & ~7);
114 /* Decode the code segment base from the descriptor */
115 base = get_desc_base((unsigned long *)desc);
118 up(¤t->mm->context.sem);
122 /* Adjust EIP and segment limit, and clamp at the kernel limit.
123 It's legitimate for segments to wrap at 0xffffffff. */
125 if (seg_limit < *eip_limit && seg_limit >= base)
126 *eip_limit = seg_limit;
131 * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
132 * Check that here and ignore it.
134 static int __is_prefetch(struct pt_regs *regs, unsigned long addr)
137 unsigned long instr = get_segment_eip (regs, &limit);
142 for (i = 0; scan_more && i < 15; i++) {
143 unsigned char opcode;
144 unsigned char instr_hi;
145 unsigned char instr_lo;
149 if (__get_user(opcode, (unsigned char __user *) instr))
152 instr_hi = opcode & 0xf0;
153 instr_lo = opcode & 0x0f;
159 /* Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes. */
160 scan_more = ((instr_lo & 7) == 0x6);
164 /* 0x64 thru 0x67 are valid prefixes in all modes. */
165 scan_more = (instr_lo & 0xC) == 0x4;
168 /* 0xF0, 0xF2, and 0xF3 are valid prefixes */
169 scan_more = !instr_lo || (instr_lo>>1) == 1;
172 /* Prefetch instruction is 0x0F0D or 0x0F18 */
176 if (__get_user(opcode, (unsigned char __user *) instr))
178 prefetch = (instr_lo == 0xF) &&
179 (opcode == 0x0D || opcode == 0x18);
189 static inline int is_prefetch(struct pt_regs *regs, unsigned long addr,
190 unsigned long error_code)
192 if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
193 boot_cpu_data.x86 >= 6)) {
194 /* Catch an obscure case of prefetch inside an NX page. */
195 if (nx_enabled && (error_code & 16))
197 return __is_prefetch(regs, addr);
202 fastcall void do_invalid_op(struct pt_regs *, unsigned long);
205 * This routine handles page faults. It determines the address,
206 * and the problem, and then passes it off to one of the appropriate
210 * bit 0 == 0 means no page found, 1 means protection fault
211 * bit 1 == 0 means read, 1 means write
212 * bit 2 == 0 means kernel, 1 means user-mode
214 fastcall void do_page_fault(struct pt_regs *regs, unsigned long error_code)
216 struct task_struct *tsk;
217 struct mm_struct *mm;
218 struct vm_area_struct * vma;
219 unsigned long address;
224 /* get the address */
225 __asm__("movl %%cr2,%0":"=r" (address));
227 if (notify_die(DIE_PAGE_FAULT, "page fault", regs, error_code, 14,
228 SIGSEGV) == NOTIFY_STOP)
230 /* It's safe to allow irq's after cr2 has been saved */
231 if (regs->eflags & (X86_EFLAGS_IF|VM_MASK))
236 info.si_code = SEGV_MAPERR;
239 * We fault-in kernel-space virtual memory on-demand. The
240 * 'reference' page table is init_mm.pgd.
242 * NOTE! We MUST NOT take any locks for this case. We may
243 * be in an interrupt or a critical region, and should
244 * only copy the information from the master page table,
247 * This verifies that the fault happens in kernel space
248 * (error_code & 4) == 0, and that the fault was not a
249 * protection error (error_code & 1) == 0.
251 if (unlikely(address >= TASK_SIZE)) {
252 if (!(error_code & 5))
255 * Don't take the mm semaphore here. If we fixup a prefetch
256 * fault we could otherwise deadlock.
258 goto bad_area_nosemaphore;
264 * If we're in an interrupt, have no user context or are running in an
265 * atomic region then we must not take the fault..
267 if (in_atomic() || !mm)
268 goto bad_area_nosemaphore;
270 /* When running in the kernel we expect faults to occur only to
271 * addresses in user space. All other faults represent errors in the
272 * kernel and should generate an OOPS. Unfortunatly, in the case of an
273 * erroneous fault occuring in a code path which already holds mmap_sem
274 * we will deadlock attempting to validate the fault against the
275 * address space. Luckily the kernel only validly references user
276 * space from well defined areas of code, which are listed in the
279 * As the vast majority of faults will be valid we will only perform
280 * the source reference check when there is a possibilty of a deadlock.
281 * Attempt to lock the address space, if we cannot we then validate the
282 * source. If this is invalid we can skip the address space check,
283 * thus avoiding the deadlock.
285 if (!down_read_trylock(&mm->mmap_sem)) {
286 if ((error_code & 4) == 0 &&
287 !search_exception_tables(regs->eip))
288 goto bad_area_nosemaphore;
289 down_read(&mm->mmap_sem);
292 vma = find_vma(mm, address);
295 if (vma->vm_start <= address)
297 if (!(vma->vm_flags & VM_GROWSDOWN))
299 if (error_code & 4) {
301 * accessing the stack below %esp is always a bug.
302 * The "+ 32" is there due to some instructions (like
303 * pusha) doing post-decrement on the stack and that
304 * doesn't show up until later..
306 if (address + 32 < regs->esp)
309 if (expand_stack(vma, address))
312 * Ok, we have a good vm_area for this memory access, so
316 info.si_code = SEGV_ACCERR;
318 switch (error_code & 3) {
319 default: /* 3: write, present */
320 #ifdef TEST_VERIFY_AREA
321 if (regs->cs == KERNEL_CS)
322 printk("WP fault at %08lx\n", regs->eip);
325 case 2: /* write, not present */
326 if (!(vma->vm_flags & VM_WRITE))
330 case 1: /* read, present */
332 case 0: /* read, not present */
333 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
339 * If for any reason at all we couldn't handle the fault,
340 * make sure we exit gracefully rather than endlessly redo
343 switch (handle_mm_fault(mm, vma, address, write)) {
350 case VM_FAULT_SIGBUS:
359 * Did it hit the DOS screen memory VA from vm86 mode?
361 if (regs->eflags & VM_MASK) {
362 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
364 tsk->thread.screen_bitmap |= 1 << bit;
366 up_read(&mm->mmap_sem);
370 * Something tried to access memory that isn't in our memory map..
371 * Fix it, but check if it's kernel or user first..
374 up_read(&mm->mmap_sem);
376 bad_area_nosemaphore:
377 /* User mode accesses just cause a SIGSEGV */
378 if (error_code & 4) {
380 * Valid to do another page fault here because this one came
383 if (is_prefetch(regs, address, error_code))
386 tsk->thread.cr2 = address;
387 /* Kernel addresses are always protection faults */
388 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
389 tsk->thread.trap_no = 14;
390 info.si_signo = SIGSEGV;
392 /* info.si_code has been set above */
393 info.si_addr = (void __user *)address;
394 force_sig_info(SIGSEGV, &info, tsk);
398 #ifdef CONFIG_X86_F00F_BUG
400 * Pentium F0 0F C7 C8 bug workaround.
402 if (boot_cpu_data.f00f_bug) {
405 nr = (address - idt_descr.address) >> 3;
408 do_invalid_op(regs, 0);
415 /* Are we prepared to handle this kernel fault? */
416 if (fixup_exception(regs))
420 * Valid to do another page fault here, because if this fault
421 * had been triggered by is_prefetch fixup_exception would have
424 if (is_prefetch(regs, address, error_code))
428 * Oops. The kernel tried to access some bad page. We'll have to
429 * terminate things with extreme prejudice.
434 #ifdef CONFIG_X86_PAE
435 if (error_code & 16) {
436 pte_t *pte = lookup_address(address);
438 if (pte && pte_present(*pte) && !pte_exec_kernel(*pte))
439 printk(KERN_CRIT "kernel tried to execute NX-protected page - exploit attempt? (uid: %d)\n", current->uid);
442 if (address < PAGE_SIZE)
443 printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
445 printk(KERN_ALERT "Unable to handle kernel paging request");
446 printk(" at virtual address %08lx\n",address);
447 printk(KERN_ALERT " printing eip:\n");
448 printk("%08lx\n", regs->eip);
449 asm("movl %%cr3,%0":"=r" (page));
450 page = ((unsigned long *) __va(page))[address >> 22];
451 printk(KERN_ALERT "*pde = %08lx\n", page);
453 * We must not directly access the pte in the highpte
454 * case, the page table might be allocated in highmem.
455 * And lets rather not kmap-atomic the pte, just in case
456 * it's allocated already.
458 #ifndef CONFIG_HIGHPTE
461 address &= 0x003ff000;
462 page = ((unsigned long *) __va(page))[address >> PAGE_SHIFT];
463 printk(KERN_ALERT "*pte = %08lx\n", page);
466 tsk->thread.cr2 = address;
467 tsk->thread.trap_no = 14;
468 tsk->thread.error_code = error_code;
469 die("Oops", regs, error_code);
474 * We ran out of memory, or some other thing happened to us that made
475 * us unable to handle the page fault gracefully.
478 up_read(&mm->mmap_sem);
481 down_read(&mm->mmap_sem);
484 printk("VM: killing process %s\n", tsk->comm);
490 up_read(&mm->mmap_sem);
492 /* Kernel mode? Handle exceptions or die */
493 if (!(error_code & 4))
496 /* User space => ok to do another page fault */
497 if (is_prefetch(regs, address, error_code))
500 tsk->thread.cr2 = address;
501 tsk->thread.error_code = error_code;
502 tsk->thread.trap_no = 14;
503 info.si_signo = SIGBUS;
505 info.si_code = BUS_ADRERR;
506 info.si_addr = (void __user *)address;
507 force_sig_info(SIGBUS, &info, tsk);
513 * Synchronize this task's top level page-table
514 * with the 'reference' page table.
516 * Do _not_ use "tsk" here. We might be inside
517 * an interrupt in the middle of a task switch..
519 int index = pgd_index(address);
520 unsigned long pgd_paddr;
526 asm("movl %%cr3,%0":"=r" (pgd_paddr));
527 pgd = index + (pgd_t *)__va(pgd_paddr);
528 pgd_k = init_mm.pgd + index;
530 if (!pgd_present(*pgd_k))
534 * set_pgd(pgd, *pgd_k); here would be useless on PAE
535 * and redundant with the set_pmd() on non-PAE. As would
539 pud = pud_offset(pgd, address);
540 pud_k = pud_offset(pgd_k, address);
541 if (!pud_present(*pud_k))
544 pmd = pmd_offset(pud, address);
545 pmd_k = pmd_offset(pud_k, address);
546 if (!pmd_present(*pmd_k))
548 set_pmd(pmd, *pmd_k);
550 pte_k = pte_offset_kernel(pmd_k, address);
551 if (!pte_present(*pte_k))