fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / arch / i386 / mm / fault-xen.c
1 /*
2  *  linux/arch/i386/mm/fault.c
3  *
4  *  Copyright (C) 1995  Linus Torvalds
5  */
6
7 #include <linux/signal.h>
8 #include <linux/sched.h>
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/string.h>
12 #include <linux/types.h>
13 #include <linux/ptrace.h>
14 #include <linux/mman.h>
15 #include <linux/mm.h>
16 #include <linux/smp.h>
17 #include <linux/smp_lock.h>
18 #include <linux/interrupt.h>
19 #include <linux/init.h>
20 #include <linux/tty.h>
21 #include <linux/vt_kern.h>              /* For unblank_screen() */
22 #include <linux/highmem.h>
23 #include <linux/module.h>
24 #include <linux/kprobes.h>
25 #include <linux/uaccess.h>
26
27 #include <asm/system.h>
28 #include <asm/desc.h>
29 #include <asm/kdebug.h>
30 #include <asm/segment.h>
31
32 extern void die(const char *,struct pt_regs *,long);
33
34 static ATOMIC_NOTIFIER_HEAD(notify_page_fault_chain);
35
36 int register_page_fault_notifier(struct notifier_block *nb)
37 {
38         vmalloc_sync_all();
39         return atomic_notifier_chain_register(&notify_page_fault_chain, nb);
40 }
41 EXPORT_SYMBOL_GPL(register_page_fault_notifier);
42
43 int unregister_page_fault_notifier(struct notifier_block *nb)
44 {
45         return atomic_notifier_chain_unregister(&notify_page_fault_chain, nb);
46 }
47 EXPORT_SYMBOL_GPL(unregister_page_fault_notifier);
48
49 static inline int notify_page_fault(enum die_val val, const char *str,
50                         struct pt_regs *regs, long err, int trap, int sig)
51 {
52         struct die_args args = {
53                 .regs = regs,
54                 .str = str,
55                 .err = err,
56                 .trapnr = trap,
57                 .signr = sig
58         };
59         return atomic_notifier_call_chain(&notify_page_fault_chain, val, &args);
60 }
61
62 /*
63  * Unlock any spinlocks which will prevent us from getting the
64  * message out 
65  */
66 void bust_spinlocks(int yes)
67 {
68         int loglevel_save = console_loglevel;
69
70         if (yes) {
71                 oops_in_progress = 1;
72                 return;
73         }
74 #ifdef CONFIG_VT
75         unblank_screen();
76 #endif
77         oops_in_progress = 0;
78         /*
79          * OK, the message is on the console.  Now we call printk()
80          * without oops_in_progress set so that printk will give klogd
81          * a poke.  Hold onto your hats...
82          */
83         console_loglevel = 15;          /* NMI oopser may have shut the console up */
84         printk(" ");
85         console_loglevel = loglevel_save;
86 }
87
88 /*
89  * Return EIP plus the CS segment base.  The segment limit is also
90  * adjusted, clamped to the kernel/user address space (whichever is
91  * appropriate), and returned in *eip_limit.
92  *
93  * The segment is checked, because it might have been changed by another
94  * task between the original faulting instruction and here.
95  *
96  * If CS is no longer a valid code segment, or if EIP is beyond the
97  * limit, or if it is a kernel address when CS is not a kernel segment,
98  * then the returned value will be greater than *eip_limit.
99  * 
100  * This is slow, but is very rarely executed.
101  */
102 static inline unsigned long get_segment_eip(struct pt_regs *regs,
103                                             unsigned long *eip_limit)
104 {
105         unsigned long eip = regs->eip;
106         unsigned seg = regs->xcs & 0xffff;
107         u32 seg_ar, seg_limit, base, *desc;
108
109         /* Unlikely, but must come before segment checks. */
110         if (unlikely(regs->eflags & VM_MASK)) {
111                 base = seg << 4;
112                 *eip_limit = base + 0xffff;
113                 return base + (eip & 0xffff);
114         }
115
116         /* The standard kernel/user address space limit. */
117         *eip_limit = user_mode(regs) ? USER_DS.seg : KERNEL_DS.seg;
118         
119         /* By far the most common cases. */
120         if (likely(SEGMENT_IS_FLAT_CODE(seg)))
121                 return eip;
122
123         /* Check the segment exists, is within the current LDT/GDT size,
124            that kernel/user (ring 0..3) has the appropriate privilege,
125            that it's a code segment, and get the limit. */
126         __asm__ ("larl %3,%0; lsll %3,%1"
127                  : "=&r" (seg_ar), "=r" (seg_limit) : "0" (0), "rm" (seg));
128         if ((~seg_ar & 0x9800) || eip > seg_limit) {
129                 *eip_limit = 0;
130                 return 1;        /* So that returned eip > *eip_limit. */
131         }
132
133         /* Get the GDT/LDT descriptor base. 
134            When you look for races in this code remember that
135            LDT and other horrors are only used in user space. */
136         if (seg & (1<<2)) {
137                 /* Must lock the LDT while reading it. */
138                 down(&current->mm->context.sem);
139                 desc = current->mm->context.ldt;
140                 desc = (void *)desc + (seg & ~7);
141         } else {
142                 /* Must disable preemption while reading the GDT. */
143                 desc = (u32 *)get_cpu_gdt_table(get_cpu());
144                 desc = (void *)desc + (seg & ~7);
145         }
146
147         /* Decode the code segment base from the descriptor */
148         base = get_desc_base((unsigned long *)desc);
149
150         if (seg & (1<<2)) { 
151                 up(&current->mm->context.sem);
152         } else
153                 put_cpu();
154
155         /* Adjust EIP and segment limit, and clamp at the kernel limit.
156            It's legitimate for segments to wrap at 0xffffffff. */
157         seg_limit += base;
158         if (seg_limit < *eip_limit && seg_limit >= base)
159                 *eip_limit = seg_limit;
160         return eip + base;
161 }
162
163 /* 
164  * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
165  * Check that here and ignore it.
166  */
167 static int __is_prefetch(struct pt_regs *regs, unsigned long addr)
168
169         unsigned long limit;
170         unsigned char *instr = (unsigned char *)get_segment_eip (regs, &limit);
171         int scan_more = 1;
172         int prefetch = 0; 
173         int i;
174
175         for (i = 0; scan_more && i < 15; i++) { 
176                 unsigned char opcode;
177                 unsigned char instr_hi;
178                 unsigned char instr_lo;
179
180                 if (instr > (unsigned char *)limit)
181                         break;
182                 if (probe_kernel_address(instr, opcode))
183                         break; 
184
185                 instr_hi = opcode & 0xf0; 
186                 instr_lo = opcode & 0x0f; 
187                 instr++;
188
189                 switch (instr_hi) { 
190                 case 0x20:
191                 case 0x30:
192                         /* Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes. */
193                         scan_more = ((instr_lo & 7) == 0x6);
194                         break;
195                         
196                 case 0x60:
197                         /* 0x64 thru 0x67 are valid prefixes in all modes. */
198                         scan_more = (instr_lo & 0xC) == 0x4;
199                         break;          
200                 case 0xF0:
201                         /* 0xF0, 0xF2, and 0xF3 are valid prefixes */
202                         scan_more = !instr_lo || (instr_lo>>1) == 1;
203                         break;                  
204                 case 0x00:
205                         /* Prefetch instruction is 0x0F0D or 0x0F18 */
206                         scan_more = 0;
207                         if (instr > (unsigned char *)limit)
208                                 break;
209                         if (probe_kernel_address(instr, opcode))
210                                 break;
211                         prefetch = (instr_lo == 0xF) &&
212                                 (opcode == 0x0D || opcode == 0x18);
213                         break;                  
214                 default:
215                         scan_more = 0;
216                         break;
217                 } 
218         }
219         return prefetch;
220 }
221
222 static inline int is_prefetch(struct pt_regs *regs, unsigned long addr,
223                               unsigned long error_code)
224 {
225         if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
226                      boot_cpu_data.x86 >= 6)) {
227                 /* Catch an obscure case of prefetch inside an NX page. */
228                 if (nx_enabled && (error_code & 16))
229                         return 0;
230                 return __is_prefetch(regs, addr);
231         }
232         return 0;
233
234
235 static noinline void force_sig_info_fault(int si_signo, int si_code,
236         unsigned long address, struct task_struct *tsk)
237 {
238         siginfo_t info;
239
240         info.si_signo = si_signo;
241         info.si_errno = 0;
242         info.si_code = si_code;
243         info.si_addr = (void __user *)address;
244         force_sig_info(si_signo, &info, tsk);
245 }
246
247 fastcall void do_invalid_op(struct pt_regs *, unsigned long);
248
249 #ifdef CONFIG_X86_PAE
250 static void dump_fault_path(unsigned long address)
251 {
252         unsigned long *p, page;
253         unsigned long mfn; 
254
255         page = read_cr3();
256         p  = (unsigned long *)__va(page);
257         p += (address >> 30) * 2;
258         printk(KERN_ALERT "%08lx -> *pde = %08lx:%08lx\n", page, p[1], p[0]);
259         if (p[0] & 1) {
260                 mfn  = (p[0] >> PAGE_SHIFT) | ((p[1] & 0x7) << 20); 
261                 page = mfn_to_pfn(mfn) << PAGE_SHIFT; 
262                 p  = (unsigned long *)__va(page);
263                 address &= 0x3fffffff;
264                 p += (address >> 21) * 2;
265                 printk(KERN_ALERT "%08lx -> *pme = %08lx:%08lx\n", 
266                        page, p[1], p[0]);
267 #ifndef CONFIG_HIGHPTE
268                 if (p[0] & 1) {
269                         mfn  = (p[0] >> PAGE_SHIFT) | ((p[1] & 0x7) << 20); 
270                         page = mfn_to_pfn(mfn) << PAGE_SHIFT; 
271                         p  = (unsigned long *) __va(page);
272                         address &= 0x001fffff;
273                         p += (address >> 12) * 2;
274                         printk(KERN_ALERT "%08lx -> *pte = %08lx:%08lx\n",
275                                page, p[1], p[0]);
276                 }
277 #endif
278         }
279 }
280 #else
281 static void dump_fault_path(unsigned long address)
282 {
283         unsigned long page;
284
285         page = read_cr3();
286         page = ((unsigned long *) __va(page))[address >> 22];
287         if (oops_may_print())
288                 printk(KERN_ALERT "*pde = ma %08lx pa %08lx\n", page,
289                        machine_to_phys(page));
290         /*
291          * We must not directly access the pte in the highpte
292          * case, the page table might be allocated in highmem.
293          * And lets rather not kmap-atomic the pte, just in case
294          * it's allocated already.
295          */
296 #ifndef CONFIG_HIGHPTE
297         if ((page & 1) && oops_may_print()) {
298                 page &= PAGE_MASK;
299                 address &= 0x003ff000;
300                 page = machine_to_phys(page);
301                 page = ((unsigned long *) __va(page))[address >> PAGE_SHIFT];
302                 printk(KERN_ALERT "*pte = ma %08lx pa %08lx\n", page,
303                        machine_to_phys(page));
304         }
305 #endif
306 }
307 #endif
308
309 static int spurious_fault(struct pt_regs *regs,
310                           unsigned long address,
311                           unsigned long error_code)
312 {
313         pgd_t *pgd;
314         pud_t *pud;
315         pmd_t *pmd;
316         pte_t *pte;
317
318 #ifdef CONFIG_XEN
319         /* Faults in hypervisor area are never spurious. */
320         if (address >= HYPERVISOR_VIRT_START)
321                 return 0;
322 #endif
323
324         /* Reserved-bit violation or user access to kernel space? */
325         if (error_code & 0x0c)
326                 return 0;
327
328         pgd = init_mm.pgd + pgd_index(address);
329         if (!pgd_present(*pgd))
330                 return 0;
331
332         pud = pud_offset(pgd, address);
333         if (!pud_present(*pud))
334                 return 0;
335
336         pmd = pmd_offset(pud, address);
337         if (!pmd_present(*pmd))
338                 return 0;
339
340         pte = pte_offset_kernel(pmd, address);
341         if (!pte_present(*pte))
342                 return 0;
343         if ((error_code & 0x02) && !pte_write(*pte))
344                 return 0;
345 #ifdef CONFIG_X86_PAE
346         if ((error_code & 0x10) && (pte_val(*pte) & _PAGE_NX))
347                 return 0;
348 #endif
349
350         return 1;
351 }
352
353 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
354 {
355         unsigned index = pgd_index(address);
356         pgd_t *pgd_k;
357         pud_t *pud, *pud_k;
358         pmd_t *pmd, *pmd_k;
359
360         pgd += index;
361         pgd_k = init_mm.pgd + index;
362
363         if (!pgd_present(*pgd_k))
364                 return NULL;
365
366         /*
367          * set_pgd(pgd, *pgd_k); here would be useless on PAE
368          * and redundant with the set_pmd() on non-PAE. As would
369          * set_pud.
370          */
371
372         pud = pud_offset(pgd, address);
373         pud_k = pud_offset(pgd_k, address);
374         if (!pud_present(*pud_k))
375                 return NULL;
376
377         pmd = pmd_offset(pud, address);
378         pmd_k = pmd_offset(pud_k, address);
379         if (!pmd_present(*pmd_k))
380                 return NULL;
381         if (!pmd_present(*pmd))
382 #ifndef CONFIG_XEN
383                 set_pmd(pmd, *pmd_k);
384 #else
385                 /*
386                  * When running on Xen we must launder *pmd_k through
387                  * pmd_val() to ensure that _PAGE_PRESENT is correctly set.
388                  */
389                 set_pmd(pmd, __pmd(pmd_val(*pmd_k)));
390 #endif
391         else
392                 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
393         return pmd_k;
394 }
395
396 /*
397  * Handle a fault on the vmalloc or module mapping area
398  *
399  * This assumes no large pages in there.
400  */
401 static inline int vmalloc_fault(unsigned long address)
402 {
403         unsigned long pgd_paddr;
404         pmd_t *pmd_k;
405         pte_t *pte_k;
406         /*
407          * Synchronize this task's top level page-table
408          * with the 'reference' page table.
409          *
410          * Do _not_ use "current" here. We might be inside
411          * an interrupt in the middle of a task switch..
412          */
413         pgd_paddr = read_cr3();
414         pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
415         if (!pmd_k)
416                 return -1;
417         pte_k = pte_offset_kernel(pmd_k, address);
418         if (!pte_present(*pte_k))
419                 return -1;
420         return 0;
421 }
422
423 /*
424  * This routine handles page faults.  It determines the address,
425  * and the problem, and then passes it off to one of the appropriate
426  * routines.
427  *
428  * error_code:
429  *      bit 0 == 0 means no page found, 1 means protection fault
430  *      bit 1 == 0 means read, 1 means write
431  *      bit 2 == 0 means kernel, 1 means user-mode
432  *      bit 3 == 1 means use of reserved bit detected
433  *      bit 4 == 1 means fault was an instruction fetch
434  */
435 fastcall void __kprobes do_page_fault(struct pt_regs *regs,
436                                       unsigned long error_code)
437 {
438         struct task_struct *tsk;
439         struct mm_struct *mm;
440         struct vm_area_struct * vma;
441         unsigned long address;
442         int write, si_code;
443
444         /* get the address */
445         address = read_cr2();
446
447         /* Set the "privileged fault" bit to something sane. */
448         error_code &= ~4;
449         error_code |= (regs->xcs & 2) << 1;
450         if (regs->eflags & X86_EFLAGS_VM)
451                 error_code |= 4;
452
453         tsk = current;
454
455         si_code = SEGV_MAPERR;
456
457         /*
458          * We fault-in kernel-space virtual memory on-demand. The
459          * 'reference' page table is init_mm.pgd.
460          *
461          * NOTE! We MUST NOT take any locks for this case. We may
462          * be in an interrupt or a critical region, and should
463          * only copy the information from the master page table,
464          * nothing more.
465          *
466          * This verifies that the fault happens in kernel space
467          * (error_code & 4) == 0, and that the fault was not a
468          * protection error (error_code & 9) == 0.
469          */
470         if (unlikely(address >= TASK_SIZE)) {
471 #ifdef CONFIG_XEN
472                 /* Faults in hypervisor area can never be patched up. */
473                 if (address >= HYPERVISOR_VIRT_START)
474                         goto bad_area_nosemaphore;
475 #endif
476                 if (!(error_code & 0x0000000d) && vmalloc_fault(address) >= 0)
477                         return;
478                 /* Can take a spurious fault if mapping changes R/O -> R/W. */
479                 if (spurious_fault(regs, address, error_code))
480                         return;
481                 if (notify_page_fault(DIE_PAGE_FAULT, "page fault", regs, error_code, 14,
482                                                 SIGSEGV) == NOTIFY_STOP)
483                         return;
484                 /*
485                  * Don't take the mm semaphore here. If we fixup a prefetch
486                  * fault we could otherwise deadlock.
487                  */
488                 goto bad_area_nosemaphore;
489         }
490
491         if (notify_page_fault(DIE_PAGE_FAULT, "page fault", regs, error_code, 14,
492                                         SIGSEGV) == NOTIFY_STOP)
493                 return;
494
495         /* It's safe to allow irq's after cr2 has been saved and the vmalloc
496            fault has been handled. */
497         if (regs->eflags & (X86_EFLAGS_IF|VM_MASK))
498                 local_irq_enable();
499
500         mm = tsk->mm;
501
502         /*
503          * If we're in an interrupt, have no user context or are running in an
504          * atomic region then we must not take the fault..
505          */
506         if (in_atomic() || !mm)
507                 goto bad_area_nosemaphore;
508
509         /* When running in the kernel we expect faults to occur only to
510          * addresses in user space.  All other faults represent errors in the
511          * kernel and should generate an OOPS.  Unfortunatly, in the case of an
512          * erroneous fault occurring in a code path which already holds mmap_sem
513          * we will deadlock attempting to validate the fault against the
514          * address space.  Luckily the kernel only validly references user
515          * space from well defined areas of code, which are listed in the
516          * exceptions table.
517          *
518          * As the vast majority of faults will be valid we will only perform
519          * the source reference check when there is a possibilty of a deadlock.
520          * Attempt to lock the address space, if we cannot we then validate the
521          * source.  If this is invalid we can skip the address space check,
522          * thus avoiding the deadlock.
523          */
524         if (!down_read_trylock(&mm->mmap_sem)) {
525                 if ((error_code & 4) == 0 &&
526                     !search_exception_tables(regs->eip))
527                         goto bad_area_nosemaphore;
528                 down_read(&mm->mmap_sem);
529         }
530
531         vma = find_vma(mm, address);
532         if (!vma)
533                 goto bad_area;
534         if (vma->vm_start <= address)
535                 goto good_area;
536         if (!(vma->vm_flags & VM_GROWSDOWN))
537                 goto bad_area;
538         if (error_code & 4) {
539                 /*
540                  * Accessing the stack below %esp is always a bug.
541                  * The large cushion allows instructions like enter
542                  * and pusha to work.  ("enter $65535,$31" pushes
543                  * 32 pointers and then decrements %esp by 65535.)
544                  */
545                 if (address + 65536 + 32 * sizeof(unsigned long) < regs->esp)
546                         goto bad_area;
547         }
548         if (expand_stack(vma, address))
549                 goto bad_area;
550 /*
551  * Ok, we have a good vm_area for this memory access, so
552  * we can handle it..
553  */
554 good_area:
555         si_code = SEGV_ACCERR;
556         write = 0;
557         switch (error_code & 3) {
558                 default:        /* 3: write, present */
559                                 /* fall through */
560                 case 2:         /* write, not present */
561                         if (!(vma->vm_flags & VM_WRITE))
562                                 goto bad_area;
563                         write++;
564                         break;
565                 case 1:         /* read, present */
566                         goto bad_area;
567                 case 0:         /* read, not present */
568                         if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
569                                 goto bad_area;
570         }
571
572  survive:
573         /*
574          * If for any reason at all we couldn't handle the fault,
575          * make sure we exit gracefully rather than endlessly redo
576          * the fault.
577          */
578         switch (handle_mm_fault(mm, vma, address, write)) {
579                 case VM_FAULT_MINOR:
580                         tsk->min_flt++;
581                         break;
582                 case VM_FAULT_MAJOR:
583                         tsk->maj_flt++;
584                         break;
585                 case VM_FAULT_SIGBUS:
586                         goto do_sigbus;
587                 case VM_FAULT_OOM:
588                         goto out_of_memory;
589                 default:
590                         BUG();
591         }
592
593         /*
594          * Did it hit the DOS screen memory VA from vm86 mode?
595          */
596         if (regs->eflags & VM_MASK) {
597                 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
598                 if (bit < 32)
599                         tsk->thread.screen_bitmap |= 1 << bit;
600         }
601         up_read(&mm->mmap_sem);
602         return;
603
604 /*
605  * Something tried to access memory that isn't in our memory map..
606  * Fix it, but check if it's kernel or user first..
607  */
608 bad_area:
609         up_read(&mm->mmap_sem);
610
611 bad_area_nosemaphore:
612         /* User mode accesses just cause a SIGSEGV */
613         if (error_code & 4) {
614                 /* 
615                  * Valid to do another page fault here because this one came 
616                  * from user space.
617                  */
618                 if (is_prefetch(regs, address, error_code))
619                         return;
620
621                 tsk->thread.cr2 = address;
622                 /* Kernel addresses are always protection faults */
623                 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
624                 tsk->thread.trap_no = 14;
625                 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
626                 return;
627         }
628
629 #ifdef CONFIG_X86_F00F_BUG
630         /*
631          * Pentium F0 0F C7 C8 bug workaround.
632          */
633         if (boot_cpu_data.f00f_bug) {
634                 unsigned long nr;
635                 
636                 nr = (address - idt_descr.address) >> 3;
637
638                 if (nr == 6) {
639                         do_invalid_op(regs, 0);
640                         return;
641                 }
642         }
643 #endif
644
645 no_context:
646         /* Are we prepared to handle this kernel fault?  */
647         if (fixup_exception(regs))
648                 return;
649
650         /* 
651          * Valid to do another page fault here, because if this fault
652          * had been triggered by is_prefetch fixup_exception would have 
653          * handled it.
654          */
655         if (is_prefetch(regs, address, error_code))
656                 return;
657
658 /*
659  * Oops. The kernel tried to access some bad page. We'll have to
660  * terminate things with extreme prejudice.
661  */
662
663         bust_spinlocks(1);
664
665         if (oops_may_print()) {
666         #ifdef CONFIG_X86_PAE
667                 if (error_code & 16) {
668                         pte_t *pte = lookup_address(address);
669
670                         if (pte && pte_present(*pte) && !pte_exec_kernel(*pte))
671                                 printk(KERN_CRIT "kernel tried to execute "
672                                         "NX-protected page - exploit attempt? "
673                                         "(uid: %d)\n", current->uid);
674                 }
675         #endif
676                 if (address < PAGE_SIZE)
677                         printk(KERN_ALERT "BUG: unable to handle kernel NULL "
678                                         "pointer dereference");
679                 else
680                         printk(KERN_ALERT "BUG: unable to handle kernel paging"
681                                         " request");
682                 printk(" at virtual address %08lx\n",address);
683                 printk(KERN_ALERT " printing eip:\n");
684                 printk("%08lx\n", regs->eip);
685                 dump_fault_path(address);
686         }
687         tsk->thread.cr2 = address;
688         tsk->thread.trap_no = 14;
689         tsk->thread.error_code = error_code;
690         die("Oops", regs, error_code);
691         bust_spinlocks(0);
692         do_exit(SIGKILL);
693
694 /*
695  * We ran out of memory, or some other thing happened to us that made
696  * us unable to handle the page fault gracefully.
697  */
698 out_of_memory:
699         up_read(&mm->mmap_sem);
700         if (is_init(tsk)) {
701                 yield();
702                 down_read(&mm->mmap_sem);
703                 goto survive;
704         }
705         printk("VM: killing process %s(%d:#%u)\n",
706                 tsk->comm, tsk->pid, tsk->xid);
707         if (error_code & 4)
708                 do_exit(SIGKILL);
709         goto no_context;
710
711 do_sigbus:
712         up_read(&mm->mmap_sem);
713
714         /* Kernel mode? Handle exceptions or die */
715         if (!(error_code & 4))
716                 goto no_context;
717
718         /* User space => ok to do another page fault */
719         if (is_prefetch(regs, address, error_code))
720                 return;
721
722         tsk->thread.cr2 = address;
723         tsk->thread.error_code = error_code;
724         tsk->thread.trap_no = 14;
725         force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
726 }
727
728 #ifndef CONFIG_X86_PAE
729 void vmalloc_sync_all(void)
730 {
731         /*
732          * Note that races in the updates of insync and start aren't
733          * problematic: insync can only get set bits added, and updates to
734          * start are only improving performance (without affecting correctness
735          * if undone).
736          */
737         static DECLARE_BITMAP(insync, PTRS_PER_PGD);
738         static unsigned long start = TASK_SIZE;
739         unsigned long address;
740
741         BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
742         for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
743                 if (!test_bit(pgd_index(address), insync)) {
744                         unsigned long flags;
745                         struct page *page;
746
747                         spin_lock_irqsave(&pgd_lock, flags);
748                         for (page = pgd_list; page; page =
749                                         (struct page *)page->index)
750                                 if (!vmalloc_sync_one(page_address(page),
751                                                                 address)) {
752                                         BUG_ON(page != pgd_list);
753                                         break;
754                                 }
755                         spin_unlock_irqrestore(&pgd_lock, flags);
756                         if (!page)
757                                 set_bit(pgd_index(address), insync);
758                 }
759                 if (address == start && test_bit(pgd_index(address), insync))
760                         start = address + PGDIR_SIZE;
761         }
762 }
763 #endif