📄 traps.c
字号:
/* * linux/arch/ppc64/kernel/traps.c * * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * * Modified by Cort Dougan (cort@cs.nmt.edu) * and Paul Mackerras (paulus@cs.anu.edu.au) *//* * This file handles the architecture-dependent parts of hardware exceptions */#include <linux/errno.h>#include <linux/sched.h>#include <linux/kernel.h>#include <linux/mm.h>#include <linux/stddef.h>#include <linux/unistd.h>#include <linux/ptrace.h>#include <linux/slab.h>#include <linux/user.h>#include <linux/a.out.h>#include <linux/interrupt.h>#include <linux/config.h>#include <linux/init.h>#include <asm/iSeries/HvCall.h>#include <asm/iSeries/HvCallCfg.h>#ifdef CONFIG_KDB#include <linux/kdb.h>#endif#include <asm/pgtable.h>#include <asm/uaccess.h>#include <asm/system.h>#include <asm/io.h>#include <asm/processor.h>#include <asm/ppcdebug.h>extern int fix_alignment(struct pt_regs *);extern void bad_page_fault(struct pt_regs *, unsigned long);/* This is true if we are using the firmware NMI handler (typically LPAR) */extern int fwnmi_active;#ifdef CONFIG_XMONextern void xmon(struct pt_regs *regs);extern int xmon_bpt(struct pt_regs *regs);extern int xmon_sstep(struct pt_regs *regs);extern int xmon_iabr_match(struct pt_regs *regs);extern int xmon_dabr_match(struct pt_regs *regs);extern void (*xmon_fault_handler)(struct pt_regs *regs);#endif#ifdef CONFIG_XMONvoid (*debugger)(struct pt_regs *regs) = xmon;int (*debugger_bpt)(struct pt_regs *regs) = xmon_bpt;int (*debugger_sstep)(struct pt_regs *regs) = xmon_sstep;int (*debugger_iabr_match)(struct pt_regs *regs) = xmon_iabr_match;int (*debugger_dabr_match)(struct pt_regs *regs) = xmon_dabr_match;void (*debugger_fault_handler)(struct pt_regs *regs);#else#ifdef CONFIG_KGDBvoid (*debugger)(struct pt_regs *regs);int (*debugger_bpt)(struct pt_regs *regs);int (*debugger_sstep)(struct pt_regs *regs);int (*debugger_iabr_match)(struct pt_regs *regs);int (*debugger_dabr_match)(struct pt_regs *regs);void (*debugger_fault_handler)(struct pt_regs *regs);#else#ifdef CONFIG_KDB/* kdb has different call parms *//* ... */void (*debugger)(struct pt_regs *regs) = kdb;int (*debugger_bpt)(struct pt_regs *regs);int (*debugger_sstep)(struct pt_regs *regs);int (*debugger_iabr_match)(struct pt_regs *regs);int (*debugger_dabr_match)(struct pt_regs *regs) = kdb;/* - only defined during (xmon) mread */void (*debugger_fault_handler)(struct pt_regs *regs);#endif /* kdb */#endif /* kgdb */#endif /* xmon */void set_local_DABR(void *valp);/* * Trap & Exception support */static void_exception(int signr, siginfo_t *info, struct pt_regs *regs){ if (!user_mode(regs)) { show_regs(regs);#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) debugger(regs);#endif#if defined(CONFIG_KDB) if (kdb(KDB_REASON_BREAK, 0, (kdb_eframe_t) regs)) return;#endif print_backtrace((unsigned long *)regs->gpr[1]); panic("Exception in kernel pc %lx signal %d",regs->nip,signr);#if defined(CONFIG_PPCDBG) && (defined(CONFIG_XMON) || defined(CONFIG_KGDB)) /* Allow us to catch SIGILLs for 64-bit app/glibc debugging. -Peter */ } else if (signr == SIGILL) { ifppcdebug(PPCDBG_SIGNALXMON) debugger(regs);#endif } force_sig_info(signr, info, current);}/* Get the error information for errors coming through the * FWNMI vectors. The pt_regs' r3 will be updated to reflect * the actual r3 if possible, and a ptr to the error log entry * will be returned if found. */static struct rtas_error_log *FWNMI_get_errinfo(struct pt_regs *regs){ unsigned long errdata = regs->gpr[3]; struct rtas_error_log *errhdr = NULL; unsigned long *savep; if ((errdata >= 0x7000 && errdata < 0x7fff0) || (errdata >= rtas.base && errdata < rtas.base + rtas.size - 16)) { savep = __va(errdata); regs->gpr[3] = savep[0]; /* restore original r3 */ errhdr = (struct rtas_error_log *)(savep + 1); } else { printk("FWNMI: corrupt r3\n"); } return errhdr;}/* Call this when done with the data returned by FWNMI_get_errinfo. * It will release the saved data area for other CPUs in the * partition to receive FWNMI errors. */static void FWNMI_release_errinfo(void){ unsigned long ret = rtas_call(rtas_token("ibm,nmi-interlock"), 0, 1, NULL); if (ret != 0) printk("FWNMI: nmi-interlock failed: %ld\n", ret);}voidSystemResetException(struct pt_regs *regs){ char *msg = "System Reset in kernel mode.\n"; printk(msg); if (fwnmi_active) { unsigned long *r3 = __va(regs->gpr[3]); /* for FWNMI debug */ printk("FWNMI is active with save area at %p\n", r3); FWNMI_release_errinfo(); }#if defined(CONFIG_XMON) xmon(regs); udbg_printf("leaving xmon...\n");#endif#if defined(CONFIG_KDB) { int cpu = smp_processor_id(); static int reset_cpu = -1; static spinlock_t reset_lock = SPIN_LOCK_UNLOCKED; /* Give kdb some help serializing the reset */ spin_lock(&reset_lock); if (reset_cpu == -1) { reset_cpu = cpu; spin_unlock(&reset_lock); kdb(KDB_REASON_ENTER, regs->trap, (kdb_eframe_t) regs); reset_cpu = -1; } else { spin_unlock(&reset_lock); /* Let kdb catch this cpu with an IPI. * Ideally we need a way to enter kdb w/o it becoming * confused so we can precisely capture reset state. */ return; } }#endif}voidMachineCheckException(struct pt_regs *regs){ siginfo_t info; if (fwnmi_active) { struct rtas_error_log *errhdr = FWNMI_get_errinfo(regs); if (errhdr) { /* ToDo: attempt to recover from some errors here */ } FWNMI_release_errinfo(); } if ( !user_mode(regs) ) {#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) if (debugger_fault_handler) { debugger_fault_handler(regs); return; }#endif printk("Machine check in kernel mode.\n"); printk("Caused by (from SRR1=%lx): ", regs->msr); show_regs(regs);#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) debugger(regs);#endif#ifdef CONFIG_KDB if (kdb(KDB_REASON_FAULT, 0, regs)) return ;#endif print_backtrace((unsigned long *)regs->gpr[1]); panic("machine check"); } /* * XXX we should check RI bit on exception exit and kill the * task if it was cleared */ info.si_signo = SIGBUS; info.si_errno = 0; info.si_code = BUS_ADRERR; info.si_addr = (void *)regs->nip; _exception(SIGSEGV, &info, regs);}voidSMIException(struct pt_regs *regs){#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) { debugger(regs); return; }#endif#ifdef CONFIG_KDB { kdb(KDB_REASON_OOPS, 0, regs); return; }#endif show_regs(regs); print_backtrace((unsigned long *)regs->gpr[1]); panic("System Management Interrupt");}voidUnknownException(struct pt_regs *regs){ siginfo_t info; printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n", regs->nip, regs->msr, regs->trap); info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = 0; info.si_addr = 0; _exception(SIGTRAP, &info, regs); }voidInstructionBreakpointException(struct pt_regs *regs){ siginfo_t info; #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) if (debugger_iabr_match(regs)) return;#endif#ifdef CONFIG_KDB if (kdb(KDB_REASON_BREAK, 0, regs)) return;#endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_BRKPT; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs);}static voidparse_fpe(siginfo_t *info, struct pt_regs *regs){ unsigned long fpscr; if (regs->msr & MSR_FP) giveup_fpu(current); fpscr = current->thread.fpscr; /* Invalid operation */ if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX)) info->si_code = FPE_FLTINV; /* Overflow */ else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX)) info->si_code = FPE_FLTOVF; /* Underflow */ else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX)) info->si_code = FPE_FLTUND; /* Divide by zero */ else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX)) info->si_code = FPE_FLTDIV; /* Inexact result */ else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX)) info->si_code = FPE_FLTRES; else info->si_code = 0; info->si_signo = SIGFPE; info->si_errno = 0; info->si_addr = (void *)regs->nip; _exception(SIGFPE, info, regs);}voidProgramCheckException(struct pt_regs *regs){ siginfo_t info; if (regs->msr & 0x100000) { /* IEEE FP exception */ parse_fpe(&info, regs); } else if (regs->msr & 0x40000) { /* Privileged instruction */ info.si_signo = SIGILL; info.si_errno = 0; info.si_code = ILL_PRVOPC; info.si_addr = (void *)regs->nip; _exception(SIGILL, &info, regs); } else if (regs->msr & 0x20000) { /* trap exception */#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) if (debugger_bpt(regs)) return;#endif#ifdef CONFIG_KDB if (kdb(KDB_REASON_BREAK, 0, regs)) return;#endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_BRKPT; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs); } else { /* Illegal instruction */ info.si_signo = SIGILL; info.si_errno = 0; info.si_code = ILL_ILLTRP; info.si_addr = (void *)regs->nip; _exception(SIGILL, &info, regs); }}voidSingleStepException(struct pt_regs *regs){ siginfo_t info; regs->msr &= ~MSR_SE; /* Turn off 'trace' bit */#if defined(CONFIG_XMON) || defined(CONFIG_KGDB) if (debugger_sstep(regs)) return;#endif#ifdef CONFIG_KDB if (kdb(KDB_REASON_DEBUG, 0, regs)) return;#endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_TRACE; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs); }voidAlignmentException(struct pt_regs *regs){ int fixed; siginfo_t info; fixed = fix_alignment(regs); if (fixed == 1) { ifppcdebug(PPCDBG_ALIGNFIXUP) if (!user_mode(regs)) PPCDBG(PPCDBG_ALIGNFIXUP, "fix alignment at %lx\n", regs->nip); regs->nip += 4; /* skip over emulated instruction */ return; } /* Operand address was bad */ if (fixed == -EFAULT) { if (user_mode(regs)) { info.si_signo = SIGSEGV; info.si_errno = 0; info.si_code = SEGV_MAPERR; info.si_addr = (void *)regs->dar; force_sig_info(SIGSEGV, &info, current); } else { /* Search exception table */ bad_page_fault(regs, regs->dar); } return; } info.si_signo = SIGBUS; info.si_errno = 0; info.si_code = BUS_ADRALN; info.si_addr = (void *)regs->nip; _exception(SIGBUS, &info, regs);}void __init trap_init(void){}/* * Set the DABR on all processors in the system. The value is defined as: * DAB(0:60), Break Translate(61), Write(62), Read(63) */voidset_all_DABR(unsigned long val) { set_local_DABR(&val); smp_call_function(set_local_DABR, &val, 0, 0);}voidset_local_DABR(void *valp) { unsigned long val = *((unsigned long *)valp); HvCall_setDABR(val);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -