Linux 4.13.16
[linux/fpc-iii.git] / arch / powerpc / kernel / hw_breakpoint.c
blob53b9c1dfd7d978dddf909d3699e06713d83c025a
1 /*
2 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
3 * using the CPU's debug registers. Derived from
4 * "arch/x86/kernel/hw_breakpoint.c"
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 * Copyright 2010 IBM Corporation
21 * Author: K.Prasad <prasad@linux.vnet.ibm.com>
25 #include <linux/hw_breakpoint.h>
26 #include <linux/notifier.h>
27 #include <linux/kprobes.h>
28 #include <linux/percpu.h>
29 #include <linux/kernel.h>
30 #include <linux/sched.h>
31 #include <linux/smp.h>
33 #include <asm/hw_breakpoint.h>
34 #include <asm/processor.h>
35 #include <asm/sstep.h>
36 #include <linux/uaccess.h>
39 * Stores the breakpoints currently in use on each breakpoint address
40 * register for every cpu
42 static DEFINE_PER_CPU(struct perf_event *, bp_per_reg);
45 * Returns total number of data or instruction breakpoints available.
47 int hw_breakpoint_slots(int type)
49 if (type == TYPE_DATA)
50 return HBP_NUM;
51 return 0; /* no instruction breakpoints available */
55 * Install a perf counter breakpoint.
57 * We seek a free debug address register and use it for this
58 * breakpoint.
60 * Atomic: we hold the counter->ctx->lock and we only handle variables
61 * and registers local to this cpu.
63 int arch_install_hw_breakpoint(struct perf_event *bp)
65 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
66 struct perf_event **slot = this_cpu_ptr(&bp_per_reg);
68 *slot = bp;
71 * Do not install DABR values if the instruction must be single-stepped.
72 * If so, DABR will be populated in single_step_dabr_instruction().
74 if (current->thread.last_hit_ubp != bp)
75 __set_breakpoint(info);
77 return 0;
81 * Uninstall the breakpoint contained in the given counter.
83 * First we search the debug address register it uses and then we disable
84 * it.
86 * Atomic: we hold the counter->ctx->lock and we only handle variables
87 * and registers local to this cpu.
89 void arch_uninstall_hw_breakpoint(struct perf_event *bp)
91 struct perf_event **slot = this_cpu_ptr(&bp_per_reg);
93 if (*slot != bp) {
94 WARN_ONCE(1, "Can't find the breakpoint");
95 return;
98 *slot = NULL;
99 hw_breakpoint_disable();
103 * Perform cleanup of arch-specific counters during unregistration
104 * of the perf-event
106 void arch_unregister_hw_breakpoint(struct perf_event *bp)
109 * If the breakpoint is unregistered between a hw_breakpoint_handler()
110 * and the single_step_dabr_instruction(), then cleanup the breakpoint
111 * restoration variables to prevent dangling pointers.
112 * FIXME, this should not be using bp->ctx at all! Sayeth peterz.
114 if (bp->ctx && bp->ctx->task && bp->ctx->task != ((void *)-1L))
115 bp->ctx->task->thread.last_hit_ubp = NULL;
119 * Check for virtual address in kernel space.
121 int arch_check_bp_in_kernelspace(struct perf_event *bp)
123 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
125 return is_kernel_addr(info->address);
128 int arch_bp_generic_fields(int type, int *gen_bp_type)
130 *gen_bp_type = 0;
131 if (type & HW_BRK_TYPE_READ)
132 *gen_bp_type |= HW_BREAKPOINT_R;
133 if (type & HW_BRK_TYPE_WRITE)
134 *gen_bp_type |= HW_BREAKPOINT_W;
135 if (*gen_bp_type == 0)
136 return -EINVAL;
137 return 0;
141 * Validate the arch-specific HW Breakpoint register settings
143 int arch_validate_hwbkpt_settings(struct perf_event *bp)
145 int ret = -EINVAL, length_max;
146 struct arch_hw_breakpoint *info = counter_arch_bp(bp);
148 if (!bp)
149 return ret;
151 info->type = HW_BRK_TYPE_TRANSLATE;
152 if (bp->attr.bp_type & HW_BREAKPOINT_R)
153 info->type |= HW_BRK_TYPE_READ;
154 if (bp->attr.bp_type & HW_BREAKPOINT_W)
155 info->type |= HW_BRK_TYPE_WRITE;
156 if (info->type == HW_BRK_TYPE_TRANSLATE)
157 /* must set alteast read or write */
158 return ret;
159 if (!(bp->attr.exclude_user))
160 info->type |= HW_BRK_TYPE_USER;
161 if (!(bp->attr.exclude_kernel))
162 info->type |= HW_BRK_TYPE_KERNEL;
163 if (!(bp->attr.exclude_hv))
164 info->type |= HW_BRK_TYPE_HYP;
165 info->address = bp->attr.bp_addr;
166 info->len = bp->attr.bp_len;
169 * Since breakpoint length can be a maximum of HW_BREAKPOINT_LEN(8)
170 * and breakpoint addresses are aligned to nearest double-word
171 * HW_BREAKPOINT_ALIGN by rounding off to the lower address, the
172 * 'symbolsize' should satisfy the check below.
174 length_max = 8; /* DABR */
175 if (cpu_has_feature(CPU_FTR_DAWR)) {
176 length_max = 512 ; /* 64 doublewords */
177 /* DAWR region can't cross 512 boundary */
178 if ((bp->attr.bp_addr >> 10) !=
179 ((bp->attr.bp_addr + bp->attr.bp_len - 1) >> 10))
180 return -EINVAL;
182 if (info->len >
183 (length_max - (info->address & HW_BREAKPOINT_ALIGN)))
184 return -EINVAL;
185 return 0;
189 * Restores the breakpoint on the debug registers.
190 * Invoke this function if it is known that the execution context is
191 * about to change to cause loss of MSR_SE settings.
193 void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs)
195 struct arch_hw_breakpoint *info;
197 if (likely(!tsk->thread.last_hit_ubp))
198 return;
200 info = counter_arch_bp(tsk->thread.last_hit_ubp);
201 regs->msr &= ~MSR_SE;
202 __set_breakpoint(info);
203 tsk->thread.last_hit_ubp = NULL;
207 * Handle debug exception notifications.
209 int hw_breakpoint_handler(struct die_args *args)
211 int rc = NOTIFY_STOP;
212 struct perf_event *bp;
213 struct pt_regs *regs = args->regs;
214 #ifndef CONFIG_PPC_8xx
215 int stepped = 1;
216 unsigned int instr;
217 #endif
218 struct arch_hw_breakpoint *info;
219 unsigned long dar = regs->dar;
221 /* Disable breakpoints during exception handling */
222 hw_breakpoint_disable();
225 * The counter may be concurrently released but that can only
226 * occur from a call_rcu() path. We can then safely fetch
227 * the breakpoint, use its callback, touch its counter
228 * while we are in an rcu_read_lock() path.
230 rcu_read_lock();
232 bp = __this_cpu_read(bp_per_reg);
233 if (!bp) {
234 rc = NOTIFY_DONE;
235 goto out;
237 info = counter_arch_bp(bp);
240 * Return early after invoking user-callback function without restoring
241 * DABR if the breakpoint is from ptrace which always operates in
242 * one-shot mode. The ptrace-ed process will receive the SIGTRAP signal
243 * generated in do_dabr().
245 if (bp->overflow_handler == ptrace_triggered) {
246 perf_bp_event(bp, regs);
247 rc = NOTIFY_DONE;
248 goto out;
252 * Verify if dar lies within the address range occupied by the symbol
253 * being watched to filter extraneous exceptions. If it doesn't,
254 * we still need to single-step the instruction, but we don't
255 * generate an event.
257 info->type &= ~HW_BRK_TYPE_EXTRANEOUS_IRQ;
258 if (!((bp->attr.bp_addr <= dar) &&
259 (dar - bp->attr.bp_addr < bp->attr.bp_len)))
260 info->type |= HW_BRK_TYPE_EXTRANEOUS_IRQ;
262 #ifndef CONFIG_PPC_8xx
263 /* Do not emulate user-space instructions, instead single-step them */
264 if (user_mode(regs)) {
265 current->thread.last_hit_ubp = bp;
266 regs->msr |= MSR_SE;
267 goto out;
270 stepped = 0;
271 instr = 0;
272 if (!__get_user_inatomic(instr, (unsigned int *) regs->nip))
273 stepped = emulate_step(regs, instr);
276 * emulate_step() could not execute it. We've failed in reliably
277 * handling the hw-breakpoint. Unregister it and throw a warning
278 * message to let the user know about it.
280 if (!stepped) {
281 WARN(1, "Unable to handle hardware breakpoint. Breakpoint at "
282 "0x%lx will be disabled.", info->address);
283 perf_event_disable_inatomic(bp);
284 goto out;
286 #endif
288 * As a policy, the callback is invoked in a 'trigger-after-execute'
289 * fashion
291 if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ))
292 perf_bp_event(bp, regs);
294 __set_breakpoint(info);
295 out:
296 rcu_read_unlock();
297 return rc;
299 NOKPROBE_SYMBOL(hw_breakpoint_handler);
302 * Handle single-step exceptions following a DABR hit.
304 static int single_step_dabr_instruction(struct die_args *args)
306 struct pt_regs *regs = args->regs;
307 struct perf_event *bp = NULL;
308 struct arch_hw_breakpoint *info;
310 bp = current->thread.last_hit_ubp;
312 * Check if we are single-stepping as a result of a
313 * previous HW Breakpoint exception
315 if (!bp)
316 return NOTIFY_DONE;
318 info = counter_arch_bp(bp);
321 * We shall invoke the user-defined callback function in the single
322 * stepping handler to confirm to 'trigger-after-execute' semantics
324 if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ))
325 perf_bp_event(bp, regs);
327 __set_breakpoint(info);
328 current->thread.last_hit_ubp = NULL;
331 * If the process was being single-stepped by ptrace, let the
332 * other single-step actions occur (e.g. generate SIGTRAP).
334 if (test_thread_flag(TIF_SINGLESTEP))
335 return NOTIFY_DONE;
337 return NOTIFY_STOP;
339 NOKPROBE_SYMBOL(single_step_dabr_instruction);
342 * Handle debug exception notifications.
344 int hw_breakpoint_exceptions_notify(
345 struct notifier_block *unused, unsigned long val, void *data)
347 int ret = NOTIFY_DONE;
349 switch (val) {
350 case DIE_DABR_MATCH:
351 ret = hw_breakpoint_handler(data);
352 break;
353 case DIE_SSTEP:
354 ret = single_step_dabr_instruction(data);
355 break;
358 return ret;
360 NOKPROBE_SYMBOL(hw_breakpoint_exceptions_notify);
363 * Release the user breakpoints used by ptrace
365 void flush_ptrace_hw_breakpoint(struct task_struct *tsk)
367 struct thread_struct *t = &tsk->thread;
369 unregister_hw_breakpoint(t->ptrace_bps[0]);
370 t->ptrace_bps[0] = NULL;
373 void hw_breakpoint_pmu_read(struct perf_event *bp)
375 /* TODO */