]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/mm/fault_32.c
x86: unify fault_32|64.c by ifdef'd function bodies
[karo-tx-linux.git] / arch / x86 / mm / fault_32.c
1 /*
2  *  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>
15 #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>
20 #include <linux/bootmem.h>              /* for max_low_pfn */
21 #include <linux/vmalloc.h>
22 #include <linux/module.h>
23 #include <linux/kprobes.h>
24 #include <linux/uaccess.h>
25 #include <linux/kdebug.h>
26
27 #include <asm/system.h>
28 #include <asm/desc.h>
29 #include <asm/segment.h>
30
31 /*
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)
44
45 static inline int notify_page_fault(struct pt_regs *regs)
46 {
47 #ifdef CONFIG_KPROBES
48         int ret = 0;
49
50         /* 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         }
57
58         return ret;
59 #else
60         return 0;
61 #endif
62 }
63
64 /*
65  * X86_32
66  * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
67  * Check that here and ignore it.
68  *
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
74  */
75 static int is_prefetch(struct pt_regs *regs, unsigned long addr,
76                        unsigned long error_code)
77 {
78         unsigned char *instr;
79         int scan_more = 1;
80         int prefetch = 0;
81         unsigned char *max_instr;
82
83 #ifdef CONFIG_X86_32
84         if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
85                      boot_cpu_data.x86 >= 6)) {
86                 /* Catch an obscure case of prefetch inside an NX page. */
87                 if (nx_enabled && (error_code & PF_INSTR))
88                         return 0;
89         } else {
90                 return 0;
91         }
92 #else
93         /* If it was a exec fault ignore */
94         if (error_code & PF_INSTR)
95                 return 0;
96 #endif
97
98         instr = (unsigned char *)convert_ip_to_linear(current, regs);
99         max_instr = instr + 15;
100
101         if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
102                 return 0;
103
104         while (scan_more && instr < max_instr) {
105                 unsigned char opcode;
106                 unsigned char instr_hi;
107                 unsigned char instr_lo;
108
109                 if (probe_kernel_address(instr, opcode))
110                         break;
111
112                 instr_hi = opcode & 0xf0;
113                 instr_lo = opcode & 0x0f;
114                 instr++;
115
116                 switch (instr_hi) {
117                 case 0x20:
118                 case 0x30:
119                         /*
120                          * Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes.
121                          * In X86_64 long mode, the CPU will signal invalid
122                          * opcode if some of these prefixes are present so
123                          * X86_64 will never get here anyway
124                          */
125                         scan_more = ((instr_lo & 7) == 0x6);
126                         break;
127 #ifdef CONFIG_X86_64
128                 case 0x40:
129                         /*
130                          * In AMD64 long mode 0x40..0x4F are valid REX prefixes
131                          * Need to figure out under what instruction mode the
132                          * instruction was issued. Could check the LDT for lm,
133                          * but for now it's good enough to assume that long
134                          * mode only uses well known segments or kernel.
135                          */
136                         scan_more = (!user_mode(regs)) || (regs->cs == __USER_CS);
137                         break;
138 #endif
139                 case 0x60:
140                         /* 0x64 thru 0x67 are valid prefixes in all modes. */
141                         scan_more = (instr_lo & 0xC) == 0x4;
142                         break;
143                 case 0xF0:
144                         /* 0xF0, 0xF2, 0xF3 are valid prefixes in all modes. */
145                         scan_more = !instr_lo || (instr_lo>>1) == 1;
146                         break;
147                 case 0x00:
148                         /* Prefetch instruction is 0x0F0D or 0x0F18 */
149                         scan_more = 0;
150
151                         if (probe_kernel_address(instr, opcode))
152                                 break;
153                         prefetch = (instr_lo == 0xF) &&
154                                 (opcode == 0x0D || opcode == 0x18);
155                         break;
156                 default:
157                         scan_more = 0;
158                         break;
159                 }
160         }
161         return prefetch;
162 }
163
164 static void force_sig_info_fault(int si_signo, int si_code,
165         unsigned long address, struct task_struct *tsk)
166 {
167         siginfo_t info;
168
169         info.si_signo = si_signo;
170         info.si_errno = 0;
171         info.si_code = si_code;
172         info.si_addr = (void __user *)address;
173         force_sig_info(si_signo, &info, tsk);
174 }
175
176 #ifdef CONFIG_X86_64
177 static int bad_address(void *p)
178 {
179         unsigned long dummy;
180         return probe_kernel_address((unsigned long *)p, dummy);
181 }
182 #endif
183
184 void dump_pagetable(unsigned long address)
185 {
186 #ifdef CONFIG_X86_32
187         __typeof__(pte_val(__pte(0))) page;
188
189         page = read_cr3();
190         page = ((__typeof__(page) *) __va(page))[address >> PGDIR_SHIFT];
191 #ifdef CONFIG_X86_PAE
192         printk("*pdpt = %016Lx ", page);
193         if ((page >> PAGE_SHIFT) < max_low_pfn
194             && page & _PAGE_PRESENT) {
195                 page &= PAGE_MASK;
196                 page = ((__typeof__(page) *) __va(page))[(address >> PMD_SHIFT)
197                                                          & (PTRS_PER_PMD - 1)];
198                 printk(KERN_CONT "*pde = %016Lx ", page);
199                 page &= ~_PAGE_NX;
200         }
201 #else
202         printk("*pde = %08lx ", page);
203 #endif
204
205         /*
206          * We must not directly access the pte in the highpte
207          * case if the page table is located in highmem.
208          * And let's rather not kmap-atomic the pte, just in case
209          * it's allocated already.
210          */
211         if ((page >> PAGE_SHIFT) < max_low_pfn
212             && (page & _PAGE_PRESENT)
213             && !(page & _PAGE_PSE)) {
214                 page &= PAGE_MASK;
215                 page = ((__typeof__(page) *) __va(page))[(address >> PAGE_SHIFT)
216                                                          & (PTRS_PER_PTE - 1)];
217                 printk("*pte = %0*Lx ", sizeof(page)*2, (u64)page);
218         }
219
220         printk("\n");
221 #else /* CONFIG_X86_64 */
222         pgd_t *pgd;
223         pud_t *pud;
224         pmd_t *pmd;
225         pte_t *pte;
226
227         pgd = (pgd_t *)read_cr3();
228
229         pgd = __va((unsigned long)pgd & PHYSICAL_PAGE_MASK);
230         pgd += pgd_index(address);
231         if (bad_address(pgd)) goto bad;
232         printk("PGD %lx ", pgd_val(*pgd));
233         if (!pgd_present(*pgd)) goto ret;
234
235         pud = pud_offset(pgd, address);
236         if (bad_address(pud)) goto bad;
237         printk("PUD %lx ", pud_val(*pud));
238         if (!pud_present(*pud)) goto ret;
239
240         pmd = pmd_offset(pud, address);
241         if (bad_address(pmd)) goto bad;
242         printk("PMD %lx ", pmd_val(*pmd));
243         if (!pmd_present(*pmd) || pmd_large(*pmd)) goto ret;
244
245         pte = pte_offset_kernel(pmd, address);
246         if (bad_address(pte)) goto bad;
247         printk("PTE %lx", pte_val(*pte));
248 ret:
249         printk("\n");
250         return;
251 bad:
252         printk("BAD\n");
253 #endif
254 }
255
256 #ifdef CONFIG_X86_32
257 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
258 {
259         unsigned index = pgd_index(address);
260         pgd_t *pgd_k;
261         pud_t *pud, *pud_k;
262         pmd_t *pmd, *pmd_k;
263
264         pgd += index;
265         pgd_k = init_mm.pgd + index;
266
267         if (!pgd_present(*pgd_k))
268                 return NULL;
269
270         /*
271          * set_pgd(pgd, *pgd_k); here would be useless on PAE
272          * and redundant with the set_pmd() on non-PAE. As would
273          * set_pud.
274          */
275
276         pud = pud_offset(pgd, address);
277         pud_k = pud_offset(pgd_k, address);
278         if (!pud_present(*pud_k))
279                 return NULL;
280
281         pmd = pmd_offset(pud, address);
282         pmd_k = pmd_offset(pud_k, address);
283         if (!pmd_present(*pmd_k))
284                 return NULL;
285         if (!pmd_present(*pmd)) {
286                 set_pmd(pmd, *pmd_k);
287                 arch_flush_lazy_mmu_mode();
288         } else
289                 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
290         return pmd_k;
291 }
292 #endif
293
294 #ifdef CONFIG_X86_64
295 static const char errata93_warning[] =
296 KERN_ERR "******* Your BIOS seems to not contain a fix for K8 errata #93\n"
297 KERN_ERR "******* Working around it, but it may cause SEGVs or burn power.\n"
298 KERN_ERR "******* Please consider a BIOS update.\n"
299 KERN_ERR "******* Disabling USB legacy in the BIOS may also help.\n";
300 #endif
301
302 /* Workaround for K8 erratum #93 & buggy BIOS.
303    BIOS SMM functions are required to use a specific workaround
304    to avoid corruption of the 64bit RIP register on C stepping K8.
305    A lot of BIOS that didn't get tested properly miss this.
306    The OS sees this as a page fault with the upper 32bits of RIP cleared.
307    Try to work around it here.
308    Note we only handle faults in kernel here.
309    Does nothing for X86_32
310  */
311 static int is_errata93(struct pt_regs *regs, unsigned long address)
312 {
313 #ifdef CONFIG_X86_64
314         static int warned;
315         if (address != regs->ip)
316                 return 0;
317         if ((address >> 32) != 0)
318                 return 0;
319         address |= 0xffffffffUL << 32;
320         if ((address >= (u64)_stext && address <= (u64)_etext) ||
321             (address >= MODULES_VADDR && address <= MODULES_END)) {
322                 if (!warned) {
323                         printk(errata93_warning);
324                         warned = 1;
325                 }
326                 regs->ip = address;
327                 return 1;
328         }
329 #endif
330         return 0;
331 }
332
333 /*
334  * Work around K8 erratum #100 K8 in compat mode occasionally jumps to illegal
335  * addresses >4GB.  We catch this in the page fault handler because these
336  * addresses are not reachable. Just detect this case and return.  Any code
337  * segment in LDT is compatibility mode.
338  */
339 static int is_errata100(struct pt_regs *regs, unsigned long address)
340 {
341 #ifdef CONFIG_X86_64
342         if ((regs->cs == __USER32_CS || (regs->cs & (1<<2))) &&
343             (address >> 32))
344                 return 1;
345 #endif
346         return 0;
347 }
348
349 void do_invalid_op(struct pt_regs *, unsigned long);
350
351 static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
352 {
353 #ifdef CONFIG_X86_F00F_BUG
354         unsigned long nr;
355         /*
356          * Pentium F0 0F C7 C8 bug workaround.
357          */
358         if (boot_cpu_data.f00f_bug) {
359                 nr = (address - idt_descr.address) >> 3;
360
361                 if (nr == 6) {
362                         do_invalid_op(regs, 0);
363                         return 1;
364                 }
365         }
366 #endif
367         return 0;
368 }
369
370 static void show_fault_oops(struct pt_regs *regs, unsigned long error_code,
371                             unsigned long address)
372 {
373 #ifdef CONFIG_X86_32
374         if (!oops_may_print())
375                 return;
376
377 #ifdef CONFIG_X86_PAE
378         if (error_code & PF_INSTR) {
379                 int level;
380                 pte_t *pte = lookup_address(address, &level);
381
382                 if (pte && pte_present(*pte) && !pte_exec(*pte))
383                         printk(KERN_CRIT "kernel tried to execute "
384                                 "NX-protected page - exploit attempt? "
385                                 "(uid: %d)\n", current->uid);
386         }
387 #endif
388         printk(KERN_ALERT "BUG: unable to handle kernel ");
389         if (address < PAGE_SIZE)
390                 printk(KERN_CONT "NULL pointer dereference");
391         else
392                 printk(KERN_CONT "paging request");
393         printk(KERN_CONT " at %08lx\n", address);
394
395         printk(KERN_ALERT "IP:");
396         printk_address(regs->ip, 1);
397         dump_pagetable(address);
398 #else /* CONFIG_X86_64 */
399         printk(KERN_ALERT "BUG: unable to handle kernel ");
400         if (address < PAGE_SIZE)
401                 printk(KERN_CONT "NULL pointer dereference");
402         else
403                 printk(KERN_CONT "paging request");
404         printk(KERN_CONT " at %016lx\n", address);
405
406         printk(KERN_ALERT "IP:");
407         printk_address(regs->ip, 1);
408         dump_pagetable(address);
409 #endif
410 }
411
412 #ifdef CONFIG_X86_64
413 static noinline void pgtable_bad(unsigned long address, struct pt_regs *regs,
414                                  unsigned long error_code)
415 {
416         unsigned long flags = oops_begin();
417         struct task_struct *tsk;
418
419         printk(KERN_ALERT "%s: Corrupted page table at address %lx\n",
420                current->comm, address);
421         dump_pagetable(address);
422         tsk = current;
423         tsk->thread.cr2 = address;
424         tsk->thread.trap_no = 14;
425         tsk->thread.error_code = error_code;
426         if (__die("Bad pagetable", regs, error_code))
427                 regs = NULL;
428         oops_end(flags, regs, SIGKILL);
429 }
430 #endif
431
432 /*
433  * Handle a fault on the vmalloc or module mapping area
434  *
435  * This assumes no large pages in there.
436  */
437 static inline int vmalloc_fault(unsigned long address)
438 {
439 #ifdef CONFIG_X86_32
440         unsigned long pgd_paddr;
441         pmd_t *pmd_k;
442         pte_t *pte_k;
443         /*
444          * Synchronize this task's top level page-table
445          * with the 'reference' page table.
446          *
447          * Do _not_ use "current" here. We might be inside
448          * an interrupt in the middle of a task switch..
449          */
450         pgd_paddr = read_cr3();
451         pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
452         if (!pmd_k)
453                 return -1;
454         pte_k = pte_offset_kernel(pmd_k, address);
455         if (!pte_present(*pte_k))
456                 return -1;
457         return 0;
458 #else
459         pgd_t *pgd, *pgd_ref;
460         pud_t *pud, *pud_ref;
461         pmd_t *pmd, *pmd_ref;
462         pte_t *pte, *pte_ref;
463
464         /* Copy kernel mappings over when needed. This can also
465            happen within a race in page table update. In the later
466            case just flush. */
467
468         pgd = pgd_offset(current->mm ?: &init_mm, address);
469         pgd_ref = pgd_offset_k(address);
470         if (pgd_none(*pgd_ref))
471                 return -1;
472         if (pgd_none(*pgd))
473                 set_pgd(pgd, *pgd_ref);
474         else
475                 BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
476
477         /* Below here mismatches are bugs because these lower tables
478            are shared */
479
480         pud = pud_offset(pgd, address);
481         pud_ref = pud_offset(pgd_ref, address);
482         if (pud_none(*pud_ref))
483                 return -1;
484         if (pud_none(*pud) || pud_page_vaddr(*pud) != pud_page_vaddr(*pud_ref))
485                 BUG();
486         pmd = pmd_offset(pud, address);
487         pmd_ref = pmd_offset(pud_ref, address);
488         if (pmd_none(*pmd_ref))
489                 return -1;
490         if (pmd_none(*pmd) || pmd_page(*pmd) != pmd_page(*pmd_ref))
491                 BUG();
492         pte_ref = pte_offset_kernel(pmd_ref, address);
493         if (!pte_present(*pte_ref))
494                 return -1;
495         pte = pte_offset_kernel(pmd, address);
496         /* Don't use pte_page here, because the mappings can point
497            outside mem_map, and the NUMA hash lookup cannot handle
498            that. */
499         if (!pte_present(*pte) || pte_pfn(*pte) != pte_pfn(*pte_ref))
500                 BUG();
501         return 0;
502 #endif
503 }
504
505 int show_unhandled_signals = 1;
506
507 /*
508  * This routine handles page faults.  It determines the address,
509  * and the problem, and then passes it off to one of the appropriate
510  * routines.
511  */
512 void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
513 {
514         struct task_struct *tsk;
515         struct mm_struct *mm;
516         struct vm_area_struct *vma;
517         unsigned long address;
518         int write, si_code;
519         int fault;
520
521         /*
522          * We can fault from pretty much anywhere, with unknown IRQ state.
523          */
524         trace_hardirqs_fixup();
525
526         tsk = current;
527         mm = tsk->mm;
528         prefetchw(&mm->mmap_sem);
529
530         /* get the address */
531         address = read_cr2();
532
533         si_code = SEGV_MAPERR;
534
535         if (notify_page_fault(regs))
536                 return;
537
538         /*
539          * We fault-in kernel-space virtual memory on-demand. The
540          * 'reference' page table is init_mm.pgd.
541          *
542          * NOTE! We MUST NOT take any locks for this case. We may
543          * be in an interrupt or a critical region, and should
544          * only copy the information from the master page table,
545          * nothing more.
546          *
547          * This verifies that the fault happens in kernel space
548          * (error_code & 4) == 0, and that the fault was not a
549          * protection error (error_code & 9) == 0.
550          */
551         if (unlikely(address >= TASK_SIZE)) {
552                 if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) &&
553                     vmalloc_fault(address) >= 0)
554                         return;
555                 /*
556                  * Don't take the mm semaphore here. If we fixup a prefetch
557                  * fault we could otherwise deadlock.
558                  */
559                 goto bad_area_nosemaphore;
560         }
561
562         /* It's safe to allow irq's after cr2 has been saved and the vmalloc
563            fault has been handled. */
564         if (regs->flags & (X86_EFLAGS_IF|VM_MASK))
565                 local_irq_enable();
566
567         /*
568          * If we're in an interrupt, have no user context or are running in an
569          * atomic region then we must not take the fault.
570          */
571         if (in_atomic() || !mm)
572                 goto bad_area_nosemaphore;
573
574         /* When running in the kernel we expect faults to occur only to
575          * addresses in user space.  All other faults represent errors in the
576          * kernel and should generate an OOPS.  Unfortunately, in the case of an
577          * erroneous fault occurring in a code path which already holds mmap_sem
578          * we will deadlock attempting to validate the fault against the
579          * address space.  Luckily the kernel only validly references user
580          * space from well defined areas of code, which are listed in the
581          * exceptions table.
582          *
583          * As the vast majority of faults will be valid we will only perform
584          * the source reference check when there is a possibility of a deadlock.
585          * Attempt to lock the address space, if we cannot we then validate the
586          * source.  If this is invalid we can skip the address space check,
587          * thus avoiding the deadlock.
588          */
589         if (!down_read_trylock(&mm->mmap_sem)) {
590                 if ((error_code & PF_USER) == 0 &&
591                     !search_exception_tables(regs->ip))
592                         goto bad_area_nosemaphore;
593                 down_read(&mm->mmap_sem);
594         }
595
596         vma = find_vma(mm, address);
597         if (!vma)
598                 goto bad_area;
599         if (vma->vm_start <= address)
600                 goto good_area;
601         if (!(vma->vm_flags & VM_GROWSDOWN))
602                 goto bad_area;
603         if (error_code & PF_USER) {
604                 /*
605                  * Accessing the stack below %sp is always a bug.
606                  * The large cushion allows instructions like enter
607                  * and pusha to work.  ("enter $65535,$31" pushes
608                  * 32 pointers and then decrements %sp by 65535.)
609                  */
610                 if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp)
611                         goto bad_area;
612         }
613         if (expand_stack(vma, address))
614                 goto bad_area;
615 /*
616  * Ok, we have a good vm_area for this memory access, so
617  * we can handle it..
618  */
619 good_area:
620         si_code = SEGV_ACCERR;
621         write = 0;
622         switch (error_code & (PF_PROT|PF_WRITE)) {
623         default:        /* 3: write, present */
624                 /* fall through */
625         case PF_WRITE:          /* write, not present */
626                 if (!(vma->vm_flags & VM_WRITE))
627                         goto bad_area;
628                 write++;
629                 break;
630         case PF_PROT:           /* read, present */
631                 goto bad_area;
632         case 0:                 /* read, not present */
633                 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
634                         goto bad_area;
635         }
636
637  survive:
638         /*
639          * If for any reason at all we couldn't handle the fault,
640          * make sure we exit gracefully rather than endlessly redo
641          * the fault.
642          */
643         fault = handle_mm_fault(mm, vma, address, write);
644         if (unlikely(fault & VM_FAULT_ERROR)) {
645                 if (fault & VM_FAULT_OOM)
646                         goto out_of_memory;
647                 else if (fault & VM_FAULT_SIGBUS)
648                         goto do_sigbus;
649                 BUG();
650         }
651         if (fault & VM_FAULT_MAJOR)
652                 tsk->maj_flt++;
653         else
654                 tsk->min_flt++;
655
656 #ifdef CONFIG_X86_32
657         /*
658          * Did it hit the DOS screen memory VA from vm86 mode?
659          */
660         if (v8086_mode(regs)) {
661                 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
662                 if (bit < 32)
663                         tsk->thread.screen_bitmap |= 1 << bit;
664         }
665 #endif
666         up_read(&mm->mmap_sem);
667         return;
668
669 /*
670  * Something tried to access memory that isn't in our memory map..
671  * Fix it, but check if it's kernel or user first..
672  */
673 bad_area:
674         up_read(&mm->mmap_sem);
675
676 bad_area_nosemaphore:
677         /* User mode accesses just cause a SIGSEGV */
678         if (error_code & PF_USER) {
679                 /*
680                  * It's possible to have interrupts off here.
681                  */
682                 local_irq_enable();
683
684                 /*
685                  * Valid to do another page fault here because this one came
686                  * from user space.
687                  */
688                 if (is_prefetch(regs, address, error_code))
689                         return;
690
691                 if (is_errata100(regs, address))
692                         return;
693
694                 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
695                     printk_ratelimit()) {
696                         printk(
697 #ifdef CONFIG_X86_32
698                         "%s%s[%d]: segfault at %lx ip %08lx sp %08lx error %lx",
699 #else
700                         "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx",
701 #endif
702                         task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
703                         tsk->comm, task_pid_nr(tsk), address, regs->ip,
704                         regs->sp, error_code);
705                         print_vma_addr(" in ", regs->ip);
706                         printk("\n");
707                 }
708                 tsk->thread.cr2 = address;
709                 /* Kernel addresses are always protection faults */
710                 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
711                 tsk->thread.trap_no = 14;
712                 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
713                 return;
714         }
715
716         if (is_f00f_bug(regs, address))
717                 return;
718
719 no_context:
720         /* Are we prepared to handle this kernel fault?  */
721         if (fixup_exception(regs))
722                 return;
723
724         /*
725          * Valid to do another page fault here, because if this fault
726          * had been triggered by is_prefetch fixup_exception would have
727          * handled it.
728          */
729         if (is_prefetch(regs, address, error_code))
730                 return;
731
732         if (is_errata93(regs, address))
733                 return;
734
735 /*
736  * Oops. The kernel tried to access some bad page. We'll have to
737  * terminate things with extreme prejudice.
738  */
739
740         bust_spinlocks(1);
741
742         show_fault_oops(regs, error_code, address);
743
744         tsk->thread.cr2 = address;
745         tsk->thread.trap_no = 14;
746         tsk->thread.error_code = error_code;
747         die("Oops", regs, error_code);
748         bust_spinlocks(0);
749         do_exit(SIGKILL);
750
751 /*
752  * We ran out of memory, or some other thing happened to us that made
753  * us unable to handle the page fault gracefully.
754  */
755 out_of_memory:
756         up_read(&mm->mmap_sem);
757         if (is_global_init(tsk)) {
758                 yield();
759                 down_read(&mm->mmap_sem);
760                 goto survive;
761         }
762         printk("VM: killing process %s\n", tsk->comm);
763         if (error_code & PF_USER)
764                 do_group_exit(SIGKILL);
765         goto no_context;
766
767 do_sigbus:
768         up_read(&mm->mmap_sem);
769
770         /* Kernel mode? Handle exceptions or die */
771         if (!(error_code & PF_USER))
772                 goto no_context;
773
774         /* User space => ok to do another page fault */
775         if (is_prefetch(regs, address, error_code))
776                 return;
777
778         tsk->thread.cr2 = address;
779         tsk->thread.error_code = error_code;
780         tsk->thread.trap_no = 14;
781         force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
782 }
783
784 void vmalloc_sync_all(void)
785 {
786 #ifdef CONFIG_X86_32
787         /*
788          * Note that races in the updates of insync and start aren't
789          * problematic: insync can only get set bits added, and updates to
790          * start are only improving performance (without affecting correctness
791          * if undone).
792          */
793         static DECLARE_BITMAP(insync, PTRS_PER_PGD);
794         static unsigned long start = TASK_SIZE;
795         unsigned long address;
796
797         if (SHARED_KERNEL_PMD)
798                 return;
799
800         BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
801         for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
802                 if (!test_bit(pgd_index(address), insync)) {
803                         unsigned long flags;
804                         struct page *page;
805
806                         spin_lock_irqsave(&pgd_lock, flags);
807                         for (page = pgd_list; page; page =
808                                         (struct page *)page->index)
809                                 if (!vmalloc_sync_one(page_address(page),
810                                                                 address)) {
811                                         BUG_ON(page != pgd_list);
812                                         break;
813                                 }
814                         spin_unlock_irqrestore(&pgd_lock, flags);
815                         if (!page)
816                                 set_bit(pgd_index(address), insync);
817                 }
818                 if (address == start && test_bit(pgd_index(address), insync))
819                         start = address + PGDIR_SIZE;
820         }
821 #else /* CONFIG_X86_64 */
822         /*
823          * Note that races in the updates of insync and start aren't
824          * problematic: insync can only get set bits added, and updates to
825          * start are only improving performance (without affecting correctness
826          * if undone).
827          */
828         static DECLARE_BITMAP(insync, PTRS_PER_PGD);
829         static unsigned long start = VMALLOC_START & PGDIR_MASK;
830         unsigned long address;
831
832         for (address = start; address <= VMALLOC_END; address += PGDIR_SIZE) {
833                 if (!test_bit(pgd_index(address), insync)) {
834                         const pgd_t *pgd_ref = pgd_offset_k(address);
835                         struct page *page;
836
837                         if (pgd_none(*pgd_ref))
838                                 continue;
839                         spin_lock(&pgd_lock);
840                         list_for_each_entry(page, &pgd_list, lru) {
841                                 pgd_t *pgd;
842                                 pgd = (pgd_t *)page_address(page) + pgd_index(address);
843                                 if (pgd_none(*pgd))
844                                         set_pgd(pgd, *pgd_ref);
845                                 else
846                                         BUG_ON(pgd_page_vaddr(*pgd) != pgd_page_vaddr(*pgd_ref));
847                         }
848                         spin_unlock(&pgd_lock);
849                         set_bit(pgd_index(address), insync);
850                 }
851                 if (address == start)
852                         start = address + PGDIR_SIZE;
853         }
854         /* Check that there is no need to do the same for the modules area. */
855         BUILD_BUG_ON(!(MODULES_VADDR > __START_KERNEL));
856         BUILD_BUG_ON(!(((MODULES_END - 1) & PGDIR_MASK) ==
857                                 (__START_KERNEL & PGDIR_MASK)));
858 #endif
859 }