[media] anysee: do not use buffers from stack for usb_bulk_msg()
[linux-2.6/btrfs-unstable.git] / kernel / events / hw_breakpoint.c
bloba64f8aeb5c1f5adae53fde406b3d904e1485aa80
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 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_online_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, bool enable,
186 enum bp_type_idx type, int weight)
188 unsigned int *tsk_pinned;
189 int old_count = 0;
190 int old_idx = 0;
191 int idx = 0;
193 old_count = task_bp_pinned(cpu, bp, type);
194 old_idx = old_count - 1;
195 idx = old_idx + weight;
197 /* tsk_pinned[n] is the number of tasks having n breakpoints */
198 tsk_pinned = per_cpu(nr_task_bp_pinned[type], cpu);
199 if (enable) {
200 tsk_pinned[idx]++;
201 if (old_count > 0)
202 tsk_pinned[old_idx]--;
203 } else {
204 tsk_pinned[idx]--;
205 if (old_count > 0)
206 tsk_pinned[old_idx]++;
211 * Add/remove the given breakpoint in our constraint table
213 static void
214 toggle_bp_slot(struct perf_event *bp, bool enable, enum bp_type_idx type,
215 int weight)
217 int cpu = bp->cpu;
218 struct task_struct *tsk = bp->hw.bp_target;
220 /* Pinned counter cpu profiling */
221 if (!tsk) {
223 if (enable)
224 per_cpu(nr_cpu_bp_pinned[type], bp->cpu) += weight;
225 else
226 per_cpu(nr_cpu_bp_pinned[type], bp->cpu) -= weight;
227 return;
230 /* Pinned counter task profiling */
232 if (!enable)
233 list_del(&bp->hw.bp_list);
235 if (cpu >= 0) {
236 toggle_bp_task_slot(bp, cpu, enable, type, weight);
237 } else {
238 for_each_online_cpu(cpu)
239 toggle_bp_task_slot(bp, cpu, enable, type, weight);
242 if (enable)
243 list_add_tail(&bp->hw.bp_list, &bp_task_head);
247 * Function to perform processor-specific cleanup during unregistration
249 __weak void arch_unregister_hw_breakpoint(struct perf_event *bp)
252 * A weak stub function here for those archs that don't define
253 * it inside arch/.../kernel/hw_breakpoint.c
258 * Contraints to check before allowing this new breakpoint counter:
260 * == Non-pinned counter == (Considered as pinned for now)
262 * - If attached to a single cpu, check:
264 * (per_cpu(nr_bp_flexible, cpu) || (per_cpu(nr_cpu_bp_pinned, cpu)
265 * + max(per_cpu(nr_task_bp_pinned, cpu)))) < HBP_NUM
267 * -> If there are already non-pinned counters in this cpu, it means
268 * there is already a free slot for them.
269 * Otherwise, we check that the maximum number of per task
270 * breakpoints (for this cpu) plus the number of per cpu breakpoint
271 * (for this cpu) doesn't cover every registers.
273 * - If attached to every cpus, check:
275 * (per_cpu(nr_bp_flexible, *) || (max(per_cpu(nr_cpu_bp_pinned, *))
276 * + max(per_cpu(nr_task_bp_pinned, *)))) < HBP_NUM
278 * -> This is roughly the same, except we check the number of per cpu
279 * bp for every cpu and we keep the max one. Same for the per tasks
280 * breakpoints.
283 * == Pinned counter ==
285 * - If attached to a single cpu, check:
287 * ((per_cpu(nr_bp_flexible, cpu) > 1) + per_cpu(nr_cpu_bp_pinned, cpu)
288 * + max(per_cpu(nr_task_bp_pinned, cpu))) < HBP_NUM
290 * -> Same checks as before. But now the nr_bp_flexible, if any, must keep
291 * one register at least (or they will never be fed).
293 * - If attached to every cpus, check:
295 * ((per_cpu(nr_bp_flexible, *) > 1) + max(per_cpu(nr_cpu_bp_pinned, *))
296 * + max(per_cpu(nr_task_bp_pinned, *))) < HBP_NUM
298 static int __reserve_bp_slot(struct perf_event *bp)
300 struct bp_busy_slots slots = {0};
301 enum bp_type_idx type;
302 int weight;
304 /* We couldn't initialize breakpoint constraints on boot */
305 if (!constraints_initialized)
306 return -ENOMEM;
308 /* Basic checks */
309 if (bp->attr.bp_type == HW_BREAKPOINT_EMPTY ||
310 bp->attr.bp_type == HW_BREAKPOINT_INVALID)
311 return -EINVAL;
313 type = find_slot_idx(bp);
314 weight = hw_breakpoint_weight(bp);
316 fetch_bp_busy_slots(&slots, bp, type);
318 * Simulate the addition of this breakpoint to the constraints
319 * and see the result.
321 fetch_this_slot(&slots, weight);
323 /* Flexible counters need to keep at least one slot */
324 if (slots.pinned + (!!slots.flexible) > nr_slots[type])
325 return -ENOSPC;
327 toggle_bp_slot(bp, true, type, weight);
329 return 0;
332 int reserve_bp_slot(struct perf_event *bp)
334 int ret;
336 mutex_lock(&nr_bp_mutex);
338 ret = __reserve_bp_slot(bp);
340 mutex_unlock(&nr_bp_mutex);
342 return ret;
345 static void __release_bp_slot(struct perf_event *bp)
347 enum bp_type_idx type;
348 int weight;
350 type = find_slot_idx(bp);
351 weight = hw_breakpoint_weight(bp);
352 toggle_bp_slot(bp, false, type, weight);
355 void release_bp_slot(struct perf_event *bp)
357 mutex_lock(&nr_bp_mutex);
359 arch_unregister_hw_breakpoint(bp);
360 __release_bp_slot(bp);
362 mutex_unlock(&nr_bp_mutex);
366 * Allow the kernel debugger to reserve breakpoint slots without
367 * taking a lock using the dbg_* variant of for the reserve and
368 * release breakpoint slots.
370 int dbg_reserve_bp_slot(struct perf_event *bp)
372 if (mutex_is_locked(&nr_bp_mutex))
373 return -1;
375 return __reserve_bp_slot(bp);
378 int dbg_release_bp_slot(struct perf_event *bp)
380 if (mutex_is_locked(&nr_bp_mutex))
381 return -1;
383 __release_bp_slot(bp);
385 return 0;
388 static int validate_hw_breakpoint(struct perf_event *bp)
390 int ret;
392 ret = arch_validate_hwbkpt_settings(bp);
393 if (ret)
394 return ret;
396 if (arch_check_bp_in_kernelspace(bp)) {
397 if (bp->attr.exclude_kernel)
398 return -EINVAL;
400 * Don't let unprivileged users set a breakpoint in the trap
401 * path to avoid trap recursion attacks.
403 if (!capable(CAP_SYS_ADMIN))
404 return -EPERM;
407 return 0;
410 int register_perf_hw_breakpoint(struct perf_event *bp)
412 int ret;
414 ret = reserve_bp_slot(bp);
415 if (ret)
416 return ret;
418 ret = validate_hw_breakpoint(bp);
420 /* if arch_validate_hwbkpt_settings() fails then release bp slot */
421 if (ret)
422 release_bp_slot(bp);
424 return ret;
428 * register_user_hw_breakpoint - register a hardware breakpoint for user space
429 * @attr: breakpoint attributes
430 * @triggered: callback to trigger when we hit the breakpoint
431 * @tsk: pointer to 'task_struct' of the process to which the address belongs
433 struct perf_event *
434 register_user_hw_breakpoint(struct perf_event_attr *attr,
435 perf_overflow_handler_t triggered,
436 void *context,
437 struct task_struct *tsk)
439 return perf_event_create_kernel_counter(attr, -1, tsk, triggered,
440 context);
442 EXPORT_SYMBOL_GPL(register_user_hw_breakpoint);
445 * modify_user_hw_breakpoint - modify a user-space hardware breakpoint
446 * @bp: the breakpoint structure to modify
447 * @attr: new breakpoint attributes
448 * @triggered: callback to trigger when we hit the breakpoint
449 * @tsk: pointer to 'task_struct' of the process to which the address belongs
451 int modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr)
453 u64 old_addr = bp->attr.bp_addr;
454 u64 old_len = bp->attr.bp_len;
455 int old_type = bp->attr.bp_type;
456 int err = 0;
459 * modify_user_hw_breakpoint can be invoked with IRQs disabled and hence it
460 * will not be possible to raise IPIs that invoke __perf_event_disable.
461 * So call the function directly after making sure we are targeting the
462 * current task.
464 if (irqs_disabled() && bp->ctx && bp->ctx->task == current)
465 __perf_event_disable(bp);
466 else
467 perf_event_disable(bp);
469 bp->attr.bp_addr = attr->bp_addr;
470 bp->attr.bp_type = attr->bp_type;
471 bp->attr.bp_len = attr->bp_len;
473 if (attr->disabled)
474 goto end;
476 err = validate_hw_breakpoint(bp);
477 if (!err)
478 perf_event_enable(bp);
480 if (err) {
481 bp->attr.bp_addr = old_addr;
482 bp->attr.bp_type = old_type;
483 bp->attr.bp_len = old_len;
484 if (!bp->attr.disabled)
485 perf_event_enable(bp);
487 return err;
490 end:
491 bp->attr.disabled = attr->disabled;
493 return 0;
495 EXPORT_SYMBOL_GPL(modify_user_hw_breakpoint);
498 * unregister_hw_breakpoint - unregister a user-space hardware breakpoint
499 * @bp: the breakpoint structure to unregister
501 void unregister_hw_breakpoint(struct perf_event *bp)
503 if (!bp)
504 return;
505 perf_event_release_kernel(bp);
507 EXPORT_SYMBOL_GPL(unregister_hw_breakpoint);
510 * register_wide_hw_breakpoint - register a wide breakpoint in the kernel
511 * @attr: breakpoint attributes
512 * @triggered: callback to trigger when we hit the breakpoint
514 * @return a set of per_cpu pointers to perf events
516 struct perf_event * __percpu *
517 register_wide_hw_breakpoint(struct perf_event_attr *attr,
518 perf_overflow_handler_t triggered,
519 void *context)
521 struct perf_event * __percpu *cpu_events, **pevent, *bp;
522 long err;
523 int cpu;
525 cpu_events = alloc_percpu(typeof(*cpu_events));
526 if (!cpu_events)
527 return (void __percpu __force *)ERR_PTR(-ENOMEM);
529 get_online_cpus();
530 for_each_online_cpu(cpu) {
531 pevent = per_cpu_ptr(cpu_events, cpu);
532 bp = perf_event_create_kernel_counter(attr, cpu, NULL,
533 triggered, context);
535 *pevent = bp;
537 if (IS_ERR(bp)) {
538 err = PTR_ERR(bp);
539 goto fail;
542 put_online_cpus();
544 return cpu_events;
546 fail:
547 for_each_online_cpu(cpu) {
548 pevent = per_cpu_ptr(cpu_events, cpu);
549 if (IS_ERR(*pevent))
550 break;
551 unregister_hw_breakpoint(*pevent);
553 put_online_cpus();
555 free_percpu(cpu_events);
556 return (void __percpu __force *)ERR_PTR(err);
558 EXPORT_SYMBOL_GPL(register_wide_hw_breakpoint);
561 * unregister_wide_hw_breakpoint - unregister a wide breakpoint in the kernel
562 * @cpu_events: the per cpu set of events to unregister
564 void unregister_wide_hw_breakpoint(struct perf_event * __percpu *cpu_events)
566 int cpu;
567 struct perf_event **pevent;
569 for_each_possible_cpu(cpu) {
570 pevent = per_cpu_ptr(cpu_events, cpu);
571 unregister_hw_breakpoint(*pevent);
573 free_percpu(cpu_events);
575 EXPORT_SYMBOL_GPL(unregister_wide_hw_breakpoint);
577 static struct notifier_block hw_breakpoint_exceptions_nb = {
578 .notifier_call = hw_breakpoint_exceptions_notify,
579 /* we need to be notified first */
580 .priority = 0x7fffffff
583 static void bp_perf_event_destroy(struct perf_event *event)
585 release_bp_slot(event);
588 static int hw_breakpoint_event_init(struct perf_event *bp)
590 int err;
592 if (bp->attr.type != PERF_TYPE_BREAKPOINT)
593 return -ENOENT;
596 * no branch sampling for breakpoint events
598 if (has_branch_stack(bp))
599 return -EOPNOTSUPP;
601 err = register_perf_hw_breakpoint(bp);
602 if (err)
603 return err;
605 bp->destroy = bp_perf_event_destroy;
607 return 0;
610 static int hw_breakpoint_add(struct perf_event *bp, int flags)
612 if (!(flags & PERF_EF_START))
613 bp->hw.state = PERF_HES_STOPPED;
615 return arch_install_hw_breakpoint(bp);
618 static void hw_breakpoint_del(struct perf_event *bp, int flags)
620 arch_uninstall_hw_breakpoint(bp);
623 static void hw_breakpoint_start(struct perf_event *bp, int flags)
625 bp->hw.state = 0;
628 static void hw_breakpoint_stop(struct perf_event *bp, int flags)
630 bp->hw.state = PERF_HES_STOPPED;
633 static int hw_breakpoint_event_idx(struct perf_event *bp)
635 return 0;
638 static struct pmu perf_breakpoint = {
639 .task_ctx_nr = perf_sw_context, /* could eventually get its own */
641 .event_init = hw_breakpoint_event_init,
642 .add = hw_breakpoint_add,
643 .del = hw_breakpoint_del,
644 .start = hw_breakpoint_start,
645 .stop = hw_breakpoint_stop,
646 .read = hw_breakpoint_pmu_read,
648 .event_idx = hw_breakpoint_event_idx,
651 int __init init_hw_breakpoint(void)
653 unsigned int **task_bp_pinned;
654 int cpu, err_cpu;
655 int i;
657 for (i = 0; i < TYPE_MAX; i++)
658 nr_slots[i] = hw_breakpoint_slots(i);
660 for_each_possible_cpu(cpu) {
661 for (i = 0; i < TYPE_MAX; i++) {
662 task_bp_pinned = &per_cpu(nr_task_bp_pinned[i], cpu);
663 *task_bp_pinned = kzalloc(sizeof(int) * nr_slots[i],
664 GFP_KERNEL);
665 if (!*task_bp_pinned)
666 goto err_alloc;
670 constraints_initialized = 1;
672 perf_pmu_register(&perf_breakpoint, "breakpoint", PERF_TYPE_BREAKPOINT);
674 return register_die_notifier(&hw_breakpoint_exceptions_nb);
676 err_alloc:
677 for_each_possible_cpu(err_cpu) {
678 for (i = 0; i < TYPE_MAX; i++)
679 kfree(per_cpu(nr_task_bp_pinned[i], err_cpu));
680 if (err_cpu == cpu)
681 break;
684 return -ENOMEM;