Merge commit 'linus/master' into tracing/kprobes
[platform/adaptation/renesas_rcar/renesas_kernel.git] / arch / x86 / mm / fault.c
1 /*
2  *  Copyright (C) 1995  Linus Torvalds
3  *  Copyright (C) 2001, 2002 Andi Kleen, SuSE Labs.
4  *  Copyright (C) 2008-2009, Red Hat Inc., Ingo Molnar
5  */
6 #include <linux/magic.h>                /* STACK_END_MAGIC              */
7 #include <linux/sched.h>                /* test_thread_flag(), ...      */
8 #include <linux/kdebug.h>               /* oops_begin/end, ...          */
9 #include <linux/module.h>               /* search_exception_table       */
10 #include <linux/bootmem.h>              /* max_low_pfn                  */
11 #include <linux/kprobes.h>              /* __kprobes, ...               */
12 #include <linux/mmiotrace.h>            /* kmmio_handler, ...           */
13 #include <linux/perf_event.h>           /* perf_sw_event                */
14
15 #include <asm/traps.h>                  /* dotraplinkage, ...           */
16 #include <asm/pgalloc.h>                /* pgd_*(), ...                 */
17 #include <asm/kmemcheck.h>              /* kmemcheck_*(), ...           */
18
19 /*
20  * Page fault error code bits:
21  *
22  *   bit 0 ==    0: no page found       1: protection fault
23  *   bit 1 ==    0: read access         1: write access
24  *   bit 2 ==    0: kernel-mode access  1: user-mode access
25  *   bit 3 ==                           1: use of reserved bit detected
26  *   bit 4 ==                           1: fault was an instruction fetch
27  */
28 enum x86_pf_error_code {
29
30         PF_PROT         =               1 << 0,
31         PF_WRITE        =               1 << 1,
32         PF_USER         =               1 << 2,
33         PF_RSVD         =               1 << 3,
34         PF_INSTR        =               1 << 4,
35 };
36
37 /*
38  * Returns 0 if mmiotrace is disabled, or if the fault is not
39  * handled by mmiotrace:
40  */
41 static inline int __kprobes
42 kmmio_fault(struct pt_regs *regs, unsigned long addr)
43 {
44         if (unlikely(is_kmmio_active()))
45                 if (kmmio_handler(regs, addr) == 1)
46                         return -1;
47         return 0;
48 }
49
50 static inline int __kprobes notify_page_fault(struct pt_regs *regs)
51 {
52         int ret = 0;
53
54         /* kprobe_running() needs smp_processor_id() */
55         if (kprobes_built_in() && !user_mode_vm(regs)) {
56                 preempt_disable();
57                 if (kprobe_running() && kprobe_fault_handler(regs, 14))
58                         ret = 1;
59                 preempt_enable();
60         }
61
62         return ret;
63 }
64
65 /*
66  * Prefetch quirks:
67  *
68  * 32-bit mode:
69  *
70  *   Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
71  *   Check that here and ignore it.
72  *
73  * 64-bit mode:
74  *
75  *   Sometimes the CPU reports invalid exceptions on prefetch.
76  *   Check that here and ignore it.
77  *
78  * Opcode checker based on code by Richard Brunner.
79  */
80 static inline int
81 check_prefetch_opcode(struct pt_regs *regs, unsigned char *instr,
82                       unsigned char opcode, int *prefetch)
83 {
84         unsigned char instr_hi = opcode & 0xf0;
85         unsigned char instr_lo = opcode & 0x0f;
86
87         switch (instr_hi) {
88         case 0x20:
89         case 0x30:
90                 /*
91                  * Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes.
92                  * In X86_64 long mode, the CPU will signal invalid
93                  * opcode if some of these prefixes are present so
94                  * X86_64 will never get here anyway
95                  */
96                 return ((instr_lo & 7) == 0x6);
97 #ifdef CONFIG_X86_64
98         case 0x40:
99                 /*
100                  * In AMD64 long mode 0x40..0x4F are valid REX prefixes
101                  * Need to figure out under what instruction mode the
102                  * instruction was issued. Could check the LDT for lm,
103                  * but for now it's good enough to assume that long
104                  * mode only uses well known segments or kernel.
105                  */
106                 return (!user_mode(regs)) || (regs->cs == __USER_CS);
107 #endif
108         case 0x60:
109                 /* 0x64 thru 0x67 are valid prefixes in all modes. */
110                 return (instr_lo & 0xC) == 0x4;
111         case 0xF0:
112                 /* 0xF0, 0xF2, 0xF3 are valid prefixes in all modes. */
113                 return !instr_lo || (instr_lo>>1) == 1;
114         case 0x00:
115                 /* Prefetch instruction is 0x0F0D or 0x0F18 */
116                 if (probe_kernel_address(instr, opcode))
117                         return 0;
118
119                 *prefetch = (instr_lo == 0xF) &&
120                         (opcode == 0x0D || opcode == 0x18);
121                 return 0;
122         default:
123                 return 0;
124         }
125 }
126
127 static int
128 is_prefetch(struct pt_regs *regs, unsigned long error_code, unsigned long addr)
129 {
130         unsigned char *max_instr;
131         unsigned char *instr;
132         int prefetch = 0;
133
134         /*
135          * If it was a exec (instruction fetch) fault on NX page, then
136          * do not ignore the fault:
137          */
138         if (error_code & PF_INSTR)
139                 return 0;
140
141         instr = (void *)convert_ip_to_linear(current, regs);
142         max_instr = instr + 15;
143
144         if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
145                 return 0;
146
147         while (instr < max_instr) {
148                 unsigned char opcode;
149
150                 if (probe_kernel_address(instr, opcode))
151                         break;
152
153                 instr++;
154
155                 if (!check_prefetch_opcode(regs, instr, opcode, &prefetch))
156                         break;
157         }
158         return prefetch;
159 }
160
161 static void
162 force_sig_info_fault(int si_signo, int si_code, unsigned long address,
163                      struct task_struct *tsk)
164 {
165         siginfo_t info;
166
167         info.si_signo   = si_signo;
168         info.si_errno   = 0;
169         info.si_code    = si_code;
170         info.si_addr    = (void __user *)address;
171
172         force_sig_info(si_signo, &info, tsk);
173 }
174
175 DEFINE_SPINLOCK(pgd_lock);
176 LIST_HEAD(pgd_list);
177
178 #ifdef CONFIG_X86_32
179 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
180 {
181         unsigned index = pgd_index(address);
182         pgd_t *pgd_k;
183         pud_t *pud, *pud_k;
184         pmd_t *pmd, *pmd_k;
185
186         pgd += index;
187         pgd_k = init_mm.pgd + index;
188
189         if (!pgd_present(*pgd_k))
190                 return NULL;
191
192         /*
193          * set_pgd(pgd, *pgd_k); here would be useless on PAE
194          * and redundant with the set_pmd() on non-PAE. As would
195          * set_pud.
196          */
197         pud = pud_offset(pgd, address);
198         pud_k = pud_offset(pgd_k, address);
199         if (!pud_present(*pud_k))
200                 return NULL;
201
202         pmd = pmd_offset(pud, address);
203         pmd_k = pmd_offset(pud_k, address);
204         if (!pmd_present(*pmd_k))
205                 return NULL;
206
207         if (!pmd_present(*pmd))
208                 set_pmd(pmd, *pmd_k);
209         else
210                 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
211
212         return pmd_k;
213 }
214
215 void vmalloc_sync_all(void)
216 {
217         unsigned long address;
218
219         if (SHARED_KERNEL_PMD)
220                 return;
221
222         for (address = VMALLOC_START & PMD_MASK;
223              address >= TASK_SIZE && address < FIXADDR_TOP;
224              address += PMD_SIZE) {
225
226                 unsigned long flags;
227                 struct page *page;
228
229                 spin_lock_irqsave(&pgd_lock, flags);
230                 list_for_each_entry(page, &pgd_list, lru) {
231                         if (!vmalloc_sync_one(page_address(page), address))
232                                 break;
233                 }
234                 spin_unlock_irqrestore(&pgd_lock, flags);
235         }
236 }
237
238 /*
239  * 32-bit:
240  *
241  *   Handle a fault on the vmalloc or module mapping area
242  */
243 static noinline __kprobes int vmalloc_fault(unsigned long address)
244 {
245         unsigned long pgd_paddr;
246         pmd_t *pmd_k;
247         pte_t *pte_k;
248
249         /* Make sure we are in vmalloc area: */
250         if (!(address >= VMALLOC_START && address < VMALLOC_END))
251                 return -1;
252
253         /*
254          * Synchronize this task's top level page-table
255          * with the 'reference' page table.
256          *
257          * Do _not_ use "current" here. We might be inside
258          * an interrupt in the middle of a task switch..
259          */
260         pgd_paddr = read_cr3();
261         pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
262         if (!pmd_k)
263                 return -1;
264
265         pte_k = pte_offset_kernel(pmd_k, address);
266         if (!pte_present(*pte_k))
267                 return -1;
268
269         return 0;
270 }
271
272 /*
273  * Did it hit the DOS screen memory VA from vm86 mode?
274  */
275 static inline void
276 check_v8086_mode(struct pt_regs *regs, unsigned long address,
277                  struct task_struct *tsk)
278 {
279         unsigned long bit;
280
281         if (!v8086_mode(regs))
282                 return;
283
284         bit = (address - 0xA0000) >> PAGE_SHIFT;
285         if (bit < 32)
286                 tsk->thread.screen_bitmap |= 1 << bit;
287 }
288
289 static bool low_pfn(unsigned long pfn)
290 {
291         return pfn < max_low_pfn;
292 }
293
294 static void dump_pagetable(unsigned long address)
295 {
296         pgd_t *base = __va(read_cr3());
297         pgd_t *pgd = &base[pgd_index(address)];
298         pmd_t *pmd;
299         pte_t *pte;
300
301 #ifdef CONFIG_X86_PAE
302         printk("*pdpt = %016Lx ", pgd_val(*pgd));
303         if (!low_pfn(pgd_val(*pgd) >> PAGE_SHIFT) || !pgd_present(*pgd))
304                 goto out;
305 #endif
306         pmd = pmd_offset(pud_offset(pgd, address), address);
307         printk(KERN_CONT "*pde = %0*Lx ", sizeof(*pmd) * 2, (u64)pmd_val(*pmd));
308
309         /*
310          * We must not directly access the pte in the highpte
311          * case if the page table is located in highmem.
312          * And let's rather not kmap-atomic the pte, just in case
313          * it's allocated already:
314          */
315         if (!low_pfn(pmd_pfn(*pmd)) || !pmd_present(*pmd) || pmd_large(*pmd))
316                 goto out;
317
318         pte = pte_offset_kernel(pmd, address);
319         printk("*pte = %0*Lx ", sizeof(*pte) * 2, (u64)pte_val(*pte));
320 out:
321         printk("\n");
322 }
323
324 #else /* CONFIG_X86_64: */
325
326 void vmalloc_sync_all(void)
327 {
328         unsigned long address;
329
330         for (address = VMALLOC_START & PGDIR_MASK; address <= VMALLOC_END;
331              address += PGDIR_SIZE) {
332
333                 const pgd_t *pgd_ref = pgd_offset_k(address);
334                 unsigned long flags;
335                 struct page *page;
336
337                 if (pgd_none(*pgd_ref))
338                         continue;
339
340                 spin_lock_irqsave(&pgd_lock, flags);
341                 list_for_each_entry(page, &pgd_list, lru) {
342                         pgd_t *pgd;
343                         pgd = (pgd_t *)page_address(page) + pgd_index(address);
344                         if (pgd_none(*pgd))
345                                 set_pgd(pgd, *pgd_ref);
346                         else
347                                 BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
348                 }
349                 spin_unlock_irqrestore(&pgd_lock, flags);
350         }
351 }
352
353 /*
354  * 64-bit:
355  *
356  *   Handle a fault on the vmalloc area
357  *
358  * This assumes no large pages in there.
359  */
360 static noinline __kprobes int vmalloc_fault(unsigned long address)
361 {
362         pgd_t *pgd, *pgd_ref;
363         pud_t *pud, *pud_ref;
364         pmd_t *pmd, *pmd_ref;
365         pte_t *pte, *pte_ref;
366
367         /* Make sure we are in vmalloc area: */
368         if (!(address >= VMALLOC_START && address < VMALLOC_END))
369                 return -1;
370
371         /*
372          * Copy kernel mappings over when needed. This can also
373          * happen within a race in page table update. In the later
374          * case just flush:
375          */
376         pgd = pgd_offset(current->active_mm, address);
377         pgd_ref = pgd_offset_k(address);
378         if (pgd_none(*pgd_ref))
379                 return -1;
380
381         if (pgd_none(*pgd))
382                 set_pgd(pgd, *pgd_ref);
383         else
384                 BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
385
386         /*
387          * Below here mismatches are bugs because these lower tables
388          * are shared:
389          */
390
391         pud = pud_offset(pgd, address);
392         pud_ref = pud_offset(pgd_ref, address);
393         if (pud_none(*pud_ref))
394                 return -1;
395
396         if (pud_none(*pud) || pud_page_vaddr(*pud) != pud_page_vaddr(*pud_ref))
397                 BUG();
398
399         pmd = pmd_offset(pud, address);
400         pmd_ref = pmd_offset(pud_ref, address);
401         if (pmd_none(*pmd_ref))
402                 return -1;
403
404         if (pmd_none(*pmd) || pmd_page(*pmd) != pmd_page(*pmd_ref))
405                 BUG();
406
407         pte_ref = pte_offset_kernel(pmd_ref, address);
408         if (!pte_present(*pte_ref))
409                 return -1;
410
411         pte = pte_offset_kernel(pmd, address);
412
413         /*
414          * Don't use pte_page here, because the mappings can point
415          * outside mem_map, and the NUMA hash lookup cannot handle
416          * that:
417          */
418         if (!pte_present(*pte) || pte_pfn(*pte) != pte_pfn(*pte_ref))
419                 BUG();
420
421         return 0;
422 }
423
424 static const char errata93_warning[] =
425 KERN_ERR 
426 "******* Your BIOS seems to not contain a fix for K8 errata #93\n"
427 "******* Working around it, but it may cause SEGVs or burn power.\n"
428 "******* Please consider a BIOS update.\n"
429 "******* Disabling USB legacy in the BIOS may also help.\n";
430
431 /*
432  * No vm86 mode in 64-bit mode:
433  */
434 static inline void
435 check_v8086_mode(struct pt_regs *regs, unsigned long address,
436                  struct task_struct *tsk)
437 {
438 }
439
440 static int bad_address(void *p)
441 {
442         unsigned long dummy;
443
444         return probe_kernel_address((unsigned long *)p, dummy);
445 }
446
447 static void dump_pagetable(unsigned long address)
448 {
449         pgd_t *base = __va(read_cr3() & PHYSICAL_PAGE_MASK);
450         pgd_t *pgd = base + pgd_index(address);
451         pud_t *pud;
452         pmd_t *pmd;
453         pte_t *pte;
454
455         if (bad_address(pgd))
456                 goto bad;
457
458         printk("PGD %lx ", pgd_val(*pgd));
459
460         if (!pgd_present(*pgd))
461                 goto out;
462
463         pud = pud_offset(pgd, address);
464         if (bad_address(pud))
465                 goto bad;
466
467         printk("PUD %lx ", pud_val(*pud));
468         if (!pud_present(*pud) || pud_large(*pud))
469                 goto out;
470
471         pmd = pmd_offset(pud, address);
472         if (bad_address(pmd))
473                 goto bad;
474
475         printk("PMD %lx ", pmd_val(*pmd));
476         if (!pmd_present(*pmd) || pmd_large(*pmd))
477                 goto out;
478
479         pte = pte_offset_kernel(pmd, address);
480         if (bad_address(pte))
481                 goto bad;
482
483         printk("PTE %lx", pte_val(*pte));
484 out:
485         printk("\n");
486         return;
487 bad:
488         printk("BAD\n");
489 }
490
491 #endif /* CONFIG_X86_64 */
492
493 /*
494  * Workaround for K8 erratum #93 & buggy BIOS.
495  *
496  * BIOS SMM functions are required to use a specific workaround
497  * to avoid corruption of the 64bit RIP register on C stepping K8.
498  *
499  * A lot of BIOS that didn't get tested properly miss this.
500  *
501  * The OS sees this as a page fault with the upper 32bits of RIP cleared.
502  * Try to work around it here.
503  *
504  * Note we only handle faults in kernel here.
505  * Does nothing on 32-bit.
506  */
507 static int is_errata93(struct pt_regs *regs, unsigned long address)
508 {
509 #ifdef CONFIG_X86_64
510         if (address != regs->ip)
511                 return 0;
512
513         if ((address >> 32) != 0)
514                 return 0;
515
516         address |= 0xffffffffUL << 32;
517         if ((address >= (u64)_stext && address <= (u64)_etext) ||
518             (address >= MODULES_VADDR && address <= MODULES_END)) {
519                 printk_once(errata93_warning);
520                 regs->ip = address;
521                 return 1;
522         }
523 #endif
524         return 0;
525 }
526
527 /*
528  * Work around K8 erratum #100 K8 in compat mode occasionally jumps
529  * to illegal addresses >4GB.
530  *
531  * We catch this in the page fault handler because these addresses
532  * are not reachable. Just detect this case and return.  Any code
533  * segment in LDT is compatibility mode.
534  */
535 static int is_errata100(struct pt_regs *regs, unsigned long address)
536 {
537 #ifdef CONFIG_X86_64
538         if ((regs->cs == __USER32_CS || (regs->cs & (1<<2))) && (address >> 32))
539                 return 1;
540 #endif
541         return 0;
542 }
543
544 static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
545 {
546 #ifdef CONFIG_X86_F00F_BUG
547         unsigned long nr;
548
549         /*
550          * Pentium F0 0F C7 C8 bug workaround:
551          */
552         if (boot_cpu_data.f00f_bug) {
553                 nr = (address - idt_descr.address) >> 3;
554
555                 if (nr == 6) {
556                         do_invalid_op(regs, 0);
557                         return 1;
558                 }
559         }
560 #endif
561         return 0;
562 }
563
564 static const char nx_warning[] = KERN_CRIT
565 "kernel tried to execute NX-protected page - exploit attempt? (uid: %d)\n";
566
567 static void
568 show_fault_oops(struct pt_regs *regs, unsigned long error_code,
569                 unsigned long address)
570 {
571         if (!oops_may_print())
572                 return;
573
574         if (error_code & PF_INSTR) {
575                 unsigned int level;
576
577                 pte_t *pte = lookup_address(address, &level);
578
579                 if (pte && pte_present(*pte) && !pte_exec(*pte))
580                         printk(nx_warning, current_uid());
581         }
582
583         printk(KERN_ALERT "BUG: unable to handle kernel ");
584         if (address < PAGE_SIZE)
585                 printk(KERN_CONT "NULL pointer dereference");
586         else
587                 printk(KERN_CONT "paging request");
588
589         printk(KERN_CONT " at %p\n", (void *) address);
590         printk(KERN_ALERT "IP:");
591         printk_address(regs->ip, 1);
592
593         dump_pagetable(address);
594 }
595
596 static noinline void
597 pgtable_bad(struct pt_regs *regs, unsigned long error_code,
598             unsigned long address)
599 {
600         struct task_struct *tsk;
601         unsigned long flags;
602         int sig;
603
604         flags = oops_begin();
605         tsk = current;
606         sig = SIGKILL;
607
608         printk(KERN_ALERT "%s: Corrupted page table at address %lx\n",
609                tsk->comm, address);
610         dump_pagetable(address);
611
612         tsk->thread.cr2         = address;
613         tsk->thread.trap_no     = 14;
614         tsk->thread.error_code  = error_code;
615
616         if (__die("Bad pagetable", regs, error_code))
617                 sig = 0;
618
619         oops_end(flags, regs, sig);
620 }
621
622 static noinline void
623 no_context(struct pt_regs *regs, unsigned long error_code,
624            unsigned long address)
625 {
626         struct task_struct *tsk = current;
627         unsigned long *stackend;
628         unsigned long flags;
629         int sig;
630
631         /* Are we prepared to handle this kernel fault? */
632         if (fixup_exception(regs))
633                 return;
634
635         /*
636          * 32-bit:
637          *
638          *   Valid to do another page fault here, because if this fault
639          *   had been triggered by is_prefetch fixup_exception would have
640          *   handled it.
641          *
642          * 64-bit:
643          *
644          *   Hall of shame of CPU/BIOS bugs.
645          */
646         if (is_prefetch(regs, error_code, address))
647                 return;
648
649         if (is_errata93(regs, address))
650                 return;
651
652         /*
653          * Oops. The kernel tried to access some bad page. We'll have to
654          * terminate things with extreme prejudice:
655          */
656         flags = oops_begin();
657
658         show_fault_oops(regs, error_code, address);
659
660         stackend = end_of_stack(tsk);
661         if (*stackend != STACK_END_MAGIC)
662                 printk(KERN_ALERT "Thread overran stack, or stack corrupted\n");
663
664         tsk->thread.cr2         = address;
665         tsk->thread.trap_no     = 14;
666         tsk->thread.error_code  = error_code;
667
668         sig = SIGKILL;
669         if (__die("Oops", regs, error_code))
670                 sig = 0;
671
672         /* Executive summary in case the body of the oops scrolled away */
673         printk(KERN_EMERG "CR2: %016lx\n", address);
674
675         oops_end(flags, regs, sig);
676 }
677
678 /*
679  * Print out info about fatal segfaults, if the show_unhandled_signals
680  * sysctl is set:
681  */
682 static inline void
683 show_signal_msg(struct pt_regs *regs, unsigned long error_code,
684                 unsigned long address, struct task_struct *tsk)
685 {
686         if (!unhandled_signal(tsk, SIGSEGV))
687                 return;
688
689         if (!printk_ratelimit())
690                 return;
691
692         printk("%s%s[%d]: segfault at %lx ip %p sp %p error %lx",
693                 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
694                 tsk->comm, task_pid_nr(tsk), address,
695                 (void *)regs->ip, (void *)regs->sp, error_code);
696
697         print_vma_addr(KERN_CONT " in ", regs->ip);
698
699         printk(KERN_CONT "\n");
700 }
701
702 static void
703 __bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code,
704                        unsigned long address, int si_code)
705 {
706         struct task_struct *tsk = current;
707
708         /* User mode accesses just cause a SIGSEGV */
709         if (error_code & PF_USER) {
710                 /*
711                  * It's possible to have interrupts off here:
712                  */
713                 local_irq_enable();
714
715                 /*
716                  * Valid to do another page fault here because this one came
717                  * from user space:
718                  */
719                 if (is_prefetch(regs, error_code, address))
720                         return;
721
722                 if (is_errata100(regs, address))
723                         return;
724
725                 if (unlikely(show_unhandled_signals))
726                         show_signal_msg(regs, error_code, address, tsk);
727
728                 /* Kernel addresses are always protection faults: */
729                 tsk->thread.cr2         = address;
730                 tsk->thread.error_code  = error_code | (address >= TASK_SIZE);
731                 tsk->thread.trap_no     = 14;
732
733                 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
734
735                 return;
736         }
737
738         if (is_f00f_bug(regs, address))
739                 return;
740
741         no_context(regs, error_code, address);
742 }
743
744 static noinline void
745 bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code,
746                      unsigned long address)
747 {
748         __bad_area_nosemaphore(regs, error_code, address, SEGV_MAPERR);
749 }
750
751 static void
752 __bad_area(struct pt_regs *regs, unsigned long error_code,
753            unsigned long address, int si_code)
754 {
755         struct mm_struct *mm = current->mm;
756
757         /*
758          * Something tried to access memory that isn't in our memory map..
759          * Fix it, but check if it's kernel or user first..
760          */
761         up_read(&mm->mmap_sem);
762
763         __bad_area_nosemaphore(regs, error_code, address, si_code);
764 }
765
766 static noinline void
767 bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address)
768 {
769         __bad_area(regs, error_code, address, SEGV_MAPERR);
770 }
771
772 static noinline void
773 bad_area_access_error(struct pt_regs *regs, unsigned long error_code,
774                       unsigned long address)
775 {
776         __bad_area(regs, error_code, address, SEGV_ACCERR);
777 }
778
779 /* TODO: fixup for "mm-invoke-oom-killer-from-page-fault.patch" */
780 static void
781 out_of_memory(struct pt_regs *regs, unsigned long error_code,
782               unsigned long address)
783 {
784         /*
785          * We ran out of memory, call the OOM killer, and return the userspace
786          * (which will retry the fault, or kill us if we got oom-killed):
787          */
788         up_read(&current->mm->mmap_sem);
789
790         pagefault_out_of_memory();
791 }
792
793 static void
794 do_sigbus(struct pt_regs *regs, unsigned long error_code, unsigned long address)
795 {
796         struct task_struct *tsk = current;
797         struct mm_struct *mm = tsk->mm;
798
799         up_read(&mm->mmap_sem);
800
801         /* Kernel mode? Handle exceptions or die: */
802         if (!(error_code & PF_USER))
803                 no_context(regs, error_code, address);
804
805         /* User-space => ok to do another page fault: */
806         if (is_prefetch(regs, error_code, address))
807                 return;
808
809         tsk->thread.cr2         = address;
810         tsk->thread.error_code  = error_code;
811         tsk->thread.trap_no     = 14;
812
813         force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
814 }
815
816 static noinline void
817 mm_fault_error(struct pt_regs *regs, unsigned long error_code,
818                unsigned long address, unsigned int fault)
819 {
820         if (fault & VM_FAULT_OOM) {
821                 out_of_memory(regs, error_code, address);
822         } else {
823                 if (fault & VM_FAULT_SIGBUS)
824                         do_sigbus(regs, error_code, address);
825                 else
826                         BUG();
827         }
828 }
829
830 static int spurious_fault_check(unsigned long error_code, pte_t *pte)
831 {
832         if ((error_code & PF_WRITE) && !pte_write(*pte))
833                 return 0;
834
835         if ((error_code & PF_INSTR) && !pte_exec(*pte))
836                 return 0;
837
838         return 1;
839 }
840
841 /*
842  * Handle a spurious fault caused by a stale TLB entry.
843  *
844  * This allows us to lazily refresh the TLB when increasing the
845  * permissions of a kernel page (RO -> RW or NX -> X).  Doing it
846  * eagerly is very expensive since that implies doing a full
847  * cross-processor TLB flush, even if no stale TLB entries exist
848  * on other processors.
849  *
850  * There are no security implications to leaving a stale TLB when
851  * increasing the permissions on a page.
852  */
853 static noinline __kprobes int
854 spurious_fault(unsigned long error_code, unsigned long address)
855 {
856         pgd_t *pgd;
857         pud_t *pud;
858         pmd_t *pmd;
859         pte_t *pte;
860         int ret;
861
862         /* Reserved-bit violation or user access to kernel space? */
863         if (error_code & (PF_USER | PF_RSVD))
864                 return 0;
865
866         pgd = init_mm.pgd + pgd_index(address);
867         if (!pgd_present(*pgd))
868                 return 0;
869
870         pud = pud_offset(pgd, address);
871         if (!pud_present(*pud))
872                 return 0;
873
874         if (pud_large(*pud))
875                 return spurious_fault_check(error_code, (pte_t *) pud);
876
877         pmd = pmd_offset(pud, address);
878         if (!pmd_present(*pmd))
879                 return 0;
880
881         if (pmd_large(*pmd))
882                 return spurious_fault_check(error_code, (pte_t *) pmd);
883
884         pte = pte_offset_kernel(pmd, address);
885         if (!pte_present(*pte))
886                 return 0;
887
888         ret = spurious_fault_check(error_code, pte);
889         if (!ret)
890                 return 0;
891
892         /*
893          * Make sure we have permissions in PMD.
894          * If not, then there's a bug in the page tables:
895          */
896         ret = spurious_fault_check(error_code, (pte_t *) pmd);
897         WARN_ONCE(!ret, "PMD has incorrect permission bits\n");
898
899         return ret;
900 }
901
902 int show_unhandled_signals = 1;
903
904 static inline int
905 access_error(unsigned long error_code, int write, struct vm_area_struct *vma)
906 {
907         if (write) {
908                 /* write, present and write, not present: */
909                 if (unlikely(!(vma->vm_flags & VM_WRITE)))
910                         return 1;
911                 return 0;
912         }
913
914         /* read, present: */
915         if (unlikely(error_code & PF_PROT))
916                 return 1;
917
918         /* read, not present: */
919         if (unlikely(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE))))
920                 return 1;
921
922         return 0;
923 }
924
925 static int fault_in_kernel_space(unsigned long address)
926 {
927         return address >= TASK_SIZE_MAX;
928 }
929
930 /*
931  * This routine handles page faults.  It determines the address,
932  * and the problem, and then passes it off to one of the appropriate
933  * routines.
934  */
935 dotraplinkage void __kprobes
936 do_page_fault(struct pt_regs *regs, unsigned long error_code)
937 {
938         struct vm_area_struct *vma;
939         struct task_struct *tsk;
940         unsigned long address;
941         struct mm_struct *mm;
942         int write;
943         int fault;
944
945         tsk = current;
946         mm = tsk->mm;
947
948         /* Get the faulting address: */
949         address = read_cr2();
950
951         /*
952          * Detect and handle instructions that would cause a page fault for
953          * both a tracked kernel page and a userspace page.
954          */
955         if (kmemcheck_active(regs))
956                 kmemcheck_hide(regs);
957         prefetchw(&mm->mmap_sem);
958
959         if (unlikely(kmmio_fault(regs, address)))
960                 return;
961
962         /*
963          * We fault-in kernel-space virtual memory on-demand. The
964          * 'reference' page table is init_mm.pgd.
965          *
966          * NOTE! We MUST NOT take any locks for this case. We may
967          * be in an interrupt or a critical region, and should
968          * only copy the information from the master page table,
969          * nothing more.
970          *
971          * This verifies that the fault happens in kernel space
972          * (error_code & 4) == 0, and that the fault was not a
973          * protection error (error_code & 9) == 0.
974          */
975         if (unlikely(fault_in_kernel_space(address))) {
976                 if (!(error_code & (PF_RSVD | PF_USER | PF_PROT))) {
977                         if (vmalloc_fault(address) >= 0)
978                                 return;
979
980                         if (kmemcheck_fault(regs, address, error_code))
981                                 return;
982                 }
983
984                 /* Can handle a stale RO->RW TLB: */
985                 if (spurious_fault(error_code, address))
986                         return;
987
988                 /* kprobes don't want to hook the spurious faults: */
989                 if (notify_page_fault(regs))
990                         return;
991                 /*
992                  * Don't take the mm semaphore here. If we fixup a prefetch
993                  * fault we could otherwise deadlock:
994                  */
995                 bad_area_nosemaphore(regs, error_code, address);
996
997                 return;
998         }
999
1000         /* kprobes don't want to hook the spurious faults: */
1001         if (unlikely(notify_page_fault(regs)))
1002                 return;
1003         /*
1004          * It's safe to allow irq's after cr2 has been saved and the
1005          * vmalloc fault has been handled.
1006          *
1007          * User-mode registers count as a user access even for any
1008          * potential system fault or CPU buglet:
1009          */
1010         if (user_mode_vm(regs)) {
1011                 local_irq_enable();
1012                 error_code |= PF_USER;
1013         } else {
1014                 if (regs->flags & X86_EFLAGS_IF)
1015                         local_irq_enable();
1016         }
1017
1018         if (unlikely(error_code & PF_RSVD))
1019                 pgtable_bad(regs, error_code, address);
1020
1021         perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address);
1022
1023         /*
1024          * If we're in an interrupt, have no user context or are running
1025          * in an atomic region then we must not take the fault:
1026          */
1027         if (unlikely(in_atomic() || !mm)) {
1028                 bad_area_nosemaphore(regs, error_code, address);
1029                 return;
1030         }
1031
1032         /*
1033          * When running in the kernel we expect faults to occur only to
1034          * addresses in user space.  All other faults represent errors in
1035          * the kernel and should generate an OOPS.  Unfortunately, in the
1036          * case of an erroneous fault occurring in a code path which already
1037          * holds mmap_sem we will deadlock attempting to validate the fault
1038          * against the address space.  Luckily the kernel only validly
1039          * references user space from well defined areas of code, which are
1040          * listed in the exceptions table.
1041          *
1042          * As the vast majority of faults will be valid we will only perform
1043          * the source reference check when there is a possibility of a
1044          * deadlock. Attempt to lock the address space, if we cannot we then
1045          * validate the source. If this is invalid we can skip the address
1046          * space check, thus avoiding the deadlock:
1047          */
1048         if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
1049                 if ((error_code & PF_USER) == 0 &&
1050                     !search_exception_tables(regs->ip)) {
1051                         bad_area_nosemaphore(regs, error_code, address);
1052                         return;
1053                 }
1054                 down_read(&mm->mmap_sem);
1055         } else {
1056                 /*
1057                  * The above down_read_trylock() might have succeeded in
1058                  * which case we'll have missed the might_sleep() from
1059                  * down_read():
1060                  */
1061                 might_sleep();
1062         }
1063
1064         vma = find_vma(mm, address);
1065         if (unlikely(!vma)) {
1066                 bad_area(regs, error_code, address);
1067                 return;
1068         }
1069         if (likely(vma->vm_start <= address))
1070                 goto good_area;
1071         if (unlikely(!(vma->vm_flags & VM_GROWSDOWN))) {
1072                 bad_area(regs, error_code, address);
1073                 return;
1074         }
1075         if (error_code & PF_USER) {
1076                 /*
1077                  * Accessing the stack below %sp is always a bug.
1078                  * The large cushion allows instructions like enter
1079                  * and pusha to work. ("enter $65535, $31" pushes
1080                  * 32 pointers and then decrements %sp by 65535.)
1081                  */
1082                 if (unlikely(address + 65536 + 32 * sizeof(unsigned long) < regs->sp)) {
1083                         bad_area(regs, error_code, address);
1084                         return;
1085                 }
1086         }
1087         if (unlikely(expand_stack(vma, address))) {
1088                 bad_area(regs, error_code, address);
1089                 return;
1090         }
1091
1092         /*
1093          * Ok, we have a good vm_area for this memory access, so
1094          * we can handle it..
1095          */
1096 good_area:
1097         write = error_code & PF_WRITE;
1098
1099         if (unlikely(access_error(error_code, write, vma))) {
1100                 bad_area_access_error(regs, error_code, address);
1101                 return;
1102         }
1103
1104         /*
1105          * If for any reason at all we couldn't handle the fault,
1106          * make sure we exit gracefully rather than endlessly redo
1107          * the fault:
1108          */
1109         fault = handle_mm_fault(mm, vma, address, write ? FAULT_FLAG_WRITE : 0);
1110
1111         if (unlikely(fault & VM_FAULT_ERROR)) {
1112                 mm_fault_error(regs, error_code, address, fault);
1113                 return;
1114         }
1115
1116         if (fault & VM_FAULT_MAJOR) {
1117                 tsk->maj_flt++;
1118                 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0,
1119                                      regs, address);
1120         } else {
1121                 tsk->min_flt++;
1122                 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0,
1123                                      regs, address);
1124         }
1125
1126         check_v8086_mode(regs, address, tsk);
1127
1128         up_read(&mm->mmap_sem);
1129 }