2007-11-20 02:08:06 -07:00
|
|
|
#include <linux/bug.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kdebug.h>
|
2007-11-26 02:17:51 -07:00
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/sched.h>
|
2008-05-19 04:32:07 -06:00
|
|
|
#include <linux/uaccess.h>
|
2009-08-21 14:28:25 -06:00
|
|
|
#include <asm/unwinder.h>
|
2007-11-20 02:08:06 -07:00
|
|
|
#include <asm/system.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_BUG
|
2009-08-16 14:54:48 -06:00
|
|
|
void handle_BUG(struct pt_regs *regs)
|
2007-11-20 02:08:06 -07:00
|
|
|
{
|
2009-08-21 14:28:25 -06:00
|
|
|
const struct bug_entry *bug;
|
|
|
|
unsigned long bugaddr = regs->pc;
|
2007-11-20 02:08:06 -07:00
|
|
|
enum bug_trap_type tt;
|
2009-08-21 14:28:25 -06:00
|
|
|
|
|
|
|
if (!is_valid_bugaddr(bugaddr))
|
|
|
|
goto invalid;
|
|
|
|
|
|
|
|
bug = find_bug(bugaddr);
|
|
|
|
|
|
|
|
/* Switch unwinders when unwind_stack() is called */
|
|
|
|
if (bug->flags & BUGFLAG_UNWINDER)
|
|
|
|
unwinder_faulted = 1;
|
|
|
|
|
|
|
|
tt = report_bug(bugaddr, regs);
|
2007-11-20 02:08:06 -07:00
|
|
|
if (tt == BUG_TRAP_TYPE_WARN) {
|
2009-08-21 14:28:25 -06:00
|
|
|
regs->pc += instruction_size(bugaddr);
|
2007-11-20 02:08:06 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-21 14:28:25 -06:00
|
|
|
invalid:
|
2007-11-20 02:08:06 -07:00
|
|
|
die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff);
|
|
|
|
}
|
|
|
|
|
|
|
|
int is_valid_bugaddr(unsigned long addr)
|
|
|
|
{
|
2009-05-09 01:02:08 -06:00
|
|
|
insn_size_t opcode;
|
2008-05-19 04:32:07 -06:00
|
|
|
|
|
|
|
if (addr < PAGE_OFFSET)
|
|
|
|
return 0;
|
2009-05-09 01:02:08 -06:00
|
|
|
if (probe_kernel_address((insn_size_t *)addr, opcode))
|
2008-05-19 04:32:07 -06:00
|
|
|
return 0;
|
2009-08-21 14:28:25 -06:00
|
|
|
if (opcode == TRAPA_BUG_OPCODE)
|
2009-08-16 14:54:48 -06:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
2007-11-20 02:08:06 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic trap handler.
|
|
|
|
*/
|
|
|
|
BUILD_TRAP_HANDLER(debug)
|
|
|
|
{
|
|
|
|
TRAP_HANDLER_DECL;
|
|
|
|
|
|
|
|
/* Rewind */
|
|
|
|
regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
|
|
|
|
|
|
|
|
if (notify_die(DIE_TRAP, "debug trap", regs, 0, vec & 0xff,
|
|
|
|
SIGTRAP) == NOTIFY_STOP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
force_sig(SIGTRAP, current);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special handler for BUG() traps.
|
|
|
|
*/
|
|
|
|
BUILD_TRAP_HANDLER(bug)
|
|
|
|
{
|
|
|
|
TRAP_HANDLER_DECL;
|
|
|
|
|
|
|
|
/* Rewind */
|
|
|
|
regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
|
|
|
|
|
|
|
|
if (notify_die(DIE_TRAP, "bug trap", regs, 0, TRAPA_BUG_OPCODE & 0xff,
|
|
|
|
SIGTRAP) == NOTIFY_STOP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef CONFIG_BUG
|
|
|
|
if (__kernel_text_address(instruction_pointer(regs))) {
|
2009-05-09 01:02:08 -06:00
|
|
|
insn_size_t insn = *(insn_size_t *)instruction_pointer(regs);
|
2007-11-20 02:08:06 -07:00
|
|
|
if (insn == TRAPA_BUG_OPCODE)
|
|
|
|
handle_BUG(regs);
|
2009-06-16 22:48:20 -06:00
|
|
|
return;
|
2007-11-20 02:08:06 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
force_sig(SIGTRAP, current);
|
|
|
|
}
|