traps.c

来自「是关于linux2.5.1的完全源码」· C语言 代码 · 共 225 行

C
225
字号
/* *  linux/arch/ppc/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/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);#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);#endif#endif/* * Trap & Exception support */void_exception(int signr, struct pt_regs *regs){	if (!user_mode(regs))	{		show_regs(regs);#if defined(CONFIG_XMON) || defined(CONFIG_KGDB)		debugger(regs);#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(signr, current);}voidSystemResetException(struct pt_regs *regs){	udbg_printf("System Reset in kernel mode.\n");	printk("System Reset in kernel mode.\n");#if defined(CONFIG_XMON)	xmon(regs);#else	for(;;);#endif}voidMachineCheckException(struct pt_regs *regs){	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		print_backtrace((unsigned long *)regs->gpr[1]);		panic("machine check");	}	_exception(SIGSEGV, regs);	}voidSMIException(struct pt_regs *regs){#if defined(CONFIG_XMON) || defined(CONFIG_KGDB)	{		debugger(regs);		return;	}#endif	show_regs(regs);	print_backtrace((unsigned long *)regs->gpr[1]);	panic("System Management Interrupt");}voidUnknownException(struct pt_regs *regs){	printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",	       regs->nip, regs->msr, regs->trap);	_exception(SIGTRAP, regs);	}voidInstructionBreakpointException(struct pt_regs *regs){#if defined(CONFIG_XMON) || defined(CONFIG_KGDB)	if (debugger_iabr_match(regs))		return;#endif	_exception(SIGTRAP, regs);}voidProgramCheckException(struct pt_regs *regs){	if (regs->msr & 0x100000) {		/* IEEE FP exception */		_exception(SIGFPE, regs);	} else if (regs->msr & 0x20000) {		/* trap exception */#if defined(CONFIG_XMON) || defined(CONFIG_KGDB)		if (debugger_bpt(regs))			return;#endif		_exception(SIGTRAP, regs);	} else {		_exception(SIGILL, regs);	}}voidSingleStepException(struct pt_regs *regs){	regs->msr &= ~MSR_SE;  /* Turn off 'trace' bit */#if defined(CONFIG_XMON) || defined(CONFIG_KGDB)	if (debugger_sstep(regs))		return;#endif	_exception(SIGTRAP, regs);	}/* Dummy handler for Performance Monitor */voidPerformanceMonitorException(struct pt_regs *regs){	_exception(SIGTRAP, regs);}voidAlignmentException(struct pt_regs *regs){	int fixed;	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;	}	if (fixed == -EFAULT) {		/* fixed == -EFAULT means the operand address was bad */		if (user_mode(regs))			force_sig(SIGSEGV, current);		else			bad_page_fault(regs, regs->dar);		return;	}	_exception(SIGBUS, regs);	}void __init trap_init(void){}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?