aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/fault_64.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 07:34:10 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:34:10 -0500
commit1156e098c5fc142ceaf091f0627109225a9db894 (patch)
tree8b338373eecb8ef085e110c3f2dfc6065b7396bd /arch/x86/mm/fault_64.c
parentd7d119d777d7ed22c4095915e9c985a8b75bfe5f (diff)
x86: unify fault_32|64.c by ifdef'd function bodies
It's about time to get on with unifying these files, elimination of the ugly ifdefs can occur in the unified file. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/fault_64.c')
-rw-r--r--arch/x86/mm/fault_64.c148
1 files changed, 147 insertions, 1 deletions
diff --git a/arch/x86/mm/fault_64.c b/arch/x86/mm/fault_64.c
index e12c34ba4ba1..edca689c62d5 100644
--- a/arch/x86/mm/fault_64.c
+++ b/arch/x86/mm/fault_64.c
@@ -176,14 +176,52 @@ static void force_sig_info_fault(int si_signo, int si_code,
176 force_sig_info(si_signo, &info, tsk); 176 force_sig_info(si_signo, &info, tsk);
177} 177}
178 178
179#ifdef CONFIG_X86_64
179static int bad_address(void *p) 180static int bad_address(void *p)
180{ 181{
181 unsigned long dummy; 182 unsigned long dummy;
182 return probe_kernel_address((unsigned long *)p, dummy); 183 return probe_kernel_address((unsigned long *)p, dummy);
183} 184}
185#endif
184 186
185void dump_pagetable(unsigned long address) 187void dump_pagetable(unsigned long address)
186{ 188{
189#ifdef CONFIG_X86_32
190 __typeof__(pte_val(__pte(0))) page;
191
192 page = read_cr3();
193 page = ((__typeof__(page) *) __va(page))[address >> PGDIR_SHIFT];
194#ifdef CONFIG_X86_PAE
195 printk("*pdpt = %016Lx ", page);
196 if ((page >> PAGE_SHIFT) < max_low_pfn
197 && page & _PAGE_PRESENT) {
198 page &= PAGE_MASK;
199 page = ((__typeof__(page) *) __va(page))[(address >> PMD_SHIFT)
200 & (PTRS_PER_PMD - 1)];
201 printk(KERN_CONT "*pde = %016Lx ", page);
202 page &= ~_PAGE_NX;
203 }
204#else
205 printk("*pde = %08lx ", page);
206#endif
207
208 /*
209 * We must not directly access the pte in the highpte
210 * case if the page table is located in highmem.
211 * And let's rather not kmap-atomic the pte, just in case
212 * it's allocated already.
213 */
214 if ((page >> PAGE_SHIFT) < max_low_pfn
215 && (page & _PAGE_PRESENT)
216 && !(page & _PAGE_PSE)) {
217 page &= PAGE_MASK;
218 page = ((__typeof__(page) *) __va(page))[(address >> PAGE_SHIFT)
219 & (PTRS_PER_PTE - 1)];
220 printk("*pte = %0*Lx ", sizeof(page)*2, (u64)page);
221 }
222
223 printk("\n");
224#else /* CONFIG_X86_64 */
187 pgd_t *pgd; 225 pgd_t *pgd;
188 pud_t *pud; 226 pud_t *pud;
189 pmd_t *pmd; 227 pmd_t *pmd;
@@ -215,7 +253,46 @@ ret:
215 return; 253 return;
216bad: 254bad:
217 printk("BAD\n"); 255 printk("BAD\n");
256#endif
257}
258
259#ifdef CONFIG_X86_32
260static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
261{
262 unsigned index = pgd_index(address);
263 pgd_t *pgd_k;
264 pud_t *pud, *pud_k;
265 pmd_t *pmd, *pmd_k;
266
267 pgd += index;
268 pgd_k = init_mm.pgd + index;
269
270 if (!pgd_present(*pgd_k))
271 return NULL;
272
273 /*
274 * set_pgd(pgd, *pgd_k); here would be useless on PAE
275 * and redundant with the set_pmd() on non-PAE. As would
276 * set_pud.
277 */
278
279 pud = pud_offset(pgd, address);
280 pud_k = pud_offset(pgd_k, address);
281 if (!pud_present(*pud_k))
282 return NULL;
283
284 pmd = pmd_offset(pud, address);
285 pmd_k = pmd_offset(pud_k, address);
286 if (!pmd_present(*pmd_k))
287 return NULL;
288 if (!pmd_present(*pmd)) {
289 set_pmd(pmd, *pmd_k);
290 arch_flush_lazy_mmu_mode();
291 } else
292 BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
293 return pmd_k;
218} 294}
295#endif
219 296
220#ifdef CONFIG_X86_64 297#ifdef CONFIG_X86_64
221static const char errata93_warning[] = 298static const char errata93_warning[] =
@@ -296,6 +373,32 @@ static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
296static void show_fault_oops(struct pt_regs *regs, unsigned long error_code, 373static void show_fault_oops(struct pt_regs *regs, unsigned long error_code,
297 unsigned long address) 374 unsigned long address)
298{ 375{
376#ifdef CONFIG_X86_32
377 if (!oops_may_print())
378 return;
379
380#ifdef CONFIG_X86_PAE
381 if (error_code & PF_INSTR) {
382 int level;
383 pte_t *pte = lookup_address(address, &level);
384
385 if (pte && pte_present(*pte) && !pte_exec(*pte))
386 printk(KERN_CRIT "kernel tried to execute "
387 "NX-protected page - exploit attempt? "
388 "(uid: %d)\n", current->uid);
389 }
390#endif
391 printk(KERN_ALERT "BUG: unable to handle kernel ");
392 if (address < PAGE_SIZE)
393 printk(KERN_CONT "NULL pointer dereference");
394 else
395 printk(KERN_CONT "paging request");
396 printk(KERN_CONT " at %08lx\n", address);
397
398 printk(KERN_ALERT "IP:");
399 printk_address(regs->ip, 1);
400 dump_pagetable(address);
401#else /* CONFIG_X86_64 */
299 printk(KERN_ALERT "BUG: unable to handle kernel "); 402 printk(KERN_ALERT "BUG: unable to handle kernel ");
300 if (address < PAGE_SIZE) 403 if (address < PAGE_SIZE)
301 printk(KERN_CONT "NULL pointer dereference"); 404 printk(KERN_CONT "NULL pointer dereference");
@@ -306,8 +409,10 @@ static void show_fault_oops(struct pt_regs *regs, unsigned long error_code,
306 printk(KERN_ALERT "IP:"); 409 printk(KERN_ALERT "IP:");
307 printk_address(regs->ip, 1); 410 printk_address(regs->ip, 1);
308 dump_pagetable(address); 411 dump_pagetable(address);
412#endif
309} 413}
310 414
415#ifdef CONFIG_X86_64
311static noinline void pgtable_bad(unsigned long address, struct pt_regs *regs, 416static noinline void pgtable_bad(unsigned long address, struct pt_regs *regs,
312 unsigned long error_code) 417 unsigned long error_code)
313{ 418{
@@ -325,6 +430,7 @@ static noinline void pgtable_bad(unsigned long address, struct pt_regs *regs,
325 regs = NULL; 430 regs = NULL;
326 oops_end(flags, regs, SIGKILL); 431 oops_end(flags, regs, SIGKILL);
327} 432}
433#endif
328 434
329/* 435/*
330 * Handle a fault on the vmalloc area 436 * Handle a fault on the vmalloc area
@@ -590,12 +696,15 @@ bad_area:
590bad_area_nosemaphore: 696bad_area_nosemaphore:
591 /* User mode accesses just cause a SIGSEGV */ 697 /* User mode accesses just cause a SIGSEGV */
592 if (error_code & PF_USER) { 698 if (error_code & PF_USER) {
593
594 /* 699 /*
595 * It's possible to have interrupts off here. 700 * It's possible to have interrupts off here.
596 */ 701 */
597 local_irq_enable(); 702 local_irq_enable();
598 703
704 /*
705 * Valid to do another page fault here because this one came
706 * from user space.
707 */
599 if (is_prefetch(regs, address, error_code)) 708 if (is_prefetch(regs, address, error_code))
600 return; 709 return;
601 710
@@ -696,6 +805,42 @@ LIST_HEAD(pgd_list);
696 805
697void vmalloc_sync_all(void) 806void vmalloc_sync_all(void)
698{ 807{
808#ifdef CONFIG_X86_32
809 /*
810 * Note that races in the updates of insync and start aren't
811 * problematic: insync can only get set bits added, and updates to
812 * start are only improving performance (without affecting correctness
813 * if undone).
814 */
815 static DECLARE_BITMAP(insync, PTRS_PER_PGD);
816 static unsigned long start = TASK_SIZE;
817 unsigned long address;
818
819 if (SHARED_KERNEL_PMD)
820 return;
821
822 BUILD_BUG_ON(TASK_SIZE & ~PGDIR_MASK);
823 for (address = start; address >= TASK_SIZE; address += PGDIR_SIZE) {
824 if (!test_bit(pgd_index(address), insync)) {
825 unsigned long flags;
826 struct page *page;
827
828 spin_lock_irqsave(&pgd_lock, flags);
829 for (page = pgd_list; page; page =
830 (struct page *)page->index)
831 if (!vmalloc_sync_one(page_address(page),
832 address)) {
833 BUG_ON(page != pgd_list);
834 break;
835 }
836 spin_unlock_irqrestore(&pgd_lock, flags);
837 if (!page)
838 set_bit(pgd_index(address), insync);
839 }
840 if (address == start && test_bit(pgd_index(address), insync))
841 start = address + PGDIR_SIZE;
842 }
843#else /* CONFIG_X86_64 */
699 /* 844 /*
700 * Note that races in the updates of insync and start aren't 845 * Note that races in the updates of insync and start aren't
701 * problematic: insync can only get set bits added, and updates to 846 * problematic: insync can only get set bits added, and updates to
@@ -732,4 +877,5 @@ void vmalloc_sync_all(void)
732 BUILD_BUG_ON(!(MODULES_VADDR > __START_KERNEL)); 877 BUILD_BUG_ON(!(MODULES_VADDR > __START_KERNEL));
733 BUILD_BUG_ON(!(((MODULES_END - 1) & PGDIR_MASK) == 878 BUILD_BUG_ON(!(((MODULES_END - 1) & PGDIR_MASK) ==
734 (__START_KERNEL & PGDIR_MASK))); 879 (__START_KERNEL & PGDIR_MASK)));
880#endif
735} 881}