blob: b92922a1d65f4cf925d37ae8f343c6cbde3891c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995 Linus Torvalds
3 */
4
5#include <linux/signal.h>
6#include <linux/sched.h>
7#include <linux/kernel.h>
8#include <linux/errno.h>
9#include <linux/string.h>
10#include <linux/types.h>
11#include <linux/ptrace.h>
12#include <linux/mman.h>
13#include <linux/mm.h>
14#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/interrupt.h>
16#include <linux/init.h>
17#include <linux/tty.h>
18#include <linux/vt_kern.h> /* For unblank_screen() */
19#include <linux/highmem.h>
Jan Beulich28609f62007-05-02 19:27:04 +020020#include <linux/bootmem.h> /* for max_low_pfn */
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070021#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Prasanna S Panchamukhi3d97ae52005-09-06 15:19:27 -070023#include <linux/kprobes.h>
Andi Kleen11a41802006-12-07 02:14:06 +010024#include <linux/uaccess.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070025#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/desc.h>
Rusty Russell78be3702006-09-26 10:52:39 +020029#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Harvey Harrison33cb5242008-01-30 13:32:19 +010031/*
32 * Page fault error code bits
33 * bit 0 == 0 means no page found, 1 means protection fault
34 * bit 1 == 0 means read, 1 means write
35 * bit 2 == 0 means kernel, 1 means user-mode
36 * bit 3 == 1 means use of reserved bit detected
37 * bit 4 == 1 means fault was an instruction fetch
38 */
39#define PF_PROT (1<<0)
40#define PF_WRITE (1<<1)
41#define PF_USER (1<<2)
42#define PF_RSVD (1<<3)
43#define PF_INSTR (1<<4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Christoph Hellwig74a0b572007-10-16 01:24:07 -070045static inline int notify_page_fault(struct pt_regs *regs)
Anil S Keshavamurthyb71b5b62006-06-26 00:25:25 -070046{
Harvey Harrison33cb5242008-01-30 13:32:19 +010047#ifdef CONFIG_KPROBES
Christoph Hellwig74a0b572007-10-16 01:24:07 -070048 int ret = 0;
Anil S Keshavamurthyb71b5b62006-06-26 00:25:25 -070049
Christoph Hellwig74a0b572007-10-16 01:24:07 -070050 /* kprobe_running() needs smp_processor_id() */
51 if (!user_mode_vm(regs)) {
52 preempt_disable();
53 if (kprobe_running() && kprobe_fault_handler(regs, 14))
54 ret = 1;
55 preempt_enable();
56 }
Anil S Keshavamurthyb71b5b62006-06-26 00:25:25 -070057
Christoph Hellwig74a0b572007-10-16 01:24:07 -070058 return ret;
Christoph Hellwig74a0b572007-10-16 01:24:07 -070059#else
Christoph Hellwig74a0b572007-10-16 01:24:07 -070060 return 0;
Christoph Hellwig74a0b572007-10-16 01:24:07 -070061#endif
Harvey Harrison33cb5242008-01-30 13:32:19 +010062}
Anil S Keshavamurthyb71b5b62006-06-26 00:25:25 -070063
Harvey Harrison33cb5242008-01-30 13:32:19 +010064/*
Harvey Harrison1dc85be2008-01-30 13:32:35 +010065 * X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
67 * Check that here and ignore it.
Harvey Harrison1dc85be2008-01-30 13:32:35 +010068 *
69 * X86_64
70 * Sometimes the CPU reports invalid exceptions on prefetch.
71 * Check that here and ignore it.
72 *
73 * Opcode checker based on code by Richard Brunner
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Harvey Harrison1dc85be2008-01-30 13:32:35 +010075static int is_prefetch(struct pt_regs *regs, unsigned long addr,
76 unsigned long error_code)
Harvey Harrison33cb5242008-01-30 13:32:19 +010077{
Harvey Harrison1dc85be2008-01-30 13:32:35 +010078 unsigned char *instr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int scan_more = 1;
Harvey Harrison33cb5242008-01-30 13:32:19 +010080 int prefetch = 0;
Harvey Harrison1dc85be2008-01-30 13:32:35 +010081 unsigned char *max_instr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Harvey Harrison1dc85be2008-01-30 13:32:35 +010083#ifdef CONFIG_X86_32
84 unsigned long limit;
85 if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
86 boot_cpu_data.x86 >= 6)) {
87 /* Catch an obscure case of prefetch inside an NX page. */
88 if (nx_enabled && (error_code & PF_INSTR))
89 return 0;
90 } else {
91 return 0;
92 }
93 instr = (unsigned char *)get_segment_eip(regs, &limit);
94#else
95 /* If it was a exec fault ignore */
96 if (error_code & PF_INSTR)
97 return 0;
98 instr = (unsigned char __user *)convert_rip_to_linear(current, regs);
99#endif
100
101 max_instr = instr + 15;
102
103#ifdef CONFIG_X86_64
104 if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
105 return 0;
106#endif
107
108 while (scan_more && instr < max_instr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 unsigned char opcode;
110 unsigned char instr_hi;
111 unsigned char instr_lo;
112
Harvey Harrison1dc85be2008-01-30 13:32:35 +0100113#ifdef CONFIG_X86_32
Andi Kleen11a41802006-12-07 02:14:06 +0100114 if (instr > (unsigned char *)limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
Harvey Harrison1dc85be2008-01-30 13:32:35 +0100116#endif
Andi Kleen11a41802006-12-07 02:14:06 +0100117 if (probe_kernel_address(instr, opcode))
Harvey Harrison33cb5242008-01-30 13:32:19 +0100118 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Harvey Harrison33cb5242008-01-30 13:32:19 +0100120 instr_hi = opcode & 0xf0;
121 instr_lo = opcode & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 instr++;
123
Harvey Harrison33cb5242008-01-30 13:32:19 +0100124 switch (instr_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 case 0x20:
126 case 0x30:
Harvey Harrison33cb5242008-01-30 13:32:19 +0100127 /*
128 * Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes.
129 * In X86_64 long mode, the CPU will signal invalid
130 * opcode if some of these prefixes are present so
131 * X86_64 will never get here anyway
132 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 scan_more = ((instr_lo & 7) == 0x6);
134 break;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100135#ifdef CONFIG_X86_64
136 case 0x40:
137 /*
138 * In AMD64 long mode 0x40..0x4F are valid REX prefixes
139 * Need to figure out under what instruction mode the
140 * instruction was issued. Could check the LDT for lm,
141 * but for now it's good enough to assume that long
142 * mode only uses well known segments or kernel.
143 */
144 scan_more = (!user_mode(regs)) || (regs->cs == __USER_CS);
145 break;
146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 case 0x60:
148 /* 0x64 thru 0x67 are valid prefixes in all modes. */
149 scan_more = (instr_lo & 0xC) == 0x4;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100150 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 case 0xF0:
Harvey Harrison33cb5242008-01-30 13:32:19 +0100152 /* 0xF0, 0xF2, 0xF3 are valid prefixes in all modes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 scan_more = !instr_lo || (instr_lo>>1) == 1;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 case 0x00:
156 /* Prefetch instruction is 0x0F0D or 0x0F18 */
157 scan_more = 0;
Harvey Harrison1dc85be2008-01-30 13:32:35 +0100158#ifdef CONFIG_X86_32
Andi Kleen11a41802006-12-07 02:14:06 +0100159 if (instr > (unsigned char *)limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
Harvey Harrison1dc85be2008-01-30 13:32:35 +0100161#endif
Andi Kleen11a41802006-12-07 02:14:06 +0100162 if (probe_kernel_address(instr, opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164 prefetch = (instr_lo == 0xF) &&
165 (opcode == 0x0D || opcode == 0x18);
Harvey Harrison33cb5242008-01-30 13:32:19 +0100166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 default:
168 scan_more = 0;
169 break;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 return prefetch;
173}
174
Harvey Harrisonc4aba4a2008-01-30 13:32:35 +0100175static void force_sig_info_fault(int si_signo, int si_code,
Ingo Molnar869f96a2005-09-03 15:56:26 -0700176 unsigned long address, struct task_struct *tsk)
177{
178 siginfo_t info;
179
180 info.si_signo = si_signo;
181 info.si_errno = 0;
182 info.si_code = si_code;
183 info.si_addr = (void __user *)address;
184 force_sig_info(si_signo, &info, tsk);
185}
186
Harvey Harrison75604d72008-01-30 13:31:17 +0100187void do_invalid_op(struct pt_regs *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Jan Beulich101f12a2006-03-23 02:59:45 -0800189static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
190{
191 unsigned index = pgd_index(address);
192 pgd_t *pgd_k;
193 pud_t *pud, *pud_k;
194 pmd_t *pmd, *pmd_k;
195
196 pgd += index;
197 pgd_k = init_mm.pgd + index;
198
199 if (!pgd_present(*pgd_k))
200 return NULL;
201
202 /*
203 * set_pgd(pgd, *pgd_k); here would be useless on PAE
204 * and redundant with the set_pmd() on non-PAE. As would
205 * set_pud.
206 */
207
208 pud = pud_offset(pgd, address);
209 pud_k = pud_offset(pgd_k, address);
210 if (!pud_present(*pud_k))
211 return NULL;
212
213 pmd = pmd_offset(pud, address);
214 pmd_k = pmd_offset(pud_k, address);
215 if (!pmd_present(*pmd_k))
216 return NULL;
Zachary Amsden8b14cb92007-08-21 18:30:36 -0700217 if (!pmd_present(*pmd)) {
Jan Beulich101f12a2006-03-23 02:59:45 -0800218 set_pmd(pmd, *pmd_k);
Zachary Amsden8b14cb92007-08-21 18:30:36 -0700219 arch_flush_lazy_mmu_mode();
220 } else
Jan Beulich101f12a2006-03-23 02:59:45 -0800221 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
222 return pmd_k;
223}
224
Harvey Harrison1dc85be2008-01-30 13:32:35 +0100225#ifdef CONFIG_X86_64
226static const char errata93_warning[] =
227KERN_ERR "******* Your BIOS seems to not contain a fix for K8 errata #93\n"
228KERN_ERR "******* Working around it, but it may cause SEGVs or burn power.\n"
229KERN_ERR "******* Please consider a BIOS update.\n"
230KERN_ERR "******* Disabling USB legacy in the BIOS may also help.\n";
231
232/* Workaround for K8 erratum #93 & buggy BIOS.
233 BIOS SMM functions are required to use a specific workaround
234 to avoid corruption of the 64bit RIP register on C stepping K8.
235 A lot of BIOS that didn't get tested properly miss this.
236 The OS sees this as a page fault with the upper 32bits of RIP cleared.
237 Try to work around it here.
238 Note we only handle faults in kernel here. */
239
240static int is_errata93(struct pt_regs *regs, unsigned long address)
241{
242 static int warned;
243 if (address != regs->ip)
244 return 0;
245 if ((address >> 32) != 0)
246 return 0;
247 address |= 0xffffffffUL << 32;
248 if ((address >= (u64)_stext && address <= (u64)_etext) ||
249 (address >= MODULES_VADDR && address <= MODULES_END)) {
250 if (!warned) {
251 printk(errata93_warning);
252 warned = 1;
253 }
254 regs->ip = address;
255 return 1;
256 }
257 return 0;
258}
259#endif
260
Jan Beulich101f12a2006-03-23 02:59:45 -0800261/*
262 * Handle a fault on the vmalloc or module mapping area
263 *
264 * This assumes no large pages in there.
265 */
266static inline int vmalloc_fault(unsigned long address)
267{
268 unsigned long pgd_paddr;
269 pmd_t *pmd_k;
270 pte_t *pte_k;
271 /*
272 * Synchronize this task's top level page-table
273 * with the 'reference' page table.
274 *
275 * Do _not_ use "current" here. We might be inside
276 * an interrupt in the middle of a task switch..
277 */
278 pgd_paddr = read_cr3();
279 pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
280 if (!pmd_k)
281 return -1;
282 pte_k = pte_offset_kernel(pmd_k, address);
283 if (!pte_present(*pte_k))
284 return -1;
285 return 0;
286}
287
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200288int show_unhandled_signals = 1;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
291 * This routine handles page faults. It determines the address,
292 * and the problem, and then passes it off to one of the appropriate
293 * routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100295void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct task_struct *tsk;
298 struct mm_struct *mm;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100299 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 unsigned long address;
Ingo Molnar869f96a2005-09-03 15:56:26 -0700301 int write, si_code;
Nick Piggin83c54072007-07-19 01:47:05 -0700302 int fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Peter Zijlstra143a5d32007-10-25 14:01:10 +0200304 /*
305 * We can fault from pretty much anywhere, with unknown IRQ state.
306 */
307 trace_hardirqs_fixup();
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* get the address */
Harvey Harrison33cb5242008-01-30 13:32:19 +0100310 address = read_cr2();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 tsk = current;
313
Ingo Molnar869f96a2005-09-03 15:56:26 -0700314 si_code = SEGV_MAPERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /*
317 * We fault-in kernel-space virtual memory on-demand. The
318 * 'reference' page table is init_mm.pgd.
319 *
320 * NOTE! We MUST NOT take any locks for this case. We may
321 * be in an interrupt or a critical region, and should
322 * only copy the information from the master page table,
323 * nothing more.
324 *
325 * This verifies that the fault happens in kernel space
326 * (error_code & 4) == 0, and that the fault was not a
Jan Beulich101f12a2006-03-23 02:59:45 -0800327 * protection error (error_code & 9) == 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Jan Beulich101f12a2006-03-23 02:59:45 -0800329 if (unlikely(address >= TASK_SIZE)) {
Harvey Harrison318aa292008-01-30 13:32:59 +0100330 if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) &&
331 vmalloc_fault(address) >= 0)
Jan Beulich101f12a2006-03-23 02:59:45 -0800332 return;
Christoph Hellwig74a0b572007-10-16 01:24:07 -0700333 if (notify_page_fault(regs))
Jan Beulich101f12a2006-03-23 02:59:45 -0800334 return;
335 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * Don't take the mm semaphore here. If we fixup a prefetch
337 * fault we could otherwise deadlock.
338 */
339 goto bad_area_nosemaphore;
Jan Beulich101f12a2006-03-23 02:59:45 -0800340 }
341
Christoph Hellwig74a0b572007-10-16 01:24:07 -0700342 if (notify_page_fault(regs))
Jan Beulich101f12a2006-03-23 02:59:45 -0800343 return;
344
345 /* It's safe to allow irq's after cr2 has been saved and the vmalloc
346 fault has been handled. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100347 if (regs->flags & (X86_EFLAGS_IF|VM_MASK))
Jan Beulich101f12a2006-03-23 02:59:45 -0800348 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 mm = tsk->mm;
351
352 /*
353 * If we're in an interrupt, have no user context or are running in an
Harvey Harrison33cb5242008-01-30 13:32:19 +0100354 * atomic region then we must not take the fault.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
356 if (in_atomic() || !mm)
357 goto bad_area_nosemaphore;
358
359 /* When running in the kernel we expect faults to occur only to
360 * addresses in user space. All other faults represent errors in the
Simon Arlott27b46d72007-10-20 01:13:56 +0200361 * kernel and should generate an OOPS. Unfortunately, in the case of an
Adrian Bunk80f72282006-06-30 18:27:16 +0200362 * erroneous fault occurring in a code path which already holds mmap_sem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * we will deadlock attempting to validate the fault against the
364 * address space. Luckily the kernel only validly references user
365 * space from well defined areas of code, which are listed in the
366 * exceptions table.
367 *
368 * As the vast majority of faults will be valid we will only perform
Simon Arlott27b46d72007-10-20 01:13:56 +0200369 * the source reference check when there is a possibility of a deadlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * Attempt to lock the address space, if we cannot we then validate the
371 * source. If this is invalid we can skip the address space check,
372 * thus avoiding the deadlock.
373 */
374 if (!down_read_trylock(&mm->mmap_sem)) {
Harvey Harrison33cb5242008-01-30 13:32:19 +0100375 if ((error_code & PF_USER) == 0 &&
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100376 !search_exception_tables(regs->ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 goto bad_area_nosemaphore;
378 down_read(&mm->mmap_sem);
379 }
380
381 vma = find_vma(mm, address);
382 if (!vma)
383 goto bad_area;
384 if (vma->vm_start <= address)
385 goto good_area;
386 if (!(vma->vm_flags & VM_GROWSDOWN))
387 goto bad_area;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100388 if (error_code & PF_USER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /*
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100390 * Accessing the stack below %sp is always a bug.
Chuck Ebbert21528452006-06-23 02:04:23 -0700391 * The large cushion allows instructions like enter
392 * and pusha to work. ("enter $65535,$31" pushes
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100393 * 32 pointers and then decrements %sp by 65535.)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100395 if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto bad_area;
397 }
398 if (expand_stack(vma, address))
399 goto bad_area;
400/*
401 * Ok, we have a good vm_area for this memory access, so
402 * we can handle it..
403 */
404good_area:
Ingo Molnar869f96a2005-09-03 15:56:26 -0700405 si_code = SEGV_ACCERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 write = 0;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100407 switch (error_code & (PF_PROT|PF_WRITE)) {
408 default: /* 3: write, present */
409 /* fall through */
410 case PF_WRITE: /* write, not present */
411 if (!(vma->vm_flags & VM_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto bad_area;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100413 write++;
414 break;
415 case PF_PROT: /* read, present */
416 goto bad_area;
417 case 0: /* read, not present */
418 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
419 goto bad_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 survive:
423 /*
424 * If for any reason at all we couldn't handle the fault,
425 * make sure we exit gracefully rather than endlessly redo
426 * the fault.
427 */
Nick Piggin83c54072007-07-19 01:47:05 -0700428 fault = handle_mm_fault(mm, vma, address, write);
429 if (unlikely(fault & VM_FAULT_ERROR)) {
430 if (fault & VM_FAULT_OOM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 goto out_of_memory;
Nick Piggin83c54072007-07-19 01:47:05 -0700432 else if (fault & VM_FAULT_SIGBUS)
433 goto do_sigbus;
434 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Nick Piggin83c54072007-07-19 01:47:05 -0700436 if (fault & VM_FAULT_MAJOR)
437 tsk->maj_flt++;
438 else
439 tsk->min_flt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /*
442 * Did it hit the DOS screen memory VA from vm86 mode?
443 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100444 if (regs->flags & VM_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
446 if (bit < 32)
447 tsk->thread.screen_bitmap |= 1 << bit;
448 }
449 up_read(&mm->mmap_sem);
450 return;
451
452/*
453 * Something tried to access memory that isn't in our memory map..
454 * Fix it, but check if it's kernel or user first..
455 */
456bad_area:
457 up_read(&mm->mmap_sem);
458
459bad_area_nosemaphore:
460 /* User mode accesses just cause a SIGSEGV */
Harvey Harrison33cb5242008-01-30 13:32:19 +0100461 if (error_code & PF_USER) {
Steven Rostedte5e3c842007-06-06 23:34:04 -0400462 /*
463 * It's possible to have interrupts off here.
464 */
465 local_irq_enable();
466
Harvey Harrison33cb5242008-01-30 13:32:19 +0100467 /*
468 * Valid to do another page fault here because this one came
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * from user space.
470 */
471 if (is_prefetch(regs, address, error_code))
472 return;
473
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200474 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
475 printk_ratelimit()) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100476 printk("%s%s[%d]: segfault at %08lx ip %08lx "
477 "sp %08lx error %lx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700478 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100479 tsk->comm, task_pid_nr(tsk), address, regs->ip,
480 regs->sp, error_code);
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 tsk->thread.cr2 = address;
483 /* Kernel addresses are always protection faults */
484 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
485 tsk->thread.trap_no = 14;
Ingo Molnar869f96a2005-09-03 15:56:26 -0700486 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return;
488 }
489
490#ifdef CONFIG_X86_F00F_BUG
491 /*
492 * Pentium F0 0F C7 C8 bug workaround.
493 */
494 if (boot_cpu_data.f00f_bug) {
495 unsigned long nr;
Harvey Harrison33cb5242008-01-30 13:32:19 +0100496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 nr = (address - idt_descr.address) >> 3;
498
499 if (nr == 6) {
500 do_invalid_op(regs, 0);
501 return;
502 }
503 }
504#endif
505
506no_context:
507 /* Are we prepared to handle this kernel fault? */
508 if (fixup_exception(regs))
509 return;
510
Harvey Harrison33cb5242008-01-30 13:32:19 +0100511 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * Valid to do another page fault here, because if this fault
Harvey Harrison33cb5242008-01-30 13:32:19 +0100513 * had been triggered by is_prefetch fixup_exception would have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * handled it.
515 */
Harvey Harrison33cb5242008-01-30 13:32:19 +0100516 if (is_prefetch(regs, address, error_code))
517 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519/*
520 * Oops. The kernel tried to access some bad page. We'll have to
521 * terminate things with extreme prejudice.
522 */
523
524 bust_spinlocks(1);
525
Andrew Mortondd287792006-03-23 03:00:57 -0800526 if (oops_may_print()) {
Jan Beulich28609f62007-05-02 19:27:04 +0200527 __typeof__(pte_val(__pte(0))) page;
528
529#ifdef CONFIG_X86_PAE
Harvey Harrison318aa292008-01-30 13:32:59 +0100530 if (error_code & PF_INSTR) {
Andrew Mortondd287792006-03-23 03:00:57 -0800531 pte_t *pte = lookup_address(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Andrew Mortondd287792006-03-23 03:00:57 -0800533 if (pte && pte_present(*pte) && !pte_exec_kernel(*pte))
534 printk(KERN_CRIT "kernel tried to execute "
535 "NX-protected page - exploit attempt? "
536 "(uid: %d)\n", current->uid);
537 }
Jan Beulich28609f62007-05-02 19:27:04 +0200538#endif
Andrew Mortondd287792006-03-23 03:00:57 -0800539 if (address < PAGE_SIZE)
540 printk(KERN_ALERT "BUG: unable to handle kernel NULL "
541 "pointer dereference");
542 else
543 printk(KERN_ALERT "BUG: unable to handle kernel paging"
544 " request");
Harvey Harrison33cb5242008-01-30 13:32:19 +0100545 printk(" at virtual address %08lx\n", address);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100546 printk(KERN_ALERT "printing ip: %08lx ", regs->ip);
Jan Beulich28609f62007-05-02 19:27:04 +0200547
548 page = read_cr3();
549 page = ((__typeof__(page) *) __va(page))[address >> PGDIR_SHIFT];
550#ifdef CONFIG_X86_PAE
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200551 printk("*pdpt = %016Lx ", page);
Jan Beulich28609f62007-05-02 19:27:04 +0200552 if ((page >> PAGE_SHIFT) < max_low_pfn
553 && page & _PAGE_PRESENT) {
554 page &= PAGE_MASK;
555 page = ((__typeof__(page) *) __va(page))[(address >> PMD_SHIFT)
556 & (PTRS_PER_PMD - 1)];
Alexey Dobriyaneec407c2007-10-24 12:58:02 +0200557 printk(KERN_CONT "*pde = %016Lx ", page);
Jan Beulich28609f62007-05-02 19:27:04 +0200558 page &= ~_PAGE_NX;
559 }
560#else
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200561 printk("*pde = %08lx ", page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562#endif
Jan Beulich28609f62007-05-02 19:27:04 +0200563
564 /*
565 * We must not directly access the pte in the highpte
566 * case if the page table is located in highmem.
567 * And let's rather not kmap-atomic the pte, just in case
568 * it's allocated already.
569 */
570 if ((page >> PAGE_SHIFT) < max_low_pfn
Jan Beulichb1992df2007-10-19 20:35:03 +0200571 && (page & _PAGE_PRESENT)
572 && !(page & _PAGE_PSE)) {
Jan Beulich28609f62007-05-02 19:27:04 +0200573 page &= PAGE_MASK;
574 page = ((__typeof__(page) *) __va(page))[(address >> PAGE_SHIFT)
575 & (PTRS_PER_PTE - 1)];
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200576 printk("*pte = %0*Lx ", sizeof(page)*2, (u64)page);
Jan Beulich28609f62007-05-02 19:27:04 +0200577 }
Pavel Emelyanov9aa8d712007-10-17 18:04:40 +0200578
579 printk("\n");
Jan Beulich28609f62007-05-02 19:27:04 +0200580 }
581
Alexander Nyberg4f339ec2005-06-25 14:58:27 -0700582 tsk->thread.cr2 = address;
583 tsk->thread.trap_no = 14;
584 tsk->thread.error_code = error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 die("Oops", regs, error_code);
586 bust_spinlocks(0);
587 do_exit(SIGKILL);
588
589/*
590 * We ran out of memory, or some other thing happened to us that made
591 * us unable to handle the page fault gracefully.
592 */
593out_of_memory:
594 up_read(&mm->mmap_sem);
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700595 if (is_global_init(tsk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 yield();
597 down_read(&mm->mmap_sem);
598 goto survive;
599 }
600 printk("VM: killing process %s\n", tsk->comm);
Harvey Harrison318aa292008-01-30 13:32:59 +0100601 if (error_code & PF_USER)
Will Schmidtdcca2bd2007-10-16 01:24:18 -0700602 do_group_exit(SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto no_context;
604
605do_sigbus:
606 up_read(&mm->mmap_sem);
607
608 /* Kernel mode? Handle exceptions or die */
Harvey Harrison33cb5242008-01-30 13:32:19 +0100609 if (!(error_code & PF_USER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto no_context;
611
612 /* User space => ok to do another page fault */
613 if (is_prefetch(regs, address, error_code))
614 return;
615
616 tsk->thread.cr2 = address;
617 tsk->thread.error_code = error_code;
618 tsk->thread.trap_no = 14;
Ingo Molnar869f96a2005-09-03 15:56:26 -0700619 force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
Jan Beulich101f12a2006-03-23 02:59:45 -0800620}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Jan Beulich101f12a2006-03-23 02:59:45 -0800622void vmalloc_sync_all(void)
623{
624 /*
625 * Note that races in the updates of insync and start aren't
626 * problematic: insync can only get set bits added, and updates to
627 * start are only improving performance (without affecting correctness
628 * if undone).
629 */
630 static DECLARE_BITMAP(insync, PTRS_PER_PGD);
631 static unsigned long start = TASK_SIZE;
632 unsigned long address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jeremy Fitzhardinge5311ab62007-05-02 19:27:13 +0200634 if (SHARED_KERNEL_PMD)
635 return;
636
Jan Beulich101f12a2006-03-23 02:59:45 -0800637 BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
638 for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
639 if (!test_bit(pgd_index(address), insync)) {
640 unsigned long flags;
641 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Jan Beulich101f12a2006-03-23 02:59:45 -0800643 spin_lock_irqsave(&pgd_lock, flags);
644 for (page = pgd_list; page; page =
645 (struct page *)page->index)
646 if (!vmalloc_sync_one(page_address(page),
647 address)) {
648 BUG_ON(page != pgd_list);
649 break;
650 }
651 spin_unlock_irqrestore(&pgd_lock, flags);
652 if (!page)
653 set_bit(pgd_index(address), insync);
654 }
655 if (address == start && test_bit(pgd_index(address), insync))
656 start = address + PGDIR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658}