perf_counter: provide major/minor page fault software events
[linux-2.6-block.git] / kernel / perf_counter.c
CommitLineData
0793a61d
TG
1/*
2 * Performance counter core code
3 *
4 * Copyright(C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright(C) 2008 Red Hat, Inc., Ingo Molnar
6 *
7 * For licencing details see kernel-base/COPYING
8 */
9
10#include <linux/fs.h>
11#include <linux/cpu.h>
12#include <linux/smp.h>
04289bb9 13#include <linux/file.h>
0793a61d
TG
14#include <linux/poll.h>
15#include <linux/sysfs.h>
16#include <linux/ptrace.h>
17#include <linux/percpu.h>
18#include <linux/uaccess.h>
19#include <linux/syscalls.h>
20#include <linux/anon_inodes.h>
aa9c4c0f 21#include <linux/kernel_stat.h>
0793a61d 22#include <linux/perf_counter.h>
23a185ca
PM
23#include <linux/mm.h>
24#include <linux/vmstat.h>
0793a61d
TG
25
26/*
27 * Each CPU has a list of per CPU counters:
28 */
29DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context);
30
088e2852 31int perf_max_counters __read_mostly = 1;
0793a61d
TG
32static int perf_reserved_percpu __read_mostly;
33static int perf_overcommit __read_mostly = 1;
34
35/*
36 * Mutex for (sysadmin-configurable) counter reservations:
37 */
38static DEFINE_MUTEX(perf_resource_mutex);
39
40/*
41 * Architecture provided APIs - weak aliases:
42 */
5c92d124 43extern __weak const struct hw_perf_counter_ops *
621a01ea 44hw_perf_counter_init(struct perf_counter *counter)
0793a61d 45{
ff6f0541 46 return NULL;
0793a61d
TG
47}
48
01b2838c 49u64 __weak hw_perf_save_disable(void) { return 0; }
01ea1cca 50void __weak hw_perf_restore(u64 ctrl) { barrier(); }
01d0287f 51void __weak hw_perf_counter_setup(int cpu) { barrier(); }
3cbed429
PM
52int __weak hw_perf_group_sched_in(struct perf_counter *group_leader,
53 struct perf_cpu_context *cpuctx,
54 struct perf_counter_context *ctx, int cpu)
55{
56 return 0;
57}
0793a61d 58
4eb96fcf
PM
59void __weak perf_counter_print_debug(void) { }
60
04289bb9
IM
61static void
62list_add_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
63{
64 struct perf_counter *group_leader = counter->group_leader;
65
66 /*
67 * Depending on whether it is a standalone or sibling counter,
68 * add it straight to the context's counter list, or to the group
69 * leader's sibling list:
70 */
71 if (counter->group_leader == counter)
72 list_add_tail(&counter->list_entry, &ctx->counter_list);
73 else
74 list_add_tail(&counter->list_entry, &group_leader->sibling_list);
75}
76
77static void
78list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
79{
80 struct perf_counter *sibling, *tmp;
81
82 list_del_init(&counter->list_entry);
83
04289bb9
IM
84 /*
85 * If this was a group counter with sibling counters then
86 * upgrade the siblings to singleton counters by adding them
87 * to the context list directly:
88 */
89 list_for_each_entry_safe(sibling, tmp,
90 &counter->sibling_list, list_entry) {
91
75564232 92 list_move_tail(&sibling->list_entry, &ctx->counter_list);
04289bb9
IM
93 sibling->group_leader = sibling;
94 }
95}
96
3b6f9e5c
PM
97static void
98counter_sched_out(struct perf_counter *counter,
99 struct perf_cpu_context *cpuctx,
100 struct perf_counter_context *ctx)
101{
102 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
103 return;
104
105 counter->state = PERF_COUNTER_STATE_INACTIVE;
106 counter->hw_ops->disable(counter);
107 counter->oncpu = -1;
108
109 if (!is_software_counter(counter))
110 cpuctx->active_oncpu--;
111 ctx->nr_active--;
112 if (counter->hw_event.exclusive || !cpuctx->active_oncpu)
113 cpuctx->exclusive = 0;
114}
115
d859e29f
PM
116static void
117group_sched_out(struct perf_counter *group_counter,
118 struct perf_cpu_context *cpuctx,
119 struct perf_counter_context *ctx)
120{
121 struct perf_counter *counter;
122
123 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
124 return;
125
126 counter_sched_out(group_counter, cpuctx, ctx);
127
128 /*
129 * Schedule out siblings (if any):
130 */
131 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
132 counter_sched_out(counter, cpuctx, ctx);
133
134 if (group_counter->hw_event.exclusive)
135 cpuctx->exclusive = 0;
136}
137
0793a61d
TG
138/*
139 * Cross CPU call to remove a performance counter
140 *
141 * We disable the counter on the hardware level first. After that we
142 * remove it from the context list.
143 */
04289bb9 144static void __perf_counter_remove_from_context(void *info)
0793a61d
TG
145{
146 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
147 struct perf_counter *counter = info;
148 struct perf_counter_context *ctx = counter->ctx;
9b51f66d 149 unsigned long flags;
5c92d124 150 u64 perf_flags;
0793a61d
TG
151
152 /*
153 * If this is a task context, we need to check whether it is
154 * the current task context of this cpu. If not it has been
155 * scheduled out before the smp call arrived.
156 */
157 if (ctx->task && cpuctx->task_ctx != ctx)
158 return;
159
aa9c4c0f
IM
160 curr_rq_lock_irq_save(&flags);
161 spin_lock(&ctx->lock);
0793a61d 162
3b6f9e5c
PM
163 counter_sched_out(counter, cpuctx, ctx);
164
165 counter->task = NULL;
0793a61d
TG
166 ctx->nr_counters--;
167
168 /*
169 * Protect the list operation against NMI by disabling the
170 * counters on a global level. NOP for non NMI based counters.
171 */
01b2838c 172 perf_flags = hw_perf_save_disable();
04289bb9 173 list_del_counter(counter, ctx);
01b2838c 174 hw_perf_restore(perf_flags);
0793a61d
TG
175
176 if (!ctx->task) {
177 /*
178 * Allow more per task counters with respect to the
179 * reservation:
180 */
181 cpuctx->max_pertask =
182 min(perf_max_counters - ctx->nr_counters,
183 perf_max_counters - perf_reserved_percpu);
184 }
185
aa9c4c0f
IM
186 spin_unlock(&ctx->lock);
187 curr_rq_unlock_irq_restore(&flags);
0793a61d
TG
188}
189
190
191/*
192 * Remove the counter from a task's (or a CPU's) list of counters.
193 *
d859e29f 194 * Must be called with counter->mutex and ctx->mutex held.
0793a61d
TG
195 *
196 * CPU counters are removed with a smp call. For task counters we only
197 * call when the task is on a CPU.
198 */
04289bb9 199static void perf_counter_remove_from_context(struct perf_counter *counter)
0793a61d
TG
200{
201 struct perf_counter_context *ctx = counter->ctx;
202 struct task_struct *task = ctx->task;
203
204 if (!task) {
205 /*
206 * Per cpu counters are removed via an smp call and
207 * the removal is always sucessful.
208 */
209 smp_call_function_single(counter->cpu,
04289bb9 210 __perf_counter_remove_from_context,
0793a61d
TG
211 counter, 1);
212 return;
213 }
214
215retry:
04289bb9 216 task_oncpu_function_call(task, __perf_counter_remove_from_context,
0793a61d
TG
217 counter);
218
219 spin_lock_irq(&ctx->lock);
220 /*
221 * If the context is active we need to retry the smp call.
222 */
04289bb9 223 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
0793a61d
TG
224 spin_unlock_irq(&ctx->lock);
225 goto retry;
226 }
227
228 /*
229 * The lock prevents that this context is scheduled in so we
04289bb9 230 * can remove the counter safely, if the call above did not
0793a61d
TG
231 * succeed.
232 */
04289bb9 233 if (!list_empty(&counter->list_entry)) {
0793a61d 234 ctx->nr_counters--;
04289bb9 235 list_del_counter(counter, ctx);
0793a61d
TG
236 counter->task = NULL;
237 }
238 spin_unlock_irq(&ctx->lock);
239}
240
d859e29f
PM
241/*
242 * Cross CPU call to disable a performance counter
243 */
244static void __perf_counter_disable(void *info)
245{
246 struct perf_counter *counter = info;
247 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
248 struct perf_counter_context *ctx = counter->ctx;
249 unsigned long flags;
250
251 /*
252 * If this is a per-task counter, need to check whether this
253 * counter's task is the current task on this cpu.
254 */
255 if (ctx->task && cpuctx->task_ctx != ctx)
256 return;
257
258 curr_rq_lock_irq_save(&flags);
259 spin_lock(&ctx->lock);
260
261 /*
262 * If the counter is on, turn it off.
263 * If it is in error state, leave it in error state.
264 */
265 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
266 if (counter == counter->group_leader)
267 group_sched_out(counter, cpuctx, ctx);
268 else
269 counter_sched_out(counter, cpuctx, ctx);
270 counter->state = PERF_COUNTER_STATE_OFF;
271 }
272
273 spin_unlock(&ctx->lock);
274 curr_rq_unlock_irq_restore(&flags);
275}
276
277/*
278 * Disable a counter.
279 */
280static void perf_counter_disable(struct perf_counter *counter)
281{
282 struct perf_counter_context *ctx = counter->ctx;
283 struct task_struct *task = ctx->task;
284
285 if (!task) {
286 /*
287 * Disable the counter on the cpu that it's on
288 */
289 smp_call_function_single(counter->cpu, __perf_counter_disable,
290 counter, 1);
291 return;
292 }
293
294 retry:
295 task_oncpu_function_call(task, __perf_counter_disable, counter);
296
297 spin_lock_irq(&ctx->lock);
298 /*
299 * If the counter is still active, we need to retry the cross-call.
300 */
301 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
302 spin_unlock_irq(&ctx->lock);
303 goto retry;
304 }
305
306 /*
307 * Since we have the lock this context can't be scheduled
308 * in, so we can change the state safely.
309 */
310 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
311 counter->state = PERF_COUNTER_STATE_OFF;
312
313 spin_unlock_irq(&ctx->lock);
314}
315
316/*
317 * Disable a counter and all its children.
318 */
319static void perf_counter_disable_family(struct perf_counter *counter)
320{
321 struct perf_counter *child;
322
323 perf_counter_disable(counter);
324
325 /*
326 * Lock the mutex to protect the list of children
327 */
328 mutex_lock(&counter->mutex);
329 list_for_each_entry(child, &counter->child_list, child_list)
330 perf_counter_disable(child);
331 mutex_unlock(&counter->mutex);
332}
333
235c7fc7
IM
334static int
335counter_sched_in(struct perf_counter *counter,
336 struct perf_cpu_context *cpuctx,
337 struct perf_counter_context *ctx,
338 int cpu)
339{
3b6f9e5c 340 if (counter->state <= PERF_COUNTER_STATE_OFF)
235c7fc7
IM
341 return 0;
342
343 counter->state = PERF_COUNTER_STATE_ACTIVE;
344 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
345 /*
346 * The new state must be visible before we turn it on in the hardware:
347 */
348 smp_wmb();
349
350 if (counter->hw_ops->enable(counter)) {
351 counter->state = PERF_COUNTER_STATE_INACTIVE;
352 counter->oncpu = -1;
353 return -EAGAIN;
354 }
355
3b6f9e5c
PM
356 if (!is_software_counter(counter))
357 cpuctx->active_oncpu++;
235c7fc7
IM
358 ctx->nr_active++;
359
3b6f9e5c
PM
360 if (counter->hw_event.exclusive)
361 cpuctx->exclusive = 1;
362
235c7fc7
IM
363 return 0;
364}
365
3b6f9e5c
PM
366/*
367 * Return 1 for a group consisting entirely of software counters,
368 * 0 if the group contains any hardware counters.
369 */
370static int is_software_only_group(struct perf_counter *leader)
371{
372 struct perf_counter *counter;
373
374 if (!is_software_counter(leader))
375 return 0;
376 list_for_each_entry(counter, &leader->sibling_list, list_entry)
377 if (!is_software_counter(counter))
378 return 0;
379 return 1;
380}
381
382/*
383 * Work out whether we can put this counter group on the CPU now.
384 */
385static int group_can_go_on(struct perf_counter *counter,
386 struct perf_cpu_context *cpuctx,
387 int can_add_hw)
388{
389 /*
390 * Groups consisting entirely of software counters can always go on.
391 */
392 if (is_software_only_group(counter))
393 return 1;
394 /*
395 * If an exclusive group is already on, no other hardware
396 * counters can go on.
397 */
398 if (cpuctx->exclusive)
399 return 0;
400 /*
401 * If this group is exclusive and there are already
402 * counters on the CPU, it can't go on.
403 */
404 if (counter->hw_event.exclusive && cpuctx->active_oncpu)
405 return 0;
406 /*
407 * Otherwise, try to add it if all previous groups were able
408 * to go on.
409 */
410 return can_add_hw;
411}
412
0793a61d 413/*
235c7fc7 414 * Cross CPU call to install and enable a performance counter
0793a61d
TG
415 */
416static void __perf_install_in_context(void *info)
417{
418 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
419 struct perf_counter *counter = info;
420 struct perf_counter_context *ctx = counter->ctx;
d859e29f 421 struct perf_counter *leader = counter->group_leader;
0793a61d 422 int cpu = smp_processor_id();
9b51f66d 423 unsigned long flags;
5c92d124 424 u64 perf_flags;
3b6f9e5c 425 int err;
0793a61d
TG
426
427 /*
428 * If this is a task context, we need to check whether it is
429 * the current task context of this cpu. If not it has been
430 * scheduled out before the smp call arrived.
431 */
432 if (ctx->task && cpuctx->task_ctx != ctx)
433 return;
434
aa9c4c0f
IM
435 curr_rq_lock_irq_save(&flags);
436 spin_lock(&ctx->lock);
0793a61d
TG
437
438 /*
439 * Protect the list operation against NMI by disabling the
440 * counters on a global level. NOP for non NMI based counters.
441 */
01b2838c 442 perf_flags = hw_perf_save_disable();
0793a61d 443
235c7fc7 444 list_add_counter(counter, ctx);
0793a61d 445 ctx->nr_counters++;
c07c99b6 446 counter->prev_state = PERF_COUNTER_STATE_OFF;
0793a61d 447
d859e29f
PM
448 /*
449 * Don't put the counter on if it is disabled or if
450 * it is in a group and the group isn't on.
451 */
452 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
453 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
454 goto unlock;
455
3b6f9e5c
PM
456 /*
457 * An exclusive counter can't go on if there are already active
458 * hardware counters, and no hardware counter can go on if there
459 * is already an exclusive counter on.
460 */
d859e29f 461 if (!group_can_go_on(counter, cpuctx, 1))
3b6f9e5c
PM
462 err = -EEXIST;
463 else
464 err = counter_sched_in(counter, cpuctx, ctx, cpu);
465
d859e29f
PM
466 if (err) {
467 /*
468 * This counter couldn't go on. If it is in a group
469 * then we have to pull the whole group off.
470 * If the counter group is pinned then put it in error state.
471 */
472 if (leader != counter)
473 group_sched_out(leader, cpuctx, ctx);
474 if (leader->hw_event.pinned)
475 leader->state = PERF_COUNTER_STATE_ERROR;
476 }
0793a61d 477
3b6f9e5c 478 if (!err && !ctx->task && cpuctx->max_pertask)
0793a61d
TG
479 cpuctx->max_pertask--;
480
d859e29f 481 unlock:
235c7fc7
IM
482 hw_perf_restore(perf_flags);
483
aa9c4c0f
IM
484 spin_unlock(&ctx->lock);
485 curr_rq_unlock_irq_restore(&flags);
0793a61d
TG
486}
487
488/*
489 * Attach a performance counter to a context
490 *
491 * First we add the counter to the list with the hardware enable bit
492 * in counter->hw_config cleared.
493 *
494 * If the counter is attached to a task which is on a CPU we use a smp
495 * call to enable it in the task context. The task might have been
496 * scheduled away, but we check this in the smp call again.
d859e29f
PM
497 *
498 * Must be called with ctx->mutex held.
0793a61d
TG
499 */
500static void
501perf_install_in_context(struct perf_counter_context *ctx,
502 struct perf_counter *counter,
503 int cpu)
504{
505 struct task_struct *task = ctx->task;
506
0793a61d
TG
507 if (!task) {
508 /*
509 * Per cpu counters are installed via an smp call and
510 * the install is always sucessful.
511 */
512 smp_call_function_single(cpu, __perf_install_in_context,
513 counter, 1);
514 return;
515 }
516
517 counter->task = task;
518retry:
519 task_oncpu_function_call(task, __perf_install_in_context,
520 counter);
521
522 spin_lock_irq(&ctx->lock);
523 /*
0793a61d
TG
524 * we need to retry the smp call.
525 */
d859e29f 526 if (ctx->is_active && list_empty(&counter->list_entry)) {
0793a61d
TG
527 spin_unlock_irq(&ctx->lock);
528 goto retry;
529 }
530
531 /*
532 * The lock prevents that this context is scheduled in so we
533 * can add the counter safely, if it the call above did not
534 * succeed.
535 */
04289bb9
IM
536 if (list_empty(&counter->list_entry)) {
537 list_add_counter(counter, ctx);
0793a61d
TG
538 ctx->nr_counters++;
539 }
540 spin_unlock_irq(&ctx->lock);
541}
542
d859e29f
PM
543/*
544 * Cross CPU call to enable a performance counter
545 */
546static void __perf_counter_enable(void *info)
04289bb9 547{
d859e29f
PM
548 struct perf_counter *counter = info;
549 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
550 struct perf_counter_context *ctx = counter->ctx;
551 struct perf_counter *leader = counter->group_leader;
552 unsigned long flags;
553 int err;
04289bb9 554
d859e29f
PM
555 /*
556 * If this is a per-task counter, need to check whether this
557 * counter's task is the current task on this cpu.
558 */
559 if (ctx->task && cpuctx->task_ctx != ctx)
3cbed429
PM
560 return;
561
d859e29f
PM
562 curr_rq_lock_irq_save(&flags);
563 spin_lock(&ctx->lock);
564
c07c99b6 565 counter->prev_state = counter->state;
d859e29f
PM
566 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
567 goto unlock;
568 counter->state = PERF_COUNTER_STATE_INACTIVE;
04289bb9
IM
569
570 /*
d859e29f
PM
571 * If the counter is in a group and isn't the group leader,
572 * then don't put it on unless the group is on.
04289bb9 573 */
d859e29f
PM
574 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
575 goto unlock;
3b6f9e5c 576
d859e29f
PM
577 if (!group_can_go_on(counter, cpuctx, 1))
578 err = -EEXIST;
579 else
580 err = counter_sched_in(counter, cpuctx, ctx,
581 smp_processor_id());
582
583 if (err) {
584 /*
585 * If this counter can't go on and it's part of a
586 * group, then the whole group has to come off.
587 */
588 if (leader != counter)
589 group_sched_out(leader, cpuctx, ctx);
590 if (leader->hw_event.pinned)
591 leader->state = PERF_COUNTER_STATE_ERROR;
592 }
593
594 unlock:
595 spin_unlock(&ctx->lock);
596 curr_rq_unlock_irq_restore(&flags);
597}
598
599/*
600 * Enable a counter.
601 */
602static void perf_counter_enable(struct perf_counter *counter)
603{
604 struct perf_counter_context *ctx = counter->ctx;
605 struct task_struct *task = ctx->task;
606
607 if (!task) {
608 /*
609 * Enable the counter on the cpu that it's on
610 */
611 smp_call_function_single(counter->cpu, __perf_counter_enable,
612 counter, 1);
613 return;
614 }
615
616 spin_lock_irq(&ctx->lock);
617 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
618 goto out;
619
620 /*
621 * If the counter is in error state, clear that first.
622 * That way, if we see the counter in error state below, we
623 * know that it has gone back into error state, as distinct
624 * from the task having been scheduled away before the
625 * cross-call arrived.
626 */
627 if (counter->state == PERF_COUNTER_STATE_ERROR)
628 counter->state = PERF_COUNTER_STATE_OFF;
629
630 retry:
631 spin_unlock_irq(&ctx->lock);
632 task_oncpu_function_call(task, __perf_counter_enable, counter);
633
634 spin_lock_irq(&ctx->lock);
635
636 /*
637 * If the context is active and the counter is still off,
638 * we need to retry the cross-call.
639 */
640 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
641 goto retry;
642
643 /*
644 * Since we have the lock this context can't be scheduled
645 * in, so we can change the state safely.
646 */
647 if (counter->state == PERF_COUNTER_STATE_OFF)
648 counter->state = PERF_COUNTER_STATE_INACTIVE;
649 out:
650 spin_unlock_irq(&ctx->lock);
651}
652
653/*
654 * Enable a counter and all its children.
655 */
656static void perf_counter_enable_family(struct perf_counter *counter)
657{
658 struct perf_counter *child;
659
660 perf_counter_enable(counter);
661
662 /*
663 * Lock the mutex to protect the list of children
664 */
665 mutex_lock(&counter->mutex);
666 list_for_each_entry(child, &counter->child_list, child_list)
667 perf_counter_enable(child);
668 mutex_unlock(&counter->mutex);
04289bb9
IM
669}
670
235c7fc7
IM
671void __perf_counter_sched_out(struct perf_counter_context *ctx,
672 struct perf_cpu_context *cpuctx)
673{
674 struct perf_counter *counter;
3cbed429 675 u64 flags;
235c7fc7 676
d859e29f
PM
677 spin_lock(&ctx->lock);
678 ctx->is_active = 0;
235c7fc7 679 if (likely(!ctx->nr_counters))
d859e29f 680 goto out;
235c7fc7 681
3cbed429 682 flags = hw_perf_save_disable();
235c7fc7
IM
683 if (ctx->nr_active) {
684 list_for_each_entry(counter, &ctx->counter_list, list_entry)
685 group_sched_out(counter, cpuctx, ctx);
686 }
3cbed429 687 hw_perf_restore(flags);
d859e29f 688 out:
235c7fc7
IM
689 spin_unlock(&ctx->lock);
690}
691
0793a61d
TG
692/*
693 * Called from scheduler to remove the counters of the current task,
694 * with interrupts disabled.
695 *
696 * We stop each counter and update the counter value in counter->count.
697 *
7671581f 698 * This does not protect us against NMI, but disable()
0793a61d
TG
699 * sets the disabled bit in the control field of counter _before_
700 * accessing the counter control register. If a NMI hits, then it will
701 * not restart the counter.
702 */
703void perf_counter_task_sched_out(struct task_struct *task, int cpu)
704{
705 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
706 struct perf_counter_context *ctx = &task->perf_counter_ctx;
0793a61d
TG
707
708 if (likely(!cpuctx->task_ctx))
709 return;
710
235c7fc7
IM
711 __perf_counter_sched_out(ctx, cpuctx);
712
0793a61d
TG
713 cpuctx->task_ctx = NULL;
714}
715
235c7fc7 716static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
04289bb9 717{
235c7fc7 718 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
04289bb9
IM
719}
720
7995888f 721static int
04289bb9
IM
722group_sched_in(struct perf_counter *group_counter,
723 struct perf_cpu_context *cpuctx,
724 struct perf_counter_context *ctx,
725 int cpu)
726{
95cdd2e7 727 struct perf_counter *counter, *partial_group;
3cbed429
PM
728 int ret;
729
730 if (group_counter->state == PERF_COUNTER_STATE_OFF)
731 return 0;
732
733 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
734 if (ret)
735 return ret < 0 ? ret : 0;
04289bb9 736
c07c99b6 737 group_counter->prev_state = group_counter->state;
95cdd2e7
IM
738 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
739 return -EAGAIN;
04289bb9
IM
740
741 /*
742 * Schedule in siblings as one group (if any):
743 */
7995888f 744 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
c07c99b6 745 counter->prev_state = counter->state;
95cdd2e7
IM
746 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
747 partial_group = counter;
748 goto group_error;
749 }
95cdd2e7
IM
750 }
751
3cbed429 752 return 0;
95cdd2e7
IM
753
754group_error:
755 /*
756 * Groups can be scheduled in as one unit only, so undo any
757 * partial group before returning:
758 */
759 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
760 if (counter == partial_group)
761 break;
762 counter_sched_out(counter, cpuctx, ctx);
7995888f 763 }
95cdd2e7 764 counter_sched_out(group_counter, cpuctx, ctx);
7995888f 765
95cdd2e7 766 return -EAGAIN;
04289bb9
IM
767}
768
235c7fc7
IM
769static void
770__perf_counter_sched_in(struct perf_counter_context *ctx,
771 struct perf_cpu_context *cpuctx, int cpu)
0793a61d 772{
0793a61d 773 struct perf_counter *counter;
3cbed429 774 u64 flags;
dd0e6ba2 775 int can_add_hw = 1;
0793a61d 776
d859e29f
PM
777 spin_lock(&ctx->lock);
778 ctx->is_active = 1;
0793a61d 779 if (likely(!ctx->nr_counters))
d859e29f 780 goto out;
0793a61d 781
3cbed429 782 flags = hw_perf_save_disable();
3b6f9e5c
PM
783
784 /*
785 * First go through the list and put on any pinned groups
786 * in order to give them the best chance of going on.
787 */
788 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
789 if (counter->state <= PERF_COUNTER_STATE_OFF ||
790 !counter->hw_event.pinned)
791 continue;
792 if (counter->cpu != -1 && counter->cpu != cpu)
793 continue;
794
795 if (group_can_go_on(counter, cpuctx, 1))
796 group_sched_in(counter, cpuctx, ctx, cpu);
797
798 /*
799 * If this pinned group hasn't been scheduled,
800 * put it in error state.
801 */
802 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
803 counter->state = PERF_COUNTER_STATE_ERROR;
804 }
805
04289bb9 806 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
3b6f9e5c
PM
807 /*
808 * Ignore counters in OFF or ERROR state, and
809 * ignore pinned counters since we did them already.
810 */
811 if (counter->state <= PERF_COUNTER_STATE_OFF ||
812 counter->hw_event.pinned)
813 continue;
814
04289bb9
IM
815 /*
816 * Listen to the 'cpu' scheduling filter constraint
817 * of counters:
818 */
0793a61d
TG
819 if (counter->cpu != -1 && counter->cpu != cpu)
820 continue;
821
3b6f9e5c 822 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
dd0e6ba2
PM
823 if (group_sched_in(counter, cpuctx, ctx, cpu))
824 can_add_hw = 0;
3b6f9e5c 825 }
0793a61d 826 }
3cbed429 827 hw_perf_restore(flags);
d859e29f 828 out:
0793a61d 829 spin_unlock(&ctx->lock);
235c7fc7
IM
830}
831
832/*
833 * Called from scheduler to add the counters of the current task
834 * with interrupts disabled.
835 *
836 * We restore the counter value and then enable it.
837 *
838 * This does not protect us against NMI, but enable()
839 * sets the enabled bit in the control field of counter _before_
840 * accessing the counter control register. If a NMI hits, then it will
841 * keep the counter running.
842 */
843void perf_counter_task_sched_in(struct task_struct *task, int cpu)
844{
845 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
846 struct perf_counter_context *ctx = &task->perf_counter_ctx;
04289bb9 847
235c7fc7 848 __perf_counter_sched_in(ctx, cpuctx, cpu);
0793a61d
TG
849 cpuctx->task_ctx = ctx;
850}
851
235c7fc7
IM
852static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
853{
854 struct perf_counter_context *ctx = &cpuctx->ctx;
855
856 __perf_counter_sched_in(ctx, cpuctx, cpu);
857}
858
1d1c7ddb
IM
859int perf_counter_task_disable(void)
860{
861 struct task_struct *curr = current;
862 struct perf_counter_context *ctx = &curr->perf_counter_ctx;
863 struct perf_counter *counter;
aa9c4c0f 864 unsigned long flags;
1d1c7ddb
IM
865 u64 perf_flags;
866 int cpu;
867
868 if (likely(!ctx->nr_counters))
869 return 0;
870
aa9c4c0f 871 curr_rq_lock_irq_save(&flags);
1d1c7ddb
IM
872 cpu = smp_processor_id();
873
aa9c4c0f
IM
874 /* force the update of the task clock: */
875 __task_delta_exec(curr, 1);
876
1d1c7ddb
IM
877 perf_counter_task_sched_out(curr, cpu);
878
879 spin_lock(&ctx->lock);
880
881 /*
882 * Disable all the counters:
883 */
884 perf_flags = hw_perf_save_disable();
885
3b6f9e5c
PM
886 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
887 if (counter->state != PERF_COUNTER_STATE_ERROR)
888 counter->state = PERF_COUNTER_STATE_OFF;
889 }
9b51f66d 890
1d1c7ddb
IM
891 hw_perf_restore(perf_flags);
892
893 spin_unlock(&ctx->lock);
894
aa9c4c0f 895 curr_rq_unlock_irq_restore(&flags);
1d1c7ddb
IM
896
897 return 0;
898}
899
900int perf_counter_task_enable(void)
901{
902 struct task_struct *curr = current;
903 struct perf_counter_context *ctx = &curr->perf_counter_ctx;
904 struct perf_counter *counter;
aa9c4c0f 905 unsigned long flags;
1d1c7ddb
IM
906 u64 perf_flags;
907 int cpu;
908
909 if (likely(!ctx->nr_counters))
910 return 0;
911
aa9c4c0f 912 curr_rq_lock_irq_save(&flags);
1d1c7ddb
IM
913 cpu = smp_processor_id();
914
aa9c4c0f
IM
915 /* force the update of the task clock: */
916 __task_delta_exec(curr, 1);
917
235c7fc7
IM
918 perf_counter_task_sched_out(curr, cpu);
919
1d1c7ddb
IM
920 spin_lock(&ctx->lock);
921
922 /*
923 * Disable all the counters:
924 */
925 perf_flags = hw_perf_save_disable();
926
927 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
3b6f9e5c 928 if (counter->state > PERF_COUNTER_STATE_OFF)
1d1c7ddb 929 continue;
6a930700 930 counter->state = PERF_COUNTER_STATE_INACTIVE;
aa9c4c0f 931 counter->hw_event.disabled = 0;
1d1c7ddb
IM
932 }
933 hw_perf_restore(perf_flags);
934
935 spin_unlock(&ctx->lock);
936
937 perf_counter_task_sched_in(curr, cpu);
938
aa9c4c0f 939 curr_rq_unlock_irq_restore(&flags);
1d1c7ddb
IM
940
941 return 0;
942}
943
235c7fc7
IM
944/*
945 * Round-robin a context's counters:
946 */
947static void rotate_ctx(struct perf_counter_context *ctx)
0793a61d 948{
0793a61d 949 struct perf_counter *counter;
5c92d124 950 u64 perf_flags;
0793a61d 951
235c7fc7 952 if (!ctx->nr_counters)
0793a61d
TG
953 return;
954
0793a61d 955 spin_lock(&ctx->lock);
0793a61d 956 /*
04289bb9 957 * Rotate the first entry last (works just fine for group counters too):
0793a61d 958 */
01b2838c 959 perf_flags = hw_perf_save_disable();
04289bb9 960 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
75564232 961 list_move_tail(&counter->list_entry, &ctx->counter_list);
0793a61d
TG
962 break;
963 }
01b2838c 964 hw_perf_restore(perf_flags);
0793a61d
TG
965
966 spin_unlock(&ctx->lock);
235c7fc7
IM
967}
968
969void perf_counter_task_tick(struct task_struct *curr, int cpu)
970{
971 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
972 struct perf_counter_context *ctx = &curr->perf_counter_ctx;
973 const int rotate_percpu = 0;
974
975 if (rotate_percpu)
976 perf_counter_cpu_sched_out(cpuctx);
977 perf_counter_task_sched_out(curr, cpu);
0793a61d 978
235c7fc7
IM
979 if (rotate_percpu)
980 rotate_ctx(&cpuctx->ctx);
981 rotate_ctx(ctx);
982
983 if (rotate_percpu)
984 perf_counter_cpu_sched_in(cpuctx, cpu);
0793a61d
TG
985 perf_counter_task_sched_in(curr, cpu);
986}
987
0793a61d
TG
988/*
989 * Cross CPU call to read the hardware counter
990 */
7671581f 991static void __read(void *info)
0793a61d 992{
621a01ea 993 struct perf_counter *counter = info;
aa9c4c0f 994 unsigned long flags;
621a01ea 995
aa9c4c0f 996 curr_rq_lock_irq_save(&flags);
7671581f 997 counter->hw_ops->read(counter);
aa9c4c0f 998 curr_rq_unlock_irq_restore(&flags);
0793a61d
TG
999}
1000
04289bb9 1001static u64 perf_counter_read(struct perf_counter *counter)
0793a61d
TG
1002{
1003 /*
1004 * If counter is enabled and currently active on a CPU, update the
1005 * value in the counter structure:
1006 */
6a930700 1007 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
0793a61d 1008 smp_call_function_single(counter->oncpu,
7671581f 1009 __read, counter, 1);
0793a61d
TG
1010 }
1011
ee06094f 1012 return atomic64_read(&counter->count);
0793a61d
TG
1013}
1014
1015/*
1016 * Cross CPU call to switch performance data pointers
1017 */
1018static void __perf_switch_irq_data(void *info)
1019{
1020 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
1021 struct perf_counter *counter = info;
1022 struct perf_counter_context *ctx = counter->ctx;
1023 struct perf_data *oldirqdata = counter->irqdata;
1024
1025 /*
1026 * If this is a task context, we need to check whether it is
1027 * the current task context of this cpu. If not it has been
1028 * scheduled out before the smp call arrived.
1029 */
1030 if (ctx->task) {
1031 if (cpuctx->task_ctx != ctx)
1032 return;
1033 spin_lock(&ctx->lock);
1034 }
1035
1036 /* Change the pointer NMI safe */
1037 atomic_long_set((atomic_long_t *)&counter->irqdata,
1038 (unsigned long) counter->usrdata);
1039 counter->usrdata = oldirqdata;
1040
1041 if (ctx->task)
1042 spin_unlock(&ctx->lock);
1043}
1044
1045static struct perf_data *perf_switch_irq_data(struct perf_counter *counter)
1046{
1047 struct perf_counter_context *ctx = counter->ctx;
1048 struct perf_data *oldirqdata = counter->irqdata;
1049 struct task_struct *task = ctx->task;
1050
1051 if (!task) {
1052 smp_call_function_single(counter->cpu,
1053 __perf_switch_irq_data,
1054 counter, 1);
1055 return counter->usrdata;
1056 }
1057
1058retry:
1059 spin_lock_irq(&ctx->lock);
6a930700 1060 if (counter->state != PERF_COUNTER_STATE_ACTIVE) {
0793a61d
TG
1061 counter->irqdata = counter->usrdata;
1062 counter->usrdata = oldirqdata;
1063 spin_unlock_irq(&ctx->lock);
1064 return oldirqdata;
1065 }
1066 spin_unlock_irq(&ctx->lock);
1067 task_oncpu_function_call(task, __perf_switch_irq_data, counter);
1068 /* Might have failed, because task was scheduled out */
1069 if (counter->irqdata == oldirqdata)
1070 goto retry;
1071
1072 return counter->usrdata;
1073}
1074
1075static void put_context(struct perf_counter_context *ctx)
1076{
1077 if (ctx->task)
1078 put_task_struct(ctx->task);
1079}
1080
1081static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1082{
1083 struct perf_cpu_context *cpuctx;
1084 struct perf_counter_context *ctx;
1085 struct task_struct *task;
1086
1087 /*
1088 * If cpu is not a wildcard then this is a percpu counter:
1089 */
1090 if (cpu != -1) {
1091 /* Must be root to operate on a CPU counter: */
1092 if (!capable(CAP_SYS_ADMIN))
1093 return ERR_PTR(-EACCES);
1094
1095 if (cpu < 0 || cpu > num_possible_cpus())
1096 return ERR_PTR(-EINVAL);
1097
1098 /*
1099 * We could be clever and allow to attach a counter to an
1100 * offline CPU and activate it when the CPU comes up, but
1101 * that's for later.
1102 */
1103 if (!cpu_isset(cpu, cpu_online_map))
1104 return ERR_PTR(-ENODEV);
1105
1106 cpuctx = &per_cpu(perf_cpu_context, cpu);
1107 ctx = &cpuctx->ctx;
1108
0793a61d
TG
1109 return ctx;
1110 }
1111
1112 rcu_read_lock();
1113 if (!pid)
1114 task = current;
1115 else
1116 task = find_task_by_vpid(pid);
1117 if (task)
1118 get_task_struct(task);
1119 rcu_read_unlock();
1120
1121 if (!task)
1122 return ERR_PTR(-ESRCH);
1123
1124 ctx = &task->perf_counter_ctx;
1125 ctx->task = task;
1126
1127 /* Reuse ptrace permission checks for now. */
1128 if (!ptrace_may_access(task, PTRACE_MODE_READ)) {
1129 put_context(ctx);
1130 return ERR_PTR(-EACCES);
1131 }
1132
1133 return ctx;
1134}
1135
1136/*
1137 * Called when the last reference to the file is gone.
1138 */
1139static int perf_release(struct inode *inode, struct file *file)
1140{
1141 struct perf_counter *counter = file->private_data;
1142 struct perf_counter_context *ctx = counter->ctx;
1143
1144 file->private_data = NULL;
1145
d859e29f 1146 mutex_lock(&ctx->mutex);
0793a61d
TG
1147 mutex_lock(&counter->mutex);
1148
04289bb9 1149 perf_counter_remove_from_context(counter);
0793a61d
TG
1150
1151 mutex_unlock(&counter->mutex);
d859e29f 1152 mutex_unlock(&ctx->mutex);
0793a61d
TG
1153
1154 kfree(counter);
5af75917 1155 put_context(ctx);
0793a61d
TG
1156
1157 return 0;
1158}
1159
1160/*
1161 * Read the performance counter - simple non blocking version for now
1162 */
1163static ssize_t
1164perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1165{
1166 u64 cntval;
1167
1168 if (count != sizeof(cntval))
1169 return -EINVAL;
1170
3b6f9e5c
PM
1171 /*
1172 * Return end-of-file for a read on a counter that is in
1173 * error state (i.e. because it was pinned but it couldn't be
1174 * scheduled on to the CPU at some point).
1175 */
1176 if (counter->state == PERF_COUNTER_STATE_ERROR)
1177 return 0;
1178
0793a61d 1179 mutex_lock(&counter->mutex);
04289bb9 1180 cntval = perf_counter_read(counter);
0793a61d
TG
1181 mutex_unlock(&counter->mutex);
1182
1183 return put_user(cntval, (u64 __user *) buf) ? -EFAULT : sizeof(cntval);
1184}
1185
1186static ssize_t
1187perf_copy_usrdata(struct perf_data *usrdata, char __user *buf, size_t count)
1188{
1189 if (!usrdata->len)
1190 return 0;
1191
1192 count = min(count, (size_t)usrdata->len);
1193 if (copy_to_user(buf, usrdata->data + usrdata->rd_idx, count))
1194 return -EFAULT;
1195
1196 /* Adjust the counters */
1197 usrdata->len -= count;
1198 if (!usrdata->len)
1199 usrdata->rd_idx = 0;
1200 else
1201 usrdata->rd_idx += count;
1202
1203 return count;
1204}
1205
1206static ssize_t
1207perf_read_irq_data(struct perf_counter *counter,
1208 char __user *buf,
1209 size_t count,
1210 int nonblocking)
1211{
1212 struct perf_data *irqdata, *usrdata;
1213 DECLARE_WAITQUEUE(wait, current);
3b6f9e5c 1214 ssize_t res, res2;
0793a61d
TG
1215
1216 irqdata = counter->irqdata;
1217 usrdata = counter->usrdata;
1218
1219 if (usrdata->len + irqdata->len >= count)
1220 goto read_pending;
1221
1222 if (nonblocking)
1223 return -EAGAIN;
1224
1225 spin_lock_irq(&counter->waitq.lock);
1226 __add_wait_queue(&counter->waitq, &wait);
1227 for (;;) {
1228 set_current_state(TASK_INTERRUPTIBLE);
1229 if (usrdata->len + irqdata->len >= count)
1230 break;
1231
1232 if (signal_pending(current))
1233 break;
1234
3b6f9e5c
PM
1235 if (counter->state == PERF_COUNTER_STATE_ERROR)
1236 break;
1237
0793a61d
TG
1238 spin_unlock_irq(&counter->waitq.lock);
1239 schedule();
1240 spin_lock_irq(&counter->waitq.lock);
1241 }
1242 __remove_wait_queue(&counter->waitq, &wait);
1243 __set_current_state(TASK_RUNNING);
1244 spin_unlock_irq(&counter->waitq.lock);
1245
3b6f9e5c
PM
1246 if (usrdata->len + irqdata->len < count &&
1247 counter->state != PERF_COUNTER_STATE_ERROR)
0793a61d
TG
1248 return -ERESTARTSYS;
1249read_pending:
1250 mutex_lock(&counter->mutex);
1251
1252 /* Drain pending data first: */
1253 res = perf_copy_usrdata(usrdata, buf, count);
1254 if (res < 0 || res == count)
1255 goto out;
1256
1257 /* Switch irq buffer: */
1258 usrdata = perf_switch_irq_data(counter);
3b6f9e5c
PM
1259 res2 = perf_copy_usrdata(usrdata, buf + res, count - res);
1260 if (res2 < 0) {
0793a61d
TG
1261 if (!res)
1262 res = -EFAULT;
1263 } else {
3b6f9e5c 1264 res += res2;
0793a61d
TG
1265 }
1266out:
1267 mutex_unlock(&counter->mutex);
1268
1269 return res;
1270}
1271
1272static ssize_t
1273perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1274{
1275 struct perf_counter *counter = file->private_data;
1276
9f66a381 1277 switch (counter->hw_event.record_type) {
0793a61d
TG
1278 case PERF_RECORD_SIMPLE:
1279 return perf_read_hw(counter, buf, count);
1280
1281 case PERF_RECORD_IRQ:
1282 case PERF_RECORD_GROUP:
1283 return perf_read_irq_data(counter, buf, count,
1284 file->f_flags & O_NONBLOCK);
1285 }
1286 return -EINVAL;
1287}
1288
1289static unsigned int perf_poll(struct file *file, poll_table *wait)
1290{
1291 struct perf_counter *counter = file->private_data;
1292 unsigned int events = 0;
1293 unsigned long flags;
1294
1295 poll_wait(file, &counter->waitq, wait);
1296
1297 spin_lock_irqsave(&counter->waitq.lock, flags);
1298 if (counter->usrdata->len || counter->irqdata->len)
1299 events |= POLLIN;
1300 spin_unlock_irqrestore(&counter->waitq.lock, flags);
1301
1302 return events;
1303}
1304
d859e29f
PM
1305static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1306{
1307 struct perf_counter *counter = file->private_data;
1308 int err = 0;
1309
1310 switch (cmd) {
1311 case PERF_COUNTER_IOC_ENABLE:
1312 perf_counter_enable_family(counter);
1313 break;
1314 case PERF_COUNTER_IOC_DISABLE:
1315 perf_counter_disable_family(counter);
1316 break;
1317 default:
1318 err = -ENOTTY;
1319 }
1320 return err;
1321}
1322
0793a61d
TG
1323static const struct file_operations perf_fops = {
1324 .release = perf_release,
1325 .read = perf_read,
1326 .poll = perf_poll,
d859e29f
PM
1327 .unlocked_ioctl = perf_ioctl,
1328 .compat_ioctl = perf_ioctl,
0793a61d
TG
1329};
1330
15dbf27c
PZ
1331/*
1332 * Generic software counter infrastructure
1333 */
1334
1335static void perf_swcounter_update(struct perf_counter *counter)
1336{
1337 struct hw_perf_counter *hwc = &counter->hw;
1338 u64 prev, now;
1339 s64 delta;
1340
1341again:
1342 prev = atomic64_read(&hwc->prev_count);
1343 now = atomic64_read(&hwc->count);
1344 if (atomic64_cmpxchg(&hwc->prev_count, prev, now) != prev)
1345 goto again;
1346
1347 delta = now - prev;
1348
1349 atomic64_add(delta, &counter->count);
1350 atomic64_sub(delta, &hwc->period_left);
1351}
1352
1353static void perf_swcounter_set_period(struct perf_counter *counter)
1354{
1355 struct hw_perf_counter *hwc = &counter->hw;
1356 s64 left = atomic64_read(&hwc->period_left);
1357 s64 period = hwc->irq_period;
1358
1359 if (unlikely(left <= -period)) {
1360 left = period;
1361 atomic64_set(&hwc->period_left, left);
1362 }
1363
1364 if (unlikely(left <= 0)) {
1365 left += period;
1366 atomic64_add(period, &hwc->period_left);
1367 }
1368
1369 atomic64_set(&hwc->prev_count, -left);
1370 atomic64_set(&hwc->count, -left);
1371}
1372
1373static void perf_swcounter_save_and_restart(struct perf_counter *counter)
1374{
1375 perf_swcounter_update(counter);
1376 perf_swcounter_set_period(counter);
1377}
1378
1379static void perf_swcounter_store_irq(struct perf_counter *counter, u64 data)
1380{
1381 struct perf_data *irqdata = counter->irqdata;
1382
1383 if (irqdata->len > PERF_DATA_BUFLEN - sizeof(u64)) {
1384 irqdata->overrun++;
1385 } else {
1386 u64 *p = (u64 *) &irqdata->data[irqdata->len];
1387
1388 *p = data;
1389 irqdata->len += sizeof(u64);
1390 }
1391}
1392
1393static void perf_swcounter_handle_group(struct perf_counter *sibling)
1394{
1395 struct perf_counter *counter, *group_leader = sibling->group_leader;
1396
1397 list_for_each_entry(counter, &group_leader->sibling_list, list_entry) {
1398 perf_swcounter_update(counter);
1399 perf_swcounter_store_irq(sibling, counter->hw_event.type);
1400 perf_swcounter_store_irq(sibling, atomic64_read(&counter->count));
1401 }
1402}
1403
1404static void perf_swcounter_interrupt(struct perf_counter *counter,
1405 int nmi, struct pt_regs *regs)
1406{
1407 perf_swcounter_save_and_restart(counter);
1408
1409 switch (counter->hw_event.record_type) {
1410 case PERF_RECORD_SIMPLE:
1411 break;
1412
1413 case PERF_RECORD_IRQ:
1414 perf_swcounter_store_irq(counter, instruction_pointer(regs));
1415 break;
1416
1417 case PERF_RECORD_GROUP:
1418 perf_swcounter_handle_group(counter);
1419 break;
1420 }
1421
1422 if (nmi) {
1423 counter->wakeup_pending = 1;
1424 set_tsk_thread_flag(current, TIF_PERF_COUNTERS);
1425 } else
1426 wake_up(&counter->waitq);
1427}
1428
1429static int perf_swcounter_match(struct perf_counter *counter,
1430 enum hw_event_types event,
1431 struct pt_regs *regs)
1432{
1433 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1434 return 0;
1435
1436 if (counter->hw_event.raw)
1437 return 0;
1438
1439 if (counter->hw_event.type != event)
1440 return 0;
1441
1442 if (counter->hw_event.exclude_user && user_mode(regs))
1443 return 0;
1444
1445 if (counter->hw_event.exclude_kernel && !user_mode(regs))
1446 return 0;
1447
1448 return 1;
1449}
1450
1451static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
1452 enum hw_event_types event, u64 nr,
1453 int nmi, struct pt_regs *regs)
1454{
1455 struct perf_counter *counter;
1456 unsigned long flags;
1457 int neg;
1458
1459 if (list_empty(&ctx->counter_list))
1460 return;
1461
1462 spin_lock_irqsave(&ctx->lock, flags);
1463
1464 /*
1465 * XXX: make counter_list RCU safe
1466 */
1467 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1468 if (perf_swcounter_match(counter, event, regs)) {
1469 neg = atomic64_add_negative(nr, &counter->hw.count);
1470 if (counter->hw.irq_period && !neg)
1471 perf_swcounter_interrupt(counter, nmi, regs);
1472 }
1473 }
1474
1475 spin_unlock_irqrestore(&ctx->lock, flags);
1476}
1477
1478void perf_swcounter_event(enum hw_event_types event, u64 nr,
1479 int nmi, struct pt_regs *regs)
1480{
1481 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
1482
1483 perf_swcounter_ctx_event(&cpuctx->ctx, event, nr, nmi, regs);
1484 if (cpuctx->task_ctx)
1485 perf_swcounter_ctx_event(cpuctx->task_ctx, event, nr, nmi, regs);
1486
1487 put_cpu_var(perf_cpu_context);
1488}
1489
1490static void perf_swcounter_read(struct perf_counter *counter)
1491{
1492 perf_swcounter_update(counter);
1493}
1494
1495static int perf_swcounter_enable(struct perf_counter *counter)
1496{
1497 perf_swcounter_set_period(counter);
1498 return 0;
1499}
1500
1501static void perf_swcounter_disable(struct perf_counter *counter)
1502{
1503 perf_swcounter_update(counter);
1504}
1505
ac17dc8e
PZ
1506static const struct hw_perf_counter_ops perf_ops_generic = {
1507 .enable = perf_swcounter_enable,
1508 .disable = perf_swcounter_disable,
1509 .read = perf_swcounter_read,
1510};
1511
15dbf27c
PZ
1512/*
1513 * Software counter: cpu wall time clock
1514 */
1515
95cdd2e7 1516static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
5c92d124 1517{
9abf8a08
PM
1518 int cpu = raw_smp_processor_id();
1519
1520 atomic64_set(&counter->hw.prev_count, cpu_clock(cpu));
95cdd2e7 1521 return 0;
5c92d124
IM
1522}
1523
9abf8a08
PM
1524static void cpu_clock_perf_counter_update(struct perf_counter *counter)
1525{
1526 int cpu = raw_smp_processor_id();
1527 s64 prev;
1528 u64 now;
1529
1530 now = cpu_clock(cpu);
1531 prev = atomic64_read(&counter->hw.prev_count);
1532 atomic64_set(&counter->hw.prev_count, now);
1533 atomic64_add(now - prev, &counter->count);
1534}
1535
5c92d124
IM
1536static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
1537{
9abf8a08 1538 cpu_clock_perf_counter_update(counter);
5c92d124
IM
1539}
1540
1541static void cpu_clock_perf_counter_read(struct perf_counter *counter)
1542{
9abf8a08 1543 cpu_clock_perf_counter_update(counter);
5c92d124
IM
1544}
1545
1546static const struct hw_perf_counter_ops perf_ops_cpu_clock = {
7671581f
IM
1547 .enable = cpu_clock_perf_counter_enable,
1548 .disable = cpu_clock_perf_counter_disable,
1549 .read = cpu_clock_perf_counter_read,
5c92d124
IM
1550};
1551
15dbf27c
PZ
1552/*
1553 * Software counter: task time clock
1554 */
1555
aa9c4c0f
IM
1556/*
1557 * Called from within the scheduler:
1558 */
1559static u64 task_clock_perf_counter_val(struct perf_counter *counter, int update)
bae43c99 1560{
aa9c4c0f
IM
1561 struct task_struct *curr = counter->task;
1562 u64 delta;
1563
aa9c4c0f
IM
1564 delta = __task_delta_exec(curr, update);
1565
1566 return curr->se.sum_exec_runtime + delta;
1567}
1568
1569static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
1570{
1571 u64 prev;
8cb391e8
IM
1572 s64 delta;
1573
1574 prev = atomic64_read(&counter->hw.prev_count);
8cb391e8
IM
1575
1576 atomic64_set(&counter->hw.prev_count, now);
1577
1578 delta = now - prev;
8cb391e8
IM
1579
1580 atomic64_add(delta, &counter->count);
bae43c99
IM
1581}
1582
8cb391e8 1583static void task_clock_perf_counter_read(struct perf_counter *counter)
bae43c99 1584{
aa9c4c0f
IM
1585 u64 now = task_clock_perf_counter_val(counter, 1);
1586
1587 task_clock_perf_counter_update(counter, now);
bae43c99
IM
1588}
1589
95cdd2e7 1590static int task_clock_perf_counter_enable(struct perf_counter *counter)
8cb391e8 1591{
c07c99b6
PM
1592 if (counter->prev_state <= PERF_COUNTER_STATE_OFF)
1593 atomic64_set(&counter->hw.prev_count,
1594 task_clock_perf_counter_val(counter, 0));
95cdd2e7
IM
1595
1596 return 0;
8cb391e8
IM
1597}
1598
1599static void task_clock_perf_counter_disable(struct perf_counter *counter)
bae43c99 1600{
aa9c4c0f
IM
1601 u64 now = task_clock_perf_counter_val(counter, 0);
1602
1603 task_clock_perf_counter_update(counter, now);
bae43c99
IM
1604}
1605
1606static const struct hw_perf_counter_ops perf_ops_task_clock = {
7671581f
IM
1607 .enable = task_clock_perf_counter_enable,
1608 .disable = task_clock_perf_counter_disable,
1609 .read = task_clock_perf_counter_read,
bae43c99
IM
1610};
1611
15dbf27c
PZ
1612/*
1613 * Software counter: context switches
1614 */
1615
23a185ca 1616static u64 get_context_switches(struct perf_counter *counter)
5d6a27d8 1617{
23a185ca 1618 struct task_struct *curr = counter->ctx->task;
5d6a27d8 1619
23a185ca
PM
1620 if (curr)
1621 return curr->nvcsw + curr->nivcsw;
1622 return cpu_nr_switches(smp_processor_id());
5d6a27d8
IM
1623}
1624
1625static void context_switches_perf_counter_update(struct perf_counter *counter)
1626{
1627 u64 prev, now;
1628 s64 delta;
1629
1630 prev = atomic64_read(&counter->hw.prev_count);
23a185ca 1631 now = get_context_switches(counter);
5d6a27d8
IM
1632
1633 atomic64_set(&counter->hw.prev_count, now);
1634
1635 delta = now - prev;
5d6a27d8
IM
1636
1637 atomic64_add(delta, &counter->count);
1638}
1639
1640static void context_switches_perf_counter_read(struct perf_counter *counter)
1641{
1642 context_switches_perf_counter_update(counter);
1643}
1644
95cdd2e7 1645static int context_switches_perf_counter_enable(struct perf_counter *counter)
5d6a27d8 1646{
c07c99b6
PM
1647 if (counter->prev_state <= PERF_COUNTER_STATE_OFF)
1648 atomic64_set(&counter->hw.prev_count,
1649 get_context_switches(counter));
95cdd2e7 1650 return 0;
5d6a27d8
IM
1651}
1652
1653static void context_switches_perf_counter_disable(struct perf_counter *counter)
1654{
1655 context_switches_perf_counter_update(counter);
1656}
1657
1658static const struct hw_perf_counter_ops perf_ops_context_switches = {
7671581f
IM
1659 .enable = context_switches_perf_counter_enable,
1660 .disable = context_switches_perf_counter_disable,
1661 .read = context_switches_perf_counter_read,
5d6a27d8
IM
1662};
1663
15dbf27c
PZ
1664/*
1665 * Software counter: cpu migrations
1666 */
1667
23a185ca 1668static inline u64 get_cpu_migrations(struct perf_counter *counter)
6c594c21 1669{
23a185ca
PM
1670 struct task_struct *curr = counter->ctx->task;
1671
1672 if (curr)
1673 return curr->se.nr_migrations;
1674 return cpu_nr_migrations(smp_processor_id());
6c594c21
IM
1675}
1676
1677static void cpu_migrations_perf_counter_update(struct perf_counter *counter)
1678{
1679 u64 prev, now;
1680 s64 delta;
1681
1682 prev = atomic64_read(&counter->hw.prev_count);
23a185ca 1683 now = get_cpu_migrations(counter);
6c594c21
IM
1684
1685 atomic64_set(&counter->hw.prev_count, now);
1686
1687 delta = now - prev;
6c594c21
IM
1688
1689 atomic64_add(delta, &counter->count);
1690}
1691
1692static void cpu_migrations_perf_counter_read(struct perf_counter *counter)
1693{
1694 cpu_migrations_perf_counter_update(counter);
1695}
1696
95cdd2e7 1697static int cpu_migrations_perf_counter_enable(struct perf_counter *counter)
6c594c21 1698{
c07c99b6
PM
1699 if (counter->prev_state <= PERF_COUNTER_STATE_OFF)
1700 atomic64_set(&counter->hw.prev_count,
1701 get_cpu_migrations(counter));
95cdd2e7 1702 return 0;
6c594c21
IM
1703}
1704
1705static void cpu_migrations_perf_counter_disable(struct perf_counter *counter)
1706{
1707 cpu_migrations_perf_counter_update(counter);
1708}
1709
1710static const struct hw_perf_counter_ops perf_ops_cpu_migrations = {
7671581f
IM
1711 .enable = cpu_migrations_perf_counter_enable,
1712 .disable = cpu_migrations_perf_counter_disable,
1713 .read = cpu_migrations_perf_counter_read,
6c594c21
IM
1714};
1715
5c92d124
IM
1716static const struct hw_perf_counter_ops *
1717sw_perf_counter_init(struct perf_counter *counter)
1718{
15dbf27c 1719 struct perf_counter_hw_event *hw_event = &counter->hw_event;
5c92d124 1720 const struct hw_perf_counter_ops *hw_ops = NULL;
15dbf27c 1721 struct hw_perf_counter *hwc = &counter->hw;
5c92d124 1722
0475f9ea
PM
1723 /*
1724 * Software counters (currently) can't in general distinguish
1725 * between user, kernel and hypervisor events.
1726 * However, context switches and cpu migrations are considered
1727 * to be kernel events, and page faults are never hypervisor
1728 * events.
1729 */
5c92d124
IM
1730 switch (counter->hw_event.type) {
1731 case PERF_COUNT_CPU_CLOCK:
0475f9ea
PM
1732 if (!(counter->hw_event.exclude_user ||
1733 counter->hw_event.exclude_kernel ||
1734 counter->hw_event.exclude_hv))
1735 hw_ops = &perf_ops_cpu_clock;
5c92d124 1736 break;
bae43c99 1737 case PERF_COUNT_TASK_CLOCK:
0475f9ea
PM
1738 if (counter->hw_event.exclude_user ||
1739 counter->hw_event.exclude_kernel ||
1740 counter->hw_event.exclude_hv)
1741 break;
23a185ca
PM
1742 /*
1743 * If the user instantiates this as a per-cpu counter,
1744 * use the cpu_clock counter instead.
1745 */
1746 if (counter->ctx->task)
1747 hw_ops = &perf_ops_task_clock;
1748 else
1749 hw_ops = &perf_ops_cpu_clock;
bae43c99 1750 break;
e06c61a8 1751 case PERF_COUNT_PAGE_FAULTS:
ac17dc8e
PZ
1752 case PERF_COUNT_PAGE_FAULTS_MIN:
1753 case PERF_COUNT_PAGE_FAULTS_MAJ:
1754 hw_ops = &perf_ops_generic;
e06c61a8 1755 break;
5d6a27d8 1756 case PERF_COUNT_CONTEXT_SWITCHES:
0475f9ea
PM
1757 if (!counter->hw_event.exclude_kernel)
1758 hw_ops = &perf_ops_context_switches;
5d6a27d8 1759 break;
6c594c21 1760 case PERF_COUNT_CPU_MIGRATIONS:
0475f9ea
PM
1761 if (!counter->hw_event.exclude_kernel)
1762 hw_ops = &perf_ops_cpu_migrations;
6c594c21 1763 break;
5c92d124
IM
1764 default:
1765 break;
1766 }
15dbf27c
PZ
1767
1768 if (hw_ops)
1769 hwc->irq_period = hw_event->irq_period;
1770
5c92d124
IM
1771 return hw_ops;
1772}
1773
0793a61d
TG
1774/*
1775 * Allocate and initialize a counter structure
1776 */
1777static struct perf_counter *
04289bb9
IM
1778perf_counter_alloc(struct perf_counter_hw_event *hw_event,
1779 int cpu,
23a185ca 1780 struct perf_counter_context *ctx,
9b51f66d
IM
1781 struct perf_counter *group_leader,
1782 gfp_t gfpflags)
0793a61d 1783{
5c92d124 1784 const struct hw_perf_counter_ops *hw_ops;
621a01ea 1785 struct perf_counter *counter;
0793a61d 1786
9b51f66d 1787 counter = kzalloc(sizeof(*counter), gfpflags);
0793a61d
TG
1788 if (!counter)
1789 return NULL;
1790
04289bb9
IM
1791 /*
1792 * Single counters are their own group leaders, with an
1793 * empty sibling list:
1794 */
1795 if (!group_leader)
1796 group_leader = counter;
1797
0793a61d 1798 mutex_init(&counter->mutex);
04289bb9
IM
1799 INIT_LIST_HEAD(&counter->list_entry);
1800 INIT_LIST_HEAD(&counter->sibling_list);
0793a61d
TG
1801 init_waitqueue_head(&counter->waitq);
1802
d859e29f
PM
1803 INIT_LIST_HEAD(&counter->child_list);
1804
9f66a381
IM
1805 counter->irqdata = &counter->data[0];
1806 counter->usrdata = &counter->data[1];
1807 counter->cpu = cpu;
1808 counter->hw_event = *hw_event;
1809 counter->wakeup_pending = 0;
04289bb9 1810 counter->group_leader = group_leader;
621a01ea 1811 counter->hw_ops = NULL;
23a185ca 1812 counter->ctx = ctx;
621a01ea 1813
235c7fc7 1814 counter->state = PERF_COUNTER_STATE_INACTIVE;
a86ed508
IM
1815 if (hw_event->disabled)
1816 counter->state = PERF_COUNTER_STATE_OFF;
1817
5c92d124
IM
1818 hw_ops = NULL;
1819 if (!hw_event->raw && hw_event->type < 0)
1820 hw_ops = sw_perf_counter_init(counter);
23a185ca 1821 else
5c92d124 1822 hw_ops = hw_perf_counter_init(counter);
5c92d124 1823
621a01ea
IM
1824 if (!hw_ops) {
1825 kfree(counter);
1826 return NULL;
1827 }
1828 counter->hw_ops = hw_ops;
0793a61d
TG
1829
1830 return counter;
1831}
1832
1833/**
2743a5b0 1834 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
9f66a381
IM
1835 *
1836 * @hw_event_uptr: event type attributes for monitoring/sampling
0793a61d 1837 * @pid: target pid
9f66a381
IM
1838 * @cpu: target cpu
1839 * @group_fd: group leader counter fd
0793a61d 1840 */
2743a5b0 1841SYSCALL_DEFINE5(perf_counter_open,
f3dfd265 1842 const struct perf_counter_hw_event __user *, hw_event_uptr,
2743a5b0 1843 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
0793a61d 1844{
04289bb9 1845 struct perf_counter *counter, *group_leader;
9f66a381 1846 struct perf_counter_hw_event hw_event;
04289bb9 1847 struct perf_counter_context *ctx;
9b51f66d 1848 struct file *counter_file = NULL;
04289bb9
IM
1849 struct file *group_file = NULL;
1850 int fput_needed = 0;
9b51f66d 1851 int fput_needed2 = 0;
0793a61d
TG
1852 int ret;
1853
2743a5b0
PM
1854 /* for future expandability... */
1855 if (flags)
1856 return -EINVAL;
1857
9f66a381 1858 if (copy_from_user(&hw_event, hw_event_uptr, sizeof(hw_event)) != 0)
eab656ae
TG
1859 return -EFAULT;
1860
04289bb9 1861 /*
ccff286d
IM
1862 * Get the target context (task or percpu):
1863 */
1864 ctx = find_get_context(pid, cpu);
1865 if (IS_ERR(ctx))
1866 return PTR_ERR(ctx);
1867
1868 /*
1869 * Look up the group leader (we will attach this counter to it):
04289bb9
IM
1870 */
1871 group_leader = NULL;
1872 if (group_fd != -1) {
1873 ret = -EINVAL;
1874 group_file = fget_light(group_fd, &fput_needed);
1875 if (!group_file)
ccff286d 1876 goto err_put_context;
04289bb9 1877 if (group_file->f_op != &perf_fops)
ccff286d 1878 goto err_put_context;
04289bb9
IM
1879
1880 group_leader = group_file->private_data;
1881 /*
ccff286d
IM
1882 * Do not allow a recursive hierarchy (this new sibling
1883 * becoming part of another group-sibling):
1884 */
1885 if (group_leader->group_leader != group_leader)
1886 goto err_put_context;
1887 /*
1888 * Do not allow to attach to a group in a different
1889 * task or CPU context:
04289bb9 1890 */
ccff286d
IM
1891 if (group_leader->ctx != ctx)
1892 goto err_put_context;
3b6f9e5c
PM
1893 /*
1894 * Only a group leader can be exclusive or pinned
1895 */
1896 if (hw_event.exclusive || hw_event.pinned)
1897 goto err_put_context;
04289bb9
IM
1898 }
1899
5c92d124 1900 ret = -EINVAL;
23a185ca
PM
1901 counter = perf_counter_alloc(&hw_event, cpu, ctx, group_leader,
1902 GFP_KERNEL);
0793a61d
TG
1903 if (!counter)
1904 goto err_put_context;
1905
0793a61d
TG
1906 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
1907 if (ret < 0)
9b51f66d
IM
1908 goto err_free_put_context;
1909
1910 counter_file = fget_light(ret, &fput_needed2);
1911 if (!counter_file)
1912 goto err_free_put_context;
1913
1914 counter->filp = counter_file;
d859e29f 1915 mutex_lock(&ctx->mutex);
9b51f66d 1916 perf_install_in_context(ctx, counter, cpu);
d859e29f 1917 mutex_unlock(&ctx->mutex);
9b51f66d
IM
1918
1919 fput_light(counter_file, fput_needed2);
0793a61d 1920
04289bb9
IM
1921out_fput:
1922 fput_light(group_file, fput_needed);
1923
0793a61d
TG
1924 return ret;
1925
9b51f66d 1926err_free_put_context:
0793a61d
TG
1927 kfree(counter);
1928
1929err_put_context:
1930 put_context(ctx);
1931
04289bb9 1932 goto out_fput;
0793a61d
TG
1933}
1934
9b51f66d
IM
1935/*
1936 * Initialize the perf_counter context in a task_struct:
1937 */
1938static void
1939__perf_counter_init_context(struct perf_counter_context *ctx,
1940 struct task_struct *task)
1941{
1942 memset(ctx, 0, sizeof(*ctx));
1943 spin_lock_init(&ctx->lock);
d859e29f 1944 mutex_init(&ctx->mutex);
9b51f66d
IM
1945 INIT_LIST_HEAD(&ctx->counter_list);
1946 ctx->task = task;
1947}
1948
1949/*
1950 * inherit a counter from parent task to child task:
1951 */
d859e29f 1952static struct perf_counter *
9b51f66d
IM
1953inherit_counter(struct perf_counter *parent_counter,
1954 struct task_struct *parent,
1955 struct perf_counter_context *parent_ctx,
1956 struct task_struct *child,
d859e29f 1957 struct perf_counter *group_leader,
9b51f66d
IM
1958 struct perf_counter_context *child_ctx)
1959{
1960 struct perf_counter *child_counter;
1961
d859e29f
PM
1962 /*
1963 * Instead of creating recursive hierarchies of counters,
1964 * we link inherited counters back to the original parent,
1965 * which has a filp for sure, which we use as the reference
1966 * count:
1967 */
1968 if (parent_counter->parent)
1969 parent_counter = parent_counter->parent;
1970
9b51f66d 1971 child_counter = perf_counter_alloc(&parent_counter->hw_event,
23a185ca
PM
1972 parent_counter->cpu, child_ctx,
1973 group_leader, GFP_KERNEL);
9b51f66d 1974 if (!child_counter)
d859e29f 1975 return NULL;
9b51f66d
IM
1976
1977 /*
1978 * Link it up in the child's context:
1979 */
9b51f66d
IM
1980 child_counter->task = child;
1981 list_add_counter(child_counter, child_ctx);
1982 child_ctx->nr_counters++;
1983
1984 child_counter->parent = parent_counter;
9b51f66d
IM
1985 /*
1986 * inherit into child's child as well:
1987 */
1988 child_counter->hw_event.inherit = 1;
1989
1990 /*
1991 * Get a reference to the parent filp - we will fput it
1992 * when the child counter exits. This is safe to do because
1993 * we are in the parent and we know that the filp still
1994 * exists and has a nonzero count:
1995 */
1996 atomic_long_inc(&parent_counter->filp->f_count);
1997
d859e29f
PM
1998 /*
1999 * Link this into the parent counter's child list
2000 */
2001 mutex_lock(&parent_counter->mutex);
2002 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
2003
2004 /*
2005 * Make the child state follow the state of the parent counter,
2006 * not its hw_event.disabled bit. We hold the parent's mutex,
2007 * so we won't race with perf_counter_{en,dis}able_family.
2008 */
2009 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
2010 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
2011 else
2012 child_counter->state = PERF_COUNTER_STATE_OFF;
2013
2014 mutex_unlock(&parent_counter->mutex);
2015
2016 return child_counter;
2017}
2018
2019static int inherit_group(struct perf_counter *parent_counter,
2020 struct task_struct *parent,
2021 struct perf_counter_context *parent_ctx,
2022 struct task_struct *child,
2023 struct perf_counter_context *child_ctx)
2024{
2025 struct perf_counter *leader;
2026 struct perf_counter *sub;
2027
2028 leader = inherit_counter(parent_counter, parent, parent_ctx,
2029 child, NULL, child_ctx);
2030 if (!leader)
2031 return -ENOMEM;
2032 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
2033 if (!inherit_counter(sub, parent, parent_ctx,
2034 child, leader, child_ctx))
2035 return -ENOMEM;
2036 }
9b51f66d
IM
2037 return 0;
2038}
2039
d859e29f
PM
2040static void sync_child_counter(struct perf_counter *child_counter,
2041 struct perf_counter *parent_counter)
2042{
2043 u64 parent_val, child_val;
2044
2045 parent_val = atomic64_read(&parent_counter->count);
2046 child_val = atomic64_read(&child_counter->count);
2047
2048 /*
2049 * Add back the child's count to the parent's count:
2050 */
2051 atomic64_add(child_val, &parent_counter->count);
2052
2053 /*
2054 * Remove this counter from the parent's list
2055 */
2056 mutex_lock(&parent_counter->mutex);
2057 list_del_init(&child_counter->child_list);
2058 mutex_unlock(&parent_counter->mutex);
2059
2060 /*
2061 * Release the parent counter, if this was the last
2062 * reference to it.
2063 */
2064 fput(parent_counter->filp);
2065}
2066
9b51f66d
IM
2067static void
2068__perf_counter_exit_task(struct task_struct *child,
2069 struct perf_counter *child_counter,
2070 struct perf_counter_context *child_ctx)
2071{
2072 struct perf_counter *parent_counter;
d859e29f 2073 struct perf_counter *sub, *tmp;
9b51f66d
IM
2074
2075 /*
235c7fc7
IM
2076 * If we do not self-reap then we have to wait for the
2077 * child task to unschedule (it will happen for sure),
2078 * so that its counter is at its final count. (This
2079 * condition triggers rarely - child tasks usually get
2080 * off their CPU before the parent has a chance to
2081 * get this far into the reaping action)
9b51f66d 2082 */
235c7fc7
IM
2083 if (child != current) {
2084 wait_task_inactive(child, 0);
2085 list_del_init(&child_counter->list_entry);
2086 } else {
0cc0c027 2087 struct perf_cpu_context *cpuctx;
235c7fc7
IM
2088 unsigned long flags;
2089 u64 perf_flags;
2090
2091 /*
2092 * Disable and unlink this counter.
2093 *
2094 * Be careful about zapping the list - IRQ/NMI context
2095 * could still be processing it:
2096 */
2097 curr_rq_lock_irq_save(&flags);
2098 perf_flags = hw_perf_save_disable();
0cc0c027
IM
2099
2100 cpuctx = &__get_cpu_var(perf_cpu_context);
2101
d859e29f 2102 group_sched_out(child_counter, cpuctx, child_ctx);
0cc0c027 2103
235c7fc7 2104 list_del_init(&child_counter->list_entry);
0cc0c027 2105
235c7fc7 2106 child_ctx->nr_counters--;
9b51f66d 2107
235c7fc7
IM
2108 hw_perf_restore(perf_flags);
2109 curr_rq_unlock_irq_restore(&flags);
2110 }
9b51f66d
IM
2111
2112 parent_counter = child_counter->parent;
2113 /*
2114 * It can happen that parent exits first, and has counters
2115 * that are still around due to the child reference. These
2116 * counters need to be zapped - but otherwise linger.
2117 */
d859e29f
PM
2118 if (parent_counter) {
2119 sync_child_counter(child_counter, parent_counter);
2120 list_for_each_entry_safe(sub, tmp, &child_counter->sibling_list,
2121 list_entry) {
4bcf349a 2122 if (sub->parent) {
d859e29f 2123 sync_child_counter(sub, sub->parent);
4bcf349a
PM
2124 kfree(sub);
2125 }
d859e29f 2126 }
65d37086 2127 kfree(child_counter);
4bcf349a 2128 }
9b51f66d
IM
2129}
2130
2131/*
d859e29f 2132 * When a child task exits, feed back counter values to parent counters.
9b51f66d 2133 *
d859e29f 2134 * Note: we may be running in child context, but the PID is not hashed
9b51f66d
IM
2135 * anymore so new counters will not be added.
2136 */
2137void perf_counter_exit_task(struct task_struct *child)
2138{
2139 struct perf_counter *child_counter, *tmp;
2140 struct perf_counter_context *child_ctx;
2141
2142 child_ctx = &child->perf_counter_ctx;
2143
2144 if (likely(!child_ctx->nr_counters))
2145 return;
2146
2147 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
2148 list_entry)
2149 __perf_counter_exit_task(child, child_counter, child_ctx);
2150}
2151
2152/*
2153 * Initialize the perf_counter context in task_struct
2154 */
2155void perf_counter_init_task(struct task_struct *child)
2156{
2157 struct perf_counter_context *child_ctx, *parent_ctx;
d859e29f 2158 struct perf_counter *counter;
9b51f66d 2159 struct task_struct *parent = current;
9b51f66d
IM
2160
2161 child_ctx = &child->perf_counter_ctx;
2162 parent_ctx = &parent->perf_counter_ctx;
2163
2164 __perf_counter_init_context(child_ctx, child);
2165
2166 /*
2167 * This is executed from the parent task context, so inherit
2168 * counters that have been marked for cloning:
2169 */
2170
2171 if (likely(!parent_ctx->nr_counters))
2172 return;
2173
2174 /*
2175 * Lock the parent list. No need to lock the child - not PID
2176 * hashed yet and not running, so nobody can access it.
2177 */
d859e29f 2178 mutex_lock(&parent_ctx->mutex);
9b51f66d
IM
2179
2180 /*
2181 * We dont have to disable NMIs - we are only looking at
2182 * the list, not manipulating it:
2183 */
2184 list_for_each_entry(counter, &parent_ctx->counter_list, list_entry) {
d859e29f 2185 if (!counter->hw_event.inherit)
9b51f66d
IM
2186 continue;
2187
d859e29f 2188 if (inherit_group(counter, parent,
9b51f66d
IM
2189 parent_ctx, child, child_ctx))
2190 break;
2191 }
2192
d859e29f 2193 mutex_unlock(&parent_ctx->mutex);
9b51f66d
IM
2194}
2195
04289bb9 2196static void __cpuinit perf_counter_init_cpu(int cpu)
0793a61d 2197{
04289bb9 2198 struct perf_cpu_context *cpuctx;
0793a61d 2199
04289bb9
IM
2200 cpuctx = &per_cpu(perf_cpu_context, cpu);
2201 __perf_counter_init_context(&cpuctx->ctx, NULL);
0793a61d
TG
2202
2203 mutex_lock(&perf_resource_mutex);
04289bb9 2204 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
0793a61d 2205 mutex_unlock(&perf_resource_mutex);
04289bb9 2206
01d0287f 2207 hw_perf_counter_setup(cpu);
0793a61d
TG
2208}
2209
2210#ifdef CONFIG_HOTPLUG_CPU
04289bb9 2211static void __perf_counter_exit_cpu(void *info)
0793a61d
TG
2212{
2213 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
2214 struct perf_counter_context *ctx = &cpuctx->ctx;
2215 struct perf_counter *counter, *tmp;
2216
04289bb9
IM
2217 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
2218 __perf_counter_remove_from_context(counter);
0793a61d 2219}
04289bb9 2220static void perf_counter_exit_cpu(int cpu)
0793a61d 2221{
d859e29f
PM
2222 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
2223 struct perf_counter_context *ctx = &cpuctx->ctx;
2224
2225 mutex_lock(&ctx->mutex);
04289bb9 2226 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
d859e29f 2227 mutex_unlock(&ctx->mutex);
0793a61d
TG
2228}
2229#else
04289bb9 2230static inline void perf_counter_exit_cpu(int cpu) { }
0793a61d
TG
2231#endif
2232
2233static int __cpuinit
2234perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
2235{
2236 unsigned int cpu = (long)hcpu;
2237
2238 switch (action) {
2239
2240 case CPU_UP_PREPARE:
2241 case CPU_UP_PREPARE_FROZEN:
04289bb9 2242 perf_counter_init_cpu(cpu);
0793a61d
TG
2243 break;
2244
2245 case CPU_DOWN_PREPARE:
2246 case CPU_DOWN_PREPARE_FROZEN:
04289bb9 2247 perf_counter_exit_cpu(cpu);
0793a61d
TG
2248 break;
2249
2250 default:
2251 break;
2252 }
2253
2254 return NOTIFY_OK;
2255}
2256
2257static struct notifier_block __cpuinitdata perf_cpu_nb = {
2258 .notifier_call = perf_cpu_notify,
2259};
2260
2261static int __init perf_counter_init(void)
2262{
2263 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
2264 (void *)(long)smp_processor_id());
2265 register_cpu_notifier(&perf_cpu_nb);
2266
2267 return 0;
2268}
2269early_initcall(perf_counter_init);
2270
2271static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
2272{
2273 return sprintf(buf, "%d\n", perf_reserved_percpu);
2274}
2275
2276static ssize_t
2277perf_set_reserve_percpu(struct sysdev_class *class,
2278 const char *buf,
2279 size_t count)
2280{
2281 struct perf_cpu_context *cpuctx;
2282 unsigned long val;
2283 int err, cpu, mpt;
2284
2285 err = strict_strtoul(buf, 10, &val);
2286 if (err)
2287 return err;
2288 if (val > perf_max_counters)
2289 return -EINVAL;
2290
2291 mutex_lock(&perf_resource_mutex);
2292 perf_reserved_percpu = val;
2293 for_each_online_cpu(cpu) {
2294 cpuctx = &per_cpu(perf_cpu_context, cpu);
2295 spin_lock_irq(&cpuctx->ctx.lock);
2296 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
2297 perf_max_counters - perf_reserved_percpu);
2298 cpuctx->max_pertask = mpt;
2299 spin_unlock_irq(&cpuctx->ctx.lock);
2300 }
2301 mutex_unlock(&perf_resource_mutex);
2302
2303 return count;
2304}
2305
2306static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
2307{
2308 return sprintf(buf, "%d\n", perf_overcommit);
2309}
2310
2311static ssize_t
2312perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
2313{
2314 unsigned long val;
2315 int err;
2316
2317 err = strict_strtoul(buf, 10, &val);
2318 if (err)
2319 return err;
2320 if (val > 1)
2321 return -EINVAL;
2322
2323 mutex_lock(&perf_resource_mutex);
2324 perf_overcommit = val;
2325 mutex_unlock(&perf_resource_mutex);
2326
2327 return count;
2328}
2329
2330static SYSDEV_CLASS_ATTR(
2331 reserve_percpu,
2332 0644,
2333 perf_show_reserve_percpu,
2334 perf_set_reserve_percpu
2335 );
2336
2337static SYSDEV_CLASS_ATTR(
2338 overcommit,
2339 0644,
2340 perf_show_overcommit,
2341 perf_set_overcommit
2342 );
2343
2344static struct attribute *perfclass_attrs[] = {
2345 &attr_reserve_percpu.attr,
2346 &attr_overcommit.attr,
2347 NULL
2348};
2349
2350static struct attribute_group perfclass_attr_group = {
2351 .attrs = perfclass_attrs,
2352 .name = "perf_counters",
2353};
2354
2355static int __init perf_counter_sysfs_init(void)
2356{
2357 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
2358 &perfclass_attr_group);
2359}
2360device_initcall(perf_counter_sysfs_init);