1
2
3
4
5
6
7#include <linux/sched.h>
8#include <linux/sched/task_stack.h>
9#include <linux/kdebug.h>
10#include <linux/extable.h>
11#include <linux/bootmem.h>
12#include <linux/kprobes.h>
13#include <linux/mmiotrace.h>
14#include <linux/perf_event.h>
15#include <linux/hugetlb.h>
16#include <linux/prefetch.h>
17#include <linux/context_tracking.h>
18#include <linux/uaccess.h>
19
20#include <asm/cpufeature.h>
21#include <asm/traps.h>
22#include <asm/pgalloc.h>
23#include <asm/kmemcheck.h>
24#include <asm/fixmap.h>
25#include <asm/vsyscall.h>
26#include <asm/vm86.h>
27#include <asm/mmu_context.h>
28
29#define CREATE_TRACE_POINTS
30#include <asm/trace/exceptions.h>
31
32
33
34
35
36
37
38
39
40
41
42enum x86_pf_error_code {
43
44 PF_PROT = 1 << 0,
45 PF_WRITE = 1 << 1,
46 PF_USER = 1 << 2,
47 PF_RSVD = 1 << 3,
48 PF_INSTR = 1 << 4,
49 PF_PK = 1 << 5,
50};
51
52
53
54
55
56static nokprobe_inline int
57kmmio_fault(struct pt_regs *regs, unsigned long addr)
58{
59 if (unlikely(is_kmmio_active()))
60 if (kmmio_handler(regs, addr) == 1)
61 return -1;
62 return 0;
63}
64
65static nokprobe_inline int kprobes_fault(struct pt_regs *regs)
66{
67 int ret = 0;
68
69
70 if (kprobes_built_in() && !user_mode(regs)) {
71 preempt_disable();
72 if (kprobe_running() && kprobe_fault_handler(regs, 14))
73 ret = 1;
74 preempt_enable();
75 }
76
77 return ret;
78}
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95static inline int
96check_prefetch_opcode(struct pt_regs *regs, unsigned char *instr,
97 unsigned char opcode, int *prefetch)
98{
99 unsigned char instr_hi = opcode & 0xf0;
100 unsigned char instr_lo = opcode & 0x0f;
101
102 switch (instr_hi) {
103 case 0x20:
104 case 0x30:
105
106
107
108
109
110
111 return ((instr_lo & 7) == 0x6);
112#ifdef CONFIG_X86_64
113 case 0x40:
114
115
116
117
118
119
120
121 return (!user_mode(regs) || user_64bit_mode(regs));
122#endif
123 case 0x60:
124
125 return (instr_lo & 0xC) == 0x4;
126 case 0xF0:
127
128 return !instr_lo || (instr_lo>>1) == 1;
129 case 0x00:
130
131 if (probe_kernel_address(instr, opcode))
132 return 0;
133
134 *prefetch = (instr_lo == 0xF) &&
135 (opcode == 0x0D || opcode == 0x18);
136 return 0;
137 default:
138 return 0;
139 }
140}
141
142static int
143is_prefetch(struct pt_regs *regs, unsigned long error_code, unsigned long addr)
144{
145 unsigned char *max_instr;
146 unsigned char *instr;
147 int prefetch = 0;
148
149
150
151
152
153 if (error_code & PF_INSTR)
154 return 0;
155
156 instr = (void *)convert_ip_to_linear(current, regs);
157 max_instr = instr + 15;
158
159 if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE_MAX)
160 return 0;
161
162 while (instr < max_instr) {
163 unsigned char opcode;
164
165 if (probe_kernel_address(instr, opcode))
166 break;
167
168 instr++;
169
170 if (!check_prefetch_opcode(regs, instr, opcode, &prefetch))
171 break;
172 }
173 return prefetch;
174}
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196static void fill_sig_info_pkey(int si_code, siginfo_t *info, u32 *pkey)
197{
198
199 if (!boot_cpu_has(X86_FEATURE_OSPKE))
200 return;
201
202
203 if (si_code != SEGV_PKUERR)
204 return;
205
206
207
208
209
210
211
212 if (!pkey) {
213 WARN_ONCE(1, "PKU fault with no VMA passed in");
214 info->si_pkey = 0;
215 return;
216 }
217
218
219
220
221
222 info->si_pkey = *pkey;
223}
224
225static void
226force_sig_info_fault(int si_signo, int si_code, unsigned long address,
227 struct task_struct *tsk, u32 *pkey, int fault)
228{
229 unsigned lsb = 0;
230 siginfo_t info;
231
232 info.si_signo = si_signo;
233 info.si_errno = 0;
234 info.si_code = si_code;
235 info.si_addr = (void __user *)address;
236 if (fault & VM_FAULT_HWPOISON_LARGE)
237 lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
238 if (fault & VM_FAULT_HWPOISON)
239 lsb = PAGE_SHIFT;
240 info.si_addr_lsb = lsb;
241
242 fill_sig_info_pkey(si_code, &info, pkey);
243
244 force_sig_info(si_signo, &info, tsk);
245}
246
247DEFINE_SPINLOCK(pgd_lock);
248LIST_HEAD(pgd_list);
249
250#ifdef CONFIG_X86_32
251static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
252{
253 unsigned index = pgd_index(address);
254 pgd_t *pgd_k;
255 p4d_t *p4d, *p4d_k;
256 pud_t *pud, *pud_k;
257 pmd_t *pmd, *pmd_k;
258
259 pgd += index;
260 pgd_k = init_mm.pgd + index;
261
262 if (!pgd_present(*pgd_k))
263 return NULL;
264
265
266
267
268
269
270 p4d = p4d_offset(pgd, address);
271 p4d_k = p4d_offset(pgd_k, address);
272 if (!p4d_present(*p4d_k))
273 return NULL;
274
275 pud = pud_offset(p4d, address);
276 pud_k = pud_offset(p4d_k, address);
277 if (!pud_present(*pud_k))
278 return NULL;
279
280 pmd = pmd_offset(pud, address);
281 pmd_k = pmd_offset(pud_k, address);
282 if (!pmd_present(*pmd_k))
283 return NULL;
284
285 if (!pmd_present(*pmd))
286 set_pmd(pmd, *pmd_k);
287 else
288 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
289
290 return pmd_k;
291}
292
293void vmalloc_sync_all(void)
294{
295 unsigned long address;
296
297 if (SHARED_KERNEL_PMD)
298 return;
299
300 for (address = VMALLOC_START & PMD_MASK;
301 address >= TASK_SIZE_MAX && address < FIXADDR_TOP;
302 address += PMD_SIZE) {
303 struct page *page;
304
305 spin_lock(&pgd_lock);
306 list_for_each_entry(page, &pgd_list, lru) {
307 spinlock_t *pgt_lock;
308 pmd_t *ret;
309
310
311 pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
312
313 spin_lock(pgt_lock);
314 ret = vmalloc_sync_one(page_address(page), address);
315 spin_unlock(pgt_lock);
316
317 if (!ret)
318 break;
319 }
320 spin_unlock(&pgd_lock);
321 }
322}
323
324
325
326
327
328
329static noinline int vmalloc_fault(unsigned long address)
330{
331 unsigned long pgd_paddr;
332 pmd_t *pmd_k;
333 pte_t *pte_k;
334
335
336 if (!(address >= VMALLOC_START && address < VMALLOC_END))
337 return -1;
338
339 WARN_ON_ONCE(in_nmi());
340
341
342
343
344
345
346
347
348 pgd_paddr = read_cr3_pa();
349 pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
350 if (!pmd_k)
351 return -1;
352
353 if (pmd_huge(*pmd_k))
354 return 0;
355
356 pte_k = pte_offset_kernel(pmd_k, address);
357 if (!pte_present(*pte_k))
358 return -1;
359
360 return 0;
361}
362NOKPROBE_SYMBOL(vmalloc_fault);
363
364
365
366
367static inline void
368check_v8086_mode(struct pt_regs *regs, unsigned long address,
369 struct task_struct *tsk)
370{
371#ifdef CONFIG_VM86
372 unsigned long bit;
373
374 if (!v8086_mode(regs) || !tsk->thread.vm86)
375 return;
376
377 bit = (address - 0xA0000) >> PAGE_SHIFT;
378 if (bit < 32)
379 tsk->thread.vm86->screen_bitmap |= 1 << bit;
380#endif
381}
382
383static bool low_pfn(unsigned long pfn)
384{
385 return pfn < max_low_pfn;
386}
387
388static void dump_pagetable(unsigned long address)
389{
390 pgd_t *base = __va(read_cr3_pa());
391 pgd_t *pgd = &base[pgd_index(address)];
392 p4d_t *p4d;
393 pud_t *pud;
394 pmd_t *pmd;
395 pte_t *pte;
396
397#ifdef CONFIG_X86_PAE
398 pr_info("*pdpt = %016Lx ", pgd_val(*pgd));
399 if (!low_pfn(pgd_val(*pgd) >> PAGE_SHIFT) || !pgd_present(*pgd))
400 goto out;
401#define pr_pde pr_cont
402#else
403#define pr_pde pr_info
404#endif
405 p4d = p4d_offset(pgd, address);
406 pud = pud_offset(p4d, address);
407 pmd = pmd_offset(pud, address);
408 pr_pde("*pde = %0*Lx ", sizeof(*pmd) * 2, (u64)pmd_val(*pmd));
409#undef pr_pde
410
411
412
413
414
415
416
417 if (!low_pfn(pmd_pfn(*pmd)) || !pmd_present(*pmd) || pmd_large(*pmd))
418 goto out;
419
420 pte = pte_offset_kernel(pmd, address);
421 pr_cont("*pte = %0*Lx ", sizeof(*pte) * 2, (u64)pte_val(*pte));
422out:
423 pr_cont("\n");
424}
425
426#else
427
428void vmalloc_sync_all(void)
429{
430 sync_global_pgds(VMALLOC_START & PGDIR_MASK, VMALLOC_END);
431}
432
433
434
435
436
437
438static noinline int vmalloc_fault(unsigned long address)
439{
440 pgd_t *pgd, *pgd_ref;
441 p4d_t *p4d, *p4d_ref;
442 pud_t *pud, *pud_ref;
443 pmd_t *pmd, *pmd_ref;
444 pte_t *pte, *pte_ref;
445
446
447 if (!(address >= VMALLOC_START && address < VMALLOC_END))
448 return -1;
449
450 WARN_ON_ONCE(in_nmi());
451
452
453
454
455
456
457 pgd = (pgd_t *)__va(read_cr3_pa()) + pgd_index(address);
458 pgd_ref = pgd_offset_k(address);
459 if (pgd_none(*pgd_ref))
460 return -1;
461
462 if (pgd_none(*pgd)) {
463 set_pgd(pgd, *pgd_ref);
464 arch_flush_lazy_mmu_mode();
465 } else if (CONFIG_PGTABLE_LEVELS > 4) {
466
467
468
469
470
471
472
473 BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
474 }
475
476
477 p4d = p4d_offset(pgd, address);
478 p4d_ref = p4d_offset(pgd_ref, address);
479 if (p4d_none(*p4d_ref))
480 return -1;
481
482 if (p4d_none(*p4d)) {
483 set_p4d(p4d, *p4d_ref);
484 arch_flush_lazy_mmu_mode();
485 } else {
486 BUG_ON(p4d_pfn(*p4d) != p4d_pfn(*p4d_ref));
487 }
488
489
490
491
492
493
494 pud = pud_offset(p4d, address);
495 pud_ref = pud_offset(p4d_ref, address);
496 if (pud_none(*pud_ref))
497 return -1;
498
499 if (pud_none(*pud) || pud_pfn(*pud) != pud_pfn(*pud_ref))
500 BUG();
501
502 if (pud_huge(*pud))
503 return 0;
504
505 pmd = pmd_offset(pud, address);
506 pmd_ref = pmd_offset(pud_ref, address);
507 if (pmd_none(*pmd_ref))
508 return -1;
509
510 if (pmd_none(*pmd) || pmd_pfn(*pmd) != pmd_pfn(*pmd_ref))
511 BUG();
512
513 if (pmd_huge(*pmd))
514 return 0;
515
516 pte_ref = pte_offset_kernel(pmd_ref, address);
517 if (!pte_present(*pte_ref))
518 return -1;
519
520 pte = pte_offset_kernel(pmd, address);
521
522
523
524
525
526
527 if (!pte_present(*pte) || pte_pfn(*pte) != pte_pfn(*pte_ref))
528 BUG();
529
530 return 0;
531}
532NOKPROBE_SYMBOL(vmalloc_fault);
533
534#ifdef CONFIG_CPU_SUP_AMD
535static const char errata93_warning[] =
536KERN_ERR
537"******* Your BIOS seems to not contain a fix for K8 errata #93\n"
538"******* Working around it, but it may cause SEGVs or burn power.\n"
539"******* Please consider a BIOS update.\n"
540"******* Disabling USB legacy in the BIOS may also help.\n";
541#endif
542
543
544
545
546static inline void
547check_v8086_mode(struct pt_regs *regs, unsigned long address,
548 struct task_struct *tsk)
549{
550}
551
552static int bad_address(void *p)
553{
554 unsigned long dummy;
555
556 return probe_kernel_address((unsigned long *)p, dummy);
557}
558
559static void dump_pagetable(unsigned long address)
560{
561 pgd_t *base = __va(read_cr3_pa());
562 pgd_t *pgd = base + pgd_index(address);
563 p4d_t *p4d;
564 pud_t *pud;
565 pmd_t *pmd;
566 pte_t *pte;
567
568 if (bad_address(pgd))
569 goto bad;
570
571 pr_info("PGD %lx ", pgd_val(*pgd));
572
573 if (!pgd_present(*pgd))
574 goto out;
575
576 p4d = p4d_offset(pgd, address);
577 if (bad_address(p4d))
578 goto bad;
579
580 pr_cont("P4D %lx ", p4d_val(*p4d));
581 if (!p4d_present(*p4d) || p4d_large(*p4d))
582 goto out;
583
584 pud = pud_offset(p4d, address);
585 if (bad_address(pud))
586 goto bad;
587
588 pr_cont("PUD %lx ", pud_val(*pud));
589 if (!pud_present(*pud) || pud_large(*pud))
590 goto out;
591
592 pmd = pmd_offset(pud, address);
593 if (bad_address(pmd))
594 goto bad;
595
596 pr_cont("PMD %lx ", pmd_val(*pmd));
597 if (!pmd_present(*pmd) || pmd_large(*pmd))
598 goto out;
599
600 pte = pte_offset_kernel(pmd, address);
601 if (bad_address(pte))
602 goto bad;
603
604 pr_cont("PTE %lx", pte_val(*pte));
605out:
606 pr_cont("\n");
607 return;
608bad:
609 pr_info("BAD\n");
610}
611
612#endif
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628static int is_errata93(struct pt_regs *regs, unsigned long address)
629{
630#if defined(CONFIG_X86_64) && defined(CONFIG_CPU_SUP_AMD)
631 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD
632 || boot_cpu_data.x86 != 0xf)
633 return 0;
634
635 if (address != regs->ip)
636 return 0;
637
638 if ((address >> 32) != 0)
639 return 0;
640
641 address |= 0xffffffffUL << 32;
642 if ((address >= (u64)_stext && address <= (u64)_etext) ||
643 (address >= MODULES_VADDR && address <= MODULES_END)) {
644 printk_once(errata93_warning);
645 regs->ip = address;
646 return 1;
647 }
648#endif
649 return 0;
650}
651
652
653
654
655
656
657
658
659
660static int is_errata100(struct pt_regs *regs, unsigned long address)
661{
662#ifdef CONFIG_X86_64
663 if ((regs->cs == __USER32_CS || (regs->cs & (1<<2))) && (address >> 32))
664 return 1;
665#endif
666 return 0;
667}
668
669static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
670{
671#ifdef CONFIG_X86_F00F_BUG
672 unsigned long nr;
673
674
675
676
677 if (boot_cpu_has_bug(X86_BUG_F00F)) {
678 nr = (address - idt_descr.address) >> 3;
679
680 if (nr == 6) {
681 do_invalid_op(regs, 0);
682 return 1;
683 }
684 }
685#endif
686 return 0;
687}
688
689static const char nx_warning[] = KERN_CRIT
690"kernel tried to execute NX-protected page - exploit attempt? (uid: %d)\n";
691static const char smep_warning[] = KERN_CRIT
692"unable to execute userspace code (SMEP?) (uid: %d)\n";
693
694static void
695show_fault_oops(struct pt_regs *regs, unsigned long error_code,
696 unsigned long address)
697{
698 if (!oops_may_print())
699 return;
700
701 if (error_code & PF_INSTR) {
702 unsigned int level;
703 pgd_t *pgd;
704 pte_t *pte;
705
706 pgd = __va(read_cr3_pa());
707 pgd += pgd_index(address);
708
709 pte = lookup_address_in_pgd(pgd, address, &level);
710
711 if (pte && pte_present(*pte) && !pte_exec(*pte))
712 printk(nx_warning, from_kuid(&init_user_ns, current_uid()));
713 if (pte && pte_present(*pte) && pte_exec(*pte) &&
714 (pgd_flags(*pgd) & _PAGE_USER) &&
715 (__read_cr4() & X86_CR4_SMEP))
716 printk(smep_warning, from_kuid(&init_user_ns, current_uid()));
717 }
718
719 printk(KERN_ALERT "BUG: unable to handle kernel ");
720 if (address < PAGE_SIZE)
721 printk(KERN_CONT "NULL pointer dereference");
722 else
723 printk(KERN_CONT "paging request");
724
725 printk(KERN_CONT " at %p\n", (void *) address);
726 printk(KERN_ALERT "IP: %pS\n", (void *)regs->ip);
727
728 dump_pagetable(address);
729}
730
731static noinline void
732pgtable_bad(struct pt_regs *regs, unsigned long error_code,
733 unsigned long address)
734{
735 struct task_struct *tsk;
736 unsigned long flags;
737 int sig;
738
739 flags = oops_begin();
740 tsk = current;
741 sig = SIGKILL;
742
743 printk(KERN_ALERT "%s: Corrupted page table at address %lx\n",
744 tsk->comm, address);
745 dump_pagetable(address);
746
747 tsk->thread.cr2 = address;
748 tsk->thread.trap_nr = X86_TRAP_PF;
749 tsk->thread.error_code = error_code;
750
751 if (__die("Bad pagetable", regs, error_code))
752 sig = 0;
753
754 oops_end(flags, regs, sig);
755}
756
757static noinline void
758no_context(struct pt_regs *regs, unsigned long error_code,
759 unsigned long address, int signal, int si_code)
760{
761 struct task_struct *tsk = current;
762 unsigned long flags;
763 int sig;
764
765
766 if (fixup_exception(regs, X86_TRAP_PF)) {
767
768
769
770
771
772 if (in_interrupt())
773 return;
774
775
776
777
778
779
780
781 if (current->thread.sig_on_uaccess_err && signal) {
782 tsk->thread.trap_nr = X86_TRAP_PF;
783 tsk->thread.error_code = error_code | PF_USER;
784 tsk->thread.cr2 = address;
785
786
787 force_sig_info_fault(signal, si_code, address,
788 tsk, NULL, 0);
789 }
790
791
792
793
794 return;
795 }
796
797#ifdef CONFIG_VMAP_STACK
798
799
800
801
802
803 if (is_vmalloc_addr((void *)address) &&
804 (((unsigned long)tsk->stack - 1 - address < PAGE_SIZE) ||
805 address - ((unsigned long)tsk->stack + THREAD_SIZE) < PAGE_SIZE)) {
806 unsigned long stack = this_cpu_read(orig_ist.ist[DOUBLEFAULT_STACK]) - sizeof(void *);
807
808
809
810
811
812
813
814
815
816
817 asm volatile ("movq %[stack], %%rsp\n\t"
818 "call handle_stack_overflow\n\t"
819 "1: jmp 1b"
820 : ASM_CALL_CONSTRAINT
821 : "D" ("kernel stack overflow (page fault)"),
822 "S" (regs), "d" (address),
823 [stack] "rm" (stack));
824 unreachable();
825 }
826#endif
827
828
829
830
831
832
833
834
835
836
837
838
839 if (is_prefetch(regs, error_code, address))
840 return;
841
842 if (is_errata93(regs, address))
843 return;
844
845
846
847
848
849 flags = oops_begin();
850
851 show_fault_oops(regs, error_code, address);
852
853 if (task_stack_end_corrupted(tsk))
854 printk(KERN_EMERG "Thread overran stack, or stack corrupted\n");
855
856 tsk->thread.cr2 = address;
857 tsk->thread.trap_nr = X86_TRAP_PF;
858 tsk->thread.error_code = error_code;
859
860 sig = SIGKILL;
861 if (__die("Oops", regs, error_code))
862 sig = 0;
863
864
865 printk(KERN_DEFAULT "CR2: %016lx\n", address);
866
867 oops_end(flags, regs, sig);
868}
869
870
871
872
873
874static inline void
875show_signal_msg(struct pt_regs *regs, unsigned long error_code,
876 unsigned long address, struct task_struct *tsk)
877{
878 if (!unhandled_signal(tsk, SIGSEGV))
879 return;
880
881 if (!printk_ratelimit())
882 return;
883
884 printk("%s%s[%d]: segfault at %lx ip %p sp %p error %lx",
885 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
886 tsk->comm, task_pid_nr(tsk), address,
887 (void *)regs->ip, (void *)regs->sp, error_code);
888
889 print_vma_addr(KERN_CONT " in ", regs->ip);
890
891 printk(KERN_CONT "\n");
892}
893
894static void
895__bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code,
896 unsigned long address, u32 *pkey, int si_code)
897{
898 struct task_struct *tsk = current;
899
900
901 if (error_code & PF_USER) {
902
903
904
905 local_irq_enable();
906
907
908
909
910
911 if (is_prefetch(regs, error_code, address))
912 return;
913
914 if (is_errata100(regs, address))
915 return;
916
917#ifdef CONFIG_X86_64
918
919
920
921
922 if (unlikely((error_code & PF_INSTR) &&
923 ((address & ~0xfff) == VSYSCALL_ADDR))) {
924 if (emulate_vsyscall(regs, address))
925 return;
926 }
927#endif
928
929
930
931
932
933
934 if (address >= TASK_SIZE_MAX)
935 error_code |= PF_PROT;
936
937 if (likely(show_unhandled_signals))
938 show_signal_msg(regs, error_code, address, tsk);
939
940 tsk->thread.cr2 = address;
941 tsk->thread.error_code = error_code;
942 tsk->thread.trap_nr = X86_TRAP_PF;
943
944 force_sig_info_fault(SIGSEGV, si_code, address, tsk, pkey, 0);
945
946 return;
947 }
948
949 if (is_f00f_bug(regs, address))
950 return;
951
952 no_context(regs, error_code, address, SIGSEGV, si_code);
953}
954
955static noinline void
956bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code,
957 unsigned long address, u32 *pkey)
958{
959 __bad_area_nosemaphore(regs, error_code, address, pkey, SEGV_MAPERR);
960}
961
962static void
963__bad_area(struct pt_regs *regs, unsigned long error_code,
964 unsigned long address, struct vm_area_struct *vma, int si_code)
965{
966 struct mm_struct *mm = current->mm;
967 u32 pkey;
968
969 if (vma)
970 pkey = vma_pkey(vma);
971
972
973
974
975
976 up_read(&mm->mmap_sem);
977
978 __bad_area_nosemaphore(regs, error_code, address,
979 (vma) ? &pkey : NULL, si_code);
980}
981
982static noinline void
983bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address)
984{
985 __bad_area(regs, error_code, address, NULL, SEGV_MAPERR);
986}
987
988static inline bool bad_area_access_from_pkeys(unsigned long error_code,
989 struct vm_area_struct *vma)
990{
991
992 bool foreign = false;
993
994 if (!boot_cpu_has(X86_FEATURE_OSPKE))
995 return false;
996 if (error_code & PF_PK)
997 return true;
998
999 if (!arch_vma_access_permitted(vma, (error_code & PF_WRITE),
1000 (error_code & PF_INSTR), foreign))
1001 return true;
1002 return false;
1003}
1004
1005static noinline void
1006bad_area_access_error(struct pt_regs *regs, unsigned long error_code,
1007 unsigned long address, struct vm_area_struct *vma)
1008{
1009
1010
1011
1012
1013
1014 if (bad_area_access_from_pkeys(error_code, vma))
1015 __bad_area(regs, error_code, address, vma, SEGV_PKUERR);
1016 else
1017 __bad_area(regs, error_code, address, vma, SEGV_ACCERR);
1018}
1019
1020static void
1021do_sigbus(struct pt_regs *regs, unsigned long error_code, unsigned long address,
1022 u32 *pkey, unsigned int fault)
1023{
1024 struct task_struct *tsk = current;
1025 int code = BUS_ADRERR;
1026
1027
1028 if (!(error_code & PF_USER)) {
1029 no_context(regs, error_code, address, SIGBUS, BUS_ADRERR);
1030 return;
1031 }
1032
1033
1034 if (is_prefetch(regs, error_code, address))
1035 return;
1036
1037 tsk->thread.cr2 = address;
1038 tsk->thread.error_code = error_code;
1039 tsk->thread.trap_nr = X86_TRAP_PF;
1040
1041#ifdef CONFIG_MEMORY_FAILURE
1042 if (fault & (VM_FAULT_HWPOISON|VM_FAULT_HWPOISON_LARGE)) {
1043 printk(KERN_ERR
1044 "MCE: Killing %s:%d due to hardware memory corruption fault at %lx\n",
1045 tsk->comm, tsk->pid, address);
1046 code = BUS_MCEERR_AR;
1047 }
1048#endif
1049 force_sig_info_fault(SIGBUS, code, address, tsk, pkey, fault);
1050}
1051
1052static noinline void
1053mm_fault_error(struct pt_regs *regs, unsigned long error_code,
1054 unsigned long address, u32 *pkey, unsigned int fault)
1055{
1056 if (fatal_signal_pending(current) && !(error_code & PF_USER)) {
1057 no_context(regs, error_code, address, 0, 0);
1058 return;
1059 }
1060
1061 if (fault & VM_FAULT_OOM) {
1062
1063 if (!(error_code & PF_USER)) {
1064 no_context(regs, error_code, address,
1065 SIGSEGV, SEGV_MAPERR);
1066 return;
1067 }
1068
1069
1070
1071
1072
1073
1074 pagefault_out_of_memory();
1075 } else {
1076 if (fault & (VM_FAULT_SIGBUS|VM_FAULT_HWPOISON|
1077 VM_FAULT_HWPOISON_LARGE))
1078 do_sigbus(regs, error_code, address, pkey, fault);
1079 else if (fault & VM_FAULT_SIGSEGV)
1080 bad_area_nosemaphore(regs, error_code, address, pkey);
1081 else
1082 BUG();
1083 }
1084}
1085
1086static int spurious_fault_check(unsigned long error_code, pte_t *pte)
1087{
1088 if ((error_code & PF_WRITE) && !pte_write(*pte))
1089 return 0;
1090
1091 if ((error_code & PF_INSTR) && !pte_exec(*pte))
1092 return 0;
1093
1094
1095
1096
1097 if ((error_code & PF_PK))
1098 return 1;
1099
1100 return 1;
1101}
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124static noinline int
1125spurious_fault(unsigned long error_code, unsigned long address)
1126{
1127 pgd_t *pgd;
1128 p4d_t *p4d;
1129 pud_t *pud;
1130 pmd_t *pmd;
1131 pte_t *pte;
1132 int ret;
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143 if (error_code != (PF_WRITE | PF_PROT)
1144 && error_code != (PF_INSTR | PF_PROT))
1145 return 0;
1146
1147 pgd = init_mm.pgd + pgd_index(address);
1148 if (!pgd_present(*pgd))
1149 return 0;
1150
1151 p4d = p4d_offset(pgd, address);
1152 if (!p4d_present(*p4d))
1153 return 0;
1154
1155 if (p4d_large(*p4d))
1156 return spurious_fault_check(error_code, (pte_t *) p4d);
1157
1158 pud = pud_offset(p4d, address);
1159 if (!pud_present(*pud))
1160 return 0;
1161
1162 if (pud_large(*pud))
1163 return spurious_fault_check(error_code, (pte_t *) pud);
1164
1165 pmd = pmd_offset(pud, address);
1166 if (!pmd_present(*pmd))
1167 return 0;
1168
1169 if (pmd_large(*pmd))
1170 return spurious_fault_check(error_code, (pte_t *) pmd);
1171
1172 pte = pte_offset_kernel(pmd, address);
1173 if (!pte_present(*pte))
1174 return 0;
1175
1176 ret = spurious_fault_check(error_code, pte);
1177 if (!ret)
1178 return 0;
1179
1180
1181
1182
1183
1184 ret = spurious_fault_check(error_code, (pte_t *) pmd);
1185 WARN_ONCE(!ret, "PMD has incorrect permission bits\n");
1186
1187 return ret;
1188}
1189NOKPROBE_SYMBOL(spurious_fault);
1190
1191int show_unhandled_signals = 1;
1192
1193static inline int
1194access_error(unsigned long error_code, struct vm_area_struct *vma)
1195{
1196
1197 bool foreign = false;
1198
1199
1200
1201
1202
1203
1204 if (error_code & PF_PK)
1205 return 1;
1206
1207
1208
1209
1210
1211
1212 if (!arch_vma_access_permitted(vma, (error_code & PF_WRITE),
1213 (error_code & PF_INSTR), foreign))
1214 return 1;
1215
1216 if (error_code & PF_WRITE) {
1217
1218 if (unlikely(!(vma->vm_flags & VM_WRITE)))
1219 return 1;
1220 return 0;
1221 }
1222
1223
1224 if (unlikely(error_code & PF_PROT))
1225 return 1;
1226
1227
1228 if (unlikely(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE))))
1229 return 1;
1230
1231 return 0;
1232}
1233
1234static int fault_in_kernel_space(unsigned long address)
1235{
1236 return address >= TASK_SIZE_MAX;
1237}
1238
1239static inline bool smap_violation(int error_code, struct pt_regs *regs)
1240{
1241 if (!IS_ENABLED(CONFIG_X86_SMAP))
1242 return false;
1243
1244 if (!static_cpu_has(X86_FEATURE_SMAP))
1245 return false;
1246
1247 if (error_code & PF_USER)
1248 return false;
1249
1250 if (!user_mode(regs) && (regs->flags & X86_EFLAGS_AC))
1251 return false;
1252
1253 return true;
1254}
1255
1256
1257
1258
1259
1260
1261static noinline void
1262__do_page_fault(struct pt_regs *regs, unsigned long error_code,
1263 unsigned long address)
1264{
1265 struct vm_area_struct *vma;
1266 struct task_struct *tsk;
1267 struct mm_struct *mm;
1268 int fault, major = 0;
1269 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
1270 u32 pkey;
1271
1272 tsk = current;
1273 mm = tsk->mm;
1274
1275
1276
1277
1278
1279 if (kmemcheck_active(regs))
1280 kmemcheck_hide(regs);
1281 prefetchw(&mm->mmap_sem);
1282
1283 if (unlikely(kmmio_fault(regs, address)))
1284 return;
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299 if (unlikely(fault_in_kernel_space(address))) {
1300 if (!(error_code & (PF_RSVD | PF_USER | PF_PROT))) {
1301 if (vmalloc_fault(address) >= 0)
1302 return;
1303
1304 if (kmemcheck_fault(regs, address, error_code))
1305 return;
1306 }
1307
1308
1309 if (spurious_fault(error_code, address))
1310 return;
1311
1312
1313 if (kprobes_fault(regs))
1314 return;
1315
1316
1317
1318
1319 bad_area_nosemaphore(regs, error_code, address, NULL);
1320
1321 return;
1322 }
1323
1324
1325 if (unlikely(kprobes_fault(regs)))
1326 return;
1327
1328 if (unlikely(error_code & PF_RSVD))
1329 pgtable_bad(regs, error_code, address);
1330
1331 if (unlikely(smap_violation(error_code, regs))) {
1332 bad_area_nosemaphore(regs, error_code, address, NULL);
1333 return;
1334 }
1335
1336
1337
1338
1339
1340 if (unlikely(faulthandler_disabled() || !mm)) {
1341 bad_area_nosemaphore(regs, error_code, address, NULL);
1342 return;
1343 }
1344
1345
1346
1347
1348
1349
1350
1351
1352 if (user_mode(regs)) {
1353 local_irq_enable();
1354 error_code |= PF_USER;
1355 flags |= FAULT_FLAG_USER;
1356 } else {
1357 if (regs->flags & X86_EFLAGS_IF)
1358 local_irq_enable();
1359 }
1360
1361 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
1362
1363 if (error_code & PF_WRITE)
1364 flags |= FAULT_FLAG_WRITE;
1365 if (error_code & PF_INSTR)
1366 flags |= FAULT_FLAG_INSTRUCTION;
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384 if (unlikely(!down_read_trylock(&mm->mmap_sem))) {
1385 if ((error_code & PF_USER) == 0 &&
1386 !search_exception_tables(regs->ip)) {
1387 bad_area_nosemaphore(regs, error_code, address, NULL);
1388 return;
1389 }
1390retry:
1391 down_read(&mm->mmap_sem);
1392 } else {
1393
1394
1395
1396
1397
1398 might_sleep();
1399 }
1400
1401 vma = find_vma(mm, address);
1402 if (unlikely(!vma)) {
1403 bad_area(regs, error_code, address);
1404 return;
1405 }
1406 if (likely(vma->vm_start <= address))
1407 goto good_area;
1408 if (unlikely(!(vma->vm_flags & VM_GROWSDOWN))) {
1409 bad_area(regs, error_code, address);
1410 return;
1411 }
1412 if (error_code & PF_USER) {
1413
1414
1415
1416
1417
1418
1419 if (unlikely(address + 65536 + 32 * sizeof(unsigned long) < regs->sp)) {
1420 bad_area(regs, error_code, address);
1421 return;
1422 }
1423 }
1424 if (unlikely(expand_stack(vma, address))) {
1425 bad_area(regs, error_code, address);
1426 return;
1427 }
1428
1429
1430
1431
1432
1433good_area:
1434 if (unlikely(access_error(error_code, vma))) {
1435 bad_area_access_error(regs, error_code, address, vma);
1436 return;
1437 }
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454 pkey = vma_pkey(vma);
1455 fault = handle_mm_fault(vma, address, flags);
1456 major |= fault & VM_FAULT_MAJOR;
1457
1458
1459
1460
1461
1462
1463 if (unlikely(fault & VM_FAULT_RETRY)) {
1464
1465 if (flags & FAULT_FLAG_ALLOW_RETRY) {
1466 flags &= ~FAULT_FLAG_ALLOW_RETRY;
1467 flags |= FAULT_FLAG_TRIED;
1468 if (!fatal_signal_pending(tsk))
1469 goto retry;
1470 }
1471
1472
1473 if (flags & FAULT_FLAG_USER)
1474 return;
1475
1476
1477 no_context(regs, error_code, address, SIGBUS, BUS_ADRERR);
1478 return;
1479 }
1480
1481 up_read(&mm->mmap_sem);
1482 if (unlikely(fault & VM_FAULT_ERROR)) {
1483 mm_fault_error(regs, error_code, address, &pkey, fault);
1484 return;
1485 }
1486
1487
1488
1489
1490
1491 if (major) {
1492 tsk->maj_flt++;
1493 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, address);
1494 } else {
1495 tsk->min_flt++;
1496 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address);
1497 }
1498
1499 check_v8086_mode(regs, address, tsk);
1500}
1501NOKPROBE_SYMBOL(__do_page_fault);
1502
1503static nokprobe_inline void
1504trace_page_fault_entries(unsigned long address, struct pt_regs *regs,
1505 unsigned long error_code)
1506{
1507 if (user_mode(regs))
1508 trace_page_fault_user(address, regs, error_code);
1509 else
1510 trace_page_fault_kernel(address, regs, error_code);
1511}
1512
1513
1514
1515
1516
1517
1518
1519
1520dotraplinkage void notrace
1521do_page_fault(struct pt_regs *regs, unsigned long error_code)
1522{
1523 unsigned long address = read_cr2();
1524 enum ctx_state prev_state;
1525
1526 prev_state = exception_enter();
1527 if (trace_pagefault_enabled())
1528 trace_page_fault_entries(address, regs, error_code);
1529
1530 __do_page_fault(regs, error_code, address);
1531 exception_exit(prev_state);
1532}
1533NOKPROBE_SYMBOL(do_page_fault);
1534