2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 * Copyright (C) 2007 Alan Stern
17 * Copyright (C) 2009 IBM Corporation
18 * Copyright (C) 2009 Frederic Weisbecker <fweisbec@gmail.com>
20 * Authors: Alan Stern <stern@rowland.harvard.edu>
21 * K.Prasad <prasad@linux.vnet.ibm.com>
22 * Frederic Weisbecker <fweisbec@gmail.com>
26 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
27 * using the CPU's debug registers.
30 #include <linux/perf_event.h>
31 #include <linux/hw_breakpoint.h>
32 #include <linux/irqflags.h>
33 #include <linux/notifier.h>
34 #include <linux/kallsyms.h>
35 #include <linux/kprobes.h>
36 #include <linux/percpu.h>
37 #include <linux/kdebug.h>
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/sched.h>
41 #include <linux/init.h>
42 #include <linux/smp.h>
44 #include <asm/hw_breakpoint.h>
45 #include <asm/processor.h>
46 #include <asm/debugreg.h>
48 /* Per cpu debug control register value */
49 DEFINE_PER_CPU(unsigned long, cpu_dr7
);
50 EXPORT_PER_CPU_SYMBOL(cpu_dr7
);
52 /* Per cpu debug address registers values */
53 static DEFINE_PER_CPU(unsigned long, cpu_debugreg
[HBP_NUM
]);
56 * Stores the breakpoints currently in use on each breakpoint address
57 * register for each cpus
59 static DEFINE_PER_CPU(struct perf_event
*, bp_per_reg
[HBP_NUM
]);
63 * Encode the length, type, Exact, and Enable bits for a particular breakpoint
64 * as stored in debug register 7.
66 unsigned long encode_dr7(int drnum
, unsigned int len
, unsigned int type
)
68 unsigned long bp_info
;
70 bp_info
= (len
| type
) & 0xf;
71 bp_info
<<= (DR_CONTROL_SHIFT
+ drnum
* DR_CONTROL_SIZE
);
72 bp_info
|= (DR_GLOBAL_ENABLE
<< (drnum
* DR_ENABLE_SIZE
)) |
78 * Decode the length and type bits for a particular breakpoint as
79 * stored in debug register 7. Return the "enabled" status.
81 int decode_dr7(unsigned long dr7
, int bpnum
, unsigned *len
, unsigned *type
)
83 int bp_info
= dr7
>> (DR_CONTROL_SHIFT
+ bpnum
* DR_CONTROL_SIZE
);
85 *len
= (bp_info
& 0xc) | 0x40;
86 *type
= (bp_info
& 0x3) | 0x80;
88 return (dr7
>> (bpnum
* DR_ENABLE_SIZE
)) & 0x3;
92 * Install a perf counter breakpoint.
94 * We seek a free debug address register and use it for this
95 * breakpoint. Eventually we enable it in the debug control register.
97 * Atomic: we hold the counter->ctx->lock and we only handle variables
98 * and registers local to this cpu.
100 int arch_install_hw_breakpoint(struct perf_event
*bp
)
102 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
106 for (i
= 0; i
< HBP_NUM
; i
++) {
107 struct perf_event
**slot
= &__get_cpu_var(bp_per_reg
[i
]);
115 if (WARN_ONCE(i
== HBP_NUM
, "Can't find any breakpoint slot"))
118 set_debugreg(info
->address
, i
);
119 __get_cpu_var(cpu_debugreg
[i
]) = info
->address
;
121 dr7
= &__get_cpu_var(cpu_dr7
);
122 *dr7
|= encode_dr7(i
, info
->len
, info
->type
);
124 set_debugreg(*dr7
, 7);
130 * Uninstall the breakpoint contained in the given counter.
132 * First we search the debug address register it uses and then we disable
135 * Atomic: we hold the counter->ctx->lock and we only handle variables
136 * and registers local to this cpu.
138 void arch_uninstall_hw_breakpoint(struct perf_event
*bp
)
140 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
144 for (i
= 0; i
< HBP_NUM
; i
++) {
145 struct perf_event
**slot
= &__get_cpu_var(bp_per_reg
[i
]);
153 if (WARN_ONCE(i
== HBP_NUM
, "Can't find any breakpoint slot"))
156 dr7
= &__get_cpu_var(cpu_dr7
);
157 *dr7
&= ~encode_dr7(i
, info
->len
, info
->type
);
159 set_debugreg(*dr7
, 7);
162 static int get_hbp_len(u8 hbp_len
)
164 unsigned int len_in_bytes
= 0;
167 case X86_BREAKPOINT_LEN_1
:
170 case X86_BREAKPOINT_LEN_2
:
173 case X86_BREAKPOINT_LEN_4
:
177 case X86_BREAKPOINT_LEN_8
:
186 * Check for virtual address in user space.
188 int arch_check_va_in_userspace(unsigned long va
, u8 hbp_len
)
192 len
= get_hbp_len(hbp_len
);
194 return (va
<= TASK_SIZE
- len
);
198 * Check for virtual address in kernel space.
200 static int arch_check_va_in_kernelspace(unsigned long va
, u8 hbp_len
)
204 len
= get_hbp_len(hbp_len
);
206 return (va
>= TASK_SIZE
) && ((va
+ len
- 1) >= TASK_SIZE
);
210 * Store a breakpoint's encoded address, length, and type.
212 static int arch_store_info(struct perf_event
*bp
)
214 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
216 * For kernel-addresses, either the address or symbol name can be
220 info
->address
= (unsigned long)
221 kallsyms_lookup_name(info
->name
);
228 int arch_bp_generic_fields(int x86_len
, int x86_type
,
229 int *gen_len
, int *gen_type
)
233 case X86_BREAKPOINT_LEN_1
:
234 *gen_len
= HW_BREAKPOINT_LEN_1
;
236 case X86_BREAKPOINT_LEN_2
:
237 *gen_len
= HW_BREAKPOINT_LEN_2
;
239 case X86_BREAKPOINT_LEN_4
:
240 *gen_len
= HW_BREAKPOINT_LEN_4
;
243 case X86_BREAKPOINT_LEN_8
:
244 *gen_len
= HW_BREAKPOINT_LEN_8
;
253 case X86_BREAKPOINT_EXECUTE
:
254 *gen_type
= HW_BREAKPOINT_X
;
256 case X86_BREAKPOINT_WRITE
:
257 *gen_type
= HW_BREAKPOINT_W
;
259 case X86_BREAKPOINT_RW
:
260 *gen_type
= HW_BREAKPOINT_W
| HW_BREAKPOINT_R
;
270 static int arch_build_bp_info(struct perf_event
*bp
)
272 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
274 info
->address
= bp
->attr
.bp_addr
;
277 switch (bp
->attr
.bp_len
) {
278 case HW_BREAKPOINT_LEN_1
:
279 info
->len
= X86_BREAKPOINT_LEN_1
;
281 case HW_BREAKPOINT_LEN_2
:
282 info
->len
= X86_BREAKPOINT_LEN_2
;
284 case HW_BREAKPOINT_LEN_4
:
285 info
->len
= X86_BREAKPOINT_LEN_4
;
288 case HW_BREAKPOINT_LEN_8
:
289 info
->len
= X86_BREAKPOINT_LEN_8
;
297 switch (bp
->attr
.bp_type
) {
298 case HW_BREAKPOINT_W
:
299 info
->type
= X86_BREAKPOINT_WRITE
;
301 case HW_BREAKPOINT_W
| HW_BREAKPOINT_R
:
302 info
->type
= X86_BREAKPOINT_RW
;
304 case HW_BREAKPOINT_X
:
305 info
->type
= X86_BREAKPOINT_EXECUTE
;
314 * Validate the arch-specific HW Breakpoint register settings
316 int arch_validate_hwbkpt_settings(struct perf_event
*bp
,
317 struct task_struct
*tsk
)
319 struct arch_hw_breakpoint
*info
= counter_arch_bp(bp
);
324 ret
= arch_build_bp_info(bp
);
330 if (info
->type
== X86_BREAKPOINT_EXECUTE
)
332 * Ptrace-refactoring code
333 * For now, we'll allow instruction breakpoint only for user-space
336 if ((!arch_check_va_in_userspace(info
->address
, info
->len
)) &&
337 info
->len
!= X86_BREAKPOINT_EXECUTE
)
341 case X86_BREAKPOINT_LEN_1
:
344 case X86_BREAKPOINT_LEN_2
:
347 case X86_BREAKPOINT_LEN_4
:
351 case X86_BREAKPOINT_LEN_8
:
360 ret
= arch_store_info(bp
);
365 * Check that the low-order bits of the address are appropriate
366 * for the alignment implied by len.
368 if (info
->address
& align
)
371 /* Check that the virtual address is in the proper range */
373 if (!arch_check_va_in_userspace(info
->address
, info
->len
))
376 if (!arch_check_va_in_kernelspace(info
->address
, info
->len
))
384 * Dump the debug register contents to the user.
385 * We can't dump our per cpu values because it
386 * may contain cpu wide breakpoint, something that
387 * doesn't belong to the current task.
389 * TODO: include non-ptrace user breakpoints (perf)
391 void aout_dump_debugregs(struct user
*dump
)
395 struct perf_event
*bp
;
396 struct arch_hw_breakpoint
*info
;
397 struct thread_struct
*thread
= ¤t
->thread
;
399 for (i
= 0; i
< HBP_NUM
; i
++) {
400 bp
= thread
->ptrace_bps
[i
];
402 if (bp
&& !bp
->attr
.disabled
) {
403 dump
->u_debugreg
[i
] = bp
->attr
.bp_addr
;
404 info
= counter_arch_bp(bp
);
405 dr7
|= encode_dr7(i
, info
->len
, info
->type
);
407 dump
->u_debugreg
[i
] = 0;
411 dump
->u_debugreg
[4] = 0;
412 dump
->u_debugreg
[5] = 0;
413 dump
->u_debugreg
[6] = current
->thread
.debugreg6
;
415 dump
->u_debugreg
[7] = dr7
;
417 EXPORT_SYMBOL_GPL(aout_dump_debugregs
);
420 * Release the user breakpoints used by ptrace
422 void flush_ptrace_hw_breakpoint(struct task_struct
*tsk
)
425 struct thread_struct
*t
= &tsk
->thread
;
427 for (i
= 0; i
< HBP_NUM
; i
++) {
428 unregister_hw_breakpoint(t
->ptrace_bps
[i
]);
429 t
->ptrace_bps
[i
] = NULL
;
433 void hw_breakpoint_restore(void)
435 set_debugreg(__get_cpu_var(cpu_debugreg
[0]), 0);
436 set_debugreg(__get_cpu_var(cpu_debugreg
[1]), 1);
437 set_debugreg(__get_cpu_var(cpu_debugreg
[2]), 2);
438 set_debugreg(__get_cpu_var(cpu_debugreg
[3]), 3);
439 set_debugreg(current
->thread
.debugreg6
, 6);
440 set_debugreg(__get_cpu_var(cpu_dr7
), 7);
442 EXPORT_SYMBOL_GPL(hw_breakpoint_restore
);
445 * Handle debug exception notifications.
447 * Return value is either NOTIFY_STOP or NOTIFY_DONE as explained below.
449 * NOTIFY_DONE returned if one of the following conditions is true.
450 * i) When the causative address is from user-space and the exception
451 * is a valid one, i.e. not triggered as a result of lazy debug register
453 * ii) When there are more bits than trap<n> set in DR6 register (such
454 * as BD, BS or BT) indicating that more than one debug condition is
455 * met and requires some more action in do_debug().
457 * NOTIFY_STOP returned for all other cases
460 static int __kprobes
hw_breakpoint_handler(struct die_args
*args
)
462 int i
, cpu
, rc
= NOTIFY_STOP
;
463 struct perf_event
*bp
;
464 unsigned long dr7
, dr6
;
465 unsigned long *dr6_p
;
467 /* The DR6 value is pointed by args->err */
468 dr6_p
= (unsigned long *)ERR_PTR(args
->err
);
471 /* Do an early return if no trap bits are set in DR6 */
472 if ((dr6
& DR_TRAP_BITS
) == 0)
475 get_debugreg(dr7
, 7);
476 /* Disable breakpoints during exception handling */
477 set_debugreg(0UL, 7);
479 * Assert that local interrupts are disabled
480 * Reset the DRn bits in the virtualized register value.
481 * The ptrace trigger routine will add in whatever is needed.
483 current
->thread
.debugreg6
&= ~DR_TRAP_BITS
;
486 /* Handle all the breakpoints that were triggered */
487 for (i
= 0; i
< HBP_NUM
; ++i
) {
488 if (likely(!(dr6
& (DR_TRAP0
<< i
))))
492 * The counter may be concurrently released but that can only
493 * occur from a call_rcu() path. We can then safely fetch
494 * the breakpoint, use its callback, touch its counter
495 * while we are in an rcu_read_lock() path.
499 bp
= per_cpu(bp_per_reg
[i
], cpu
);
503 * Reset the 'i'th TRAP bit in dr6 to denote completion of
506 (*dr6_p
) &= ~(DR_TRAP0
<< i
);
508 * bp can be NULL due to lazy debug register switching
509 * or due to concurrent perf counter removing.
516 (bp
->callback
)(bp
, args
->regs
);
520 if (dr6
& (~DR_TRAP_BITS
))
523 set_debugreg(dr7
, 7);
530 * Handle debug exception notifications.
532 int __kprobes
hw_breakpoint_exceptions_notify(
533 struct notifier_block
*unused
, unsigned long val
, void *data
)
535 if (val
!= DIE_DEBUG
)
538 return hw_breakpoint_handler(data
);
541 void hw_breakpoint_pmu_read(struct perf_event
*bp
)
546 void hw_breakpoint_pmu_unthrottle(struct perf_event
*bp
)