hw_breakpoint: Simplify the "weight" usage in toggle_bp_slot() paths
[linux-2.6.git] / kernel / events / hw_breakpoint.c
blob5cd4f6d9652c18104b9272ea8deeb9f680dcfe9b
1 /*
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) IBM Corporation, 2009
18 * Copyright (C) 2009, Frederic Weisbecker <fweisbec@gmail.com>
20 * Thanks to Ingo Molnar for his many suggestions.
22 * Authors: Alan Stern <stern@rowland.harvard.edu>
23 * K.Prasad <prasad@linux.vnet.ibm.com>
24 * Frederic Weisbecker <fweisbec@gmail.com>
28 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility,
29 * using the CPU's debug registers.
30 * This file contains the arch-independent routines.
33 #include <linux/irqflags.h>
34 #include <linux/kallsyms.h>
35 #include <linux/notifier.h>
36 #include <linux/kprobes.h>
37 #include <linux/kdebug.h>
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/percpu.h>
41 #include <linux/sched.h>
42 #include <linux/init.h>
43 #include <linux/slab.h>
44 #include <linux/list.h>
45 #include <linux/cpu.h>
46 #include <linux/smp.h>
48 #include <linux/hw_breakpoint.h>
52 * Constraints data
55 /* Number of pinned cpu breakpoints in a cpu */
56 static DEFINE_PER_CPU(unsigned int, nr_cpu_bp_pinned[TYPE_MAX]);
58 /* Number of pinned task breakpoints in a cpu */
59 static DEFINE_PER_CPU(unsigned int *, nr_task_bp_pinned[TYPE_MAX]);
61 /* Number of non-pinned cpu/task breakpoints in a cpu */
62 static DEFINE_PER_CPU(unsigned int, nr_bp_flexible[TYPE_MAX]);
64 static int nr_slots[TYPE_MAX];
66 /* Keep track of the breakpoints attached to tasks */
67 static LIST_HEAD(bp_task_head);
69 static int constraints_initialized;
71 /* Gather the number of total pinned and un-pinned bp in a cpuset */
72 struct bp_busy_slots {
73 unsigned int pinned;
74 unsigned int flexible;
77 /* Serialize accesses to the above constraints */
78 static DEFINE_MUTEX(nr_bp_mutex);
80 __weak int hw_breakpoint_weight(struct perf_event *bp)
82 return 1;
85 static inline enum bp_type_idx find_slot_idx(struct perf_event *bp)
87 if (bp->attr.bp_type & HW_BREAKPOINT_RW)
88 return TYPE_DATA;
90 return TYPE_INST;
94 * Report the maximum number of pinned breakpoints a task
95 * have in this cpu
97 static unsigned int max_task_bp_pinned(int cpu, enum bp_type_idx type)
99 int i;
100 unsigned int *tsk_pinned = per_cpu(nr_task_bp_pinned[type], cpu);
102 for (i = nr_slots[type] - 1; i >= 0; i--) {
103 if (tsk_pinned[i] > 0)
104 return i + 1;
107 return 0;
111 * Count the number of breakpoints of the same type and same task.
112 * The given event must be not on the list.
114 static int task_bp_pinned(int cpu, struct perf_event *bp, enum bp_type_idx type)
116 struct task_struct *tsk = bp->hw.bp_target;
117 struct perf_event *iter;
118 int count = 0;
120 list_for_each_entry(iter, &bp_task_head, hw.bp_list) {
121 if (iter->hw.bp_target == tsk &&
122 find_slot_idx(iter) == type &&
123 (iter->cpu < 0 || cpu == iter->cpu))
124 count += hw_breakpoint_weight(iter);
127 return count;
131 * Report the number of pinned/un-pinned breakpoints we have in
132 * a given cpu (cpu > -1) or in all of them (cpu = -1).
134 static void
135 fetch_bp_busy_slots(struct bp_busy_slots *slots, struct perf_event *bp,
136 enum bp_type_idx type)
138 int cpu = bp->cpu;
139 struct task_struct *tsk = bp->hw.bp_target;
141 if (cpu >= 0) {
142 slots->pinned = per_cpu(nr_cpu_bp_pinned[type], cpu);
143 if (!tsk)
144 slots->pinned += max_task_bp_pinned(cpu, type);
145 else
146 slots->pinned += task_bp_pinned(cpu, bp, type);
147 slots->flexible = per_cpu(nr_bp_flexible[type], cpu);
149 return;
152 for_each_possible_cpu(cpu) {
153 unsigned int nr;
155 nr = per_cpu(nr_cpu_bp_pinned[type], cpu);
156 if (!tsk)
157 nr += max_task_bp_pinned(cpu, type);
158 else
159 nr += task_bp_pinned(cpu, bp, type);
161 if (nr > slots->pinned)
162 slots->pinned = nr;
164 nr = per_cpu(nr_bp_flexible[type], cpu);
166 if (nr > slots->flexible)
167 slots->flexible = nr;
172 * For now, continue to consider flexible as pinned, until we can
173 * ensure no flexible event can ever be scheduled before a pinned event
174 * in a same cpu.
176 static void
177 fetch_this_slot(struct bp_busy_slots *slots, int weight)
179 slots->pinned += weight;
183 * Add a pinned breakpoint for the given task in our constraint table
185 static void toggle_bp_task_slot(struct perf_event *bp, int cpu,
186 enum bp_type_idx type, int weight)
188 /* tsk_pinned[n-1] is the number of tasks having n>0 breakpoints */
189 unsigned int *tsk_pinned = per_cpu(nr_task_bp_pinned[type], cpu);
190 int old_idx, new_idx;
192 old_idx = task_bp_pinned(cpu, bp, type) - 1;
193 new_idx = old_idx + weight;
195 if (old_idx >= 0)
196 tsk_pinned[old_idx]--;
197 if (new_idx >= 0)
198 tsk_pinned[new_idx]++;
202 * Add/remove the given breakpoint in our constraint table
204 static void
205 toggle_bp_slot(struct perf_event *bp, bool enable, enum bp_type_idx type,
206 int weight)
208 int cpu = bp->cpu;
209 struct task_struct *tsk = bp->hw.bp_target;
211 if (!enable)
212 weight = -weight;
214 /* Pinned counter cpu profiling */
215 if (!tsk) {
216 per_cpu(nr_cpu_bp_pinned[type], cpu) += weight;
217 return;
220 /* Pinned counter task profiling */
221 if (cpu >= 0) {
222 toggle_bp_task_slot(bp, cpu, type, weight);
223 } else {
224 for_each_possible_cpu(cpu)
225 toggle_bp_task_slot(bp, cpu, type, weight);
228 if (enable)
229 list_add_tail(&bp->hw.bp_list, &bp_task_head);
230 else
231 list_del(&bp->hw.bp_list);
235 * Function to perform processor-specific cleanup during unregistration
237 __weak void arch_unregister_hw_breakpoint(struct perf_event *bp)
240 * A weak stub function here for those archs that don't define
241 * it inside arch/.../kernel/hw_breakpoint.c
246 * Contraints to check before allowing this new breakpoint counter:
248 * == Non-pinned counter == (Considered as pinned for now)
250 * - If attached to a single cpu, check:
252 * (per_cpu(nr_bp_flexible, cpu) || (per_cpu(nr_cpu_bp_pinned, cpu)
253 * + max(per_cpu(nr_task_bp_pinned, cpu)))) < HBP_NUM
255 * -> If there are already non-pinned counters in this cpu, it means
256 * there is already a free slot for them.
257 * Otherwise, we check that the maximum number of per task
258 * breakpoints (for this cpu) plus the number of per cpu breakpoint
259 * (for this cpu) doesn't cover every registers.
261 * - If attached to every cpus, check:
263 * (per_cpu(nr_bp_flexible, *) || (max(per_cpu(nr_cpu_bp_pinned, *))
264 * + max(per_cpu(nr_task_bp_pinned, *)))) < HBP_NUM
266 * -> This is roughly the same, except we check the number of per cpu
267 * bp for every cpu and we keep the max one. Same for the per tasks
268 * breakpoints.
271 * == Pinned counter ==
273 * - If attached to a single cpu, check:
275 * ((per_cpu(nr_bp_flexible, cpu) > 1) + per_cpu(nr_cpu_bp_pinned, cpu)
276 * + max(per_cpu(nr_task_bp_pinned, cpu))) < HBP_NUM
278 * -> Same checks as before. But now the nr_bp_flexible, if any, must keep
279 * one register at least (or they will never be fed).
281 * - If attached to every cpus, check:
283 * ((per_cpu(nr_bp_flexible, *) > 1) + max(per_cpu(nr_cpu_bp_pinned, *))
284 * + max(per_cpu(nr_task_bp_pinned, *))) < HBP_NUM
286 static int __reserve_bp_slot(struct perf_event *bp)
288 struct bp_busy_slots slots = {0};
289 enum bp_type_idx type;
290 int weight;
292 /* We couldn't initialize breakpoint constraints on boot */
293 if (!constraints_initialized)
294 return -ENOMEM;
296 /* Basic checks */
297 if (bp->attr.bp_type == HW_BREAKPOINT_EMPTY ||
298 bp->attr.bp_type == HW_BREAKPOINT_INVALID)
299 return -EINVAL;
301 type = find_slot_idx(bp);
302 weight = hw_breakpoint_weight(bp);
304 fetch_bp_busy_slots(&slots, bp, type);
306 * Simulate the addition of this breakpoint to the constraints
307 * and see the result.
309 fetch_this_slot(&slots, weight);
311 /* Flexible counters need to keep at least one slot */
312 if (slots.pinned + (!!slots.flexible) > nr_slots[type])
313 return -ENOSPC;
315 toggle_bp_slot(bp, true, type, weight);
317 return 0;
320 int reserve_bp_slot(struct perf_event *bp)
322 int ret;
324 mutex_lock(&nr_bp_mutex);
326 ret = __reserve_bp_slot(bp);
328 mutex_unlock(&nr_bp_mutex);
330 return ret;
333 static void __release_bp_slot(struct perf_event *bp)
335 enum bp_type_idx type;
336 int weight;
338 type = find_slot_idx(bp);
339 weight = hw_breakpoint_weight(bp);
340 toggle_bp_slot(bp, false, type, weight);
343 void release_bp_slot(struct perf_event *bp)
345 mutex_lock(&nr_bp_mutex);
347 arch_unregister_hw_breakpoint(bp);
348 __release_bp_slot(bp);
350 mutex_unlock(&nr_bp_mutex);
354 * Allow the kernel debugger to reserve breakpoint slots without
355 * taking a lock using the dbg_* variant of for the reserve and
356 * release breakpoint slots.
358 int dbg_reserve_bp_slot(struct perf_event *bp)
360 if (mutex_is_locked(&nr_bp_mutex))
361 return -1;
363 return __reserve_bp_slot(bp);
366 int dbg_release_bp_slot(struct perf_event *bp)
368 if (mutex_is_locked(&nr_bp_mutex))
369 return -1;
371 __release_bp_slot(bp);
373 return 0;
376 static int validate_hw_breakpoint(struct perf_event *bp)
378 int ret;
380 ret = arch_validate_hwbkpt_settings(bp);
381 if (ret)
382 return ret;
384 if (arch_check_bp_in_kernelspace(bp)) {
385 if (bp->attr.exclude_kernel)
386 return -EINVAL;
388 * Don't let unprivileged users set a breakpoint in the trap
389 * path to avoid trap recursion attacks.
391 if (!capable(CAP_SYS_ADMIN))
392 return -EPERM;
395 return 0;
398 int register_perf_hw_breakpoint(struct perf_event *bp)
400 int ret;
402 ret = reserve_bp_slot(bp);
403 if (ret)
404 return ret;
406 ret = validate_hw_breakpoint(bp);
408 /* if arch_validate_hwbkpt_settings() fails then release bp slot */
409 if (ret)
410 release_bp_slot(bp);
412 return ret;
416 * register_user_hw_breakpoint - register a hardware breakpoint for user space
417 * @attr: breakpoint attributes
418 * @triggered: callback to trigger when we hit the breakpoint
419 * @tsk: pointer to 'task_struct' of the process to which the address belongs
421 struct perf_event *
422 register_user_hw_breakpoint(struct perf_event_attr *attr,
423 perf_overflow_handler_t triggered,
424 void *context,
425 struct task_struct *tsk)
427 return perf_event_create_kernel_counter(attr, -1, tsk, triggered,
428 context);
430 EXPORT_SYMBOL_GPL(register_user_hw_breakpoint);
433 * modify_user_hw_breakpoint - modify a user-space hardware breakpoint
434 * @bp: the breakpoint structure to modify
435 * @attr: new breakpoint attributes
436 * @triggered: callback to trigger when we hit the breakpoint
437 * @tsk: pointer to 'task_struct' of the process to which the address belongs
439 int modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr)
441 u64 old_addr = bp->attr.bp_addr;
442 u64 old_len = bp->attr.bp_len;
443 int old_type = bp->attr.bp_type;
444 int err = 0;
447 * modify_user_hw_breakpoint can be invoked with IRQs disabled and hence it
448 * will not be possible to raise IPIs that invoke __perf_event_disable.
449 * So call the function directly after making sure we are targeting the
450 * current task.
452 if (irqs_disabled() && bp->ctx && bp->ctx->task == current)
453 __perf_event_disable(bp);
454 else
455 perf_event_disable(bp);
457 bp->attr.bp_addr = attr->bp_addr;
458 bp->attr.bp_type = attr->bp_type;
459 bp->attr.bp_len = attr->bp_len;
461 if (attr->disabled)
462 goto end;
464 err = validate_hw_breakpoint(bp);
465 if (!err)
466 perf_event_enable(bp);
468 if (err) {
469 bp->attr.bp_addr = old_addr;
470 bp->attr.bp_type = old_type;
471 bp->attr.bp_len = old_len;
472 if (!bp->attr.disabled)
473 perf_event_enable(bp);
475 return err;
478 end:
479 bp->attr.disabled = attr->disabled;
481 return 0;
483 EXPORT_SYMBOL_GPL(modify_user_hw_breakpoint);
486 * unregister_hw_breakpoint - unregister a user-space hardware breakpoint
487 * @bp: the breakpoint structure to unregister
489 void unregister_hw_breakpoint(struct perf_event *bp)
491 if (!bp)
492 return;
493 perf_event_release_kernel(bp);
495 EXPORT_SYMBOL_GPL(unregister_hw_breakpoint);
498 * register_wide_hw_breakpoint - register a wide breakpoint in the kernel
499 * @attr: breakpoint attributes
500 * @triggered: callback to trigger when we hit the breakpoint
502 * @return a set of per_cpu pointers to perf events
504 struct perf_event * __percpu *
505 register_wide_hw_breakpoint(struct perf_event_attr *attr,
506 perf_overflow_handler_t triggered,
507 void *context)
509 struct perf_event * __percpu *cpu_events, **pevent, *bp;
510 long err;
511 int cpu;
513 cpu_events = alloc_percpu(typeof(*cpu_events));
514 if (!cpu_events)
515 return (void __percpu __force *)ERR_PTR(-ENOMEM);
517 get_online_cpus();
518 for_each_online_cpu(cpu) {
519 pevent = per_cpu_ptr(cpu_events, cpu);
520 bp = perf_event_create_kernel_counter(attr, cpu, NULL,
521 triggered, context);
523 *pevent = bp;
525 if (IS_ERR(bp)) {
526 err = PTR_ERR(bp);
527 goto fail;
530 put_online_cpus();
532 return cpu_events;
534 fail:
535 for_each_online_cpu(cpu) {
536 pevent = per_cpu_ptr(cpu_events, cpu);
537 if (IS_ERR(*pevent))
538 break;
539 unregister_hw_breakpoint(*pevent);
541 put_online_cpus();
543 free_percpu(cpu_events);
544 return (void __percpu __force *)ERR_PTR(err);
546 EXPORT_SYMBOL_GPL(register_wide_hw_breakpoint);
549 * unregister_wide_hw_breakpoint - unregister a wide breakpoint in the kernel
550 * @cpu_events: the per cpu set of events to unregister
552 void unregister_wide_hw_breakpoint(struct perf_event * __percpu *cpu_events)
554 int cpu;
555 struct perf_event **pevent;
557 for_each_possible_cpu(cpu) {
558 pevent = per_cpu_ptr(cpu_events, cpu);
559 unregister_hw_breakpoint(*pevent);
561 free_percpu(cpu_events);
563 EXPORT_SYMBOL_GPL(unregister_wide_hw_breakpoint);
565 static struct notifier_block hw_breakpoint_exceptions_nb = {
566 .notifier_call = hw_breakpoint_exceptions_notify,
567 /* we need to be notified first */
568 .priority = 0x7fffffff
571 static void bp_perf_event_destroy(struct perf_event *event)
573 release_bp_slot(event);
576 static int hw_breakpoint_event_init(struct perf_event *bp)
578 int err;
580 if (bp->attr.type != PERF_TYPE_BREAKPOINT)
581 return -ENOENT;
584 * no branch sampling for breakpoint events
586 if (has_branch_stack(bp))
587 return -EOPNOTSUPP;
589 err = register_perf_hw_breakpoint(bp);
590 if (err)
591 return err;
593 bp->destroy = bp_perf_event_destroy;
595 return 0;
598 static int hw_breakpoint_add(struct perf_event *bp, int flags)
600 if (!(flags & PERF_EF_START))
601 bp->hw.state = PERF_HES_STOPPED;
603 if (is_sampling_event(bp)) {
604 bp->hw.last_period = bp->hw.sample_period;
605 perf_swevent_set_period(bp);
608 return arch_install_hw_breakpoint(bp);
611 static void hw_breakpoint_del(struct perf_event *bp, int flags)
613 arch_uninstall_hw_breakpoint(bp);
616 static void hw_breakpoint_start(struct perf_event *bp, int flags)
618 bp->hw.state = 0;
621 static void hw_breakpoint_stop(struct perf_event *bp, int flags)
623 bp->hw.state = PERF_HES_STOPPED;
626 static int hw_breakpoint_event_idx(struct perf_event *bp)
628 return 0;
631 static struct pmu perf_breakpoint = {
632 .task_ctx_nr = perf_sw_context, /* could eventually get its own */
634 .event_init = hw_breakpoint_event_init,
635 .add = hw_breakpoint_add,
636 .del = hw_breakpoint_del,
637 .start = hw_breakpoint_start,
638 .stop = hw_breakpoint_stop,
639 .read = hw_breakpoint_pmu_read,
641 .event_idx = hw_breakpoint_event_idx,
644 int __init init_hw_breakpoint(void)
646 unsigned int **task_bp_pinned;
647 int cpu, err_cpu;
648 int i;
650 for (i = 0; i < TYPE_MAX; i++)
651 nr_slots[i] = hw_breakpoint_slots(i);
653 for_each_possible_cpu(cpu) {
654 for (i = 0; i < TYPE_MAX; i++) {
655 task_bp_pinned = &per_cpu(nr_task_bp_pinned[i], cpu);
656 *task_bp_pinned = kzalloc(sizeof(int) * nr_slots[i],
657 GFP_KERNEL);
658 if (!*task_bp_pinned)
659 goto err_alloc;
663 constraints_initialized = 1;
665 perf_pmu_register(&perf_breakpoint, "breakpoint", PERF_TYPE_BREAKPOINT);
667 return register_die_notifier(&hw_breakpoint_exceptions_nb);
669 err_alloc:
670 for_each_possible_cpu(err_cpu) {
671 for (i = 0; i < TYPE_MAX; i++)
672 kfree(per_cpu(nr_task_bp_pinned[i], err_cpu));
673 if (err_cpu == cpu)
674 break;
677 return -ENOMEM;