⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 traps.c

📁 内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系统,编译内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * arch/alpha/kernel/traps.c * * (C) Copyright 1994 Linus Torvalds *//* * This file initializes the trap entry points */#include <linux/config.h>#include <linux/mm.h>#include <linux/sched.h>#include <linux/tty.h>#include <linux/delay.h>#include <linux/smp_lock.h>#include <asm/gentrap.h>#include <asm/uaccess.h>#include <asm/unaligned.h>#include <asm/sysinfo.h>#include <asm/hwrpb.h>#include <asm/mmu_context.h>#include "proto.h"/* data/code implementing a work-around for some SRMs which   mishandle opDEC faults*/static int opDEC_testing = 0;static int opDEC_fix = 0;static unsigned long opDEC_test_pc = 0;static voidopDEC_check(void){	unsigned long test_pc;	lock_kernel();	opDEC_testing = 1;	__asm__ __volatile__(		"       br      %0,1f\n"		"1:     addq    %0,8,%0\n"		"       stq     %0,%1\n"		"       cvttq/svm $f31,$f31\n"		: "=&r"(test_pc), "=m"(opDEC_test_pc)		: );	opDEC_testing = 0;	unlock_kernel();}voiddik_show_regs(struct pt_regs *regs, unsigned long *r9_15){	printk("pc = [<%016lx>]  ra = [<%016lx>]  ps = %04lx    %s\n",	       regs->pc, regs->r26, regs->ps, print_tainted());	printk("v0 = %016lx  t0 = %016lx  t1 = %016lx\n",	       regs->r0, regs->r1, regs->r2);	printk("t2 = %016lx  t3 = %016lx  t4 = %016lx\n", 	       regs->r3, regs->r4, regs->r5);	printk("t5 = %016lx  t6 = %016lx  t7 = %016lx\n",	       regs->r6, regs->r7, regs->r8);	if (r9_15) {		printk("s0 = %016lx  s1 = %016lx  s2 = %016lx\n",		       r9_15[9], r9_15[10], r9_15[11]);		printk("s3 = %016lx  s4 = %016lx  s5 = %016lx\n",		       r9_15[12], r9_15[13], r9_15[14]);		printk("s6 = %016lx\n", r9_15[15]);	}	printk("a0 = %016lx  a1 = %016lx  a2 = %016lx\n",	       regs->r16, regs->r17, regs->r18);	printk("a3 = %016lx  a4 = %016lx  a5 = %016lx\n", 	       regs->r19, regs->r20, regs->r21); 	printk("t8 = %016lx  t9 = %016lx  t10= %016lx\n",	       regs->r22, regs->r23, regs->r24);	printk("t11= %016lx  pv = %016lx  at = %016lx\n",	       regs->r25, regs->r27, regs->r28);	printk("gp = %016lx  sp = %p\n", regs->gp, regs+1);#if 0__halt();#endif}#if 0static char * ireg_name[] = {"v0", "t0", "t1", "t2", "t3", "t4", "t5", "t6",			   "t7", "s0", "s1", "s2", "s3", "s4", "s5", "s6",			   "a0", "a1", "a2", "a3", "a4", "a5", "t8", "t9",			   "t10", "t11", "ra", "pv", "at", "gp", "sp", "zero"};#endifstatic voiddik_show_code(unsigned int *pc){	long i;	printk("Code:");	for (i = -6; i < 2; i++) {		unsigned int insn;		if (__get_user(insn, pc+i))			break;		printk("%c%08x%c", i ? ' ' : '<', insn, i ? ' ' : '>');	}	printk("\n");}static voiddik_show_trace(unsigned long *sp){	long i = 0;	printk("Trace:");	while (0x1ff8 & (unsigned long) sp) {		extern unsigned long _stext, _etext;		unsigned long tmp = *sp;		sp++;		if (tmp < (unsigned long) &_stext)			continue;		if (tmp >= (unsigned long) &_etext)			continue;		printk("%lx%c", tmp, ' ');		if (i > 40) {			printk(" ...");			break;		}	}	printk("\n");}void show_trace_task(struct task_struct * tsk){	struct thread_struct * thread = &tsk->thread;	unsigned long fp, sp = thread->ksp, base = (unsigned long) thread; 	if (sp > base && sp+6*8 < base + 16*1024) {		fp = ((unsigned long*)sp)[6];		if (fp > sp && fp < base + 16*1024)			dik_show_trace((unsigned long *)fp);	}}int kstack_depth_to_print = 24;void show_stack(unsigned long *sp){	unsigned long *stack;	int i;	/*	 * debugging aid: "show_stack(NULL);" prints the	 * back trace for this cpu.	 */	if(sp==NULL)		sp=(unsigned long*)&sp;	stack = sp;	for(i=0; i < kstack_depth_to_print; i++) {		if (((long) stack & (THREAD_SIZE-1)) == 0)			break;		if (i && ((i % 4) == 0))			printk("\n       ");		printk("%016lx ", *stack++);	}	printk("\n");	dik_show_trace(sp);}voiddie_if_kernel(char * str, struct pt_regs *regs, long err, unsigned long *r9_15){	if (regs->ps & 8)		return;#ifdef CONFIG_SMP	printk("CPU %d ", hard_smp_processor_id());#endif	printk("%s(%d): %s %ld\n", current->comm, current->pid, str, err);	dik_show_regs(regs, r9_15);	dik_show_trace((unsigned long *)(regs+1));	dik_show_code((unsigned int *)regs->pc);	if (current->thread.flags & (1UL << 63)) {		printk("die_if_kernel recursion detected.\n");		sti();		while (1);	}	current->thread.flags |= (1UL << 63);	do_exit(SIGSEGV);}#ifndef CONFIG_MATHEMUstatic long dummy_emul(void) { return 0; }long (*alpha_fp_emul_imprecise)(struct pt_regs *regs, unsigned long writemask)  = (void *)dummy_emul;long (*alpha_fp_emul) (unsigned long pc)  = (void *)dummy_emul;#elselong alpha_fp_emul_imprecise(struct pt_regs *regs, unsigned long writemask);long alpha_fp_emul (unsigned long pc);#endifasmlinkage voiddo_entArith(unsigned long summary, unsigned long write_mask,	    unsigned long a2, unsigned long a3, unsigned long a4,	    unsigned long a5, struct pt_regs regs){	if (summary & 1) {		/* Software-completion summary bit is set, so try to		   emulate the instruction.  */		if (!amask(AMASK_PRECISE_TRAP)) {			/* 21264 (except pass 1) has precise exceptions.  */			if (alpha_fp_emul(regs.pc - 4))				return;		} else {			if (alpha_fp_emul_imprecise(&regs, write_mask))				return;		}	}#if 0	printk("%s: arithmetic trap at %016lx: %02lx %016lx\n",		current->comm, regs.pc, summary, write_mask);#endif	die_if_kernel("Arithmetic fault", &regs, 0, 0);	send_sig(SIGFPE, current, 1);}asmlinkage voiddo_entIF(unsigned long type, unsigned long a1,	 unsigned long a2, unsigned long a3, unsigned long a4,	 unsigned long a5, struct pt_regs regs){	if (!opDEC_testing || type != 4) {		die_if_kernel((type == 1 ? "Kernel Bug" : "Instruction fault"),		      &regs, type, 0);	}	switch (type) {	      case 0: /* breakpoint */		if (ptrace_cancel_bpt(current)) {			regs.pc -= 4;	/* make pc point to former bpt */		}		send_sig(SIGTRAP, current, 1);		return;	      case 1: /* bugcheck */		send_sig(SIGTRAP, current, 1);		return;	      case 2: /* gentrap */		/*		 * The exception code should be passed on to the signal		 * handler as the second argument.  Linux doesn't do that		 * yet (also notice that Linux *always* behaves like		 * DEC Unix with SA_SIGINFO off; see DEC Unix man page		 * for sigaction(2)).		 */		switch ((long) regs.r16) {		      case GEN_INTOVF: case GEN_INTDIV: case GEN_FLTOVF:		      case GEN_FLTDIV: case GEN_FLTUND: case GEN_FLTINV:		      case GEN_FLTINE: case GEN_ROPRAND:			send_sig(SIGFPE, current, 1);			return;		      case GEN_DECOVF:		      case GEN_DECDIV:		      case GEN_DECINV:		      case GEN_ASSERTERR:		      case GEN_NULPTRERR:		      case GEN_STKOVF:		      case GEN_STRLENERR:		      case GEN_SUBSTRERR:		      case GEN_RANGERR:		      case GEN_SUBRNG:		      case GEN_SUBRNG1:		      case GEN_SUBRNG2:		      case GEN_SUBRNG3:		      case GEN_SUBRNG4:		      case GEN_SUBRNG5:		      case GEN_SUBRNG6:		      case GEN_SUBRNG7:			send_sig(SIGTRAP, current, 1);			return;		}		break;	      case 4: /* opDEC */		if (implver() == IMPLVER_EV4) {			/* The some versions of SRM do not handle			   the opDEC properly - they return the PC of the			   opDEC fault, not the instruction after as the			   Alpha architecture requires.  Here we fix it up.			   We do this by intentionally causing an opDEC			   fault during the boot sequence and testing if			   we get the correct PC.  If not, we set a flag			   to correct it every time through.			*/			if (opDEC_testing) {				if (regs.pc == opDEC_test_pc) {					opDEC_fix = 4;					regs.pc += 4;					printk("opDEC fixup enabled.\n");				}				return;			}			regs.pc += opDEC_fix; 						/* EV4 does not implement anything except normal			   rounding.  Everything else will come here as			   an illegal instruction.  Emulate them.  */			if (alpha_fp_emul(regs.pc-4))				return;		}		break;	      case 3: /* FEN fault */		/* Irritating users can call PAL_clrfen to disable the		   FPU for the process.  The kernel will then trap in		   do_switch_stack and undo_switch_stack when we try		   to save and restore the FP registers.		   Given that GCC by default generates code that uses the		   FP registers, PAL_clrfen is not useful except for DoS		   attacks.  So turn the bleeding FPU back on and be done		   with it.  */		current->thread.pal_flags |= 1;		__reload_thread(&current->thread);		return;	      case 5: /* illoc */	      default: /* unexpected instruction-fault type */		      ;	}	send_sig(SIGILL, current, 1);}/* There is an ifdef in the PALcode in MILO that enables a    "kernel debugging entry point" as an unpriviledged call_pal.   We don't want to have anything to do with it, but unfortunately   several versions of MILO included in distributions have it enabled,   and if we don't put something on the entry point we'll oops.  */asmlinkage voiddo_entDbg(unsigned long type, unsigned long a1,	  unsigned long a2, unsigned long a3, unsigned long a4,	  unsigned long a5, struct pt_regs regs){	die_if_kernel("Instruction fault", &regs, type, 0);	force_sig(SIGILL, current);}/* * entUna has a different register layout to be reasonably simple. It * needs access to all the integer registers (the kernel doesn't use * fp-regs), and it needs to have them in order for simpler access. * * Due to the non-standard register layout (and because we don't want * to handle floating-point regs), user-mode unaligned accesses are * handled separately by do_entUnaUser below. * * Oh, btw, we don't handle the "gp" register correctly, but if we fault * on a gp-register unaligned load/store, something is _very_ wrong * in the kernel anyway.. */struct allregs {	unsigned long regs[32];	unsigned long ps, pc, gp, a0, a1, a2;};struct unaligned_stat {	unsigned long count, va, pc;} unaligned[2];/* Macro for exception fixup code to access integer registers.  */#define una_reg(r)  (regs.regs[(r) >= 16 && (r) <= 18 ? (r)+19 : (r)])asmlinkage voiddo_entUna(void * va, unsigned long opcode, unsigned long reg,	  unsigned long a3, unsigned long a4, unsigned long a5,	  struct allregs regs){	long error, tmp1, tmp2, tmp3, tmp4;	unsigned long pc = regs.pc - 4;	unsigned fixup;	unaligned[0].count++;	unaligned[0].va = (unsigned long) va;	unaligned[0].pc = pc;	/* We don't want to use the generic get/put unaligned macros as	   we want to trap exceptions.  Only if we actually get an	   exception will we decide whether we should have caught it.  */	switch (opcode) {	case 0x0c: /* ldwu */		__asm__ __volatile__(		"1:	ldq_u %1,0(%3)\n"		"2:	ldq_u %2,1(%3)\n"		"	extwl %1,%3,%1\n"		"	extwh %2,%3,%2\n"		"3:\n"		".section __ex_table,\"a\"\n"		"	.gprel32 1b\n"		"	lda %1,3b-1b(%0)\n"		"	.gprel32 2b\n"		"	lda %2,3b-2b(%0)\n"		".previous"			: "=r"(error), "=&r"(tmp1), "=&r"(tmp2)			: "r"(va), "0"(0));		if (error)			goto got_exception;		una_reg(reg) = tmp1|tmp2;		return;	case 0x28: /* ldl */		__asm__ __volatile__(		"1:	ldq_u %1,0(%3)\n"		"2:	ldq_u %2,3(%3)\n"		"	extll %1,%3,%1\n"		"	extlh %2,%3,%2\n"		"3:\n"		".section __ex_table,\"a\"\n"		"	.gprel32 1b\n"		"	lda %1,3b-1b(%0)\n"		"	.gprel32 2b\n"		"	lda %2,3b-2b(%0)\n"		".previous"			: "=r"(error), "=&r"(tmp1), "=&r"(tmp2)			: "r"(va), "0"(0));		if (error)			goto got_exception;		una_reg(reg) = (int)(tmp1|tmp2);		return;	case 0x29: /* ldq */		__asm__ __volatile__(		"1:	ldq_u %1,0(%3)\n"		"2:	ldq_u %2,7(%3)\n"		"	extql %1,%3,%1\n"		"	extqh %2,%3,%2\n"		"3:\n"		".section __ex_table,\"a\"\n"		"	.gprel32 1b\n"		"	lda %1,3b-1b(%0)\n"		"	.gprel32 2b\n"		"	lda %2,3b-2b(%0)\n"		".previous"			: "=r"(error), "=&r"(tmp1), "=&r"(tmp2)			: "r"(va), "0"(0));		if (error)			goto got_exception;		una_reg(reg) = tmp1|tmp2;		return;	/* Note that the store sequences do not indicate that they change	   memory because it _should_ be affecting nothing in this context.	   (Otherwise we have other, much larger, problems.)  */	case 0x0d: /* stw */		__asm__ __volatile__(		"1:	ldq_u %2,1(%5)\n"		"2:	ldq_u %1,0(%5)\n"		"	inswh %6,%5,%4\n"		"	inswl %6,%5,%3\n"		"	mskwh %2,%5,%2\n"		"	mskwl %1,%5,%1\n"		"	or %2,%4,%2\n"		"	or %1,%3,%1\n"		"3:	stq_u %2,1(%5)\n"		"4:	stq_u %1,0(%5)\n"		"5:\n"		".section __ex_table,\"a\"\n"		"	.gprel32 1b\n"		"	lda %2,5b-1b(%0)\n"		"	.gprel32 2b\n"		"	lda %1,5b-2b(%0)\n"		"	.gprel32 3b\n"		"	lda $31,5b-3b(%0)\n"		"	.gprel32 4b\n"		"	lda $31,5b-4b(%0)\n"		".previous"			: "=r"(error), "=&r"(tmp1), "=&r"(tmp2),			  "=&r"(tmp3), "=&r"(tmp4)			: "r"(va), "r"(una_reg(reg)), "0"(0));		if (error)			goto got_exception;		return;	case 0x2c: /* stl */		__asm__ __volatile__(		"1:	ldq_u %2,3(%5)\n"		"2:	ldq_u %1,0(%5)\n"		"	inslh %6,%5,%4\n"		"	insll %6,%5,%3\n"		"	msklh %2,%5,%2\n"		"	mskll %1,%5,%1\n"		"	or %2,%4,%2\n"		"	or %1,%3,%1\n"		"3:	stq_u %2,3(%5)\n"		"4:	stq_u %1,0(%5)\n"		"5:\n"		".section __ex_table,\"a\"\n"		"	.gprel32 1b\n"		"	lda %2,5b-1b(%0)\n"		"	.gprel32 2b\n"		"	lda %1,5b-2b(%0)\n"		"	.gprel32 3b\n"		"	lda $31,5b-3b(%0)\n"

⌨️ 快捷键说明

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