1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/cpu.h>
22#include <linux/debugfs.h>
23#include <linux/hardirq.h>
24#include <linux/init.h>
25#include <linux/ptrace.h>
26#include <linux/stat.h>
27#include <linux/uaccess.h>
28
29#include <asm/debug-monitors.h>
30#include <asm/local.h>
31#include <asm/cputype.h>
32#include <asm/system_misc.h>
33
34
35#define DBG_MDSCR_SS (1 << 0)
36#define DBG_SPSR_SS (1 << 21)
37
38
39#define DBG_MDSCR_KDE (1 << 13)
40#define DBG_MDSCR_MDE (1 << 15)
41#define DBG_MDSCR_MASK ~(DBG_MDSCR_KDE | DBG_MDSCR_MDE)
42
43
44u8 debug_monitors_arch(void)
45{
46 return read_cpuid(ID_AA64DFR0_EL1) & 0xf;
47}
48
49
50
51
52static void mdscr_write(u32 mdscr)
53{
54 unsigned long flags;
55 local_dbg_save(flags);
56 asm volatile("msr mdscr_el1, %0" :: "r" (mdscr));
57 local_dbg_restore(flags);
58}
59
60static u32 mdscr_read(void)
61{
62 u32 mdscr;
63 asm volatile("mrs %0, mdscr_el1" : "=r" (mdscr));
64 return mdscr;
65}
66
67
68
69
70
71static u32 debug_enabled = 1;
72
73static int create_debug_debugfs_entry(void)
74{
75 debugfs_create_bool("debug_enabled", 0644, NULL, &debug_enabled);
76 return 0;
77}
78fs_initcall(create_debug_debugfs_entry);
79
80static int __init early_debug_disable(char *buf)
81{
82 debug_enabled = 0;
83 return 0;
84}
85
86early_param("nodebugmon", early_debug_disable);
87
88
89
90
91
92static DEFINE_PER_CPU(local_t, mde_ref_count);
93static DEFINE_PER_CPU(local_t, kde_ref_count);
94
95void enable_debug_monitors(enum debug_el el)
96{
97 u32 mdscr, enable = 0;
98
99 WARN_ON(preemptible());
100
101 if (local_inc_return(&__get_cpu_var(mde_ref_count)) == 1)
102 enable = DBG_MDSCR_MDE;
103
104 if (el == DBG_ACTIVE_EL1 &&
105 local_inc_return(&__get_cpu_var(kde_ref_count)) == 1)
106 enable |= DBG_MDSCR_KDE;
107
108 if (enable && debug_enabled) {
109 mdscr = mdscr_read();
110 mdscr |= enable;
111 mdscr_write(mdscr);
112 }
113}
114
115void disable_debug_monitors(enum debug_el el)
116{
117 u32 mdscr, disable = 0;
118
119 WARN_ON(preemptible());
120
121 if (local_dec_and_test(&__get_cpu_var(mde_ref_count)))
122 disable = ~DBG_MDSCR_MDE;
123
124 if (el == DBG_ACTIVE_EL1 &&
125 local_dec_and_test(&__get_cpu_var(kde_ref_count)))
126 disable &= ~DBG_MDSCR_KDE;
127
128 if (disable) {
129 mdscr = mdscr_read();
130 mdscr &= disable;
131 mdscr_write(mdscr);
132 }
133}
134
135
136
137
138static void clear_os_lock(void *unused)
139{
140 asm volatile("msr oslar_el1, %0" : : "r" (0));
141 isb();
142}
143
144static int os_lock_notify(struct notifier_block *self,
145 unsigned long action, void *data)
146{
147 int cpu = (unsigned long)data;
148 if (action == CPU_ONLINE)
149 smp_call_function_single(cpu, clear_os_lock, NULL, 1);
150 return NOTIFY_OK;
151}
152
153static struct notifier_block os_lock_nb = {
154 .notifier_call = os_lock_notify,
155};
156
157static int debug_monitors_init(void)
158{
159
160 smp_call_function(clear_os_lock, NULL, 1);
161 clear_os_lock(NULL);
162
163
164 register_cpu_notifier(&os_lock_nb);
165 return 0;
166}
167postcore_initcall(debug_monitors_init);
168
169
170
171
172static void set_regs_spsr_ss(struct pt_regs *regs)
173{
174 unsigned long spsr;
175
176 spsr = regs->pstate;
177 spsr &= ~DBG_SPSR_SS;
178 spsr |= DBG_SPSR_SS;
179 regs->pstate = spsr;
180}
181
182static void clear_regs_spsr_ss(struct pt_regs *regs)
183{
184 unsigned long spsr;
185
186 spsr = regs->pstate;
187 spsr &= ~DBG_SPSR_SS;
188 regs->pstate = spsr;
189}
190
191static int single_step_handler(unsigned long addr, unsigned int esr,
192 struct pt_regs *regs)
193{
194 siginfo_t info;
195
196
197
198
199
200 if (!reinstall_suspended_bps(regs))
201 return 0;
202
203 if (user_mode(regs)) {
204 info.si_signo = SIGTRAP;
205 info.si_errno = 0;
206 info.si_code = TRAP_HWBKPT;
207 info.si_addr = (void __user *)instruction_pointer(regs);
208 force_sig_info(SIGTRAP, &info, current);
209
210
211
212
213
214
215
216 user_rewind_single_step(current);
217 } else {
218
219 pr_warning("Unexpected kernel single-step exception at EL1\n");
220
221
222
223
224 set_regs_spsr_ss(regs);
225 }
226
227 return 0;
228}
229
230static int brk_handler(unsigned long addr, unsigned int esr,
231 struct pt_regs *regs)
232{
233 siginfo_t info;
234
235 if (!user_mode(regs))
236 return -EFAULT;
237
238 info = (siginfo_t) {
239 .si_signo = SIGTRAP,
240 .si_errno = 0,
241 .si_code = TRAP_BRKPT,
242 .si_addr = (void __user *)instruction_pointer(regs),
243 };
244
245 force_sig_info(SIGTRAP, &info, current);
246 return 0;
247}
248
249int aarch32_break_handler(struct pt_regs *regs)
250{
251 siginfo_t info;
252 unsigned int instr;
253 bool bp = false;
254 void __user *pc = (void __user *)instruction_pointer(regs);
255
256 if (!compat_user_mode(regs))
257 return -EFAULT;
258
259 if (compat_thumb_mode(regs)) {
260
261 get_user(instr, (u16 __user *)pc);
262 if (instr == AARCH32_BREAK_THUMB2_LO) {
263
264 get_user(instr, (u16 __user *)(pc + 2));
265 bp = instr == AARCH32_BREAK_THUMB2_HI;
266 } else {
267 bp = instr == AARCH32_BREAK_THUMB;
268 }
269 } else {
270
271 get_user(instr, (u32 __user *)pc);
272 bp = (instr & ~0xf0000000) == AARCH32_BREAK_ARM;
273 }
274
275 if (!bp)
276 return -EFAULT;
277
278 info = (siginfo_t) {
279 .si_signo = SIGTRAP,
280 .si_errno = 0,
281 .si_code = TRAP_BRKPT,
282 .si_addr = pc,
283 };
284
285 force_sig_info(SIGTRAP, &info, current);
286 return 0;
287}
288
289static int __init debug_traps_init(void)
290{
291 hook_debug_fault_code(DBG_ESR_EVT_HWSS, single_step_handler, SIGTRAP,
292 TRAP_HWBKPT, "single-step handler");
293 hook_debug_fault_code(DBG_ESR_EVT_BRK, brk_handler, SIGTRAP,
294 TRAP_BRKPT, "ptrace BRK handler");
295 return 0;
296}
297arch_initcall(debug_traps_init);
298
299
300void user_rewind_single_step(struct task_struct *task)
301{
302
303
304
305
306 if (test_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP))
307 set_regs_spsr_ss(task_pt_regs(task));
308}
309
310void user_fastforward_single_step(struct task_struct *task)
311{
312 if (test_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP))
313 clear_regs_spsr_ss(task_pt_regs(task));
314}
315
316
317void kernel_enable_single_step(struct pt_regs *regs)
318{
319 WARN_ON(!irqs_disabled());
320 set_regs_spsr_ss(regs);
321 mdscr_write(mdscr_read() | DBG_MDSCR_SS);
322 enable_debug_monitors(DBG_ACTIVE_EL1);
323}
324
325void kernel_disable_single_step(void)
326{
327 WARN_ON(!irqs_disabled());
328 mdscr_write(mdscr_read() & ~DBG_MDSCR_SS);
329 disable_debug_monitors(DBG_ACTIVE_EL1);
330}
331
332int kernel_active_single_step(void)
333{
334 WARN_ON(!irqs_disabled());
335 return mdscr_read() & DBG_MDSCR_SS;
336}
337
338
339void user_enable_single_step(struct task_struct *task)
340{
341 set_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP);
342 set_regs_spsr_ss(task_pt_regs(task));
343}
344
345void user_disable_single_step(struct task_struct *task)
346{
347 clear_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP);
348}
349