]> Pileus Git - ~andy/linux/blob - arch/x86/mm/fault_32.c
x86: more users of PF_ constants in fault_32|64.c
[~andy/linux] / 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 #ifdef CONFIG_X86_32
65 /*
66  * Return EIP plus the CS segment base.  The segment limit is also
67  * adjusted, clamped to the kernel/user address space (whichever is
68  * appropriate), and returned in *eip_limit.
69  *
70  * The segment is checked, because it might have been changed by another
71  * task between the original faulting instruction and here.
72  *
73  * If CS is no longer a valid code segment, or if EIP is beyond the
74  * limit, or if it is a kernel address when CS is not a kernel segment,
75  * then the returned value will be greater than *eip_limit.
76  *
77  * This is slow, but is very rarely executed.
78  */
79 static inline unsigned long get_segment_eip(struct pt_regs *regs,
80                                             unsigned long *eip_limit)
81 {
82         unsigned long ip = regs->ip;
83         unsigned seg = regs->cs & 0xffff;
84         u32 seg_ar, seg_limit, base, *desc;
85
86         /* Unlikely, but must come before segment checks. */
87         if (unlikely(regs->flags & VM_MASK)) {
88                 base = seg << 4;
89                 *eip_limit = base + 0xffff;
90                 return base + (ip & 0xffff);
91         }
92
93         /* The standard kernel/user address space limit. */
94         *eip_limit = user_mode(regs) ? USER_DS.seg : KERNEL_DS.seg;
95
96         /* By far the most common cases. */
97         if (likely(SEGMENT_IS_FLAT_CODE(seg)))
98                 return ip;
99
100         /* Check the segment exists, is within the current LDT/GDT size,
101            that kernel/user (ring 0..3) has the appropriate privilege,
102            that it's a code segment, and get the limit. */
103         __asm__ ("larl %3,%0; lsll %3,%1"
104                  : "=&r" (seg_ar), "=r" (seg_limit) : "0" (0), "rm" (seg));
105         if ((~seg_ar & 0x9800) || ip > seg_limit) {
106                 *eip_limit = 0;
107                 return 1;        /* So that returned ip > *eip_limit. */
108         }
109
110         /* Get the GDT/LDT descriptor base.
111            When you look for races in this code remember that
112            LDT and other horrors are only used in user space. */
113         if (seg & (1<<2)) {
114                 /* Must lock the LDT while reading it. */
115                 mutex_lock(&current->mm->context.lock);
116                 desc = current->mm->context.ldt;
117                 desc = (void *)desc + (seg & ~7);
118         } else {
119                 /* Must disable preemption while reading the GDT. */
120                 desc = (u32 *)get_cpu_gdt_table(get_cpu());
121                 desc = (void *)desc + (seg & ~7);
122         }
123
124         /* Decode the code segment base from the descriptor */
125         base = get_desc_base((struct desc_struct *)desc);
126
127         if (seg & (1<<2))
128                 mutex_unlock(&current->mm->context.lock);
129         else
130                 put_cpu();
131
132         /* Adjust EIP and segment limit, and clamp at the kernel limit.
133            It's legitimate for segments to wrap at 0xffffffff. */
134         seg_limit += base;
135         if (seg_limit < *eip_limit && seg_limit >= base)
136                 *eip_limit = seg_limit;
137         return ip + base;
138 }
139 #endif
140
141 /*
142  * X86_32
143  * Sometimes AMD Athlon/Opteron CPUs report invalid exceptions on prefetch.
144  * Check that here and ignore it.
145  *
146  * X86_64
147  * Sometimes the CPU reports invalid exceptions on prefetch.
148  * Check that here and ignore it.
149  *
150  * Opcode checker based on code by Richard Brunner
151  */
152 static int is_prefetch(struct pt_regs *regs, unsigned long addr,
153                        unsigned long error_code)
154 {
155         unsigned char *instr;
156         int scan_more = 1;
157         int prefetch = 0;
158         unsigned char *max_instr;
159
160 #ifdef CONFIG_X86_32
161         unsigned long limit;
162         if (unlikely(boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
163                      boot_cpu_data.x86 >= 6)) {
164                 /* Catch an obscure case of prefetch inside an NX page. */
165                 if (nx_enabled && (error_code & PF_INSTR))
166                         return 0;
167         } else {
168                 return 0;
169         }
170         instr = (unsigned char *)get_segment_eip(regs, &limit);
171 #else
172         /* If it was a exec fault ignore */
173         if (error_code & PF_INSTR)
174                 return 0;
175         instr = (unsigned char __user *)convert_rip_to_linear(current, regs);
176 #endif
177
178         max_instr = instr + 15;
179
180 #ifdef CONFIG_X86_64
181         if (user_mode(regs) && instr >= (unsigned char *)TASK_SIZE)
182                 return 0;
183 #endif
184
185         while (scan_more && instr < max_instr) {
186                 unsigned char opcode;
187                 unsigned char instr_hi;
188                 unsigned char instr_lo;
189
190 #ifdef CONFIG_X86_32
191                 if (instr > (unsigned char *)limit)
192                         break;
193 #endif
194                 if (probe_kernel_address(instr, opcode))
195                         break;
196
197                 instr_hi = opcode & 0xf0;
198                 instr_lo = opcode & 0x0f;
199                 instr++;
200
201                 switch (instr_hi) {
202                 case 0x20:
203                 case 0x30:
204                         /*
205                          * Values 0x26,0x2E,0x36,0x3E are valid x86 prefixes.
206                          * In X86_64 long mode, the CPU will signal invalid
207                          * opcode if some of these prefixes are present so
208                          * X86_64 will never get here anyway
209                          */
210                         scan_more = ((instr_lo & 7) == 0x6);
211                         break;
212 #ifdef CONFIG_X86_64
213                 case 0x40:
214                         /*
215                          * In AMD64 long mode 0x40..0x4F are valid REX prefixes
216                          * Need to figure out under what instruction mode the
217                          * instruction was issued. Could check the LDT for lm,
218                          * but for now it's good enough to assume that long
219                          * mode only uses well known segments or kernel.
220                          */
221                         scan_more = (!user_mode(regs)) || (regs->cs == __USER_CS);
222                         break;
223 #endif
224                 case 0x60:
225                         /* 0x64 thru 0x67 are valid prefixes in all modes. */
226                         scan_more = (instr_lo & 0xC) == 0x4;
227                         break;
228                 case 0xF0:
229                         /* 0xF0, 0xF2, 0xF3 are valid prefixes in all modes. */
230                         scan_more = !instr_lo || (instr_lo>>1) == 1;
231                         break;
232                 case 0x00:
233                         /* Prefetch instruction is 0x0F0D or 0x0F18 */
234                         scan_more = 0;
235 #ifdef CONFIG_X86_32
236                         if (instr > (unsigned char *)limit)
237                                 break;
238 #endif
239                         if (probe_kernel_address(instr, opcode))
240                                 break;
241                         prefetch = (instr_lo == 0xF) &&
242                                 (opcode == 0x0D || opcode == 0x18);
243                         break;
244                 default:
245                         scan_more = 0;
246                         break;
247                 }
248         }
249         return prefetch;
250 }
251
252 static void force_sig_info_fault(int si_signo, int si_code,
253         unsigned long address, struct task_struct *tsk)
254 {
255         siginfo_t info;
256
257         info.si_signo = si_signo;
258         info.si_errno = 0;
259         info.si_code = si_code;
260         info.si_addr = (void __user *)address;
261         force_sig_info(si_signo, &info, tsk);
262 }
263
264 void do_invalid_op(struct pt_regs *, unsigned long);
265
266 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
267 {
268         unsigned index = pgd_index(address);
269         pgd_t *pgd_k;
270         pud_t *pud, *pud_k;
271         pmd_t *pmd, *pmd_k;
272
273         pgd += index;
274         pgd_k = init_mm.pgd + index;
275
276         if (!pgd_present(*pgd_k))
277                 return NULL;
278
279         /*
280          * set_pgd(pgd, *pgd_k); here would be useless on PAE
281          * and redundant with the set_pmd() on non-PAE. As would
282          * set_pud.
283          */
284
285         pud = pud_offset(pgd, address);
286         pud_k = pud_offset(pgd_k, address);
287         if (!pud_present(*pud_k))
288                 return NULL;
289
290         pmd = pmd_offset(pud, address);
291         pmd_k = pmd_offset(pud_k, address);
292         if (!pmd_present(*pmd_k))
293                 return NULL;
294         if (!pmd_present(*pmd)) {
295                 set_pmd(pmd, *pmd_k);
296                 arch_flush_lazy_mmu_mode();
297         } else
298                 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
299         return pmd_k;
300 }
301
302 #ifdef CONFIG_X86_64
303 static const char errata93_warning[] =
304 KERN_ERR "******* Your BIOS seems to not contain a fix for K8 errata #93\n"
305 KERN_ERR "******* Working around it, but it may cause SEGVs or burn power.\n"
306 KERN_ERR "******* Please consider a BIOS update.\n"
307 KERN_ERR "******* Disabling USB legacy in the BIOS may also help.\n";
308
309 /* Workaround for K8 erratum #93 & buggy BIOS.
310    BIOS SMM functions are required to use a specific workaround
311    to avoid corruption of the 64bit RIP register on C stepping K8.
312    A lot of BIOS that didn't get tested properly miss this.
313    The OS sees this as a page fault with the upper 32bits of RIP cleared.
314    Try to work around it here.
315    Note we only handle faults in kernel here. */
316
317 static int is_errata93(struct pt_regs *regs, unsigned long address)
318 {
319         static int warned;
320         if (address != regs->ip)
321                 return 0;
322         if ((address >> 32) != 0)
323                 return 0;
324         address |= 0xffffffffUL << 32;
325         if ((address >= (u64)_stext && address <= (u64)_etext) ||
326             (address >= MODULES_VADDR && address <= MODULES_END)) {
327                 if (!warned) {
328                         printk(errata93_warning);
329                         warned = 1;
330                 }
331                 regs->ip = address;
332                 return 1;
333         }
334         return 0;
335 }
336 #endif
337
338 /*
339  * Handle a fault on the vmalloc or module mapping area
340  *
341  * This assumes no large pages in there.
342  */
343 static inline int vmalloc_fault(unsigned long address)
344 {
345         unsigned long pgd_paddr;
346         pmd_t *pmd_k;
347         pte_t *pte_k;
348         /*
349          * Synchronize this task's top level page-table
350          * with the 'reference' page table.
351          *
352          * Do _not_ use "current" here. We might be inside
353          * an interrupt in the middle of a task switch..
354          */
355         pgd_paddr = read_cr3();
356         pmd_k = vmalloc_sync_one(__va(pgd_paddr), address);
357         if (!pmd_k)
358                 return -1;
359         pte_k = pte_offset_kernel(pmd_k, address);
360         if (!pte_present(*pte_k))
361                 return -1;
362         return 0;
363 }
364
365 int show_unhandled_signals = 1;
366
367 /*
368  * This routine handles page faults.  It determines the address,
369  * and the problem, and then passes it off to one of the appropriate
370  * routines.
371  */
372 void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
373 {
374         struct task_struct *tsk;
375         struct mm_struct *mm;
376         struct vm_area_struct *vma;
377         unsigned long address;
378         int write, si_code;
379         int fault;
380
381         /*
382          * We can fault from pretty much anywhere, with unknown IRQ state.
383          */
384         trace_hardirqs_fixup();
385
386         /* get the address */
387         address = read_cr2();
388
389         tsk = current;
390
391         si_code = SEGV_MAPERR;
392
393         /*
394          * We fault-in kernel-space virtual memory on-demand. The
395          * 'reference' page table is init_mm.pgd.
396          *
397          * NOTE! We MUST NOT take any locks for this case. We may
398          * be in an interrupt or a critical region, and should
399          * only copy the information from the master page table,
400          * nothing more.
401          *
402          * This verifies that the fault happens in kernel space
403          * (error_code & 4) == 0, and that the fault was not a
404          * protection error (error_code & 9) == 0.
405          */
406         if (unlikely(address >= TASK_SIZE)) {
407                 if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) &&
408                     vmalloc_fault(address) >= 0)
409                         return;
410                 if (notify_page_fault(regs))
411                         return;
412                 /*
413                  * Don't take the mm semaphore here. If we fixup a prefetch
414                  * fault we could otherwise deadlock.
415                  */
416                 goto bad_area_nosemaphore;
417         }
418
419         if (notify_page_fault(regs))
420                 return;
421
422         /* It's safe to allow irq's after cr2 has been saved and the vmalloc
423            fault has been handled. */
424         if (regs->flags & (X86_EFLAGS_IF|VM_MASK))
425                 local_irq_enable();
426
427         mm = tsk->mm;
428
429         /*
430          * If we're in an interrupt, have no user context or are running in an
431          * atomic region then we must not take the fault.
432          */
433         if (in_atomic() || !mm)
434                 goto bad_area_nosemaphore;
435
436         /* When running in the kernel we expect faults to occur only to
437          * addresses in user space.  All other faults represent errors in the
438          * kernel and should generate an OOPS.  Unfortunately, in the case of an
439          * erroneous fault occurring in a code path which already holds mmap_sem
440          * we will deadlock attempting to validate the fault against the
441          * address space.  Luckily the kernel only validly references user
442          * space from well defined areas of code, which are listed in the
443          * exceptions table.
444          *
445          * As the vast majority of faults will be valid we will only perform
446          * the source reference check when there is a possibility of a deadlock.
447          * Attempt to lock the address space, if we cannot we then validate the
448          * source.  If this is invalid we can skip the address space check,
449          * thus avoiding the deadlock.
450          */
451         if (!down_read_trylock(&mm->mmap_sem)) {
452                 if ((error_code & PF_USER) == 0 &&
453                     !search_exception_tables(regs->ip))
454                         goto bad_area_nosemaphore;
455                 down_read(&mm->mmap_sem);
456         }
457
458         vma = find_vma(mm, address);
459         if (!vma)
460                 goto bad_area;
461         if (vma->vm_start <= address)
462                 goto good_area;
463         if (!(vma->vm_flags & VM_GROWSDOWN))
464                 goto bad_area;
465         if (error_code & PF_USER) {
466                 /*
467                  * Accessing the stack below %sp is always a bug.
468                  * The large cushion allows instructions like enter
469                  * and pusha to work.  ("enter $65535,$31" pushes
470                  * 32 pointers and then decrements %sp by 65535.)
471                  */
472                 if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp)
473                         goto bad_area;
474         }
475         if (expand_stack(vma, address))
476                 goto bad_area;
477 /*
478  * Ok, we have a good vm_area for this memory access, so
479  * we can handle it..
480  */
481 good_area:
482         si_code = SEGV_ACCERR;
483         write = 0;
484         switch (error_code & (PF_PROT|PF_WRITE)) {
485         default:        /* 3: write, present */
486                 /* fall through */
487         case PF_WRITE:          /* write, not present */
488                 if (!(vma->vm_flags & VM_WRITE))
489                         goto bad_area;
490                 write++;
491                 break;
492         case PF_PROT:           /* read, present */
493                 goto bad_area;
494         case 0:                 /* read, not present */
495                 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
496                         goto bad_area;
497         }
498
499  survive:
500         /*
501          * If for any reason at all we couldn't handle the fault,
502          * make sure we exit gracefully rather than endlessly redo
503          * the fault.
504          */
505         fault = handle_mm_fault(mm, vma, address, write);
506         if (unlikely(fault & VM_FAULT_ERROR)) {
507                 if (fault & VM_FAULT_OOM)
508                         goto out_of_memory;
509                 else if (fault & VM_FAULT_SIGBUS)
510                         goto do_sigbus;
511                 BUG();
512         }
513         if (fault & VM_FAULT_MAJOR)
514                 tsk->maj_flt++;
515         else
516                 tsk->min_flt++;
517
518         /*
519          * Did it hit the DOS screen memory VA from vm86 mode?
520          */
521         if (regs->flags & VM_MASK) {
522                 unsigned long bit = (address - 0xA0000) >> PAGE_SHIFT;
523                 if (bit < 32)
524                         tsk->thread.screen_bitmap |= 1 << bit;
525         }
526         up_read(&mm->mmap_sem);
527         return;
528
529 /*
530  * Something tried to access memory that isn't in our memory map..
531  * Fix it, but check if it's kernel or user first..
532  */
533 bad_area:
534         up_read(&mm->mmap_sem);
535
536 bad_area_nosemaphore:
537         /* User mode accesses just cause a SIGSEGV */
538         if (error_code & PF_USER) {
539                 /*
540                  * It's possible to have interrupts off here.
541                  */
542                 local_irq_enable();
543
544                 /*
545                  * Valid to do another page fault here because this one came
546                  * from user space.
547                  */
548                 if (is_prefetch(regs, address, error_code))
549                         return;
550
551                 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
552                     printk_ratelimit()) {
553                         printk("%s%s[%d]: segfault at %08lx ip %08lx "
554                             "sp %08lx error %lx\n",
555                             task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
556                             tsk->comm, task_pid_nr(tsk), address, regs->ip,
557                             regs->sp, error_code);
558                 }
559                 tsk->thread.cr2 = address;
560                 /* Kernel addresses are always protection faults */
561                 tsk->thread.error_code = error_code | (address >= TASK_SIZE);
562                 tsk->thread.trap_no = 14;
563                 force_sig_info_fault(SIGSEGV, si_code, address, tsk);
564                 return;
565         }
566
567 #ifdef CONFIG_X86_F00F_BUG
568         /*
569          * Pentium F0 0F C7 C8 bug workaround.
570          */
571         if (boot_cpu_data.f00f_bug) {
572                 unsigned long nr;
573
574                 nr = (address - idt_descr.address) >> 3;
575
576                 if (nr == 6) {
577                         do_invalid_op(regs, 0);
578                         return;
579                 }
580         }
581 #endif
582
583 no_context:
584         /* Are we prepared to handle this kernel fault?  */
585         if (fixup_exception(regs))
586                 return;
587
588         /*
589          * Valid to do another page fault here, because if this fault
590          * had been triggered by is_prefetch fixup_exception would have
591          * handled it.
592          */
593         if (is_prefetch(regs, address, error_code))
594                 return;
595
596 /*
597  * Oops. The kernel tried to access some bad page. We'll have to
598  * terminate things with extreme prejudice.
599  */
600
601         bust_spinlocks(1);
602
603         if (oops_may_print()) {
604                 __typeof__(pte_val(__pte(0))) page;
605
606 #ifdef CONFIG_X86_PAE
607                 if (error_code & PF_INSTR) {
608                         pte_t *pte = lookup_address(address);
609
610                         if (pte && pte_present(*pte) && !pte_exec_kernel(*pte))
611                                 printk(KERN_CRIT "kernel tried to execute "
612                                         "NX-protected page - exploit attempt? "
613                                         "(uid: %d)\n", current->uid);
614                 }
615 #endif
616                 if (address < PAGE_SIZE)
617                         printk(KERN_ALERT "BUG: unable to handle kernel NULL "
618                                         "pointer dereference");
619                 else
620                         printk(KERN_ALERT "BUG: unable to handle kernel paging"
621                                         " request");
622                 printk(" at virtual address %08lx\n", address);
623                 printk(KERN_ALERT "printing ip: %08lx ", regs->ip);
624
625                 page = read_cr3();
626                 page = ((__typeof__(page) *) __va(page))[address >> PGDIR_SHIFT];
627 #ifdef CONFIG_X86_PAE
628                 printk("*pdpt = %016Lx ", page);
629                 if ((page >> PAGE_SHIFT) < max_low_pfn
630                     && page & _PAGE_PRESENT) {
631                         page &= PAGE_MASK;
632                         page = ((__typeof__(page) *) __va(page))[(address >> PMD_SHIFT)
633                                                                  & (PTRS_PER_PMD - 1)];
634                         printk(KERN_CONT "*pde = %016Lx ", page);
635                         page &= ~_PAGE_NX;
636                 }
637 #else
638                 printk("*pde = %08lx ", page);
639 #endif
640
641                 /*
642                  * We must not directly access the pte in the highpte
643                  * case if the page table is located in highmem.
644                  * And let's rather not kmap-atomic the pte, just in case
645                  * it's allocated already.
646                  */
647                 if ((page >> PAGE_SHIFT) < max_low_pfn
648                     && (page & _PAGE_PRESENT)
649                     && !(page & _PAGE_PSE)) {
650                         page &= PAGE_MASK;
651                         page = ((__typeof__(page) *) __va(page))[(address >> PAGE_SHIFT)
652                                                                  & (PTRS_PER_PTE - 1)];
653                         printk("*pte = %0*Lx ", sizeof(page)*2, (u64)page);
654                 }
655
656                 printk("\n");
657         }
658
659         tsk->thread.cr2 = address;
660         tsk->thread.trap_no = 14;
661         tsk->thread.error_code = error_code;
662         die("Oops", regs, error_code);
663         bust_spinlocks(0);
664         do_exit(SIGKILL);
665
666 /*
667  * We ran out of memory, or some other thing happened to us that made
668  * us unable to handle the page fault gracefully.
669  */
670 out_of_memory:
671         up_read(&mm->mmap_sem);
672         if (is_global_init(tsk)) {
673                 yield();
674                 down_read(&mm->mmap_sem);
675                 goto survive;
676         }
677         printk("VM: killing process %s\n", tsk->comm);
678         if (error_code & PF_USER)
679                 do_group_exit(SIGKILL);
680         goto no_context;
681
682 do_sigbus:
683         up_read(&mm->mmap_sem);
684
685         /* Kernel mode? Handle exceptions or die */
686         if (!(error_code & PF_USER))
687                 goto no_context;
688
689         /* User space => ok to do another page fault */
690         if (is_prefetch(regs, address, error_code))
691                 return;
692
693         tsk->thread.cr2 = address;
694         tsk->thread.error_code = error_code;
695         tsk->thread.trap_no = 14;
696         force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk);
697 }
698
699 void vmalloc_sync_all(void)
700 {
701         /*
702          * Note that races in the updates of insync and start aren't
703          * problematic: insync can only get set bits added, and updates to
704          * start are only improving performance (without affecting correctness
705          * if undone).
706          */
707         static DECLARE_BITMAP(insync, PTRS_PER_PGD);
708         static unsigned long start = TASK_SIZE;
709         unsigned long address;
710
711         if (SHARED_KERNEL_PMD)
712                 return;
713
714         BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
715         for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
716                 if (!test_bit(pgd_index(address), insync)) {
717                         unsigned long flags;
718                         struct page *page;
719
720                         spin_lock_irqsave(&pgd_lock, flags);
721                         for (page = pgd_list; page; page =
722                                         (struct page *)page->index)
723                                 if (!vmalloc_sync_one(page_address(page),
724                                                                 address)) {
725                                         BUG_ON(page != pgd_list);
726                                         break;
727                                 }
728                         spin_unlock_irqrestore(&pgd_lock, flags);
729                         if (!page)
730                                 set_bit(pgd_index(address), insync);
731                 }
732                 if (address == start && test_bit(pgd_index(address), insync))
733                         start = address + PGDIR_SIZE;
734         }
735 }