2 * Copyright (C) 2012 Regents of the University of California
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/sched/debug.h>
18 #include <linux/sched/signal.h>
19 #include <linux/signal.h>
20 #include <linux/kdebug.h>
21 #include <linux/uaccess.h>
23 #include <linux/module.h>
24 #include <linux/irq.h>
26 #include <asm/processor.h>
27 #include <asm/ptrace.h>
30 int show_unhandled_signals
= 1;
32 extern asmlinkage
void handle_exception(void);
34 static DEFINE_SPINLOCK(die_lock
);
36 void die(struct pt_regs
*regs
, const char *str
)
38 static int die_counter
;
43 spin_lock_irq(&die_lock
);
47 pr_emerg("%s [#%d]\n", str
, ++die_counter
);
51 ret
= notify_die(DIE_OOPS
, str
, regs
, 0, regs
->scause
, SIGSEGV
);
54 add_taint(TAINT_DIE
, LOCKDEP_NOW_UNRELIABLE
);
55 spin_unlock_irq(&die_lock
);
59 panic("Fatal exception in interrupt");
61 panic("Fatal exception");
62 if (ret
!= NOTIFY_STOP
)
66 static inline void do_trap_siginfo(int signo
, int code
,
67 unsigned long addr
, struct task_struct
*tsk
)
71 info
.si_signo
= signo
;
74 info
.si_addr
= (void __user
*)addr
;
75 force_sig_info(signo
, &info
, tsk
);
78 void do_trap(struct pt_regs
*regs
, int signo
, int code
,
79 unsigned long addr
, struct task_struct
*tsk
)
81 if (show_unhandled_signals
&& unhandled_signal(tsk
, signo
)
82 && printk_ratelimit()) {
83 pr_info("%s[%d]: unhandled signal %d code 0x%x at 0x" REG_FMT
,
84 tsk
->comm
, task_pid_nr(tsk
), signo
, code
, addr
);
85 print_vma_addr(KERN_CONT
" in ", GET_IP(regs
));
90 do_trap_siginfo(signo
, code
, addr
, tsk
);
93 static void do_trap_error(struct pt_regs
*regs
, int signo
, int code
,
94 unsigned long addr
, const char *str
)
96 if (user_mode(regs
)) {
97 do_trap(regs
, signo
, code
, addr
, current
);
99 if (!fixup_exception(regs
))
104 #define DO_ERROR_INFO(name, signo, code, str) \
105 asmlinkage void name(struct pt_regs *regs) \
107 do_trap_error(regs, signo, code, regs->sepc, "Oops - " str); \
110 DO_ERROR_INFO(do_trap_unknown
,
111 SIGILL
, ILL_ILLTRP
, "unknown exception");
112 DO_ERROR_INFO(do_trap_insn_misaligned
,
113 SIGBUS
, BUS_ADRALN
, "instruction address misaligned");
114 DO_ERROR_INFO(do_trap_insn_fault
,
115 SIGSEGV
, SEGV_ACCERR
, "instruction access fault");
116 DO_ERROR_INFO(do_trap_insn_illegal
,
117 SIGILL
, ILL_ILLOPC
, "illegal instruction");
118 DO_ERROR_INFO(do_trap_load_misaligned
,
119 SIGBUS
, BUS_ADRALN
, "load address misaligned");
120 DO_ERROR_INFO(do_trap_load_fault
,
121 SIGSEGV
, SEGV_ACCERR
, "load access fault");
122 DO_ERROR_INFO(do_trap_store_misaligned
,
123 SIGBUS
, BUS_ADRALN
, "store (or AMO) address misaligned");
124 DO_ERROR_INFO(do_trap_store_fault
,
125 SIGSEGV
, SEGV_ACCERR
, "store (or AMO) access fault");
126 DO_ERROR_INFO(do_trap_ecall_u
,
127 SIGILL
, ILL_ILLTRP
, "environment call from U-mode");
128 DO_ERROR_INFO(do_trap_ecall_s
,
129 SIGILL
, ILL_ILLTRP
, "environment call from S-mode");
130 DO_ERROR_INFO(do_trap_ecall_m
,
131 SIGILL
, ILL_ILLTRP
, "environment call from M-mode");
133 asmlinkage
void do_trap_break(struct pt_regs
*regs
)
135 #ifdef CONFIG_GENERIC_BUG
136 if (!user_mode(regs
)) {
137 enum bug_trap_type type
;
139 type
= report_bug(regs
->sepc
, regs
);
141 case BUG_TRAP_TYPE_NONE
:
143 case BUG_TRAP_TYPE_WARN
:
144 regs
->sepc
+= sizeof(bug_insn_t
);
146 case BUG_TRAP_TYPE_BUG
:
147 die(regs
, "Kernel BUG");
150 #endif /* CONFIG_GENERIC_BUG */
152 do_trap_siginfo(SIGTRAP
, TRAP_BRKPT
, regs
->sepc
, current
);
156 #ifdef CONFIG_GENERIC_BUG
157 int is_valid_bugaddr(unsigned long pc
)
161 if (pc
< PAGE_OFFSET
)
163 if (probe_kernel_address((bug_insn_t __user
*)pc
, insn
))
165 return (insn
== __BUG_INSN
);
167 #endif /* CONFIG_GENERIC_BUG */
169 void __init
trap_init(void)
172 * Set sup0 scratch register to 0, indicating to exception vector
173 * that we are presently executing in the kernel
175 csr_write(sscratch
, 0);
176 /* Set the exception vector address */
177 csr_write(stvec
, &handle_exception
);
178 /* Enable all interrupts */