arm64: debug: remove noisy, pointless warning
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / kernel / debug-monitors.c
1 /*
2  * ARMv8 single-step debug support and mdscr context switching.
3  *
4  * Copyright (C) 2012 ARM Limited
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * Author: Will Deacon <will.deacon@arm.com>
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 /* Low-level stepping controls. */
35 #define DBG_MDSCR_SS            (1 << 0)
36 #define DBG_SPSR_SS             (1 << 21)
37
38 /* MDSCR_EL1 enabling bits */
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 /* Determine debug architecture. */
44 u8 debug_monitors_arch(void)
45 {
46         return read_cpuid(ID_AA64DFR0_EL1) & 0xf;
47 }
48
49 /*
50  * MDSCR access routines.
51  */
52 static 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
60 static u32 mdscr_read(void)
61 {
62         u32 mdscr;
63         asm volatile("mrs %0, mdscr_el1" : "=r" (mdscr));
64         return mdscr;
65 }
66
67 /*
68  * Allow root to disable self-hosted debug from userspace.
69  * This is useful if you want to connect an external JTAG debugger.
70  */
71 static u32 debug_enabled = 1;
72
73 static int create_debug_debugfs_entry(void)
74 {
75         debugfs_create_bool("debug_enabled", 0644, NULL, &debug_enabled);
76         return 0;
77 }
78 fs_initcall(create_debug_debugfs_entry);
79
80 static int __init early_debug_disable(char *buf)
81 {
82         debug_enabled = 0;
83         return 0;
84 }
85
86 early_param("nodebugmon", early_debug_disable);
87
88 /*
89  * Keep track of debug users on each core.
90  * The ref counts are per-cpu so we use a local_t type.
91  */
92 static DEFINE_PER_CPU(local_t, mde_ref_count);
93 static DEFINE_PER_CPU(local_t, kde_ref_count);
94
95 void 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
115 void 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  * OS lock clearing.
137  */
138 static void clear_os_lock(void *unused)
139 {
140         asm volatile("msr oslar_el1, %0" : : "r" (0));
141         isb();
142         local_dbg_enable();
143 }
144
145 static int __cpuinit os_lock_notify(struct notifier_block *self,
146                                     unsigned long action, void *data)
147 {
148         int cpu = (unsigned long)data;
149         if (action == CPU_ONLINE)
150                 smp_call_function_single(cpu, clear_os_lock, NULL, 1);
151         return NOTIFY_OK;
152 }
153
154 static struct notifier_block __cpuinitdata os_lock_nb = {
155         .notifier_call = os_lock_notify,
156 };
157
158 static int __cpuinit debug_monitors_init(void)
159 {
160         cpu_notifier_register_begin();
161
162         /* Clear the OS lock. */
163         smp_call_function(clear_os_lock, NULL, 1);
164         clear_os_lock(NULL);
165
166         /* Register hotplug handler. */
167         __register_cpu_notifier(&os_lock_nb);
168
169         cpu_notifier_register_done();
170         return 0;
171 }
172 postcore_initcall(debug_monitors_init);
173
174 /*
175  * Single step API and exception handling.
176  */
177 static void set_regs_spsr_ss(struct pt_regs *regs)
178 {
179         unsigned long spsr;
180
181         spsr = regs->pstate;
182         spsr &= ~DBG_SPSR_SS;
183         spsr |= DBG_SPSR_SS;
184         regs->pstate = spsr;
185 }
186
187 static void clear_regs_spsr_ss(struct pt_regs *regs)
188 {
189         unsigned long spsr;
190
191         spsr = regs->pstate;
192         spsr &= ~DBG_SPSR_SS;
193         regs->pstate = spsr;
194 }
195
196 /* EL1 Single Step Handler hooks */
197 static LIST_HEAD(step_hook);
198 DEFINE_RWLOCK(step_hook_lock);
199
200 void register_step_hook(struct step_hook *hook)
201 {
202         write_lock(&step_hook_lock);
203         list_add(&hook->node, &step_hook);
204         write_unlock(&step_hook_lock);
205 }
206
207 void unregister_step_hook(struct step_hook *hook)
208 {
209         write_lock(&step_hook_lock);
210         list_del(&hook->node);
211         write_unlock(&step_hook_lock);
212 }
213
214 /*
215  * Call registered single step handers
216  * There is no Syndrome info to check for determining the handler.
217  * So we call all the registered handlers, until the right handler is
218  * found which returns zero.
219  */
220 static int call_step_hook(struct pt_regs *regs, unsigned int esr)
221 {
222         struct step_hook *hook;
223         int retval = DBG_HOOK_ERROR;
224
225         read_lock(&step_hook_lock);
226
227         list_for_each_entry(hook, &step_hook, node)     {
228                 retval = hook->fn(regs, esr);
229                 if (retval == DBG_HOOK_HANDLED)
230                         break;
231         }
232
233         read_unlock(&step_hook_lock);
234
235         return retval;
236 }
237
238 static int single_step_handler(unsigned long addr, unsigned int esr,
239                                struct pt_regs *regs)
240 {
241         siginfo_t info;
242
243         /*
244          * If we are stepping a pending breakpoint, call the hw_breakpoint
245          * handler first.
246          */
247         if (!reinstall_suspended_bps(regs))
248                 return 0;
249
250         if (user_mode(regs)) {
251                 info.si_signo = SIGTRAP;
252                 info.si_errno = 0;
253                 info.si_code  = TRAP_HWBKPT;
254                 info.si_addr  = (void __user *)instruction_pointer(regs);
255                 force_sig_info(SIGTRAP, &info, current);
256
257                 /*
258                  * ptrace will disable single step unless explicitly
259                  * asked to re-enable it. For other clients, it makes
260                  * sense to leave it enabled (i.e. rewind the controls
261                  * to the active-not-pending state).
262                  */
263                 user_rewind_single_step(current);
264         } else {
265                 if (call_step_hook(regs, esr) == DBG_HOOK_HANDLED)
266                         return 0;
267
268                 pr_warning("Unexpected kernel single-step exception at EL1\n");
269                 /*
270                  * Re-enable stepping since we know that we will be
271                  * returning to regs.
272                  */
273                 set_regs_spsr_ss(regs);
274         }
275
276         return 0;
277 }
278
279 /*
280  * Breakpoint handler is re-entrant as another breakpoint can
281  * hit within breakpoint handler, especically in kprobes.
282  * Use reader/writer locks instead of plain spinlock.
283  */
284 static LIST_HEAD(break_hook);
285 DEFINE_RWLOCK(break_hook_lock);
286
287 void register_break_hook(struct break_hook *hook)
288 {
289         write_lock(&break_hook_lock);
290         list_add(&hook->node, &break_hook);
291         write_unlock(&break_hook_lock);
292 }
293
294 void unregister_break_hook(struct break_hook *hook)
295 {
296         write_lock(&break_hook_lock);
297         list_del(&hook->node);
298         write_unlock(&break_hook_lock);
299 }
300
301 static int call_break_hook(struct pt_regs *regs, unsigned int esr)
302 {
303         struct break_hook *hook;
304         int (*fn)(struct pt_regs *regs, unsigned int esr) = NULL;
305
306         read_lock(&break_hook_lock);
307         list_for_each_entry(hook, &break_hook, node)
308                 if ((esr & hook->esr_mask) == hook->esr_val)
309                         fn = hook->fn;
310         read_unlock(&break_hook_lock);
311
312         return fn ? fn(regs, esr) : DBG_HOOK_ERROR;
313 }
314
315 static int brk_handler(unsigned long addr, unsigned int esr,
316                        struct pt_regs *regs)
317 {
318         siginfo_t info;
319
320         if (call_break_hook(regs, esr) == DBG_HOOK_HANDLED)
321                 return 0;
322
323         if (!user_mode(regs))
324                 return -EFAULT;
325
326         info = (siginfo_t) {
327                 .si_signo = SIGTRAP,
328                 .si_errno = 0,
329                 .si_code  = TRAP_BRKPT,
330                 .si_addr  = (void __user *)instruction_pointer(regs),
331         };
332
333         force_sig_info(SIGTRAP, &info, current);
334         return 0;
335 }
336
337 int aarch32_break_handler(struct pt_regs *regs)
338 {
339         siginfo_t info;
340         unsigned int instr;
341         bool bp = false;
342         void __user *pc = (void __user *)instruction_pointer(regs);
343
344         if (!compat_user_mode(regs))
345                 return -EFAULT;
346
347         if (compat_thumb_mode(regs)) {
348                 /* get 16-bit Thumb instruction */
349                 get_user(instr, (u16 __user *)pc);
350                 if (instr == AARCH32_BREAK_THUMB2_LO) {
351                         /* get second half of 32-bit Thumb-2 instruction */
352                         get_user(instr, (u16 __user *)(pc + 2));
353                         bp = instr == AARCH32_BREAK_THUMB2_HI;
354                 } else {
355                         bp = instr == AARCH32_BREAK_THUMB;
356                 }
357         } else {
358                 /* 32-bit ARM instruction */
359                 get_user(instr, (u32 __user *)pc);
360                 bp = (instr & ~0xf0000000) == AARCH32_BREAK_ARM;
361         }
362
363         if (!bp)
364                 return -EFAULT;
365
366         info = (siginfo_t) {
367                 .si_signo = SIGTRAP,
368                 .si_errno = 0,
369                 .si_code  = TRAP_BRKPT,
370                 .si_addr  = pc,
371         };
372
373         force_sig_info(SIGTRAP, &info, current);
374         return 0;
375 }
376
377 static int __init debug_traps_init(void)
378 {
379         hook_debug_fault_code(DBG_ESR_EVT_HWSS, single_step_handler, SIGTRAP,
380                               TRAP_HWBKPT, "single-step handler");
381         hook_debug_fault_code(DBG_ESR_EVT_BRK, brk_handler, SIGTRAP,
382                               TRAP_BRKPT, "ptrace BRK handler");
383         return 0;
384 }
385 arch_initcall(debug_traps_init);
386
387 /* Re-enable single step for syscall restarting. */
388 void user_rewind_single_step(struct task_struct *task)
389 {
390         /*
391          * If single step is active for this thread, then set SPSR.SS
392          * to 1 to avoid returning to the active-pending state.
393          */
394         if (test_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP))
395                 set_regs_spsr_ss(task_pt_regs(task));
396 }
397
398 void user_fastforward_single_step(struct task_struct *task)
399 {
400         if (test_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP))
401                 clear_regs_spsr_ss(task_pt_regs(task));
402 }
403
404 /* Kernel API */
405 void kernel_enable_single_step(struct pt_regs *regs)
406 {
407         WARN_ON(!irqs_disabled());
408         set_regs_spsr_ss(regs);
409         mdscr_write(mdscr_read() | DBG_MDSCR_SS);
410         enable_debug_monitors(DBG_ACTIVE_EL1);
411 }
412
413 void kernel_disable_single_step(void)
414 {
415         WARN_ON(!irqs_disabled());
416         mdscr_write(mdscr_read() & ~DBG_MDSCR_SS);
417         disable_debug_monitors(DBG_ACTIVE_EL1);
418 }
419
420 int kernel_active_single_step(void)
421 {
422         WARN_ON(!irqs_disabled());
423         return mdscr_read() & DBG_MDSCR_SS;
424 }
425
426 /* ptrace API */
427 void user_enable_single_step(struct task_struct *task)
428 {
429         set_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP);
430         set_regs_spsr_ss(task_pt_regs(task));
431 }
432
433 void user_disable_single_step(struct task_struct *task)
434 {
435         clear_ti_thread_flag(task_thread_info(task), TIF_SINGLESTEP);
436 }