📄 traps.c
字号:
/* * 'traps.c' handles hardware traps and faults after we have saved some * state in 'entry.S'. * * SuperH version: Copyright (C) 1999 Niibe Yutaka * Copyright (C) 2000 Philipp Rumpf * Copyright (C) 2000 David Howells * Copyright (C) 2002 - 2007 Paul Mundt * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */#include <linux/kernel.h>#include <linux/ptrace.h>#include <linux/init.h>#include <linux/spinlock.h>#include <linux/module.h>#include <linux/kallsyms.h>#include <linux/io.h>#include <linux/bug.h>#include <linux/debug_locks.h>#include <linux/kdebug.h>#include <linux/kexec.h>#include <linux/limits.h>#include <asm/system.h>#include <asm/uaccess.h>#ifdef CONFIG_SH_KGDB#include <asm/kgdb.h>#define CHK_REMOTE_DEBUG(regs) \{ \ if (kgdb_debug_hook && !user_mode(regs))\ (*kgdb_debug_hook)(regs); \}#else#define CHK_REMOTE_DEBUG(regs)#endif#ifdef CONFIG_CPU_SH2# define TRAP_RESERVED_INST 4# define TRAP_ILLEGAL_SLOT_INST 6# define TRAP_ADDRESS_ERROR 9# ifdef CONFIG_CPU_SH2A# define TRAP_DIVZERO_ERROR 17# define TRAP_DIVOVF_ERROR 18# endif#else#define TRAP_RESERVED_INST 12#define TRAP_ILLEGAL_SLOT_INST 13#endifstatic void dump_mem(const char *str, unsigned long bottom, unsigned long top){ unsigned long p; int i; printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top); for (p = bottom & ~31; p < top; ) { printk("%04lx: ", p & 0xffff); for (i = 0; i < 8; i++, p += 4) { unsigned int val; if (p < bottom || p >= top) printk(" "); else { if (__get_user(val, (unsigned int __user *)p)) { printk("\n"); return; } printk("%08x ", val); } } printk("\n"); }}static DEFINE_SPINLOCK(die_lock);void die(const char * str, struct pt_regs * regs, long err){ static int die_counter; oops_enter(); console_verbose(); spin_lock_irq(&die_lock); bust_spinlocks(1); printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter); CHK_REMOTE_DEBUG(regs); print_modules(); show_regs(regs); printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm, task_pid_nr(current), task_stack_page(current) + 1); if (!user_mode(regs) || in_interrupt()) dump_mem("Stack: ", regs->regs[15], THREAD_SIZE + (unsigned long)task_stack_page(current)); bust_spinlocks(0); add_taint(TAINT_DIE); spin_unlock_irq(&die_lock); if (kexec_should_crash(current)) crash_kexec(regs); if (in_interrupt()) panic("Fatal exception in interrupt"); if (panic_on_oops) panic("Fatal exception"); oops_exit(); do_exit(SIGSEGV);}static inline void die_if_kernel(const char *str, struct pt_regs *regs, long err){ if (!user_mode(regs)) die(str, regs, err);}/* * try and fix up kernelspace address errors * - userspace errors just cause EFAULT to be returned, resulting in SEGV * - kernel/userspace interfaces cause a jump to an appropriate handler * - other kernel errors are bad * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault */static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err){ if (!user_mode(regs)) { const struct exception_table_entry *fixup; fixup = search_exception_tables(regs->pc); if (fixup) { regs->pc = fixup->fixup; return 0; } die(str, regs, err); } return -EFAULT;}/* * handle an instruction that does an unaligned memory access by emulating the * desired behaviour * - note that PC _may not_ point to the faulting instruction * (if that instruction is in a branch delay slot) * - return 0 if emulation okay, -EFAULT on existential error */static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs){ int ret, index, count; unsigned long *rm, *rn; unsigned char *src, *dst; index = (instruction>>8)&15; /* 0x0F00 */ rn = ®s->regs[index]; index = (instruction>>4)&15; /* 0x00F0 */ rm = ®s->regs[index]; count = 1<<(instruction&3); ret = -EFAULT; switch (instruction>>12) { case 0: /* mov.[bwl] to/from memory via r0+rn */ if (instruction & 8) { /* from memory */ src = (unsigned char*) *rm; src += regs->regs[0]; dst = (unsigned char*) rn; *(unsigned long*)dst = 0;#ifdef __LITTLE_ENDIAN__ if (copy_from_user(dst, src, count)) goto fetch_fault; if ((count == 2) && dst[1] & 0x80) { dst[2] = 0xff; dst[3] = 0xff; }#else dst += 4-count; if (__copy_user(dst, src, count)) goto fetch_fault; if ((count == 2) && dst[2] & 0x80) { dst[0] = 0xff; dst[1] = 0xff; }#endif } else { /* to memory */ src = (unsigned char*) rm;#if !defined(__LITTLE_ENDIAN__) src += 4-count;#endif dst = (unsigned char*) *rn; dst += regs->regs[0]; if (copy_to_user(dst, src, count)) goto fetch_fault; } ret = 0; break; case 1: /* mov.l Rm,@(disp,Rn) */ src = (unsigned char*) rm; dst = (unsigned char*) *rn; dst += (instruction&0x000F)<<2; if (copy_to_user(dst,src,4)) goto fetch_fault; ret = 0; break; case 2: /* mov.[bwl] to memory, possibly with pre-decrement */ if (instruction & 4) *rn -= count; src = (unsigned char*) rm; dst = (unsigned char*) *rn;#if !defined(__LITTLE_ENDIAN__) src += 4-count;#endif if (copy_to_user(dst, src, count)) goto fetch_fault; ret = 0; break; case 5: /* mov.l @(disp,Rm),Rn */ src = (unsigned char*) *rm; src += (instruction&0x000F)<<2; dst = (unsigned char*) rn; *(unsigned long*)dst = 0; if (copy_from_user(dst,src,4)) goto fetch_fault; ret = 0; break; case 6: /* mov.[bwl] from memory, possibly with post-increment */ src = (unsigned char*) *rm; if (instruction & 4) *rm += count; dst = (unsigned char*) rn; *(unsigned long*)dst = 0;#ifdef __LITTLE_ENDIAN__ if (copy_from_user(dst, src, count)) goto fetch_fault; if ((count == 2) && dst[1] & 0x80) { dst[2] = 0xff; dst[3] = 0xff; }#else dst += 4-count; if (copy_from_user(dst, src, count)) goto fetch_fault; if ((count == 2) && dst[2] & 0x80) { dst[0] = 0xff; dst[1] = 0xff; }#endif ret = 0; break; case 8: switch ((instruction&0xFF00)>>8) { case 0x81: /* mov.w R0,@(disp,Rn) */ src = (unsigned char*) ®s->regs[0];#if !defined(__LITTLE_ENDIAN__) src += 2;#endif dst = (unsigned char*) *rm; /* called Rn in the spec */ dst += (instruction&0x000F)<<1; if (copy_to_user(dst, src, 2)) goto fetch_fault; ret = 0; break; case 0x85: /* mov.w @(disp,Rm),R0 */ src = (unsigned char*) *rm; src += (instruction&0x000F)<<1; dst = (unsigned char*) ®s->regs[0]; *(unsigned long*)dst = 0;#if !defined(__LITTLE_ENDIAN__) dst += 2;#endif if (copy_from_user(dst, src, 2)) goto fetch_fault;#ifdef __LITTLE_ENDIAN__ if (dst[1] & 0x80) { dst[2] = 0xff; dst[3] = 0xff; }#else if (dst[2] & 0x80) { dst[0] = 0xff; dst[1] = 0xff; }#endif ret = 0; break; } break; } return ret; fetch_fault: /* Argh. Address not only misaligned but also non-existent. * Raise an EFAULT and see if it's trapped */ return die_if_no_fixup("Fault in unaligned fixup", regs, 0);}/* * emulate the instruction in the delay slot * - fetches the instruction from PC+2 */static inline int handle_unaligned_delayslot(struct pt_regs *regs){ u16 instruction; if (copy_from_user(&instruction, (u16 *)(regs->pc+2), 2)) { /* the instruction-fetch faulted */ if (user_mode(regs)) return -EFAULT; /* kernel */ die("delay-slot-insn faulting in handle_unaligned_delayslot", regs, 0); } return handle_unaligned_ins(instruction,regs);}/* * handle an instruction that does an unaligned memory access * - have to be careful of branch delay-slot instructions that fault * SH3: * - if the branch would be taken PC points to the branch * - if the branch would not be taken, PC points to delay-slot * SH4: * - PC always points to delayed branch * - return 0 if handled, -EFAULT if failed (may not return if in kernel) *//* Macros to determine offset from current PC for branch instructions *//* Explicit type coercion is used to force sign extension where needed */#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)/* * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit * opcodes.. */#ifndef CONFIG_CPU_SH2Astatic int handle_unaligned_notify_count = 10;static int handle_unaligned_access(u16 instruction, struct pt_regs *regs){ u_int rm; int ret, index; index = (instruction>>8)&15; /* 0x0F00 */ rm = regs->regs[index]; /* shout about the first ten userspace fixups */ if (user_mode(regs) && handle_unaligned_notify_count>0) { handle_unaligned_notify_count--; printk(KERN_NOTICE "Fixing up unaligned userspace access " "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", current->comm, task_pid_nr(current), (u16 *)regs->pc, instruction); } ret = -EFAULT; switch (instruction&0xF000) { case 0x0000: if (instruction==0x000B) { /* rts */ ret = handle_unaligned_delayslot(regs); if (ret==0) regs->pc = regs->pr; } else if ((instruction&0x00FF)==0x0023) { /* braf @Rm */ ret = handle_unaligned_delayslot(regs); if (ret==0) regs->pc += rm + 4; } else if ((instruction&0x00FF)==0x0003) { /* bsrf @Rm */ ret = handle_unaligned_delayslot(regs); if (ret==0) { regs->pr = regs->pc + 4; regs->pc += rm + 4; } } else { /* mov.[bwl] to/from memory via r0+rn */ goto simple; } break; case 0x1000: /* mov.l Rm,@(disp,Rn) */ goto simple; case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */ goto simple; case 0x4000: if ((instruction&0x00FF)==0x002B) { /* jmp @Rm */ ret = handle_unaligned_delayslot(regs); if (ret==0) regs->pc = rm; } else if ((instruction&0x00FF)==0x000B) { /* jsr @Rm */ ret = handle_unaligned_delayslot(regs); if (ret==0) { regs->pr = regs->pc + 4; regs->pc = rm; } } else { /* mov.[bwl] to/from memory via r0+rn */ goto simple; } break; case 0x5000: /* mov.l @(disp,Rm),Rn */ goto simple; case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */ goto simple; case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */ switch (instruction&0x0F00) { case 0x0100: /* mov.w R0,@(disp,Rm) */ goto simple; case 0x0500: /* mov.w @(disp,Rm),R0 */ goto simple; case 0x0B00: /* bf lab - no delayslot*/ break; case 0x0F00: /* bf/s lab */ ret = handle_unaligned_delayslot(regs); if (ret==0) {#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB) if ((regs->sr & 0x00000001) != 0) regs->pc += 4; /* next after slot */ else#endif regs->pc += SH_PC_8BIT_OFFSET(instruction); } break; case 0x0900: /* bt lab - no delayslot */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -