aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/fault_32.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
commitb3279c7fd7acf807ab8395d16658514e8c222a37 (patch)
tree2ce674dc4a99ca594c7e1a40da3db1545bc8731c /arch/x86/mm/fault_32.c
parent35f3266ffbee7ff8ca0474dc8dfa3b73d5a1d1ef (diff)
x86: introduce show_fault_oops helper to fault_32|64.c
This will help when unifying the oops dumping code on 32/64 bit. No functional changes. 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_32.c')
-rw-r--r--arch/x86/mm/fault_32.c54
1 files changed, 30 insertions, 24 deletions
diff --git a/arch/x86/mm/fault_32.c b/arch/x86/mm/fault_32.c
index 0bd241729aa3..fda399758820 100644
--- a/arch/x86/mm/fault_32.c
+++ b/arch/x86/mm/fault_32.c
@@ -323,6 +323,35 @@ static int is_f00f_bug(struct pt_regs *regs, unsigned long address)
323 return 0; 323 return 0;
324} 324}
325 325
326static void show_fault_oops(struct pt_regs *regs, unsigned long error_code,
327 unsigned long address)
328{
329 if (!oops_may_print())
330 return;
331
332#ifdef CONFIG_X86_PAE
333 if (error_code & PF_INSTR) {
334 int level;
335 pte_t *pte = lookup_address(address, &level);
336
337 if (pte && pte_present(*pte) && !pte_exec(*pte))
338 printk(KERN_CRIT "kernel tried to execute "
339 "NX-protected page - exploit attempt? "
340 "(uid: %d)\n", current->uid);
341 }
342#endif
343 if (address < PAGE_SIZE)
344 printk(KERN_ALERT "BUG: unable to handle kernel NULL "
345 "pointer dereference");
346 else
347 printk(KERN_ALERT "BUG: unable to handle kernel paging"
348 " request");
349 printk(" at virtual address %08lx\n", address);
350 printk(KERN_ALERT "printing ip: %08lx ", regs->ip);
351
352 dump_pagetable(address);
353}
354
326/* 355/*
327 * Handle a fault on the vmalloc or module mapping area 356 * Handle a fault on the vmalloc or module mapping area
328 * 357 *
@@ -633,30 +662,7 @@ no_context:
633 662
634 bust_spinlocks(1); 663 bust_spinlocks(1);
635 664
636 if (oops_may_print()) { 665 show_fault_oops(regs, error_code, address);
637
638#ifdef CONFIG_X86_PAE
639 if (error_code & PF_INSTR) {
640 int level;
641 pte_t *pte = lookup_address(address, &level);
642
643 if (pte && pte_present(*pte) && !pte_exec(*pte))
644 printk(KERN_CRIT "kernel tried to execute "
645 "NX-protected page - exploit attempt? "
646 "(uid: %d)\n", current->uid);
647 }
648#endif
649 if (address < PAGE_SIZE)
650 printk(KERN_ALERT "BUG: unable to handle kernel NULL "
651 "pointer dereference");
652 else
653 printk(KERN_ALERT "BUG: unable to handle kernel paging"
654 " request");
655 printk(" at virtual address %08lx\n", address);
656 printk(KERN_ALERT "printing ip: %08lx ", regs->ip);
657
658 dump_pagetable(address);
659 }
660 666
661 tsk->thread.cr2 = address; 667 tsk->thread.cr2 = address;
662 tsk->thread.trap_no = 14; 668 tsk->thread.trap_no = 14;