blob: a641eb753b8cc92b664966e3a6932c595f07b111 [file] [log] [blame]
Thomas Gleixner0793a612008-12-04 20:12:29 +01001/*
2 * Performance counter core code
3 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Paul Mackerrasc5dd0162009-04-30 09:48:16 +10007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Peter Zijlstra7b732a72009-03-23 18:22:10 +01008 *
9 * For licensing details see kernel-base/COPYING
Thomas Gleixner0793a612008-12-04 20:12:29 +010010 */
11
12#include <linux/fs.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010013#include <linux/mm.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010014#include <linux/cpu.h>
15#include <linux/smp.h>
Ingo Molnar04289bb2008-12-11 08:38:42 +010016#include <linux/file.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010017#include <linux/poll.h>
18#include <linux/sysfs.h>
Ingo Molnar22a4f652009-06-01 10:13:37 +020019#include <linux/dcache.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010020#include <linux/percpu.h>
Ingo Molnar22a4f652009-06-01 10:13:37 +020021#include <linux/ptrace.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010022#include <linux/vmstat.h>
23#include <linux/hardirq.h>
24#include <linux/rculist.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010025#include <linux/uaccess.h>
26#include <linux/syscalls.h>
27#include <linux/anon_inodes.h>
Ingo Molnaraa9c4c02008-12-17 14:10:57 +010028#include <linux/kernel_stat.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010029#include <linux/perf_counter.h>
30
Tim Blechmann4e193bd2009-03-14 14:29:25 +010031#include <asm/irq_regs.h>
32
Thomas Gleixner0793a612008-12-04 20:12:29 +010033/*
34 * Each CPU has a list of per CPU counters:
35 */
36DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context);
37
Ingo Molnar088e2852008-12-14 20:21:00 +010038int perf_max_counters __read_mostly = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +010039static int perf_reserved_percpu __read_mostly;
40static int perf_overcommit __read_mostly = 1;
41
Peter Zijlstra7fc23a52009-05-08 18:52:21 +020042static atomic_t nr_counters __read_mostly;
Peter Zijlstra60313eb2009-06-04 16:53:44 +020043static atomic_t nr_mmap_counters __read_mostly;
Peter Zijlstra60313eb2009-06-04 16:53:44 +020044static atomic_t nr_comm_counters __read_mostly;
Peter Zijlstra9ee318a2009-04-09 10:53:44 +020045
Peter Zijlstra07647712009-06-11 11:18:36 +020046/*
Peter Zijlstradf58ab22009-06-11 11:25:05 +020047 * perf counter paranoia level:
48 * 0 - not paranoid
49 * 1 - disallow cpu counters to unpriv
50 * 2 - disallow kernel profiling to unpriv
Peter Zijlstra07647712009-06-11 11:18:36 +020051 */
Peter Zijlstradf58ab22009-06-11 11:25:05 +020052int sysctl_perf_counter_paranoid __read_mostly;
Peter Zijlstra07647712009-06-11 11:18:36 +020053
54static inline bool perf_paranoid_cpu(void)
55{
56 return sysctl_perf_counter_paranoid > 0;
57}
58
59static inline bool perf_paranoid_kernel(void)
60{
61 return sysctl_perf_counter_paranoid > 1;
62}
63
Peter Zijlstra789f90f2009-05-15 15:19:27 +020064int sysctl_perf_counter_mlock __read_mostly = 512; /* 'free' kb per user */
Peter Zijlstradf58ab22009-06-11 11:25:05 +020065
66/*
67 * max perf counter sample rate
68 */
69int sysctl_perf_counter_sample_rate __read_mostly = 100000;
Peter Zijlstra1ccd1542009-04-09 10:53:45 +020070
Peter Zijlstraa96bbc12009-06-03 14:01:36 +020071static atomic64_t perf_counter_id;
72
Thomas Gleixner0793a612008-12-04 20:12:29 +010073/*
Ingo Molnar1dce8d92009-05-04 19:23:18 +020074 * Lock for (sysadmin-configurable) counter reservations:
Thomas Gleixner0793a612008-12-04 20:12:29 +010075 */
Ingo Molnar1dce8d92009-05-04 19:23:18 +020076static DEFINE_SPINLOCK(perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +010077
78/*
79 * Architecture provided APIs - weak aliases:
80 */
Robert Richter4aeb0b42009-04-29 12:47:03 +020081extern __weak const struct pmu *hw_perf_counter_init(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +010082{
Paul Mackerrasff6f0542009-01-09 16:19:25 +110083 return NULL;
Thomas Gleixner0793a612008-12-04 20:12:29 +010084}
85
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020086void __weak hw_perf_disable(void) { barrier(); }
87void __weak hw_perf_enable(void) { barrier(); }
88
Paul Mackerras01d02872009-01-14 13:44:19 +110089void __weak hw_perf_counter_setup(int cpu) { barrier(); }
Ingo Molnar22a4f652009-06-01 10:13:37 +020090
91int __weak
92hw_perf_group_sched_in(struct perf_counter *group_leader,
Paul Mackerras3cbed422009-01-09 16:43:42 +110093 struct perf_cpu_context *cpuctx,
94 struct perf_counter_context *ctx, int cpu)
95{
96 return 0;
97}
Thomas Gleixner0793a612008-12-04 20:12:29 +010098
Paul Mackerras4eb96fc2009-01-09 17:24:34 +110099void __weak perf_counter_print_debug(void) { }
100
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200101static DEFINE_PER_CPU(int, disable_count);
102
103void __perf_disable(void)
104{
105 __get_cpu_var(disable_count)++;
106}
107
108bool __perf_enable(void)
109{
110 return !--__get_cpu_var(disable_count);
111}
112
113void perf_disable(void)
114{
115 __perf_disable();
116 hw_perf_disable();
117}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200118
119void perf_enable(void)
120{
121 if (__perf_enable())
122 hw_perf_enable();
123}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200124
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000125static void get_ctx(struct perf_counter_context *ctx)
126{
Peter Zijlstrae5289d42009-06-19 13:22:51 +0200127 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000128}
129
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000130static void free_ctx(struct rcu_head *head)
131{
132 struct perf_counter_context *ctx;
133
134 ctx = container_of(head, struct perf_counter_context, rcu_head);
135 kfree(ctx);
136}
137
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000138static void put_ctx(struct perf_counter_context *ctx)
139{
Paul Mackerras564c2b22009-05-22 14:27:22 +1000140 if (atomic_dec_and_test(&ctx->refcount)) {
141 if (ctx->parent_ctx)
142 put_ctx(ctx->parent_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000143 if (ctx->task)
144 put_task_struct(ctx->task);
145 call_rcu(&ctx->rcu_head, free_ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +1000146 }
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000147}
148
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200149/*
Paul Mackerras25346b932009-06-01 17:48:12 +1000150 * Get the perf_counter_context for a task and lock it.
151 * This has to cope with with the fact that until it is locked,
152 * the context could get moved to another task.
153 */
Ingo Molnar22a4f652009-06-01 10:13:37 +0200154static struct perf_counter_context *
155perf_lock_task_context(struct task_struct *task, unsigned long *flags)
Paul Mackerras25346b932009-06-01 17:48:12 +1000156{
157 struct perf_counter_context *ctx;
158
159 rcu_read_lock();
160 retry:
161 ctx = rcu_dereference(task->perf_counter_ctxp);
162 if (ctx) {
163 /*
164 * If this context is a clone of another, it might
165 * get swapped for another underneath us by
166 * perf_counter_task_sched_out, though the
167 * rcu_read_lock() protects us from any context
168 * getting freed. Lock the context and check if it
169 * got swapped before we could get the lock, and retry
170 * if so. If we locked the right context, then it
171 * can't get swapped on us any more.
172 */
173 spin_lock_irqsave(&ctx->lock, *flags);
174 if (ctx != rcu_dereference(task->perf_counter_ctxp)) {
175 spin_unlock_irqrestore(&ctx->lock, *flags);
176 goto retry;
177 }
Peter Zijlstrab49a9e72009-06-19 17:39:33 +0200178
179 if (!atomic_inc_not_zero(&ctx->refcount)) {
180 spin_unlock_irqrestore(&ctx->lock, *flags);
181 ctx = NULL;
182 }
Paul Mackerras25346b932009-06-01 17:48:12 +1000183 }
184 rcu_read_unlock();
185 return ctx;
186}
187
188/*
189 * Get the context for a task and increment its pin_count so it
190 * can't get swapped to another task. This also increments its
191 * reference count so that the context can't get freed.
192 */
193static struct perf_counter_context *perf_pin_task_context(struct task_struct *task)
194{
195 struct perf_counter_context *ctx;
196 unsigned long flags;
197
198 ctx = perf_lock_task_context(task, &flags);
199 if (ctx) {
200 ++ctx->pin_count;
Paul Mackerras25346b932009-06-01 17:48:12 +1000201 spin_unlock_irqrestore(&ctx->lock, flags);
202 }
203 return ctx;
204}
205
206static void perf_unpin_context(struct perf_counter_context *ctx)
207{
208 unsigned long flags;
209
210 spin_lock_irqsave(&ctx->lock, flags);
211 --ctx->pin_count;
212 spin_unlock_irqrestore(&ctx->lock, flags);
213 put_ctx(ctx);
214}
215
216/*
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200217 * Add a counter from the lists for its context.
218 * Must be called with ctx->mutex and ctx->lock held.
219 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100220static void
221list_add_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
222{
223 struct perf_counter *group_leader = counter->group_leader;
224
225 /*
226 * Depending on whether it is a standalone or sibling counter,
227 * add it straight to the context's counter list, or to the group
228 * leader's sibling list:
229 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +0200230 if (group_leader == counter)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100231 list_add_tail(&counter->list_entry, &ctx->counter_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100232 else {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100233 list_add_tail(&counter->list_entry, &group_leader->sibling_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100234 group_leader->nr_siblings++;
235 }
Peter Zijlstra592903c2009-03-13 12:21:36 +0100236
237 list_add_rcu(&counter->event_entry, &ctx->event_list);
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200238 ctx->nr_counters++;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +0200239 if (counter->attr.inherit_stat)
240 ctx->nr_stat++;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100241}
242
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000243/*
244 * Remove a counter from the lists for its context.
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200245 * Must be called with ctx->mutex and ctx->lock held.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000246 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100247static void
248list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
249{
250 struct perf_counter *sibling, *tmp;
251
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000252 if (list_empty(&counter->list_entry))
253 return;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200254 ctx->nr_counters--;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +0200255 if (counter->attr.inherit_stat)
256 ctx->nr_stat--;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200257
Ingo Molnar04289bb2008-12-11 08:38:42 +0100258 list_del_init(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100259 list_del_rcu(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100260
Peter Zijlstra5c148192009-03-25 12:30:23 +0100261 if (counter->group_leader != counter)
262 counter->group_leader->nr_siblings--;
263
Ingo Molnar04289bb2008-12-11 08:38:42 +0100264 /*
265 * If this was a group counter with sibling counters then
266 * upgrade the siblings to singleton counters by adding them
267 * to the context list directly:
268 */
269 list_for_each_entry_safe(sibling, tmp,
270 &counter->sibling_list, list_entry) {
271
Peter Zijlstra75564232009-03-13 12:21:29 +0100272 list_move_tail(&sibling->list_entry, &ctx->counter_list);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100273 sibling->group_leader = sibling;
274 }
275}
276
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100277static void
278counter_sched_out(struct perf_counter *counter,
279 struct perf_cpu_context *cpuctx,
280 struct perf_counter_context *ctx)
281{
282 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
283 return;
284
285 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200286 counter->tstamp_stopped = ctx->time;
Robert Richter4aeb0b42009-04-29 12:47:03 +0200287 counter->pmu->disable(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100288 counter->oncpu = -1;
289
290 if (!is_software_counter(counter))
291 cpuctx->active_oncpu--;
292 ctx->nr_active--;
Peter Zijlstra0d486962009-06-02 19:22:16 +0200293 if (counter->attr.exclusive || !cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100294 cpuctx->exclusive = 0;
295}
296
Paul Mackerrasd859e292009-01-17 18:10:22 +1100297static void
298group_sched_out(struct perf_counter *group_counter,
299 struct perf_cpu_context *cpuctx,
300 struct perf_counter_context *ctx)
301{
302 struct perf_counter *counter;
303
304 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
305 return;
306
307 counter_sched_out(group_counter, cpuctx, ctx);
308
309 /*
310 * Schedule out siblings (if any):
311 */
312 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
313 counter_sched_out(counter, cpuctx, ctx);
314
Peter Zijlstra0d486962009-06-02 19:22:16 +0200315 if (group_counter->attr.exclusive)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100316 cpuctx->exclusive = 0;
317}
318
Thomas Gleixner0793a612008-12-04 20:12:29 +0100319/*
320 * Cross CPU call to remove a performance counter
321 *
322 * We disable the counter on the hardware level first. After that we
323 * remove it from the context list.
324 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100325static void __perf_counter_remove_from_context(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100326{
327 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
328 struct perf_counter *counter = info;
329 struct perf_counter_context *ctx = counter->ctx;
330
331 /*
332 * If this is a task context, we need to check whether it is
333 * the current task context of this cpu. If not it has been
334 * scheduled out before the smp call arrived.
335 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200336 if (ctx->task && cpuctx->task_ctx != ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100337 return;
338
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200339 spin_lock(&ctx->lock);
Ingo Molnar34adc802009-05-20 20:13:28 +0200340 /*
341 * Protect the list operation against NMI by disabling the
342 * counters on a global level.
343 */
344 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100345
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100346 counter_sched_out(counter, cpuctx, ctx);
347
Ingo Molnar04289bb2008-12-11 08:38:42 +0100348 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100349
350 if (!ctx->task) {
351 /*
352 * Allow more per task counters with respect to the
353 * reservation:
354 */
355 cpuctx->max_pertask =
356 min(perf_max_counters - ctx->nr_counters,
357 perf_max_counters - perf_reserved_percpu);
358 }
359
Ingo Molnar34adc802009-05-20 20:13:28 +0200360 perf_enable();
Peter Zijlstra665c2142009-05-29 14:51:57 +0200361 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100362}
363
364
365/*
366 * Remove the counter from a task's (or a CPU's) list of counters.
367 *
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200368 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100369 *
370 * CPU counters are removed with a smp call. For task counters we only
371 * call when the task is on a CPU.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000372 *
373 * If counter->ctx is a cloned context, callers must make sure that
374 * every task struct that counter->ctx->task could possibly point to
375 * remains valid. This is OK when called from perf_release since
376 * that only calls us on the top-level context, which can't be a clone.
377 * When called from perf_counter_exit_task, it's OK because the
378 * context has been detached from its task.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100379 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100380static void perf_counter_remove_from_context(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100381{
382 struct perf_counter_context *ctx = counter->ctx;
383 struct task_struct *task = ctx->task;
384
385 if (!task) {
386 /*
387 * Per cpu counters are removed via an smp call and
388 * the removal is always sucessful.
389 */
390 smp_call_function_single(counter->cpu,
Ingo Molnar04289bb2008-12-11 08:38:42 +0100391 __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100392 counter, 1);
393 return;
394 }
395
396retry:
Ingo Molnar04289bb2008-12-11 08:38:42 +0100397 task_oncpu_function_call(task, __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100398 counter);
399
400 spin_lock_irq(&ctx->lock);
401 /*
402 * If the context is active we need to retry the smp call.
403 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100404 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100405 spin_unlock_irq(&ctx->lock);
406 goto retry;
407 }
408
409 /*
410 * The lock prevents that this context is scheduled in so we
Ingo Molnar04289bb2008-12-11 08:38:42 +0100411 * can remove the counter safely, if the call above did not
Thomas Gleixner0793a612008-12-04 20:12:29 +0100412 * succeed.
413 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100414 if (!list_empty(&counter->list_entry)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100415 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100416 }
417 spin_unlock_irq(&ctx->lock);
418}
419
Peter Zijlstra4af49982009-04-06 11:45:10 +0200420static inline u64 perf_clock(void)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100421{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200422 return cpu_clock(smp_processor_id());
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100423}
424
425/*
426 * Update the record of the current time in a context.
427 */
Peter Zijlstra4af49982009-04-06 11:45:10 +0200428static void update_context_time(struct perf_counter_context *ctx)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100429{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200430 u64 now = perf_clock();
431
432 ctx->time += now - ctx->timestamp;
433 ctx->timestamp = now;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100434}
435
436/*
437 * Update the total_time_enabled and total_time_running fields for a counter.
438 */
439static void update_counter_times(struct perf_counter *counter)
440{
441 struct perf_counter_context *ctx = counter->ctx;
442 u64 run_end;
443
Peter Zijlstra4af49982009-04-06 11:45:10 +0200444 if (counter->state < PERF_COUNTER_STATE_INACTIVE)
445 return;
446
447 counter->total_time_enabled = ctx->time - counter->tstamp_enabled;
448
449 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
450 run_end = counter->tstamp_stopped;
451 else
452 run_end = ctx->time;
453
454 counter->total_time_running = run_end - counter->tstamp_running;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100455}
456
457/*
458 * Update total_time_enabled and total_time_running for all counters in a group.
459 */
460static void update_group_times(struct perf_counter *leader)
461{
462 struct perf_counter *counter;
463
464 update_counter_times(leader);
465 list_for_each_entry(counter, &leader->sibling_list, list_entry)
466 update_counter_times(counter);
467}
468
469/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100470 * Cross CPU call to disable a performance counter
471 */
472static void __perf_counter_disable(void *info)
473{
474 struct perf_counter *counter = info;
475 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
476 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100477
478 /*
479 * If this is a per-task counter, need to check whether this
480 * counter's task is the current task on this cpu.
481 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200482 if (ctx->task && cpuctx->task_ctx != ctx)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100483 return;
484
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200485 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100486
487 /*
488 * If the counter is on, turn it off.
489 * If it is in error state, leave it in error state.
490 */
491 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
Peter Zijlstra4af49982009-04-06 11:45:10 +0200492 update_context_time(ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100493 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100494 if (counter == counter->group_leader)
495 group_sched_out(counter, cpuctx, ctx);
496 else
497 counter_sched_out(counter, cpuctx, ctx);
498 counter->state = PERF_COUNTER_STATE_OFF;
499 }
500
Peter Zijlstra665c2142009-05-29 14:51:57 +0200501 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100502}
503
504/*
505 * Disable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000506 *
507 * If counter->ctx is a cloned context, callers must make sure that
508 * every task struct that counter->ctx->task could possibly point to
509 * remains valid. This condition is satisifed when called through
510 * perf_counter_for_each_child or perf_counter_for_each because they
511 * hold the top-level counter's child_mutex, so any descendant that
512 * goes to exit will block in sync_child_counter.
513 * When called from perf_pending_counter it's OK because counter->ctx
514 * is the current context on this CPU and preemption is disabled,
515 * hence we can't get into perf_counter_task_sched_out for this context.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100516 */
517static void perf_counter_disable(struct perf_counter *counter)
518{
519 struct perf_counter_context *ctx = counter->ctx;
520 struct task_struct *task = ctx->task;
521
522 if (!task) {
523 /*
524 * Disable the counter on the cpu that it's on
525 */
526 smp_call_function_single(counter->cpu, __perf_counter_disable,
527 counter, 1);
528 return;
529 }
530
531 retry:
532 task_oncpu_function_call(task, __perf_counter_disable, counter);
533
534 spin_lock_irq(&ctx->lock);
535 /*
536 * If the counter is still active, we need to retry the cross-call.
537 */
538 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
539 spin_unlock_irq(&ctx->lock);
540 goto retry;
541 }
542
543 /*
544 * Since we have the lock this context can't be scheduled
545 * in, so we can change the state safely.
546 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100547 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
548 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100549 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100550 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100551
552 spin_unlock_irq(&ctx->lock);
553}
554
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100555static int
556counter_sched_in(struct perf_counter *counter,
557 struct perf_cpu_context *cpuctx,
558 struct perf_counter_context *ctx,
559 int cpu)
560{
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100561 if (counter->state <= PERF_COUNTER_STATE_OFF)
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100562 return 0;
563
564 counter->state = PERF_COUNTER_STATE_ACTIVE;
565 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
566 /*
567 * The new state must be visible before we turn it on in the hardware:
568 */
569 smp_wmb();
570
Robert Richter4aeb0b42009-04-29 12:47:03 +0200571 if (counter->pmu->enable(counter)) {
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100572 counter->state = PERF_COUNTER_STATE_INACTIVE;
573 counter->oncpu = -1;
574 return -EAGAIN;
575 }
576
Peter Zijlstra4af49982009-04-06 11:45:10 +0200577 counter->tstamp_running += ctx->time - counter->tstamp_stopped;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100578
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100579 if (!is_software_counter(counter))
580 cpuctx->active_oncpu++;
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100581 ctx->nr_active++;
582
Peter Zijlstra0d486962009-06-02 19:22:16 +0200583 if (counter->attr.exclusive)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100584 cpuctx->exclusive = 1;
585
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100586 return 0;
587}
588
Paul Mackerras6751b712009-05-11 12:08:02 +1000589static int
590group_sched_in(struct perf_counter *group_counter,
591 struct perf_cpu_context *cpuctx,
592 struct perf_counter_context *ctx,
593 int cpu)
594{
595 struct perf_counter *counter, *partial_group;
596 int ret;
597
598 if (group_counter->state == PERF_COUNTER_STATE_OFF)
599 return 0;
600
601 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
602 if (ret)
603 return ret < 0 ? ret : 0;
604
Paul Mackerras6751b712009-05-11 12:08:02 +1000605 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
606 return -EAGAIN;
607
608 /*
609 * Schedule in siblings as one group (if any):
610 */
611 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
Paul Mackerras6751b712009-05-11 12:08:02 +1000612 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
613 partial_group = counter;
614 goto group_error;
615 }
616 }
617
618 return 0;
619
620group_error:
621 /*
622 * Groups can be scheduled in as one unit only, so undo any
623 * partial group before returning:
624 */
625 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
626 if (counter == partial_group)
627 break;
628 counter_sched_out(counter, cpuctx, ctx);
629 }
630 counter_sched_out(group_counter, cpuctx, ctx);
631
632 return -EAGAIN;
633}
634
Thomas Gleixner0793a612008-12-04 20:12:29 +0100635/*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100636 * Return 1 for a group consisting entirely of software counters,
637 * 0 if the group contains any hardware counters.
638 */
639static int is_software_only_group(struct perf_counter *leader)
640{
641 struct perf_counter *counter;
642
643 if (!is_software_counter(leader))
644 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100645
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100646 list_for_each_entry(counter, &leader->sibling_list, list_entry)
647 if (!is_software_counter(counter))
648 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100649
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100650 return 1;
651}
652
653/*
654 * Work out whether we can put this counter group on the CPU now.
655 */
656static int group_can_go_on(struct perf_counter *counter,
657 struct perf_cpu_context *cpuctx,
658 int can_add_hw)
659{
660 /*
661 * Groups consisting entirely of software counters can always go on.
662 */
663 if (is_software_only_group(counter))
664 return 1;
665 /*
666 * If an exclusive group is already on, no other hardware
667 * counters can go on.
668 */
669 if (cpuctx->exclusive)
670 return 0;
671 /*
672 * If this group is exclusive and there are already
673 * counters on the CPU, it can't go on.
674 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200675 if (counter->attr.exclusive && cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100676 return 0;
677 /*
678 * Otherwise, try to add it if all previous groups were able
679 * to go on.
680 */
681 return can_add_hw;
682}
683
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100684static void add_counter_to_ctx(struct perf_counter *counter,
685 struct perf_counter_context *ctx)
686{
687 list_add_counter(counter, ctx);
Peter Zijlstra4af49982009-04-06 11:45:10 +0200688 counter->tstamp_enabled = ctx->time;
689 counter->tstamp_running = ctx->time;
690 counter->tstamp_stopped = ctx->time;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100691}
692
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100693/*
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100694 * Cross CPU call to install and enable a performance counter
Peter Zijlstra682076a2009-05-23 18:28:57 +0200695 *
696 * Must be called with ctx->mutex held
Thomas Gleixner0793a612008-12-04 20:12:29 +0100697 */
698static void __perf_install_in_context(void *info)
699{
700 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
701 struct perf_counter *counter = info;
702 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100703 struct perf_counter *leader = counter->group_leader;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100704 int cpu = smp_processor_id();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100705 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100706
707 /*
708 * If this is a task context, we need to check whether it is
709 * the current task context of this cpu. If not it has been
710 * scheduled out before the smp call arrived.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000711 * Or possibly this is the right context but it isn't
712 * on this cpu because it had no counters.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100713 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000714 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200715 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000716 return;
717 cpuctx->task_ctx = ctx;
718 }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100719
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200720 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000721 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200722 update_context_time(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100723
724 /*
725 * Protect the list operation against NMI by disabling the
726 * counters on a global level. NOP for non NMI based counters.
727 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200728 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100729
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100730 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100731
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100732 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100733 * Don't put the counter on if it is disabled or if
734 * it is in a group and the group isn't on.
735 */
736 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
737 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
738 goto unlock;
739
740 /*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100741 * An exclusive counter can't go on if there are already active
742 * hardware counters, and no hardware counter can go on if there
743 * is already an exclusive counter on.
744 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100745 if (!group_can_go_on(counter, cpuctx, 1))
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100746 err = -EEXIST;
747 else
748 err = counter_sched_in(counter, cpuctx, ctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100749
Paul Mackerrasd859e292009-01-17 18:10:22 +1100750 if (err) {
751 /*
752 * This counter couldn't go on. If it is in a group
753 * then we have to pull the whole group off.
754 * If the counter group is pinned then put it in error state.
755 */
756 if (leader != counter)
757 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200758 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100759 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100760 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100761 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100762 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100763
764 if (!err && !ctx->task && cpuctx->max_pertask)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100765 cpuctx->max_pertask--;
766
Paul Mackerrasd859e292009-01-17 18:10:22 +1100767 unlock:
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200768 perf_enable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100769
Peter Zijlstra665c2142009-05-29 14:51:57 +0200770 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100771}
772
773/*
774 * Attach a performance counter to a context
775 *
776 * First we add the counter to the list with the hardware enable bit
777 * in counter->hw_config cleared.
778 *
779 * If the counter is attached to a task which is on a CPU we use a smp
780 * call to enable it in the task context. The task might have been
781 * scheduled away, but we check this in the smp call again.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100782 *
783 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100784 */
785static void
786perf_install_in_context(struct perf_counter_context *ctx,
787 struct perf_counter *counter,
788 int cpu)
789{
790 struct task_struct *task = ctx->task;
791
Thomas Gleixner0793a612008-12-04 20:12:29 +0100792 if (!task) {
793 /*
794 * Per cpu counters are installed via an smp call and
795 * the install is always sucessful.
796 */
797 smp_call_function_single(cpu, __perf_install_in_context,
798 counter, 1);
799 return;
800 }
801
Thomas Gleixner0793a612008-12-04 20:12:29 +0100802retry:
803 task_oncpu_function_call(task, __perf_install_in_context,
804 counter);
805
806 spin_lock_irq(&ctx->lock);
807 /*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100808 * we need to retry the smp call.
809 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100810 if (ctx->is_active && list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100811 spin_unlock_irq(&ctx->lock);
812 goto retry;
813 }
814
815 /*
816 * The lock prevents that this context is scheduled in so we
817 * can add the counter safely, if it the call above did not
818 * succeed.
819 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100820 if (list_empty(&counter->list_entry))
821 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100822 spin_unlock_irq(&ctx->lock);
823}
824
Paul Mackerrasd859e292009-01-17 18:10:22 +1100825/*
826 * Cross CPU call to enable a performance counter
827 */
828static void __perf_counter_enable(void *info)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100829{
Paul Mackerrasd859e292009-01-17 18:10:22 +1100830 struct perf_counter *counter = info;
831 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
832 struct perf_counter_context *ctx = counter->ctx;
833 struct perf_counter *leader = counter->group_leader;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100834 int err;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100835
836 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100837 * If this is a per-task counter, need to check whether this
838 * counter's task is the current task on this cpu.
Ingo Molnar04289bb2008-12-11 08:38:42 +0100839 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000840 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200841 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000842 return;
843 cpuctx->task_ctx = ctx;
844 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100845
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200846 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000847 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200848 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100849
850 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
851 goto unlock;
852 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200853 counter->tstamp_enabled = ctx->time - counter->total_time_enabled;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100854
855 /*
856 * If the counter is in a group and isn't the group leader,
857 * then don't put it on unless the group is on.
858 */
859 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
860 goto unlock;
861
Paul Mackerrase758a332009-05-12 21:59:01 +1000862 if (!group_can_go_on(counter, cpuctx, 1)) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100863 err = -EEXIST;
Paul Mackerrase758a332009-05-12 21:59:01 +1000864 } else {
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200865 perf_disable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000866 if (counter == leader)
867 err = group_sched_in(counter, cpuctx, ctx,
868 smp_processor_id());
869 else
870 err = counter_sched_in(counter, cpuctx, ctx,
871 smp_processor_id());
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200872 perf_enable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000873 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100874
875 if (err) {
876 /*
877 * If this counter can't go on and it's part of a
878 * group, then the whole group has to come off.
879 */
880 if (leader != counter)
881 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200882 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100883 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100884 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100885 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100886 }
887
888 unlock:
Peter Zijlstra665c2142009-05-29 14:51:57 +0200889 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100890}
891
892/*
893 * Enable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000894 *
895 * If counter->ctx is a cloned context, callers must make sure that
896 * every task struct that counter->ctx->task could possibly point to
897 * remains valid. This condition is satisfied when called through
898 * perf_counter_for_each_child or perf_counter_for_each as described
899 * for perf_counter_disable.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100900 */
901static void perf_counter_enable(struct perf_counter *counter)
902{
903 struct perf_counter_context *ctx = counter->ctx;
904 struct task_struct *task = ctx->task;
905
906 if (!task) {
907 /*
908 * Enable the counter on the cpu that it's on
909 */
910 smp_call_function_single(counter->cpu, __perf_counter_enable,
911 counter, 1);
912 return;
913 }
914
915 spin_lock_irq(&ctx->lock);
916 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
917 goto out;
918
919 /*
920 * If the counter is in error state, clear that first.
921 * That way, if we see the counter in error state below, we
922 * know that it has gone back into error state, as distinct
923 * from the task having been scheduled away before the
924 * cross-call arrived.
925 */
926 if (counter->state == PERF_COUNTER_STATE_ERROR)
927 counter->state = PERF_COUNTER_STATE_OFF;
928
929 retry:
930 spin_unlock_irq(&ctx->lock);
931 task_oncpu_function_call(task, __perf_counter_enable, counter);
932
933 spin_lock_irq(&ctx->lock);
934
935 /*
936 * If the context is active and the counter is still off,
937 * we need to retry the cross-call.
938 */
939 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
940 goto retry;
941
942 /*
943 * Since we have the lock this context can't be scheduled
944 * in, so we can change the state safely.
945 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100946 if (counter->state == PERF_COUNTER_STATE_OFF) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100947 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200948 counter->tstamp_enabled =
949 ctx->time - counter->total_time_enabled;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100950 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100951 out:
952 spin_unlock_irq(&ctx->lock);
953}
954
Peter Zijlstra2023b352009-05-05 17:50:26 +0200955static int perf_counter_refresh(struct perf_counter *counter, int refresh)
Peter Zijlstra79f14642009-04-06 11:45:07 +0200956{
Peter Zijlstra2023b352009-05-05 17:50:26 +0200957 /*
958 * not supported on inherited counters
959 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200960 if (counter->attr.inherit)
Peter Zijlstra2023b352009-05-05 17:50:26 +0200961 return -EINVAL;
962
Peter Zijlstra79f14642009-04-06 11:45:07 +0200963 atomic_add(refresh, &counter->event_limit);
964 perf_counter_enable(counter);
Peter Zijlstra2023b352009-05-05 17:50:26 +0200965
966 return 0;
Peter Zijlstra79f14642009-04-06 11:45:07 +0200967}
968
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100969void __perf_counter_sched_out(struct perf_counter_context *ctx,
970 struct perf_cpu_context *cpuctx)
971{
972 struct perf_counter *counter;
973
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100974 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100975 ctx->is_active = 0;
976 if (likely(!ctx->nr_counters))
977 goto out;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200978 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100979
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200980 perf_disable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100981 if (ctx->nr_active) {
Peter Zijlstraafedadf2009-05-20 12:21:22 +0200982 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
983 if (counter != counter->group_leader)
984 counter_sched_out(counter, cpuctx, ctx);
985 else
986 group_sched_out(counter, cpuctx, ctx);
987 }
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100988 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200989 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +1100990 out:
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100991 spin_unlock(&ctx->lock);
992}
993
Thomas Gleixner0793a612008-12-04 20:12:29 +0100994/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000995 * Test whether two contexts are equivalent, i.e. whether they
996 * have both been cloned from the same version of the same context
997 * and they both have the same number of enabled counters.
998 * If the number of enabled counters is the same, then the set
999 * of enabled counters should be the same, because these are both
1000 * inherited contexts, therefore we can't access individual counters
1001 * in them directly with an fd; we can only enable/disable all
1002 * counters via prctl, or enable/disable all counters in a family
1003 * via ioctl, which will have the same effect on both contexts.
1004 */
1005static int context_equiv(struct perf_counter_context *ctx1,
1006 struct perf_counter_context *ctx2)
1007{
1008 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001009 && ctx1->parent_gen == ctx2->parent_gen
Paul Mackerras25346b932009-06-01 17:48:12 +10001010 && !ctx1->pin_count && !ctx2->pin_count;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001011}
1012
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001013static void __perf_counter_read(void *counter);
1014
1015static void __perf_counter_sync_stat(struct perf_counter *counter,
1016 struct perf_counter *next_counter)
1017{
1018 u64 value;
1019
1020 if (!counter->attr.inherit_stat)
1021 return;
1022
1023 /*
1024 * Update the counter value, we cannot use perf_counter_read()
1025 * because we're in the middle of a context switch and have IRQs
1026 * disabled, which upsets smp_call_function_single(), however
1027 * we know the counter must be on the current CPU, therefore we
1028 * don't need to use it.
1029 */
1030 switch (counter->state) {
1031 case PERF_COUNTER_STATE_ACTIVE:
1032 __perf_counter_read(counter);
1033 break;
1034
1035 case PERF_COUNTER_STATE_INACTIVE:
1036 update_counter_times(counter);
1037 break;
1038
1039 default:
1040 break;
1041 }
1042
1043 /*
1044 * In order to keep per-task stats reliable we need to flip the counter
1045 * values when we flip the contexts.
1046 */
1047 value = atomic64_read(&next_counter->count);
1048 value = atomic64_xchg(&counter->count, value);
1049 atomic64_set(&next_counter->count, value);
1050
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001051 swap(counter->total_time_enabled, next_counter->total_time_enabled);
1052 swap(counter->total_time_running, next_counter->total_time_running);
1053
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001054 /*
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001055 * Since we swizzled the values, update the user visible data too.
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001056 */
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001057 perf_counter_update_userpage(counter);
1058 perf_counter_update_userpage(next_counter);
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001059}
1060
1061#define list_next_entry(pos, member) \
1062 list_entry(pos->member.next, typeof(*pos), member)
1063
1064static void perf_counter_sync_stat(struct perf_counter_context *ctx,
1065 struct perf_counter_context *next_ctx)
1066{
1067 struct perf_counter *counter, *next_counter;
1068
1069 if (!ctx->nr_stat)
1070 return;
1071
1072 counter = list_first_entry(&ctx->event_list,
1073 struct perf_counter, event_entry);
1074
1075 next_counter = list_first_entry(&next_ctx->event_list,
1076 struct perf_counter, event_entry);
1077
1078 while (&counter->event_entry != &ctx->event_list &&
1079 &next_counter->event_entry != &next_ctx->event_list) {
1080
1081 __perf_counter_sync_stat(counter, next_counter);
1082
1083 counter = list_next_entry(counter, event_entry);
1084 next_counter = list_next_entry(counter, event_entry);
1085 }
1086}
1087
Paul Mackerras564c2b22009-05-22 14:27:22 +10001088/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001089 * Called from scheduler to remove the counters of the current task,
1090 * with interrupts disabled.
1091 *
1092 * We stop each counter and update the counter value in counter->count.
1093 *
Ingo Molnar76715812008-12-17 14:20:28 +01001094 * This does not protect us against NMI, but disable()
Thomas Gleixner0793a612008-12-04 20:12:29 +01001095 * sets the disabled bit in the control field of counter _before_
1096 * accessing the counter control register. If a NMI hits, then it will
1097 * not restart the counter.
1098 */
Paul Mackerras564c2b22009-05-22 14:27:22 +10001099void perf_counter_task_sched_out(struct task_struct *task,
1100 struct task_struct *next, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001101{
1102 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001103 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001104 struct perf_counter_context *next_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001105 struct perf_counter_context *parent;
Peter Zijlstra4a0deca2009-03-19 20:26:12 +01001106 struct pt_regs *regs;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001107 int do_switch = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001108
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001109 regs = task_pt_regs(task);
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02001110 perf_swcounter_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 1, regs, 0);
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001111
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001112 if (likely(!ctx || !cpuctx->task_ctx))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001113 return;
1114
Peter Zijlstrabce379b2009-04-06 11:45:13 +02001115 update_context_time(ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001116
1117 rcu_read_lock();
1118 parent = rcu_dereference(ctx->parent_ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001119 next_ctx = next->perf_counter_ctxp;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001120 if (parent && next_ctx &&
1121 rcu_dereference(next_ctx->parent_ctx) == parent) {
1122 /*
1123 * Looks like the two contexts are clones, so we might be
1124 * able to optimize the context switch. We lock both
1125 * contexts and check that they are clones under the
1126 * lock (including re-checking that neither has been
1127 * uncloned in the meantime). It doesn't matter which
1128 * order we take the locks because no other cpu could
1129 * be trying to lock both of these tasks.
1130 */
1131 spin_lock(&ctx->lock);
1132 spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
1133 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra665c2142009-05-29 14:51:57 +02001134 /*
1135 * XXX do we need a memory barrier of sorts
1136 * wrt to rcu_dereference() of perf_counter_ctxp
1137 */
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001138 task->perf_counter_ctxp = next_ctx;
1139 next->perf_counter_ctxp = ctx;
1140 ctx->task = next;
1141 next_ctx->task = task;
1142 do_switch = 0;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001143
1144 perf_counter_sync_stat(ctx, next_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001145 }
1146 spin_unlock(&next_ctx->lock);
1147 spin_unlock(&ctx->lock);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001148 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001149 rcu_read_unlock();
Paul Mackerras564c2b22009-05-22 14:27:22 +10001150
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001151 if (do_switch) {
1152 __perf_counter_sched_out(ctx, cpuctx);
1153 cpuctx->task_ctx = NULL;
1154 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001155}
1156
Peter Zijlstra665c2142009-05-29 14:51:57 +02001157/*
1158 * Called with IRQs disabled
1159 */
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001160static void __perf_counter_task_sched_out(struct perf_counter_context *ctx)
1161{
1162 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
1163
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001164 if (!cpuctx->task_ctx)
1165 return;
Ingo Molnar012b84d2009-05-17 11:08:41 +02001166
1167 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1168 return;
1169
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001170 __perf_counter_sched_out(ctx, cpuctx);
1171 cpuctx->task_ctx = NULL;
1172}
1173
Peter Zijlstra665c2142009-05-29 14:51:57 +02001174/*
1175 * Called with IRQs disabled
1176 */
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001177static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
Ingo Molnar04289bb2008-12-11 08:38:42 +01001178{
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001179 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001180}
1181
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001182static void
1183__perf_counter_sched_in(struct perf_counter_context *ctx,
1184 struct perf_cpu_context *cpuctx, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001185{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001186 struct perf_counter *counter;
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001187 int can_add_hw = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001188
Thomas Gleixner0793a612008-12-04 20:12:29 +01001189 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001190 ctx->is_active = 1;
1191 if (likely(!ctx->nr_counters))
1192 goto out;
1193
Peter Zijlstra4af49982009-04-06 11:45:10 +02001194 ctx->timestamp = perf_clock();
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001195
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001196 perf_disable();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001197
1198 /*
1199 * First go through the list and put on any pinned groups
1200 * in order to give them the best chance of going on.
1201 */
Ingo Molnar04289bb2008-12-11 08:38:42 +01001202 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001203 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001204 !counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001205 continue;
1206 if (counter->cpu != -1 && counter->cpu != cpu)
1207 continue;
1208
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001209 if (counter != counter->group_leader)
1210 counter_sched_in(counter, cpuctx, ctx, cpu);
1211 else {
1212 if (group_can_go_on(counter, cpuctx, 1))
1213 group_sched_in(counter, cpuctx, ctx, cpu);
1214 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001215
1216 /*
1217 * If this pinned group hasn't been scheduled,
1218 * put it in error state.
1219 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001220 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1221 update_group_times(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001222 counter->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001223 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001224 }
1225
1226 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1227 /*
1228 * Ignore counters in OFF or ERROR state, and
1229 * ignore pinned counters since we did them already.
1230 */
1231 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001232 counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001233 continue;
1234
Ingo Molnar04289bb2008-12-11 08:38:42 +01001235 /*
1236 * Listen to the 'cpu' scheduling filter constraint
1237 * of counters:
1238 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01001239 if (counter->cpu != -1 && counter->cpu != cpu)
1240 continue;
1241
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001242 if (counter != counter->group_leader) {
1243 if (counter_sched_in(counter, cpuctx, ctx, cpu))
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001244 can_add_hw = 0;
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001245 } else {
1246 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
1247 if (group_sched_in(counter, cpuctx, ctx, cpu))
1248 can_add_hw = 0;
1249 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001250 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001251 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001252 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001253 out:
Thomas Gleixner0793a612008-12-04 20:12:29 +01001254 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001255}
Ingo Molnar04289bb2008-12-11 08:38:42 +01001256
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001257/*
1258 * Called from scheduler to add the counters of the current task
1259 * with interrupts disabled.
1260 *
1261 * We restore the counter value and then enable it.
1262 *
1263 * This does not protect us against NMI, but enable()
1264 * sets the enabled bit in the control field of counter _before_
1265 * accessing the counter control register. If a NMI hits, then it will
1266 * keep the counter running.
1267 */
1268void perf_counter_task_sched_in(struct task_struct *task, int cpu)
1269{
1270 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001271 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001272
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001273 if (likely(!ctx))
1274 return;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001275 if (cpuctx->task_ctx == ctx)
1276 return;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001277 __perf_counter_sched_in(ctx, cpuctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001278 cpuctx->task_ctx = ctx;
1279}
1280
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001281static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
1282{
1283 struct perf_counter_context *ctx = &cpuctx->ctx;
1284
1285 __perf_counter_sched_in(ctx, cpuctx, cpu);
1286}
1287
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001288#define MAX_INTERRUPTS (~0ULL)
1289
1290static void perf_log_throttle(struct perf_counter *counter, int enable);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001291static void perf_log_period(struct perf_counter *counter, u64 period);
1292
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001293static void perf_adjust_period(struct perf_counter *counter, u64 events)
1294{
1295 struct hw_perf_counter *hwc = &counter->hw;
1296 u64 period, sample_period;
1297 s64 delta;
1298
1299 events *= hwc->sample_period;
1300 period = div64_u64(events, counter->attr.sample_freq);
1301
1302 delta = (s64)(period - hwc->sample_period);
1303 delta = (delta + 7) / 8; /* low pass filter */
1304
1305 sample_period = hwc->sample_period + delta;
1306
1307 if (!sample_period)
1308 sample_period = 1;
1309
1310 perf_log_period(counter, sample_period);
1311
1312 hwc->sample_period = sample_period;
1313}
1314
1315static void perf_ctx_adjust_freq(struct perf_counter_context *ctx)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001316{
1317 struct perf_counter *counter;
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001318 struct hw_perf_counter *hwc;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001319 u64 interrupts, freq;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001320
1321 spin_lock(&ctx->lock);
1322 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1323 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1324 continue;
1325
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001326 hwc = &counter->hw;
1327
1328 interrupts = hwc->interrupts;
1329 hwc->interrupts = 0;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001330
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001331 /*
1332 * unthrottle counters on the tick
1333 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001334 if (interrupts == MAX_INTERRUPTS) {
1335 perf_log_throttle(counter, 1);
1336 counter->pmu->unthrottle(counter);
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001337 interrupts = 2*sysctl_perf_counter_sample_rate/HZ;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001338 }
1339
Peter Zijlstra0d486962009-06-02 19:22:16 +02001340 if (!counter->attr.freq || !counter->attr.sample_freq)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001341 continue;
1342
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001343 /*
1344 * if the specified freq < HZ then we need to skip ticks
1345 */
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001346 if (counter->attr.sample_freq < HZ) {
1347 freq = counter->attr.sample_freq;
1348
1349 hwc->freq_count += freq;
1350 hwc->freq_interrupts += interrupts;
1351
1352 if (hwc->freq_count < HZ)
1353 continue;
1354
1355 interrupts = hwc->freq_interrupts;
1356 hwc->freq_interrupts = 0;
1357 hwc->freq_count -= HZ;
1358 } else
1359 freq = HZ;
1360
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001361 perf_adjust_period(counter, freq * interrupts);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001362
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001363 /*
1364 * In order to avoid being stalled by an (accidental) huge
1365 * sample period, force reset the sample period if we didn't
1366 * get any events in this freq period.
1367 */
1368 if (!interrupts) {
1369 perf_disable();
1370 counter->pmu->disable(counter);
Paul Mackerras87847b82009-06-13 17:06:50 +10001371 atomic64_set(&hwc->period_left, 0);
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001372 counter->pmu->enable(counter);
1373 perf_enable();
1374 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001375 }
1376 spin_unlock(&ctx->lock);
1377}
1378
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001379/*
1380 * Round-robin a context's counters:
1381 */
1382static void rotate_ctx(struct perf_counter_context *ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001383{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001384 struct perf_counter *counter;
1385
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001386 if (!ctx->nr_counters)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001387 return;
1388
Thomas Gleixner0793a612008-12-04 20:12:29 +01001389 spin_lock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001390 /*
Ingo Molnar04289bb2008-12-11 08:38:42 +01001391 * Rotate the first entry last (works just fine for group counters too):
Thomas Gleixner0793a612008-12-04 20:12:29 +01001392 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001393 perf_disable();
Ingo Molnar04289bb2008-12-11 08:38:42 +01001394 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Peter Zijlstra75564232009-03-13 12:21:29 +01001395 list_move_tail(&counter->list_entry, &ctx->counter_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001396 break;
1397 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001398 perf_enable();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001399
1400 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001401}
Thomas Gleixner0793a612008-12-04 20:12:29 +01001402
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001403void perf_counter_task_tick(struct task_struct *curr, int cpu)
1404{
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001405 struct perf_cpu_context *cpuctx;
1406 struct perf_counter_context *ctx;
1407
1408 if (!atomic_read(&nr_counters))
1409 return;
1410
1411 cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001412 ctx = curr->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001413
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001414 perf_ctx_adjust_freq(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001415 if (ctx)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001416 perf_ctx_adjust_freq(ctx);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001417
Ingo Molnarb82914c2009-05-04 18:54:32 +02001418 perf_counter_cpu_sched_out(cpuctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001419 if (ctx)
1420 __perf_counter_task_sched_out(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001421
Ingo Molnarb82914c2009-05-04 18:54:32 +02001422 rotate_ctx(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001423 if (ctx)
1424 rotate_ctx(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001425
Ingo Molnarb82914c2009-05-04 18:54:32 +02001426 perf_counter_cpu_sched_in(cpuctx, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001427 if (ctx)
1428 perf_counter_task_sched_in(curr, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001429}
1430
1431/*
Paul Mackerras57e79862009-06-30 16:07:19 +10001432 * Enable all of a task's counters that have been marked enable-on-exec.
1433 * This expects task == current.
1434 */
1435static void perf_counter_enable_on_exec(struct task_struct *task)
1436{
1437 struct perf_counter_context *ctx;
1438 struct perf_counter *counter;
1439 unsigned long flags;
1440 int enabled = 0;
1441
1442 local_irq_save(flags);
1443 ctx = task->perf_counter_ctxp;
1444 if (!ctx || !ctx->nr_counters)
1445 goto out;
1446
1447 __perf_counter_task_sched_out(ctx);
1448
1449 spin_lock(&ctx->lock);
1450
1451 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1452 if (!counter->attr.enable_on_exec)
1453 continue;
1454 counter->attr.enable_on_exec = 0;
1455 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
1456 continue;
1457 counter->state = PERF_COUNTER_STATE_INACTIVE;
1458 counter->tstamp_enabled =
1459 ctx->time - counter->total_time_enabled;
1460 enabled = 1;
1461 }
1462
1463 /*
1464 * Unclone this context if we enabled any counter.
1465 */
1466 if (enabled && ctx->parent_ctx) {
1467 put_ctx(ctx->parent_ctx);
1468 ctx->parent_ctx = NULL;
1469 }
1470
1471 spin_unlock(&ctx->lock);
1472
1473 perf_counter_task_sched_in(task, smp_processor_id());
1474 out:
1475 local_irq_restore(flags);
1476}
1477
1478/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001479 * Cross CPU call to read the hardware counter
1480 */
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001481static void __perf_counter_read(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001482{
Ingo Molnar621a01e2008-12-11 12:46:46 +01001483 struct perf_counter *counter = info;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001484 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01001485 unsigned long flags;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001486
Peter Zijlstra849691a2009-04-06 11:45:12 +02001487 local_irq_save(flags);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001488 if (ctx->is_active)
Peter Zijlstra4af49982009-04-06 11:45:10 +02001489 update_context_time(ctx);
Robert Richter4aeb0b42009-04-29 12:47:03 +02001490 counter->pmu->read(counter);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001491 update_counter_times(counter);
Peter Zijlstra849691a2009-04-06 11:45:12 +02001492 local_irq_restore(flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001493}
1494
Ingo Molnar04289bb2008-12-11 08:38:42 +01001495static u64 perf_counter_read(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001496{
1497 /*
1498 * If counter is enabled and currently active on a CPU, update the
1499 * value in the counter structure:
1500 */
Ingo Molnar6a930702008-12-11 15:17:03 +01001501 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
Thomas Gleixner0793a612008-12-04 20:12:29 +01001502 smp_call_function_single(counter->oncpu,
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001503 __perf_counter_read, counter, 1);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001504 } else if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1505 update_counter_times(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001506 }
1507
Ingo Molnaree060942008-12-13 09:00:03 +01001508 return atomic64_read(&counter->count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001509}
1510
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001511/*
1512 * Initialize the perf_counter context in a task_struct:
1513 */
1514static void
1515__perf_counter_init_context(struct perf_counter_context *ctx,
1516 struct task_struct *task)
1517{
1518 memset(ctx, 0, sizeof(*ctx));
1519 spin_lock_init(&ctx->lock);
1520 mutex_init(&ctx->mutex);
1521 INIT_LIST_HEAD(&ctx->counter_list);
1522 INIT_LIST_HEAD(&ctx->event_list);
1523 atomic_set(&ctx->refcount, 1);
1524 ctx->task = task;
1525}
1526
Thomas Gleixner0793a612008-12-04 20:12:29 +01001527static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1528{
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001529 struct perf_counter_context *parent_ctx;
Ingo Molnar22a4f652009-06-01 10:13:37 +02001530 struct perf_counter_context *ctx;
1531 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001532 struct task_struct *task;
Paul Mackerras25346b932009-06-01 17:48:12 +10001533 unsigned long flags;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001534 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001535
1536 /*
1537 * If cpu is not a wildcard then this is a percpu counter:
1538 */
1539 if (cpu != -1) {
1540 /* Must be root to operate on a CPU counter: */
Peter Zijlstra07647712009-06-11 11:18:36 +02001541 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001542 return ERR_PTR(-EACCES);
1543
1544 if (cpu < 0 || cpu > num_possible_cpus())
1545 return ERR_PTR(-EINVAL);
1546
1547 /*
1548 * We could be clever and allow to attach a counter to an
1549 * offline CPU and activate it when the CPU comes up, but
1550 * that's for later.
1551 */
1552 if (!cpu_isset(cpu, cpu_online_map))
1553 return ERR_PTR(-ENODEV);
1554
1555 cpuctx = &per_cpu(perf_cpu_context, cpu);
1556 ctx = &cpuctx->ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001557 get_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001558
Thomas Gleixner0793a612008-12-04 20:12:29 +01001559 return ctx;
1560 }
1561
1562 rcu_read_lock();
1563 if (!pid)
1564 task = current;
1565 else
1566 task = find_task_by_vpid(pid);
1567 if (task)
1568 get_task_struct(task);
1569 rcu_read_unlock();
1570
1571 if (!task)
1572 return ERR_PTR(-ESRCH);
1573
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001574 /*
1575 * Can't attach counters to a dying task.
1576 */
1577 err = -ESRCH;
1578 if (task->flags & PF_EXITING)
1579 goto errout;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001580
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001581 /* Reuse ptrace permission checks for now. */
1582 err = -EACCES;
1583 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1584 goto errout;
1585
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001586 retry:
Paul Mackerras25346b932009-06-01 17:48:12 +10001587 ctx = perf_lock_task_context(task, &flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001588 if (ctx) {
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001589 parent_ctx = ctx->parent_ctx;
1590 if (parent_ctx) {
1591 put_ctx(parent_ctx);
1592 ctx->parent_ctx = NULL; /* no longer a clone */
1593 }
Paul Mackerras25346b932009-06-01 17:48:12 +10001594 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001595 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001596
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001597 if (!ctx) {
1598 ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001599 err = -ENOMEM;
1600 if (!ctx)
1601 goto errout;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001602 __perf_counter_init_context(ctx, task);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001603 get_ctx(ctx);
1604 if (cmpxchg(&task->perf_counter_ctxp, NULL, ctx)) {
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001605 /*
1606 * We raced with some other task; use
1607 * the context they set.
1608 */
1609 kfree(ctx);
Paul Mackerras25346b932009-06-01 17:48:12 +10001610 goto retry;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001611 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001612 get_task_struct(task);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001613 }
1614
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001615 put_task_struct(task);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001616 return ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001617
1618 errout:
1619 put_task_struct(task);
1620 return ERR_PTR(err);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001621}
1622
Peter Zijlstra592903c2009-03-13 12:21:36 +01001623static void free_counter_rcu(struct rcu_head *head)
1624{
1625 struct perf_counter *counter;
1626
1627 counter = container_of(head, struct perf_counter, rcu_head);
Peter Zijlstra709e50c2009-06-02 14:13:15 +02001628 if (counter->ns)
1629 put_pid_ns(counter->ns);
Peter Zijlstra592903c2009-03-13 12:21:36 +01001630 kfree(counter);
1631}
1632
Peter Zijlstra925d5192009-03-30 19:07:02 +02001633static void perf_pending_sync(struct perf_counter *counter);
1634
Peter Zijlstraf1600952009-03-19 20:26:16 +01001635static void free_counter(struct perf_counter *counter)
1636{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001637 perf_pending_sync(counter);
1638
Peter Zijlstraf3440112009-06-22 13:58:35 +02001639 if (!counter->parent) {
1640 atomic_dec(&nr_counters);
1641 if (counter->attr.mmap)
1642 atomic_dec(&nr_mmap_counters);
1643 if (counter->attr.comm)
1644 atomic_dec(&nr_comm_counters);
1645 }
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02001646
Peter Zijlstrae077df42009-03-19 20:26:17 +01001647 if (counter->destroy)
1648 counter->destroy(counter);
1649
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001650 put_ctx(counter->ctx);
Peter Zijlstraf1600952009-03-19 20:26:16 +01001651 call_rcu(&counter->rcu_head, free_counter_rcu);
1652}
1653
Thomas Gleixner0793a612008-12-04 20:12:29 +01001654/*
1655 * Called when the last reference to the file is gone.
1656 */
1657static int perf_release(struct inode *inode, struct file *file)
1658{
1659 struct perf_counter *counter = file->private_data;
1660 struct perf_counter_context *ctx = counter->ctx;
1661
1662 file->private_data = NULL;
1663
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001664 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001665 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001666 perf_counter_remove_from_context(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001667 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001668
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001669 mutex_lock(&counter->owner->perf_counter_mutex);
1670 list_del_init(&counter->owner_entry);
1671 mutex_unlock(&counter->owner->perf_counter_mutex);
1672 put_task_struct(counter->owner);
1673
Peter Zijlstraf1600952009-03-19 20:26:16 +01001674 free_counter(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001675
1676 return 0;
1677}
1678
1679/*
1680 * Read the performance counter - simple non blocking version for now
1681 */
1682static ssize_t
1683perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1684{
Marti Raudseppd5e8da62009-06-13 02:35:01 +03001685 u64 values[4];
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001686 int n;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001687
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001688 /*
1689 * Return end-of-file for a read on a counter that is in
1690 * error state (i.e. because it was pinned but it couldn't be
1691 * scheduled on to the CPU at some point).
1692 */
1693 if (counter->state == PERF_COUNTER_STATE_ERROR)
1694 return 0;
1695
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001696 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001697 mutex_lock(&counter->child_mutex);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001698 values[0] = perf_counter_read(counter);
1699 n = 1;
Peter Zijlstra0d486962009-06-02 19:22:16 +02001700 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001701 values[n++] = counter->total_time_enabled +
1702 atomic64_read(&counter->child_total_time_enabled);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001703 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001704 values[n++] = counter->total_time_running +
1705 atomic64_read(&counter->child_total_time_running);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001706 if (counter->attr.read_format & PERF_FORMAT_ID)
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02001707 values[n++] = counter->id;
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001708 mutex_unlock(&counter->child_mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001709
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001710 if (count < n * sizeof(u64))
1711 return -EINVAL;
1712 count = n * sizeof(u64);
1713
1714 if (copy_to_user(buf, values, count))
1715 return -EFAULT;
1716
1717 return count;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001718}
1719
1720static ssize_t
Thomas Gleixner0793a612008-12-04 20:12:29 +01001721perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1722{
1723 struct perf_counter *counter = file->private_data;
1724
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001725 return perf_read_hw(counter, buf, count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001726}
1727
1728static unsigned int perf_poll(struct file *file, poll_table *wait)
1729{
1730 struct perf_counter *counter = file->private_data;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001731 struct perf_mmap_data *data;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001732 unsigned int events = POLL_HUP;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001733
1734 rcu_read_lock();
1735 data = rcu_dereference(counter->data);
1736 if (data)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001737 events = atomic_xchg(&data->poll, 0);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001738 rcu_read_unlock();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001739
1740 poll_wait(file, &counter->waitq, wait);
1741
Thomas Gleixner0793a612008-12-04 20:12:29 +01001742 return events;
1743}
1744
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001745static void perf_counter_reset(struct perf_counter *counter)
1746{
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001747 (void)perf_counter_read(counter);
Paul Mackerras615a3f12009-05-11 15:50:21 +10001748 atomic64_set(&counter->count, 0);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001749 perf_counter_update_userpage(counter);
1750}
1751
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001752/*
1753 * Holding the top-level counter's child_mutex means that any
1754 * descendant process that has inherited this counter will block
1755 * in sync_child_counter if it goes to exit, thus satisfying the
1756 * task existence requirements of perf_counter_enable/disable.
1757 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001758static void perf_counter_for_each_child(struct perf_counter *counter,
1759 void (*func)(struct perf_counter *))
1760{
1761 struct perf_counter *child;
1762
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001763 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001764 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001765 func(counter);
1766 list_for_each_entry(child, &counter->child_list, child_list)
1767 func(child);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001768 mutex_unlock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001769}
1770
1771static void perf_counter_for_each(struct perf_counter *counter,
1772 void (*func)(struct perf_counter *))
1773{
Peter Zijlstra75f937f2009-06-15 15:05:12 +02001774 struct perf_counter_context *ctx = counter->ctx;
1775 struct perf_counter *sibling;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001776
Peter Zijlstra75f937f2009-06-15 15:05:12 +02001777 WARN_ON_ONCE(ctx->parent_ctx);
1778 mutex_lock(&ctx->mutex);
1779 counter = counter->group_leader;
1780
1781 perf_counter_for_each_child(counter, func);
1782 func(counter);
1783 list_for_each_entry(sibling, &counter->sibling_list, list_entry)
1784 perf_counter_for_each_child(counter, func);
1785 mutex_unlock(&ctx->mutex);
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001786}
1787
Peter Zijlstra08247e32009-06-02 16:46:57 +02001788static int perf_counter_period(struct perf_counter *counter, u64 __user *arg)
1789{
1790 struct perf_counter_context *ctx = counter->ctx;
1791 unsigned long size;
1792 int ret = 0;
1793 u64 value;
1794
Peter Zijlstra0d486962009-06-02 19:22:16 +02001795 if (!counter->attr.sample_period)
Peter Zijlstra08247e32009-06-02 16:46:57 +02001796 return -EINVAL;
1797
1798 size = copy_from_user(&value, arg, sizeof(value));
1799 if (size != sizeof(value))
1800 return -EFAULT;
1801
1802 if (!value)
1803 return -EINVAL;
1804
1805 spin_lock_irq(&ctx->lock);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001806 if (counter->attr.freq) {
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001807 if (value > sysctl_perf_counter_sample_rate) {
Peter Zijlstra08247e32009-06-02 16:46:57 +02001808 ret = -EINVAL;
1809 goto unlock;
1810 }
1811
Peter Zijlstra0d486962009-06-02 19:22:16 +02001812 counter->attr.sample_freq = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001813 } else {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001814 perf_log_period(counter, value);
1815
Peter Zijlstra0d486962009-06-02 19:22:16 +02001816 counter->attr.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001817 counter->hw.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001818 }
1819unlock:
1820 spin_unlock_irq(&ctx->lock);
1821
1822 return ret;
1823}
1824
Paul Mackerrasd859e292009-01-17 18:10:22 +11001825static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1826{
1827 struct perf_counter *counter = file->private_data;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001828 void (*func)(struct perf_counter *);
1829 u32 flags = arg;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001830
1831 switch (cmd) {
1832 case PERF_COUNTER_IOC_ENABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001833 func = perf_counter_enable;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001834 break;
1835 case PERF_COUNTER_IOC_DISABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001836 func = perf_counter_disable;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001837 break;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001838 case PERF_COUNTER_IOC_RESET:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001839 func = perf_counter_reset;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001840 break;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001841
1842 case PERF_COUNTER_IOC_REFRESH:
1843 return perf_counter_refresh(counter, arg);
Peter Zijlstra08247e32009-06-02 16:46:57 +02001844
1845 case PERF_COUNTER_IOC_PERIOD:
1846 return perf_counter_period(counter, (u64 __user *)arg);
1847
Paul Mackerrasd859e292009-01-17 18:10:22 +11001848 default:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001849 return -ENOTTY;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001850 }
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001851
1852 if (flags & PERF_IOC_FLAG_GROUP)
1853 perf_counter_for_each(counter, func);
1854 else
1855 perf_counter_for_each_child(counter, func);
1856
1857 return 0;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001858}
1859
Peter Zijlstra771d7cd2009-05-25 14:45:26 +02001860int perf_counter_task_enable(void)
1861{
1862 struct perf_counter *counter;
1863
1864 mutex_lock(&current->perf_counter_mutex);
1865 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1866 perf_counter_for_each_child(counter, perf_counter_enable);
1867 mutex_unlock(&current->perf_counter_mutex);
1868
1869 return 0;
1870}
1871
1872int perf_counter_task_disable(void)
1873{
1874 struct perf_counter *counter;
1875
1876 mutex_lock(&current->perf_counter_mutex);
1877 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1878 perf_counter_for_each_child(counter, perf_counter_disable);
1879 mutex_unlock(&current->perf_counter_mutex);
1880
1881 return 0;
1882}
1883
Peter Zijlstra194002b2009-06-22 16:35:24 +02001884static int perf_counter_index(struct perf_counter *counter)
1885{
1886 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1887 return 0;
1888
1889 return counter->hw.idx + 1 - PERF_COUNTER_INDEX_OFFSET;
1890}
1891
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001892/*
1893 * Callers need to ensure there can be no nesting of this function, otherwise
1894 * the seqlock logic goes bad. We can not serialize this because the arch
1895 * code calls this from NMI context.
1896 */
1897void perf_counter_update_userpage(struct perf_counter *counter)
Paul Mackerras37d81822009-03-23 18:22:08 +01001898{
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001899 struct perf_counter_mmap_page *userpg;
Ingo Molnar22a4f652009-06-01 10:13:37 +02001900 struct perf_mmap_data *data;
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001901
1902 rcu_read_lock();
1903 data = rcu_dereference(counter->data);
1904 if (!data)
1905 goto unlock;
1906
1907 userpg = data->user_page;
Paul Mackerras37d81822009-03-23 18:22:08 +01001908
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001909 /*
1910 * Disable preemption so as to not let the corresponding user-space
1911 * spin too long if we get preempted.
1912 */
1913 preempt_disable();
Paul Mackerras37d81822009-03-23 18:22:08 +01001914 ++userpg->lock;
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001915 barrier();
Peter Zijlstra194002b2009-06-22 16:35:24 +02001916 userpg->index = perf_counter_index(counter);
Paul Mackerras37d81822009-03-23 18:22:08 +01001917 userpg->offset = atomic64_read(&counter->count);
1918 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
1919 userpg->offset -= atomic64_read(&counter->hw.prev_count);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001920
Peter Zijlstra7f8b4e42009-06-22 14:34:35 +02001921 userpg->time_enabled = counter->total_time_enabled +
1922 atomic64_read(&counter->child_total_time_enabled);
1923
1924 userpg->time_running = counter->total_time_running +
1925 atomic64_read(&counter->child_total_time_running);
1926
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001927 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001928 ++userpg->lock;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001929 preempt_enable();
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001930unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001931 rcu_read_unlock();
Paul Mackerras37d81822009-03-23 18:22:08 +01001932}
1933
1934static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1935{
1936 struct perf_counter *counter = vma->vm_file->private_data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001937 struct perf_mmap_data *data;
1938 int ret = VM_FAULT_SIGBUS;
Paul Mackerras37d81822009-03-23 18:22:08 +01001939
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01001940 if (vmf->flags & FAULT_FLAG_MKWRITE) {
1941 if (vmf->pgoff == 0)
1942 ret = 0;
1943 return ret;
1944 }
1945
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001946 rcu_read_lock();
1947 data = rcu_dereference(counter->data);
1948 if (!data)
1949 goto unlock;
Paul Mackerras37d81822009-03-23 18:22:08 +01001950
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001951 if (vmf->pgoff == 0) {
1952 vmf->page = virt_to_page(data->user_page);
1953 } else {
1954 int nr = vmf->pgoff - 1;
1955
1956 if ((unsigned)nr > data->nr_pages)
1957 goto unlock;
1958
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01001959 if (vmf->flags & FAULT_FLAG_WRITE)
1960 goto unlock;
1961
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001962 vmf->page = virt_to_page(data->data_pages[nr]);
1963 }
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01001964
Paul Mackerras37d81822009-03-23 18:22:08 +01001965 get_page(vmf->page);
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01001966 vmf->page->mapping = vma->vm_file->f_mapping;
1967 vmf->page->index = vmf->pgoff;
1968
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001969 ret = 0;
1970unlock:
1971 rcu_read_unlock();
1972
1973 return ret;
1974}
1975
1976static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
1977{
1978 struct perf_mmap_data *data;
1979 unsigned long size;
1980 int i;
1981
1982 WARN_ON(atomic_read(&counter->mmap_count));
1983
1984 size = sizeof(struct perf_mmap_data);
1985 size += nr_pages * sizeof(void *);
1986
1987 data = kzalloc(size, GFP_KERNEL);
1988 if (!data)
1989 goto fail;
1990
1991 data->user_page = (void *)get_zeroed_page(GFP_KERNEL);
1992 if (!data->user_page)
1993 goto fail_user_page;
1994
1995 for (i = 0; i < nr_pages; i++) {
1996 data->data_pages[i] = (void *)get_zeroed_page(GFP_KERNEL);
1997 if (!data->data_pages[i])
1998 goto fail_data_pages;
1999 }
2000
2001 data->nr_pages = nr_pages;
Peter Zijlstra22c15582009-05-05 17:50:25 +02002002 atomic_set(&data->lock, -1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002003
2004 rcu_assign_pointer(counter->data, data);
2005
Paul Mackerras37d81822009-03-23 18:22:08 +01002006 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002007
2008fail_data_pages:
2009 for (i--; i >= 0; i--)
2010 free_page((unsigned long)data->data_pages[i]);
2011
2012 free_page((unsigned long)data->user_page);
2013
2014fail_user_page:
2015 kfree(data);
2016
2017fail:
2018 return -ENOMEM;
2019}
2020
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002021static void perf_mmap_free_page(unsigned long addr)
2022{
Kevin Cernekee5bfd7562009-07-05 12:08:19 -07002023 struct page *page = virt_to_page((void *)addr);
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002024
2025 page->mapping = NULL;
2026 __free_page(page);
2027}
2028
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002029static void __perf_mmap_data_free(struct rcu_head *rcu_head)
2030{
Ingo Molnar22a4f652009-06-01 10:13:37 +02002031 struct perf_mmap_data *data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002032 int i;
2033
Ingo Molnar22a4f652009-06-01 10:13:37 +02002034 data = container_of(rcu_head, struct perf_mmap_data, rcu_head);
2035
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002036 perf_mmap_free_page((unsigned long)data->user_page);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002037 for (i = 0; i < data->nr_pages; i++)
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002038 perf_mmap_free_page((unsigned long)data->data_pages[i]);
2039
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002040 kfree(data);
2041}
2042
2043static void perf_mmap_data_free(struct perf_counter *counter)
2044{
2045 struct perf_mmap_data *data = counter->data;
2046
2047 WARN_ON(atomic_read(&counter->mmap_count));
2048
2049 rcu_assign_pointer(counter->data, NULL);
2050 call_rcu(&data->rcu_head, __perf_mmap_data_free);
2051}
2052
2053static void perf_mmap_open(struct vm_area_struct *vma)
2054{
2055 struct perf_counter *counter = vma->vm_file->private_data;
2056
2057 atomic_inc(&counter->mmap_count);
2058}
2059
2060static void perf_mmap_close(struct vm_area_struct *vma)
2061{
2062 struct perf_counter *counter = vma->vm_file->private_data;
2063
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10002064 WARN_ON_ONCE(counter->ctx->parent_ctx);
Ingo Molnar22a4f652009-06-01 10:13:37 +02002065 if (atomic_dec_and_mutex_lock(&counter->mmap_count, &counter->mmap_mutex)) {
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002066 struct user_struct *user = current_user();
2067
2068 atomic_long_sub(counter->data->nr_pages + 1, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002069 vma->vm_mm->locked_vm -= counter->data->nr_locked;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002070 perf_mmap_data_free(counter);
2071 mutex_unlock(&counter->mmap_mutex);
2072 }
Paul Mackerras37d81822009-03-23 18:22:08 +01002073}
2074
2075static struct vm_operations_struct perf_mmap_vmops = {
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002076 .open = perf_mmap_open,
2077 .close = perf_mmap_close,
2078 .fault = perf_mmap_fault,
2079 .page_mkwrite = perf_mmap_fault,
Paul Mackerras37d81822009-03-23 18:22:08 +01002080};
2081
2082static int perf_mmap(struct file *file, struct vm_area_struct *vma)
2083{
2084 struct perf_counter *counter = file->private_data;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002085 unsigned long user_locked, user_lock_limit;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002086 struct user_struct *user = current_user();
Ingo Molnar22a4f652009-06-01 10:13:37 +02002087 unsigned long locked, lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002088 unsigned long vma_size;
2089 unsigned long nr_pages;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002090 long user_extra, extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002091 int ret = 0;
Paul Mackerras37d81822009-03-23 18:22:08 +01002092
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002093 if (!(vma->vm_flags & VM_SHARED))
Paul Mackerras37d81822009-03-23 18:22:08 +01002094 return -EINVAL;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002095
2096 vma_size = vma->vm_end - vma->vm_start;
2097 nr_pages = (vma_size / PAGE_SIZE) - 1;
2098
Peter Zijlstra7730d862009-03-25 12:48:31 +01002099 /*
2100 * If we have data pages ensure they're a power-of-two number, so we
2101 * can do bitmasks instead of modulo.
2102 */
2103 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01002104 return -EINVAL;
2105
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002106 if (vma_size != PAGE_SIZE * (1 + nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01002107 return -EINVAL;
2108
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002109 if (vma->vm_pgoff != 0)
2110 return -EINVAL;
Paul Mackerras37d81822009-03-23 18:22:08 +01002111
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10002112 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002113 mutex_lock(&counter->mmap_mutex);
2114 if (atomic_inc_not_zero(&counter->mmap_count)) {
2115 if (nr_pages != counter->data->nr_pages)
2116 ret = -EINVAL;
2117 goto unlock;
2118 }
2119
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002120 user_extra = nr_pages + 1;
2121 user_lock_limit = sysctl_perf_counter_mlock >> (PAGE_SHIFT - 10);
Ingo Molnara3862d32009-05-24 09:02:37 +02002122
2123 /*
2124 * Increase the limit linearly with more CPUs:
2125 */
2126 user_lock_limit *= num_online_cpus();
2127
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002128 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002129
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002130 extra = 0;
2131 if (user_locked > user_lock_limit)
2132 extra = user_locked - user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002133
2134 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
2135 lock_limit >>= PAGE_SHIFT;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002136 locked = vma->vm_mm->locked_vm + extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002137
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002138 if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
2139 ret = -EPERM;
2140 goto unlock;
2141 }
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002142
2143 WARN_ON(counter->data);
2144 ret = perf_mmap_data_alloc(counter, nr_pages);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002145 if (ret)
2146 goto unlock;
2147
2148 atomic_set(&counter->mmap_count, 1);
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002149 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002150 vma->vm_mm->locked_vm += extra;
2151 counter->data->nr_locked = extra;
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002152 if (vma->vm_flags & VM_WRITE)
2153 counter->data->writable = 1;
2154
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002155unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002156 mutex_unlock(&counter->mmap_mutex);
Paul Mackerras37d81822009-03-23 18:22:08 +01002157
Paul Mackerras37d81822009-03-23 18:22:08 +01002158 vma->vm_flags |= VM_RESERVED;
2159 vma->vm_ops = &perf_mmap_vmops;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002160
2161 return ret;
Paul Mackerras37d81822009-03-23 18:22:08 +01002162}
2163
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002164static int perf_fasync(int fd, struct file *filp, int on)
2165{
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002166 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002167 struct perf_counter *counter = filp->private_data;
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002168 int retval;
2169
2170 mutex_lock(&inode->i_mutex);
2171 retval = fasync_helper(fd, filp, on, &counter->fasync);
2172 mutex_unlock(&inode->i_mutex);
2173
2174 if (retval < 0)
2175 return retval;
2176
2177 return 0;
2178}
2179
Thomas Gleixner0793a612008-12-04 20:12:29 +01002180static const struct file_operations perf_fops = {
2181 .release = perf_release,
2182 .read = perf_read,
2183 .poll = perf_poll,
Paul Mackerrasd859e292009-01-17 18:10:22 +11002184 .unlocked_ioctl = perf_ioctl,
2185 .compat_ioctl = perf_ioctl,
Paul Mackerras37d81822009-03-23 18:22:08 +01002186 .mmap = perf_mmap,
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002187 .fasync = perf_fasync,
Thomas Gleixner0793a612008-12-04 20:12:29 +01002188};
2189
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002190/*
Peter Zijlstra925d5192009-03-30 19:07:02 +02002191 * Perf counter wakeup
2192 *
2193 * If there's data, ensure we set the poll() state and publish everything
2194 * to user-space before waking everybody up.
2195 */
2196
2197void perf_counter_wakeup(struct perf_counter *counter)
2198{
Peter Zijlstra925d5192009-03-30 19:07:02 +02002199 wake_up_all(&counter->waitq);
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002200
2201 if (counter->pending_kill) {
2202 kill_fasync(&counter->fasync, SIGIO, counter->pending_kill);
2203 counter->pending_kill = 0;
2204 }
Peter Zijlstra925d5192009-03-30 19:07:02 +02002205}
2206
2207/*
2208 * Pending wakeups
2209 *
2210 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
2211 *
2212 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
2213 * single linked list and use cmpxchg() to add entries lockless.
2214 */
2215
Peter Zijlstra79f14642009-04-06 11:45:07 +02002216static void perf_pending_counter(struct perf_pending_entry *entry)
2217{
2218 struct perf_counter *counter = container_of(entry,
2219 struct perf_counter, pending);
2220
2221 if (counter->pending_disable) {
2222 counter->pending_disable = 0;
2223 perf_counter_disable(counter);
2224 }
2225
2226 if (counter->pending_wakeup) {
2227 counter->pending_wakeup = 0;
2228 perf_counter_wakeup(counter);
2229 }
2230}
2231
Peter Zijlstra671dec52009-04-06 11:45:02 +02002232#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002233
Peter Zijlstra671dec52009-04-06 11:45:02 +02002234static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
Peter Zijlstra925d5192009-03-30 19:07:02 +02002235 PENDING_TAIL,
2236};
2237
Peter Zijlstra671dec52009-04-06 11:45:02 +02002238static void perf_pending_queue(struct perf_pending_entry *entry,
2239 void (*func)(struct perf_pending_entry *))
Peter Zijlstra925d5192009-03-30 19:07:02 +02002240{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002241 struct perf_pending_entry **head;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002242
Peter Zijlstra671dec52009-04-06 11:45:02 +02002243 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002244 return;
2245
Peter Zijlstra671dec52009-04-06 11:45:02 +02002246 entry->func = func;
2247
2248 head = &get_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002249
2250 do {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002251 entry->next = *head;
2252 } while (cmpxchg(head, entry->next, entry) != entry->next);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002253
2254 set_perf_counter_pending();
2255
Peter Zijlstra671dec52009-04-06 11:45:02 +02002256 put_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002257}
2258
2259static int __perf_pending_run(void)
2260{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002261 struct perf_pending_entry *list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002262 int nr = 0;
2263
Peter Zijlstra671dec52009-04-06 11:45:02 +02002264 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002265 while (list != PENDING_TAIL) {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002266 void (*func)(struct perf_pending_entry *);
2267 struct perf_pending_entry *entry = list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002268
2269 list = list->next;
2270
Peter Zijlstra671dec52009-04-06 11:45:02 +02002271 func = entry->func;
2272 entry->next = NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002273 /*
2274 * Ensure we observe the unqueue before we issue the wakeup,
2275 * so that we won't be waiting forever.
2276 * -- see perf_not_pending().
2277 */
2278 smp_wmb();
2279
Peter Zijlstra671dec52009-04-06 11:45:02 +02002280 func(entry);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002281 nr++;
2282 }
2283
2284 return nr;
2285}
2286
2287static inline int perf_not_pending(struct perf_counter *counter)
2288{
2289 /*
2290 * If we flush on whatever cpu we run, there is a chance we don't
2291 * need to wait.
2292 */
2293 get_cpu();
2294 __perf_pending_run();
2295 put_cpu();
2296
2297 /*
2298 * Ensure we see the proper queue state before going to sleep
2299 * so that we do not miss the wakeup. -- see perf_pending_handle()
2300 */
2301 smp_rmb();
Peter Zijlstra671dec52009-04-06 11:45:02 +02002302 return counter->pending.next == NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002303}
2304
2305static void perf_pending_sync(struct perf_counter *counter)
2306{
2307 wait_event(counter->waitq, perf_not_pending(counter));
2308}
2309
2310void perf_counter_do_pending(void)
2311{
2312 __perf_pending_run();
2313}
2314
2315/*
Peter Zijlstra394ee072009-03-30 19:07:14 +02002316 * Callchain support -- arch specific
2317 */
2318
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002319__weak struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
Peter Zijlstra394ee072009-03-30 19:07:14 +02002320{
2321 return NULL;
2322}
2323
2324/*
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002325 * Output
2326 */
2327
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002328struct perf_output_handle {
2329 struct perf_counter *counter;
2330 struct perf_mmap_data *data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002331 unsigned long head;
2332 unsigned long offset;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002333 int nmi;
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002334 int sample;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002335 int locked;
2336 unsigned long flags;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002337};
2338
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002339static bool perf_output_space(struct perf_mmap_data *data,
2340 unsigned int offset, unsigned int head)
2341{
2342 unsigned long tail;
2343 unsigned long mask;
2344
2345 if (!data->writable)
2346 return true;
2347
2348 mask = (data->nr_pages << PAGE_SHIFT) - 1;
2349 /*
2350 * Userspace could choose to issue a mb() before updating the tail
2351 * pointer. So that all reads will be completed before the write is
2352 * issued.
2353 */
2354 tail = ACCESS_ONCE(data->user_page->data_tail);
2355 smp_rmb();
2356
2357 offset = (offset - tail) & mask;
2358 head = (head - tail) & mask;
2359
2360 if ((int)(head - offset) < 0)
2361 return false;
2362
2363 return true;
2364}
2365
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002366static void perf_output_wakeup(struct perf_output_handle *handle)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002367{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002368 atomic_set(&handle->data->poll, POLL_IN);
2369
Peter Zijlstra671dec52009-04-06 11:45:02 +02002370 if (handle->nmi) {
Peter Zijlstra79f14642009-04-06 11:45:07 +02002371 handle->counter->pending_wakeup = 1;
Peter Zijlstra671dec52009-04-06 11:45:02 +02002372 perf_pending_queue(&handle->counter->pending,
Peter Zijlstra79f14642009-04-06 11:45:07 +02002373 perf_pending_counter);
Peter Zijlstra671dec52009-04-06 11:45:02 +02002374 } else
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002375 perf_counter_wakeup(handle->counter);
2376}
2377
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002378/*
2379 * Curious locking construct.
2380 *
2381 * We need to ensure a later event doesn't publish a head when a former
2382 * event isn't done writing. However since we need to deal with NMIs we
2383 * cannot fully serialize things.
2384 *
2385 * What we do is serialize between CPUs so we only have to deal with NMI
2386 * nesting on a single CPU.
2387 *
2388 * We only publish the head (and generate a wakeup) when the outer-most
2389 * event completes.
2390 */
2391static void perf_output_lock(struct perf_output_handle *handle)
2392{
2393 struct perf_mmap_data *data = handle->data;
2394 int cpu;
2395
2396 handle->locked = 0;
2397
2398 local_irq_save(handle->flags);
2399 cpu = smp_processor_id();
2400
2401 if (in_nmi() && atomic_read(&data->lock) == cpu)
2402 return;
2403
Peter Zijlstra22c15582009-05-05 17:50:25 +02002404 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002405 cpu_relax();
2406
2407 handle->locked = 1;
2408}
2409
2410static void perf_output_unlock(struct perf_output_handle *handle)
2411{
2412 struct perf_mmap_data *data = handle->data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002413 unsigned long head;
2414 int cpu;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002415
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002416 data->done_head = data->head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002417
2418 if (!handle->locked)
2419 goto out;
2420
2421again:
2422 /*
2423 * The xchg implies a full barrier that ensures all writes are done
2424 * before we publish the new head, matched by a rmb() in userspace when
2425 * reading this position.
2426 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002427 while ((head = atomic_long_xchg(&data->done_head, 0)))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002428 data->user_page->data_head = head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002429
2430 /*
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002431 * NMI can happen here, which means we can miss a done_head update.
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002432 */
2433
Peter Zijlstra22c15582009-05-05 17:50:25 +02002434 cpu = atomic_xchg(&data->lock, -1);
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002435 WARN_ON_ONCE(cpu != smp_processor_id());
2436
2437 /*
2438 * Therefore we have to validate we did not indeed do so.
2439 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002440 if (unlikely(atomic_long_read(&data->done_head))) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002441 /*
2442 * Since we had it locked, we can lock it again.
2443 */
Peter Zijlstra22c15582009-05-05 17:50:25 +02002444 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002445 cpu_relax();
2446
2447 goto again;
2448 }
2449
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002450 if (atomic_xchg(&data->wakeup, 0))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002451 perf_output_wakeup(handle);
2452out:
2453 local_irq_restore(handle->flags);
2454}
2455
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002456static void perf_output_copy(struct perf_output_handle *handle,
Peter Zijlstra089dd792009-06-05 14:04:55 +02002457 const void *buf, unsigned int len)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002458{
2459 unsigned int pages_mask;
2460 unsigned int offset;
2461 unsigned int size;
2462 void **pages;
2463
2464 offset = handle->offset;
2465 pages_mask = handle->data->nr_pages - 1;
2466 pages = handle->data->data_pages;
2467
2468 do {
2469 unsigned int page_offset;
2470 int nr;
2471
2472 nr = (offset >> PAGE_SHIFT) & pages_mask;
2473 page_offset = offset & (PAGE_SIZE - 1);
2474 size = min_t(unsigned int, PAGE_SIZE - page_offset, len);
2475
2476 memcpy(pages[nr] + page_offset, buf, size);
2477
2478 len -= size;
2479 buf += size;
2480 offset += size;
2481 } while (len);
2482
2483 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002484
Peter Zijlstra53020fe2009-05-13 21:26:19 +02002485 /*
2486 * Check we didn't copy past our reservation window, taking the
2487 * possible unsigned int wrap into account.
2488 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002489 WARN_ON_ONCE(((long)(handle->head - handle->offset)) < 0);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002490}
2491
Peter Zijlstra5c148192009-03-25 12:30:23 +01002492#define perf_output_put(handle, x) \
2493 perf_output_copy((handle), &(x), sizeof(x))
2494
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002495static int perf_output_begin(struct perf_output_handle *handle,
2496 struct perf_counter *counter, unsigned int size,
2497 int nmi, int sample)
2498{
2499 struct perf_mmap_data *data;
2500 unsigned int offset, head;
2501 int have_lost;
2502 struct {
2503 struct perf_event_header header;
2504 u64 id;
2505 u64 lost;
2506 } lost_event;
2507
2508 /*
2509 * For inherited counters we send all the output towards the parent.
2510 */
2511 if (counter->parent)
2512 counter = counter->parent;
2513
2514 rcu_read_lock();
2515 data = rcu_dereference(counter->data);
2516 if (!data)
2517 goto out;
2518
2519 handle->data = data;
2520 handle->counter = counter;
2521 handle->nmi = nmi;
2522 handle->sample = sample;
2523
2524 if (!data->nr_pages)
2525 goto fail;
2526
2527 have_lost = atomic_read(&data->lost);
2528 if (have_lost)
2529 size += sizeof(lost_event);
2530
2531 perf_output_lock(handle);
2532
2533 do {
2534 offset = head = atomic_long_read(&data->head);
2535 head += size;
2536 if (unlikely(!perf_output_space(data, offset, head)))
2537 goto fail;
2538 } while (atomic_long_cmpxchg(&data->head, offset, head) != offset);
2539
2540 handle->offset = offset;
2541 handle->head = head;
2542
2543 if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
2544 atomic_set(&data->wakeup, 1);
2545
2546 if (have_lost) {
2547 lost_event.header.type = PERF_EVENT_LOST;
2548 lost_event.header.misc = 0;
2549 lost_event.header.size = sizeof(lost_event);
2550 lost_event.id = counter->id;
2551 lost_event.lost = atomic_xchg(&data->lost, 0);
2552
2553 perf_output_put(handle, lost_event);
2554 }
2555
2556 return 0;
2557
2558fail:
2559 atomic_inc(&data->lost);
2560 perf_output_unlock(handle);
2561out:
2562 rcu_read_unlock();
2563
2564 return -ENOSPC;
2565}
2566
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002567static void perf_output_end(struct perf_output_handle *handle)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002568{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002569 struct perf_counter *counter = handle->counter;
2570 struct perf_mmap_data *data = handle->data;
2571
Peter Zijlstra0d486962009-06-02 19:22:16 +02002572 int wakeup_events = counter->attr.wakeup_events;
Peter Zijlstrac4578102009-04-02 11:12:01 +02002573
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002574 if (handle->sample && wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002575 int events = atomic_inc_return(&data->events);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002576 if (events >= wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002577 atomic_sub(wakeup_events, &data->events);
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002578 atomic_set(&data->wakeup, 1);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002579 }
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002580 }
2581
2582 perf_output_unlock(handle);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002583 rcu_read_unlock();
2584}
2585
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002586static u32 perf_counter_pid(struct perf_counter *counter, struct task_struct *p)
2587{
2588 /*
2589 * only top level counters have the pid namespace they were created in
2590 */
2591 if (counter->parent)
2592 counter = counter->parent;
2593
2594 return task_tgid_nr_ns(p, counter->ns);
2595}
2596
2597static u32 perf_counter_tid(struct perf_counter *counter, struct task_struct *p)
2598{
2599 /*
2600 * only top level counters have the pid namespace they were created in
2601 */
2602 if (counter->parent)
2603 counter = counter->parent;
2604
2605 return task_pid_nr_ns(p, counter->ns);
2606}
2607
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002608static void perf_counter_output(struct perf_counter *counter, int nmi,
2609 struct perf_sample_data *data)
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002610{
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002611 int ret;
Peter Zijlstra0d486962009-06-02 19:22:16 +02002612 u64 sample_type = counter->attr.sample_type;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002613 struct perf_output_handle handle;
2614 struct perf_event_header header;
2615 u64 ip;
Peter Zijlstra5c148192009-03-25 12:30:23 +01002616 struct {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002617 u32 pid, tid;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002618 } tid_entry;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002619 struct {
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02002620 u64 id;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002621 u64 counter;
2622 } group_entry;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002623 struct perf_callchain_entry *callchain = NULL;
2624 int callchain_size = 0;
Peter Zijlstra339f7c92009-04-06 11:45:06 +02002625 u64 time;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002626 struct {
2627 u32 cpu, reserved;
2628 } cpu_entry;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002629
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002630 header.type = PERF_EVENT_SAMPLE;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002631 header.size = sizeof(header);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002632
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002633 header.misc = 0;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002634 header.misc |= perf_misc_flags(data->regs);
Peter Zijlstra6fab0192009-04-08 15:01:26 +02002635
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002636 if (sample_type & PERF_SAMPLE_IP) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002637 ip = perf_instruction_pointer(data->regs);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002638 header.size += sizeof(ip);
2639 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002640
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002641 if (sample_type & PERF_SAMPLE_TID) {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002642 /* namespace issues */
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002643 tid_entry.pid = perf_counter_pid(counter, current);
2644 tid_entry.tid = perf_counter_tid(counter, current);
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002645
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002646 header.size += sizeof(tid_entry);
2647 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002648
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002649 if (sample_type & PERF_SAMPLE_TIME) {
Peter Zijlstra4d855452009-04-08 15:01:32 +02002650 /*
2651 * Maybe do better on x86 and provide cpu_clock_nmi()
2652 */
2653 time = sched_clock();
2654
Peter Zijlstra4d855452009-04-08 15:01:32 +02002655 header.size += sizeof(u64);
2656 }
2657
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002658 if (sample_type & PERF_SAMPLE_ADDR)
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002659 header.size += sizeof(u64);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002660
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002661 if (sample_type & PERF_SAMPLE_ID)
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002662 header.size += sizeof(u64);
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002663
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002664 if (sample_type & PERF_SAMPLE_CPU) {
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002665 header.size += sizeof(cpu_entry);
2666
2667 cpu_entry.cpu = raw_smp_processor_id();
2668 }
2669
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002670 if (sample_type & PERF_SAMPLE_PERIOD)
Peter Zijlstra689802b2009-06-05 15:05:43 +02002671 header.size += sizeof(u64);
Peter Zijlstra689802b2009-06-05 15:05:43 +02002672
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002673 if (sample_type & PERF_SAMPLE_GROUP) {
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002674 header.size += sizeof(u64) +
2675 counter->nr_siblings * sizeof(group_entry);
2676 }
2677
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002678 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002679 callchain = perf_callchain(data->regs);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002680
2681 if (callchain) {
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002682 callchain_size = (1 + callchain->nr) * sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002683 header.size += callchain_size;
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002684 } else
2685 header.size += sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002686 }
2687
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002688 ret = perf_output_begin(&handle, counter, header.size, nmi, 1);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002689 if (ret)
2690 return;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002691
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002692 perf_output_put(&handle, header);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002693
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002694 if (sample_type & PERF_SAMPLE_IP)
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002695 perf_output_put(&handle, ip);
2696
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002697 if (sample_type & PERF_SAMPLE_TID)
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002698 perf_output_put(&handle, tid_entry);
2699
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002700 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra4d855452009-04-08 15:01:32 +02002701 perf_output_put(&handle, time);
2702
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002703 if (sample_type & PERF_SAMPLE_ADDR)
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002704 perf_output_put(&handle, data->addr);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002705
Peter Zijlstraac4bcf82009-06-05 14:44:52 +02002706 if (sample_type & PERF_SAMPLE_ID)
2707 perf_output_put(&handle, counter->id);
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002708
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002709 if (sample_type & PERF_SAMPLE_CPU)
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002710 perf_output_put(&handle, cpu_entry);
2711
Peter Zijlstra689802b2009-06-05 15:05:43 +02002712 if (sample_type & PERF_SAMPLE_PERIOD)
Peter Zijlstra9e350de2009-06-10 21:34:59 +02002713 perf_output_put(&handle, data->period);
Peter Zijlstra689802b2009-06-05 15:05:43 +02002714
Peter Zijlstra2023b352009-05-05 17:50:26 +02002715 /*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002716 * XXX PERF_SAMPLE_GROUP vs inherited counters seems difficult.
Peter Zijlstra2023b352009-05-05 17:50:26 +02002717 */
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002718 if (sample_type & PERF_SAMPLE_GROUP) {
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002719 struct perf_counter *leader, *sub;
2720 u64 nr = counter->nr_siblings;
2721
2722 perf_output_put(&handle, nr);
2723
2724 leader = counter->group_leader;
2725 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
2726 if (sub != counter)
Robert Richter4aeb0b42009-04-29 12:47:03 +02002727 sub->pmu->read(sub);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002728
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02002729 group_entry.id = sub->id;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002730 group_entry.counter = atomic64_read(&sub->count);
2731
2732 perf_output_put(&handle, group_entry);
2733 }
2734 }
2735
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002736 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
2737 if (callchain)
2738 perf_output_copy(&handle, callchain, callchain_size);
2739 else {
2740 u64 nr = 0;
2741 perf_output_put(&handle, nr);
2742 }
2743 }
Peter Zijlstra394ee072009-03-30 19:07:14 +02002744
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002745 perf_output_end(&handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002746}
2747
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002748/*
Peter Zijlstra38b200d2009-06-23 20:13:11 +02002749 * read event
2750 */
2751
2752struct perf_read_event {
2753 struct perf_event_header header;
2754
2755 u32 pid;
2756 u32 tid;
2757 u64 value;
2758 u64 format[3];
2759};
2760
2761static void
2762perf_counter_read_event(struct perf_counter *counter,
2763 struct task_struct *task)
2764{
2765 struct perf_output_handle handle;
2766 struct perf_read_event event = {
2767 .header = {
2768 .type = PERF_EVENT_READ,
2769 .misc = 0,
2770 .size = sizeof(event) - sizeof(event.format),
2771 },
2772 .pid = perf_counter_pid(counter, task),
2773 .tid = perf_counter_tid(counter, task),
2774 .value = atomic64_read(&counter->count),
2775 };
2776 int ret, i = 0;
2777
2778 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2779 event.header.size += sizeof(u64);
2780 event.format[i++] = counter->total_time_enabled;
2781 }
2782
2783 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2784 event.header.size += sizeof(u64);
2785 event.format[i++] = counter->total_time_running;
2786 }
2787
2788 if (counter->attr.read_format & PERF_FORMAT_ID) {
2789 u64 id;
2790
2791 event.header.size += sizeof(u64);
2792 if (counter->parent)
2793 id = counter->parent->id;
2794 else
2795 id = counter->id;
2796
2797 event.format[i++] = id;
2798 }
2799
2800 ret = perf_output_begin(&handle, counter, event.header.size, 0, 0);
2801 if (ret)
2802 return;
2803
2804 perf_output_copy(&handle, &event, event.header.size);
2805 perf_output_end(&handle);
2806}
2807
2808/*
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002809 * fork tracking
2810 */
2811
2812struct perf_fork_event {
2813 struct task_struct *task;
2814
2815 struct {
2816 struct perf_event_header header;
2817
2818 u32 pid;
2819 u32 ppid;
2820 } event;
2821};
2822
2823static void perf_counter_fork_output(struct perf_counter *counter,
2824 struct perf_fork_event *fork_event)
2825{
2826 struct perf_output_handle handle;
2827 int size = fork_event->event.header.size;
2828 struct task_struct *task = fork_event->task;
2829 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2830
2831 if (ret)
2832 return;
2833
2834 fork_event->event.pid = perf_counter_pid(counter, task);
2835 fork_event->event.ppid = perf_counter_pid(counter, task->real_parent);
2836
2837 perf_output_put(&handle, fork_event->event);
2838 perf_output_end(&handle);
2839}
2840
2841static int perf_counter_fork_match(struct perf_counter *counter)
2842{
Peter Zijlstrad99e9442009-06-04 17:08:58 +02002843 if (counter->attr.comm || counter->attr.mmap)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002844 return 1;
2845
2846 return 0;
2847}
2848
2849static void perf_counter_fork_ctx(struct perf_counter_context *ctx,
2850 struct perf_fork_event *fork_event)
2851{
2852 struct perf_counter *counter;
2853
2854 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2855 return;
2856
2857 rcu_read_lock();
2858 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2859 if (perf_counter_fork_match(counter))
2860 perf_counter_fork_output(counter, fork_event);
2861 }
2862 rcu_read_unlock();
2863}
2864
2865static void perf_counter_fork_event(struct perf_fork_event *fork_event)
2866{
2867 struct perf_cpu_context *cpuctx;
2868 struct perf_counter_context *ctx;
2869
2870 cpuctx = &get_cpu_var(perf_cpu_context);
2871 perf_counter_fork_ctx(&cpuctx->ctx, fork_event);
2872 put_cpu_var(perf_cpu_context);
2873
2874 rcu_read_lock();
2875 /*
2876 * doesn't really matter which of the child contexts the
2877 * events ends up in.
2878 */
2879 ctx = rcu_dereference(current->perf_counter_ctxp);
2880 if (ctx)
2881 perf_counter_fork_ctx(ctx, fork_event);
2882 rcu_read_unlock();
2883}
2884
2885void perf_counter_fork(struct task_struct *task)
2886{
2887 struct perf_fork_event fork_event;
2888
2889 if (!atomic_read(&nr_comm_counters) &&
Peter Zijlstrad99e9442009-06-04 17:08:58 +02002890 !atomic_read(&nr_mmap_counters))
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002891 return;
2892
2893 fork_event = (struct perf_fork_event){
2894 .task = task,
2895 .event = {
2896 .header = {
2897 .type = PERF_EVENT_FORK,
2898 .size = sizeof(fork_event.event),
2899 },
2900 },
2901 };
2902
2903 perf_counter_fork_event(&fork_event);
2904}
2905
2906/*
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002907 * comm tracking
2908 */
2909
2910struct perf_comm_event {
Ingo Molnar22a4f652009-06-01 10:13:37 +02002911 struct task_struct *task;
2912 char *comm;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002913 int comm_size;
2914
2915 struct {
2916 struct perf_event_header header;
2917
2918 u32 pid;
2919 u32 tid;
2920 } event;
2921};
2922
2923static void perf_counter_comm_output(struct perf_counter *counter,
2924 struct perf_comm_event *comm_event)
2925{
2926 struct perf_output_handle handle;
2927 int size = comm_event->event.header.size;
2928 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2929
2930 if (ret)
2931 return;
2932
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002933 comm_event->event.pid = perf_counter_pid(counter, comm_event->task);
2934 comm_event->event.tid = perf_counter_tid(counter, comm_event->task);
2935
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002936 perf_output_put(&handle, comm_event->event);
2937 perf_output_copy(&handle, comm_event->comm,
2938 comm_event->comm_size);
2939 perf_output_end(&handle);
2940}
2941
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002942static int perf_counter_comm_match(struct perf_counter *counter)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002943{
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002944 if (counter->attr.comm)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002945 return 1;
2946
2947 return 0;
2948}
2949
2950static void perf_counter_comm_ctx(struct perf_counter_context *ctx,
2951 struct perf_comm_event *comm_event)
2952{
2953 struct perf_counter *counter;
2954
2955 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2956 return;
2957
2958 rcu_read_lock();
2959 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002960 if (perf_counter_comm_match(counter))
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002961 perf_counter_comm_output(counter, comm_event);
2962 }
2963 rcu_read_unlock();
2964}
2965
2966static void perf_counter_comm_event(struct perf_comm_event *comm_event)
2967{
2968 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02002969 struct perf_counter_context *ctx;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002970 unsigned int size;
2971 char *comm = comm_event->task->comm;
2972
Ingo Molnar888fcee2009-04-09 09:48:22 +02002973 size = ALIGN(strlen(comm)+1, sizeof(u64));
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002974
2975 comm_event->comm = comm;
2976 comm_event->comm_size = size;
2977
2978 comm_event->event.header.size = sizeof(comm_event->event) + size;
2979
2980 cpuctx = &get_cpu_var(perf_cpu_context);
2981 perf_counter_comm_ctx(&cpuctx->ctx, comm_event);
2982 put_cpu_var(perf_cpu_context);
Peter Zijlstra665c2142009-05-29 14:51:57 +02002983
2984 rcu_read_lock();
2985 /*
2986 * doesn't really matter which of the child contexts the
2987 * events ends up in.
2988 */
2989 ctx = rcu_dereference(current->perf_counter_ctxp);
2990 if (ctx)
2991 perf_counter_comm_ctx(ctx, comm_event);
2992 rcu_read_unlock();
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002993}
2994
2995void perf_counter_comm(struct task_struct *task)
2996{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002997 struct perf_comm_event comm_event;
2998
Paul Mackerras57e79862009-06-30 16:07:19 +10002999 if (task->perf_counter_ctxp)
3000 perf_counter_enable_on_exec(task);
3001
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003002 if (!atomic_read(&nr_comm_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003003 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003004
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003005 comm_event = (struct perf_comm_event){
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003006 .task = task,
3007 .event = {
3008 .header = { .type = PERF_EVENT_COMM, },
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003009 },
3010 };
3011
3012 perf_counter_comm_event(&comm_event);
3013}
3014
3015/*
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003016 * mmap tracking
3017 */
3018
3019struct perf_mmap_event {
Peter Zijlstra089dd792009-06-05 14:04:55 +02003020 struct vm_area_struct *vma;
3021
3022 const char *file_name;
3023 int file_size;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003024
3025 struct {
3026 struct perf_event_header header;
3027
3028 u32 pid;
3029 u32 tid;
3030 u64 start;
3031 u64 len;
3032 u64 pgoff;
3033 } event;
3034};
3035
3036static void perf_counter_mmap_output(struct perf_counter *counter,
3037 struct perf_mmap_event *mmap_event)
3038{
3039 struct perf_output_handle handle;
3040 int size = mmap_event->event.header.size;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003041 int ret = perf_output_begin(&handle, counter, size, 0, 0);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003042
3043 if (ret)
3044 return;
3045
Peter Zijlstra709e50c2009-06-02 14:13:15 +02003046 mmap_event->event.pid = perf_counter_pid(counter, current);
3047 mmap_event->event.tid = perf_counter_tid(counter, current);
3048
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003049 perf_output_put(&handle, mmap_event->event);
3050 perf_output_copy(&handle, mmap_event->file_name,
3051 mmap_event->file_size);
Peter Zijlstra78d613e2009-03-30 19:07:11 +02003052 perf_output_end(&handle);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003053}
3054
3055static int perf_counter_mmap_match(struct perf_counter *counter,
3056 struct perf_mmap_event *mmap_event)
3057{
Peter Zijlstrad99e9442009-06-04 17:08:58 +02003058 if (counter->attr.mmap)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003059 return 1;
3060
3061 return 0;
3062}
3063
3064static void perf_counter_mmap_ctx(struct perf_counter_context *ctx,
3065 struct perf_mmap_event *mmap_event)
3066{
3067 struct perf_counter *counter;
3068
3069 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
3070 return;
3071
3072 rcu_read_lock();
3073 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
3074 if (perf_counter_mmap_match(counter, mmap_event))
3075 perf_counter_mmap_output(counter, mmap_event);
3076 }
3077 rcu_read_unlock();
3078}
3079
3080static void perf_counter_mmap_event(struct perf_mmap_event *mmap_event)
3081{
3082 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02003083 struct perf_counter_context *ctx;
Peter Zijlstra089dd792009-06-05 14:04:55 +02003084 struct vm_area_struct *vma = mmap_event->vma;
3085 struct file *file = vma->vm_file;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003086 unsigned int size;
3087 char tmp[16];
3088 char *buf = NULL;
Peter Zijlstra089dd792009-06-05 14:04:55 +02003089 const char *name;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003090
3091 if (file) {
3092 buf = kzalloc(PATH_MAX, GFP_KERNEL);
3093 if (!buf) {
3094 name = strncpy(tmp, "//enomem", sizeof(tmp));
3095 goto got_name;
3096 }
Peter Zijlstrad3d21c42009-04-09 10:53:46 +02003097 name = d_path(&file->f_path, buf, PATH_MAX);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003098 if (IS_ERR(name)) {
3099 name = strncpy(tmp, "//toolong", sizeof(tmp));
3100 goto got_name;
3101 }
3102 } else {
Peter Zijlstra089dd792009-06-05 14:04:55 +02003103 name = arch_vma_name(mmap_event->vma);
3104 if (name)
3105 goto got_name;
3106
3107 if (!vma->vm_mm) {
3108 name = strncpy(tmp, "[vdso]", sizeof(tmp));
3109 goto got_name;
3110 }
3111
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003112 name = strncpy(tmp, "//anon", sizeof(tmp));
3113 goto got_name;
3114 }
3115
3116got_name:
Ingo Molnar888fcee2009-04-09 09:48:22 +02003117 size = ALIGN(strlen(name)+1, sizeof(u64));
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003118
3119 mmap_event->file_name = name;
3120 mmap_event->file_size = size;
3121
3122 mmap_event->event.header.size = sizeof(mmap_event->event) + size;
3123
3124 cpuctx = &get_cpu_var(perf_cpu_context);
3125 perf_counter_mmap_ctx(&cpuctx->ctx, mmap_event);
3126 put_cpu_var(perf_cpu_context);
3127
Peter Zijlstra665c2142009-05-29 14:51:57 +02003128 rcu_read_lock();
3129 /*
3130 * doesn't really matter which of the child contexts the
3131 * events ends up in.
3132 */
3133 ctx = rcu_dereference(current->perf_counter_ctxp);
3134 if (ctx)
3135 perf_counter_mmap_ctx(ctx, mmap_event);
3136 rcu_read_unlock();
3137
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003138 kfree(buf);
3139}
3140
Peter Zijlstra089dd792009-06-05 14:04:55 +02003141void __perf_counter_mmap(struct vm_area_struct *vma)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003142{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003143 struct perf_mmap_event mmap_event;
3144
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003145 if (!atomic_read(&nr_mmap_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003146 return;
3147
3148 mmap_event = (struct perf_mmap_event){
Peter Zijlstra089dd792009-06-05 14:04:55 +02003149 .vma = vma,
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003150 .event = {
3151 .header = { .type = PERF_EVENT_MMAP, },
Peter Zijlstra089dd792009-06-05 14:04:55 +02003152 .start = vma->vm_start,
3153 .len = vma->vm_end - vma->vm_start,
3154 .pgoff = vma->vm_pgoff,
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003155 },
3156 };
3157
3158 perf_counter_mmap_event(&mmap_event);
3159}
3160
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003161/*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003162 * Log sample_period changes so that analyzing tools can re-normalize the
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02003163 * event flow.
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003164 */
3165
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003166struct freq_event {
3167 struct perf_event_header header;
3168 u64 time;
3169 u64 id;
3170 u64 period;
3171};
3172
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003173static void perf_log_period(struct perf_counter *counter, u64 period)
3174{
3175 struct perf_output_handle handle;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003176 struct freq_event event;
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003177 int ret;
3178
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003179 if (counter->hw.sample_period == period)
3180 return;
3181
3182 if (counter->attr.sample_type & PERF_SAMPLE_PERIOD)
3183 return;
3184
3185 event = (struct freq_event) {
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003186 .header = {
3187 .type = PERF_EVENT_PERIOD,
3188 .misc = 0,
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003189 .size = sizeof(event),
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003190 },
3191 .time = sched_clock(),
Peter Zijlstra689802b2009-06-05 15:05:43 +02003192 .id = counter->id,
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003193 .period = period,
3194 };
3195
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003196 ret = perf_output_begin(&handle, counter, sizeof(event), 1, 0);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003197 if (ret)
3198 return;
3199
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003200 perf_output_put(&handle, event);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02003201 perf_output_end(&handle);
3202}
3203
3204/*
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003205 * IRQ throttle logging
3206 */
3207
3208static void perf_log_throttle(struct perf_counter *counter, int enable)
3209{
3210 struct perf_output_handle handle;
3211 int ret;
3212
3213 struct {
3214 struct perf_event_header header;
3215 u64 time;
Peter Zijlstracca3f452009-06-11 14:57:55 +02003216 u64 id;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003217 } throttle_event = {
3218 .header = {
3219 .type = PERF_EVENT_THROTTLE + 1,
3220 .misc = 0,
3221 .size = sizeof(throttle_event),
3222 },
Peter Zijlstracca3f452009-06-11 14:57:55 +02003223 .time = sched_clock(),
3224 .id = counter->id,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003225 };
3226
Ingo Molnar0127c3e2009-05-25 22:03:26 +02003227 ret = perf_output_begin(&handle, counter, sizeof(throttle_event), 1, 0);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003228 if (ret)
3229 return;
3230
3231 perf_output_put(&handle, throttle_event);
3232 perf_output_end(&handle);
3233}
3234
3235/*
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01003236 * Generic counter overflow handling, sampling.
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003237 */
3238
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003239int perf_counter_overflow(struct perf_counter *counter, int nmi,
3240 struct perf_sample_data *data)
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003241{
Peter Zijlstra79f14642009-04-06 11:45:07 +02003242 int events = atomic_read(&counter->event_limit);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003243 int throttle = counter->pmu->unthrottle != NULL;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003244 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003245 int ret = 0;
3246
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003247 if (!throttle) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003248 hwc->interrupts++;
Ingo Molnar128f0482009-06-03 22:19:36 +02003249 } else {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003250 if (hwc->interrupts != MAX_INTERRUPTS) {
3251 hwc->interrupts++;
Peter Zijlstradf58ab22009-06-11 11:25:05 +02003252 if (HZ * hwc->interrupts >
3253 (u64)sysctl_perf_counter_sample_rate) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003254 hwc->interrupts = MAX_INTERRUPTS;
Ingo Molnar128f0482009-06-03 22:19:36 +02003255 perf_log_throttle(counter, 0);
3256 ret = 1;
3257 }
3258 } else {
3259 /*
3260 * Keep re-disabling counters even though on the previous
3261 * pass we disabled it - just in case we raced with a
3262 * sched-in and the counter got enabled again:
3263 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003264 ret = 1;
3265 }
3266 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003267
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003268 if (counter->attr.freq) {
3269 u64 now = sched_clock();
3270 s64 delta = now - hwc->freq_stamp;
3271
3272 hwc->freq_stamp = now;
3273
3274 if (delta > 0 && delta < TICK_NSEC)
3275 perf_adjust_period(counter, NSEC_PER_SEC / (int)delta);
3276 }
3277
Peter Zijlstra2023b352009-05-05 17:50:26 +02003278 /*
3279 * XXX event_limit might not quite work as expected on inherited
3280 * counters
3281 */
3282
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003283 counter->pending_kill = POLL_IN;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003284 if (events && atomic_dec_and_test(&counter->event_limit)) {
3285 ret = 1;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003286 counter->pending_kill = POLL_HUP;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003287 if (nmi) {
3288 counter->pending_disable = 1;
3289 perf_pending_queue(&counter->pending,
3290 perf_pending_counter);
3291 } else
3292 perf_counter_disable(counter);
3293 }
3294
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003295 perf_counter_output(counter, nmi, data);
Peter Zijlstra79f14642009-04-06 11:45:07 +02003296 return ret;
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003297}
3298
3299/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003300 * Generic software counter infrastructure
3301 */
3302
3303static void perf_swcounter_update(struct perf_counter *counter)
3304{
3305 struct hw_perf_counter *hwc = &counter->hw;
3306 u64 prev, now;
3307 s64 delta;
3308
3309again:
3310 prev = atomic64_read(&hwc->prev_count);
3311 now = atomic64_read(&hwc->count);
3312 if (atomic64_cmpxchg(&hwc->prev_count, prev, now) != prev)
3313 goto again;
3314
3315 delta = now - prev;
3316
3317 atomic64_add(delta, &counter->count);
3318 atomic64_sub(delta, &hwc->period_left);
3319}
3320
3321static void perf_swcounter_set_period(struct perf_counter *counter)
3322{
3323 struct hw_perf_counter *hwc = &counter->hw;
3324 s64 left = atomic64_read(&hwc->period_left);
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003325 s64 period = hwc->sample_period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003326
3327 if (unlikely(left <= -period)) {
3328 left = period;
3329 atomic64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02003330 hwc->last_period = period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003331 }
3332
3333 if (unlikely(left <= 0)) {
3334 left += period;
3335 atomic64_add(period, &hwc->period_left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02003336 hwc->last_period = period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003337 }
3338
3339 atomic64_set(&hwc->prev_count, -left);
3340 atomic64_set(&hwc->count, -left);
3341}
3342
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003343static enum hrtimer_restart perf_swcounter_hrtimer(struct hrtimer *hrtimer)
3344{
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003345 enum hrtimer_restart ret = HRTIMER_RESTART;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003346 struct perf_sample_data data;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003347 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003348 u64 period;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003349
3350 counter = container_of(hrtimer, struct perf_counter, hw.hrtimer);
Robert Richter4aeb0b42009-04-29 12:47:03 +02003351 counter->pmu->read(counter);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003352
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003353 data.addr = 0;
3354 data.regs = get_irq_regs();
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003355 /*
3356 * In case we exclude kernel IPs or are somehow not in interrupt
3357 * context, provide the next best thing, the user IP.
3358 */
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003359 if ((counter->attr.exclude_kernel || !data.regs) &&
Peter Zijlstra0d486962009-06-02 19:22:16 +02003360 !counter->attr.exclude_user)
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003361 data.regs = task_pt_regs(current);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003362
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003363 if (data.regs) {
3364 if (perf_counter_overflow(counter, 0, &data))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003365 ret = HRTIMER_NORESTART;
3366 }
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003367
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003368 period = max_t(u64, 10000, counter->hw.sample_period);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003369 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003370
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003371 return ret;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003372}
3373
3374static void perf_swcounter_overflow(struct perf_counter *counter,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003375 int nmi, struct perf_sample_data *data)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003376{
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003377 data->period = counter->hw.last_period;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003378
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003379 perf_swcounter_update(counter);
3380 perf_swcounter_set_period(counter);
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003381 if (perf_counter_overflow(counter, nmi, data))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003382 /* soft-disable the counter */
3383 ;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003384}
3385
Paul Mackerras880ca152009-06-01 17:49:14 +10003386static int perf_swcounter_is_counting(struct perf_counter *counter)
3387{
3388 struct perf_counter_context *ctx;
3389 unsigned long flags;
3390 int count;
3391
3392 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
3393 return 1;
3394
3395 if (counter->state != PERF_COUNTER_STATE_INACTIVE)
3396 return 0;
3397
3398 /*
3399 * If the counter is inactive, it could be just because
3400 * its task is scheduled out, or because it's in a group
3401 * which could not go on the PMU. We want to count in
3402 * the first case but not the second. If the context is
3403 * currently active then an inactive software counter must
3404 * be the second case. If it's not currently active then
3405 * we need to know whether the counter was active when the
3406 * context was last active, which we can determine by
3407 * comparing counter->tstamp_stopped with ctx->time.
3408 *
3409 * We are within an RCU read-side critical section,
3410 * which protects the existence of *ctx.
3411 */
3412 ctx = counter->ctx;
3413 spin_lock_irqsave(&ctx->lock, flags);
3414 count = 1;
3415 /* Re-check state now we have the lock */
3416 if (counter->state < PERF_COUNTER_STATE_INACTIVE ||
3417 counter->ctx->is_active ||
3418 counter->tstamp_stopped < ctx->time)
3419 count = 0;
3420 spin_unlock_irqrestore(&ctx->lock, flags);
3421 return count;
3422}
3423
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003424static int perf_swcounter_match(struct perf_counter *counter,
Peter Zijlstra1c432d82009-06-11 13:19:29 +02003425 enum perf_type_id type,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003426 u32 event, struct pt_regs *regs)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003427{
Paul Mackerras880ca152009-06-01 17:49:14 +10003428 if (!perf_swcounter_is_counting(counter))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003429 return 0;
3430
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003431 if (counter->attr.type != type)
3432 return 0;
3433 if (counter->attr.config != event)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003434 return 0;
3435
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003436 if (regs) {
Peter Zijlstra0d486962009-06-02 19:22:16 +02003437 if (counter->attr.exclude_user && user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003438 return 0;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003439
Peter Zijlstra0d486962009-06-02 19:22:16 +02003440 if (counter->attr.exclude_kernel && !user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003441 return 0;
3442 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003443
3444 return 1;
3445}
3446
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003447static void perf_swcounter_add(struct perf_counter *counter, u64 nr,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003448 int nmi, struct perf_sample_data *data)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003449{
3450 int neg = atomic64_add_negative(nr, &counter->hw.count);
Ingo Molnar22a4f652009-06-01 10:13:37 +02003451
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003452 if (counter->hw.sample_period && !neg && data->regs)
3453 perf_swcounter_overflow(counter, nmi, data);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003454}
3455
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003456static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003457 enum perf_type_id type,
3458 u32 event, u64 nr, int nmi,
3459 struct perf_sample_data *data)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003460{
3461 struct perf_counter *counter;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003462
Peter Zijlstra01ef09d2009-03-19 20:26:11 +01003463 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003464 return;
3465
Peter Zijlstra592903c2009-03-13 12:21:36 +01003466 rcu_read_lock();
3467 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003468 if (perf_swcounter_match(counter, type, event, data->regs))
3469 perf_swcounter_add(counter, nr, nmi, data);
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003470 }
Peter Zijlstra592903c2009-03-13 12:21:36 +01003471 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003472}
3473
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003474static int *perf_swcounter_recursion_context(struct perf_cpu_context *cpuctx)
3475{
3476 if (in_nmi())
3477 return &cpuctx->recursion[3];
3478
3479 if (in_irq())
3480 return &cpuctx->recursion[2];
3481
3482 if (in_softirq())
3483 return &cpuctx->recursion[1];
3484
3485 return &cpuctx->recursion[0];
3486}
3487
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003488static void do_perf_swcounter_event(enum perf_type_id type, u32 event,
3489 u64 nr, int nmi,
3490 struct perf_sample_data *data)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003491{
3492 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003493 int *recursion = perf_swcounter_recursion_context(cpuctx);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003494 struct perf_counter_context *ctx;
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003495
3496 if (*recursion)
3497 goto out;
3498
3499 (*recursion)++;
3500 barrier();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003501
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003502 perf_swcounter_ctx_event(&cpuctx->ctx, type, event,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003503 nr, nmi, data);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003504 rcu_read_lock();
3505 /*
3506 * doesn't really matter which of the child contexts the
3507 * events ends up in.
3508 */
3509 ctx = rcu_dereference(current->perf_counter_ctxp);
3510 if (ctx)
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003511 perf_swcounter_ctx_event(ctx, type, event, nr, nmi, data);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003512 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003513
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003514 barrier();
3515 (*recursion)--;
3516
3517out:
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003518 put_cpu_var(perf_cpu_context);
3519}
3520
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003521void __perf_swcounter_event(u32 event, u64 nr, int nmi,
3522 struct pt_regs *regs, u64 addr)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003523{
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003524 struct perf_sample_data data = {
3525 .regs = regs,
3526 .addr = addr,
3527 };
3528
3529 do_perf_swcounter_event(PERF_TYPE_SOFTWARE, event, nr, nmi, &data);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003530}
3531
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003532static void perf_swcounter_read(struct perf_counter *counter)
3533{
3534 perf_swcounter_update(counter);
3535}
3536
3537static int perf_swcounter_enable(struct perf_counter *counter)
3538{
3539 perf_swcounter_set_period(counter);
3540 return 0;
3541}
3542
3543static void perf_swcounter_disable(struct perf_counter *counter)
3544{
3545 perf_swcounter_update(counter);
3546}
3547
Robert Richter4aeb0b42009-04-29 12:47:03 +02003548static const struct pmu perf_ops_generic = {
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003549 .enable = perf_swcounter_enable,
3550 .disable = perf_swcounter_disable,
3551 .read = perf_swcounter_read,
3552};
3553
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003554/*
3555 * Software counter: cpu wall time clock
3556 */
3557
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003558static void cpu_clock_perf_counter_update(struct perf_counter *counter)
3559{
3560 int cpu = raw_smp_processor_id();
3561 s64 prev;
3562 u64 now;
3563
3564 now = cpu_clock(cpu);
3565 prev = atomic64_read(&counter->hw.prev_count);
3566 atomic64_set(&counter->hw.prev_count, now);
3567 atomic64_add(now - prev, &counter->count);
3568}
3569
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003570static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
3571{
3572 struct hw_perf_counter *hwc = &counter->hw;
3573 int cpu = raw_smp_processor_id();
3574
3575 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
Peter Zijlstra039fc912009-03-13 16:43:47 +01003576 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3577 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003578 if (hwc->sample_period) {
3579 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003580 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003581 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003582 HRTIMER_MODE_REL, 0);
3583 }
3584
3585 return 0;
3586}
3587
Ingo Molnar5c92d122008-12-11 13:21:10 +01003588static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
3589{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003590 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003591 hrtimer_cancel(&counter->hw.hrtimer);
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003592 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003593}
3594
3595static void cpu_clock_perf_counter_read(struct perf_counter *counter)
3596{
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003597 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003598}
3599
Robert Richter4aeb0b42009-04-29 12:47:03 +02003600static const struct pmu perf_ops_cpu_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003601 .enable = cpu_clock_perf_counter_enable,
3602 .disable = cpu_clock_perf_counter_disable,
3603 .read = cpu_clock_perf_counter_read,
Ingo Molnar5c92d122008-12-11 13:21:10 +01003604};
3605
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003606/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003607 * Software counter: task time clock
3608 */
3609
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003610static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
Ingo Molnarbae43c92008-12-11 14:03:20 +01003611{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003612 u64 prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003613 s64 delta;
Ingo Molnarbae43c92008-12-11 14:03:20 +01003614
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003615 prev = atomic64_xchg(&counter->hw.prev_count, now);
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003616 delta = now - prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003617 atomic64_add(delta, &counter->count);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003618}
3619
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003620static int task_clock_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003621{
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003622 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003623 u64 now;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003624
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003625 now = counter->ctx->time;
3626
3627 atomic64_set(&hwc->prev_count, now);
Peter Zijlstra039fc912009-03-13 16:43:47 +01003628 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3629 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003630 if (hwc->sample_period) {
3631 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003632 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003633 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003634 HRTIMER_MODE_REL, 0);
3635 }
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003636
3637 return 0;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003638}
3639
3640static void task_clock_perf_counter_disable(struct perf_counter *counter)
3641{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003642 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003643 hrtimer_cancel(&counter->hw.hrtimer);
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003644 task_clock_perf_counter_update(counter, counter->ctx->time);
3645
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003646}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003647
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003648static void task_clock_perf_counter_read(struct perf_counter *counter)
3649{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003650 u64 time;
3651
3652 if (!in_nmi()) {
3653 update_context_time(counter->ctx);
3654 time = counter->ctx->time;
3655 } else {
3656 u64 now = perf_clock();
3657 u64 delta = now - counter->ctx->timestamp;
3658 time = counter->ctx->time + delta;
3659 }
3660
3661 task_clock_perf_counter_update(counter, time);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003662}
3663
Robert Richter4aeb0b42009-04-29 12:47:03 +02003664static const struct pmu perf_ops_task_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003665 .enable = task_clock_perf_counter_enable,
3666 .disable = task_clock_perf_counter_disable,
3667 .read = task_clock_perf_counter_read,
Ingo Molnarbae43c92008-12-11 14:03:20 +01003668};
3669
Peter Zijlstrae077df42009-03-19 20:26:17 +01003670#ifdef CONFIG_EVENT_PROFILE
3671void perf_tpcounter_event(int event_id)
3672{
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003673 struct perf_sample_data data = {
3674 .regs = get_irq_regs();
3675 .addr = 0,
3676 };
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003677
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003678 if (!data.regs)
3679 data.regs = task_pt_regs(current);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003680
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003681 do_perf_swcounter_event(PERF_TYPE_TRACEPOINT, event_id, 1, 1, &data);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003682}
Steven Whitehouseff7b1b42009-04-15 16:55:05 +01003683EXPORT_SYMBOL_GPL(perf_tpcounter_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003684
3685extern int ftrace_profile_enable(int);
3686extern void ftrace_profile_disable(int);
3687
3688static void tp_perf_counter_destroy(struct perf_counter *counter)
3689{
Peter Zijlstra0d486962009-06-02 19:22:16 +02003690 ftrace_profile_disable(perf_event_id(&counter->attr));
Peter Zijlstrae077df42009-03-19 20:26:17 +01003691}
3692
Robert Richter4aeb0b42009-04-29 12:47:03 +02003693static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003694{
Peter Zijlstra0d486962009-06-02 19:22:16 +02003695 int event_id = perf_event_id(&counter->attr);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003696 int ret;
3697
3698 ret = ftrace_profile_enable(event_id);
3699 if (ret)
3700 return NULL;
3701
3702 counter->destroy = tp_perf_counter_destroy;
3703
3704 return &perf_ops_generic;
3705}
3706#else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003707static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003708{
3709 return NULL;
3710}
3711#endif
3712
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003713atomic_t perf_swcounter_enabled[PERF_COUNT_SW_MAX];
3714
3715static void sw_perf_counter_destroy(struct perf_counter *counter)
3716{
3717 u64 event = counter->attr.config;
3718
Peter Zijlstraf3440112009-06-22 13:58:35 +02003719 WARN_ON(counter->parent);
3720
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003721 atomic_dec(&perf_swcounter_enabled[event]);
3722}
3723
Robert Richter4aeb0b42009-04-29 12:47:03 +02003724static const struct pmu *sw_perf_counter_init(struct perf_counter *counter)
Ingo Molnar5c92d122008-12-11 13:21:10 +01003725{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003726 const struct pmu *pmu = NULL;
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003727 u64 event = counter->attr.config;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003728
Paul Mackerras0475f9e2009-02-11 14:35:35 +11003729 /*
3730 * Software counters (currently) can't in general distinguish
3731 * between user, kernel and hypervisor events.
3732 * However, context switches and cpu migrations are considered
3733 * to be kernel events, and page faults are never hypervisor
3734 * events.
3735 */
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003736 switch (event) {
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003737 case PERF_COUNT_SW_CPU_CLOCK:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003738 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003739
Ingo Molnar5c92d122008-12-11 13:21:10 +01003740 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003741 case PERF_COUNT_SW_TASK_CLOCK:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003742 /*
3743 * If the user instantiates this as a per-cpu counter,
3744 * use the cpu_clock counter instead.
3745 */
3746 if (counter->ctx->task)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003747 pmu = &perf_ops_task_clock;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003748 else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003749 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003750
Ingo Molnarbae43c92008-12-11 14:03:20 +01003751 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003752 case PERF_COUNT_SW_PAGE_FAULTS:
3753 case PERF_COUNT_SW_PAGE_FAULTS_MIN:
3754 case PERF_COUNT_SW_PAGE_FAULTS_MAJ:
3755 case PERF_COUNT_SW_CONTEXT_SWITCHES:
3756 case PERF_COUNT_SW_CPU_MIGRATIONS:
Peter Zijlstraf3440112009-06-22 13:58:35 +02003757 if (!counter->parent) {
3758 atomic_inc(&perf_swcounter_enabled[event]);
3759 counter->destroy = sw_perf_counter_destroy;
3760 }
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003761 pmu = &perf_ops_generic;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003762 break;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003763 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003764
Robert Richter4aeb0b42009-04-29 12:47:03 +02003765 return pmu;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003766}
3767
Thomas Gleixner0793a612008-12-04 20:12:29 +01003768/*
3769 * Allocate and initialize a counter structure
3770 */
3771static struct perf_counter *
Peter Zijlstra0d486962009-06-02 19:22:16 +02003772perf_counter_alloc(struct perf_counter_attr *attr,
Ingo Molnar04289bb2008-12-11 08:38:42 +01003773 int cpu,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003774 struct perf_counter_context *ctx,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003775 struct perf_counter *group_leader,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02003776 struct perf_counter *parent_counter,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003777 gfp_t gfpflags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003778{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003779 const struct pmu *pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01003780 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003781 struct hw_perf_counter *hwc;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003782 long err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003783
Ingo Molnar9b51f662008-12-12 13:49:45 +01003784 counter = kzalloc(sizeof(*counter), gfpflags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003785 if (!counter)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003786 return ERR_PTR(-ENOMEM);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003787
Ingo Molnar04289bb2008-12-11 08:38:42 +01003788 /*
3789 * Single counters are their own group leaders, with an
3790 * empty sibling list:
3791 */
3792 if (!group_leader)
3793 group_leader = counter;
3794
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003795 mutex_init(&counter->child_mutex);
3796 INIT_LIST_HEAD(&counter->child_list);
3797
Ingo Molnar04289bb2008-12-11 08:38:42 +01003798 INIT_LIST_HEAD(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +01003799 INIT_LIST_HEAD(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003800 INIT_LIST_HEAD(&counter->sibling_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003801 init_waitqueue_head(&counter->waitq);
3802
Peter Zijlstra7b732a72009-03-23 18:22:10 +01003803 mutex_init(&counter->mmap_mutex);
3804
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003805 counter->cpu = cpu;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003806 counter->attr = *attr;
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003807 counter->group_leader = group_leader;
3808 counter->pmu = NULL;
3809 counter->ctx = ctx;
3810 counter->oncpu = -1;
Ingo Molnar329d8762009-05-26 08:10:00 +02003811
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02003812 counter->parent = parent_counter;
3813
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003814 counter->ns = get_pid_ns(current->nsproxy->pid_ns);
3815 counter->id = atomic64_inc_return(&perf_counter_id);
3816
3817 counter->state = PERF_COUNTER_STATE_INACTIVE;
3818
Peter Zijlstra0d486962009-06-02 19:22:16 +02003819 if (attr->disabled)
Ingo Molnara86ed502008-12-17 00:43:10 +01003820 counter->state = PERF_COUNTER_STATE_OFF;
3821
Robert Richter4aeb0b42009-04-29 12:47:03 +02003822 pmu = NULL;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003823
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003824 hwc = &counter->hw;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003825 hwc->sample_period = attr->sample_period;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003826 if (attr->freq && attr->sample_freq)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003827 hwc->sample_period = 1;
3828
3829 atomic64_set(&hwc->period_left, hwc->sample_period);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003830
Peter Zijlstra2023b352009-05-05 17:50:26 +02003831 /*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003832 * we currently do not support PERF_SAMPLE_GROUP on inherited counters
Peter Zijlstra2023b352009-05-05 17:50:26 +02003833 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02003834 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_GROUP))
Peter Zijlstra2023b352009-05-05 17:50:26 +02003835 goto done;
3836
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003837 switch (attr->type) {
Peter Zijlstra081fad82009-06-11 17:57:21 +02003838 case PERF_TYPE_RAW:
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003839 case PERF_TYPE_HARDWARE:
Ingo Molnar8326f442009-06-05 20:22:46 +02003840 case PERF_TYPE_HW_CACHE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003841 pmu = hw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003842 break;
3843
3844 case PERF_TYPE_SOFTWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003845 pmu = sw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003846 break;
3847
3848 case PERF_TYPE_TRACEPOINT:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003849 pmu = tp_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003850 break;
Peter Zijlstra974802e2009-06-12 12:46:55 +02003851
3852 default:
3853 break;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003854 }
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +01003855done:
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003856 err = 0;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003857 if (!pmu)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003858 err = -EINVAL;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003859 else if (IS_ERR(pmu))
3860 err = PTR_ERR(pmu);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003861
3862 if (err) {
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003863 if (counter->ns)
3864 put_pid_ns(counter->ns);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003865 kfree(counter);
3866 return ERR_PTR(err);
3867 }
3868
Robert Richter4aeb0b42009-04-29 12:47:03 +02003869 counter->pmu = pmu;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003870
Peter Zijlstraf3440112009-06-22 13:58:35 +02003871 if (!counter->parent) {
3872 atomic_inc(&nr_counters);
3873 if (counter->attr.mmap)
3874 atomic_inc(&nr_mmap_counters);
3875 if (counter->attr.comm)
3876 atomic_inc(&nr_comm_counters);
3877 }
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003878
Thomas Gleixner0793a612008-12-04 20:12:29 +01003879 return counter;
3880}
3881
Peter Zijlstra974802e2009-06-12 12:46:55 +02003882static int perf_copy_attr(struct perf_counter_attr __user *uattr,
3883 struct perf_counter_attr *attr)
3884{
3885 int ret;
3886 u32 size;
3887
3888 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
3889 return -EFAULT;
3890
3891 /*
3892 * zero the full structure, so that a short copy will be nice.
3893 */
3894 memset(attr, 0, sizeof(*attr));
3895
3896 ret = get_user(size, &uattr->size);
3897 if (ret)
3898 return ret;
3899
3900 if (size > PAGE_SIZE) /* silly large */
3901 goto err_size;
3902
3903 if (!size) /* abi compat */
3904 size = PERF_ATTR_SIZE_VER0;
3905
3906 if (size < PERF_ATTR_SIZE_VER0)
3907 goto err_size;
3908
3909 /*
3910 * If we're handed a bigger struct than we know of,
3911 * ensure all the unknown bits are 0.
3912 */
3913 if (size > sizeof(*attr)) {
3914 unsigned long val;
3915 unsigned long __user *addr;
3916 unsigned long __user *end;
3917
3918 addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr),
3919 sizeof(unsigned long));
3920 end = PTR_ALIGN((void __user *)uattr + size,
3921 sizeof(unsigned long));
3922
3923 for (; addr < end; addr += sizeof(unsigned long)) {
3924 ret = get_user(val, addr);
3925 if (ret)
3926 return ret;
3927 if (val)
3928 goto err_size;
3929 }
3930 }
3931
3932 ret = copy_from_user(attr, uattr, size);
3933 if (ret)
3934 return -EFAULT;
3935
3936 /*
3937 * If the type exists, the corresponding creation will verify
3938 * the attr->config.
3939 */
3940 if (attr->type >= PERF_TYPE_MAX)
3941 return -EINVAL;
3942
3943 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
3944 return -EINVAL;
3945
3946 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
3947 return -EINVAL;
3948
3949 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
3950 return -EINVAL;
3951
3952out:
3953 return ret;
3954
3955err_size:
3956 put_user(sizeof(*attr), &uattr->size);
3957 ret = -E2BIG;
3958 goto out;
3959}
3960
Thomas Gleixner0793a612008-12-04 20:12:29 +01003961/**
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003962 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
Ingo Molnar9f66a382008-12-10 12:33:23 +01003963 *
Peter Zijlstra0d486962009-06-02 19:22:16 +02003964 * @attr_uptr: event type attributes for monitoring/sampling
Thomas Gleixner0793a612008-12-04 20:12:29 +01003965 * @pid: target pid
Ingo Molnar9f66a382008-12-10 12:33:23 +01003966 * @cpu: target cpu
3967 * @group_fd: group leader counter fd
Thomas Gleixner0793a612008-12-04 20:12:29 +01003968 */
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003969SYSCALL_DEFINE5(perf_counter_open,
Peter Zijlstra974802e2009-06-12 12:46:55 +02003970 struct perf_counter_attr __user *, attr_uptr,
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003971 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003972{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003973 struct perf_counter *counter, *group_leader;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003974 struct perf_counter_attr attr;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003975 struct perf_counter_context *ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003976 struct file *counter_file = NULL;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003977 struct file *group_file = NULL;
3978 int fput_needed = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003979 int fput_needed2 = 0;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003980 int ret;
3981
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003982 /* for future expandability... */
3983 if (flags)
3984 return -EINVAL;
3985
Peter Zijlstra974802e2009-06-12 12:46:55 +02003986 ret = perf_copy_attr(attr_uptr, &attr);
3987 if (ret)
3988 return ret;
Thomas Gleixnereab656a2008-12-08 19:26:59 +01003989
Peter Zijlstra07647712009-06-11 11:18:36 +02003990 if (!attr.exclude_kernel) {
3991 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
3992 return -EACCES;
3993 }
3994
Peter Zijlstradf58ab22009-06-11 11:25:05 +02003995 if (attr.freq) {
3996 if (attr.sample_freq > sysctl_perf_counter_sample_rate)
3997 return -EINVAL;
3998 }
3999
Ingo Molnar04289bb2008-12-11 08:38:42 +01004000 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01004001 * Get the target context (task or percpu):
4002 */
4003 ctx = find_get_context(pid, cpu);
4004 if (IS_ERR(ctx))
4005 return PTR_ERR(ctx);
4006
4007 /*
4008 * Look up the group leader (we will attach this counter to it):
Ingo Molnar04289bb2008-12-11 08:38:42 +01004009 */
4010 group_leader = NULL;
4011 if (group_fd != -1) {
4012 ret = -EINVAL;
4013 group_file = fget_light(group_fd, &fput_needed);
4014 if (!group_file)
Ingo Molnarccff2862008-12-11 11:26:29 +01004015 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004016 if (group_file->f_op != &perf_fops)
Ingo Molnarccff2862008-12-11 11:26:29 +01004017 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004018
4019 group_leader = group_file->private_data;
4020 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01004021 * Do not allow a recursive hierarchy (this new sibling
4022 * becoming part of another group-sibling):
Ingo Molnar04289bb2008-12-11 08:38:42 +01004023 */
Ingo Molnarccff2862008-12-11 11:26:29 +01004024 if (group_leader->group_leader != group_leader)
4025 goto err_put_context;
4026 /*
4027 * Do not allow to attach to a group in a different
4028 * task or CPU context:
4029 */
4030 if (group_leader->ctx != ctx)
4031 goto err_put_context;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11004032 /*
4033 * Only a group leader can be exclusive or pinned
4034 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02004035 if (attr.exclusive || attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11004036 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004037 }
4038
Peter Zijlstra0d486962009-06-02 19:22:16 +02004039 counter = perf_counter_alloc(&attr, cpu, ctx, group_leader,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004040 NULL, GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004041 ret = PTR_ERR(counter);
4042 if (IS_ERR(counter))
Thomas Gleixner0793a612008-12-04 20:12:29 +01004043 goto err_put_context;
4044
Thomas Gleixner0793a612008-12-04 20:12:29 +01004045 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
4046 if (ret < 0)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004047 goto err_free_put_context;
4048
4049 counter_file = fget_light(ret, &fput_needed2);
4050 if (!counter_file)
4051 goto err_free_put_context;
4052
4053 counter->filp = counter_file;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004054 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004055 mutex_lock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004056 perf_install_in_context(ctx, counter, cpu);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004057 ++ctx->generation;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004058 mutex_unlock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004059
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02004060 counter->owner = current;
4061 get_task_struct(current);
4062 mutex_lock(&current->perf_counter_mutex);
4063 list_add_tail(&counter->owner_entry, &current->perf_counter_list);
4064 mutex_unlock(&current->perf_counter_mutex);
4065
Ingo Molnar9b51f662008-12-12 13:49:45 +01004066 fput_light(counter_file, fput_needed2);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004067
Ingo Molnar04289bb2008-12-11 08:38:42 +01004068out_fput:
4069 fput_light(group_file, fput_needed);
4070
Thomas Gleixner0793a612008-12-04 20:12:29 +01004071 return ret;
4072
Ingo Molnar9b51f662008-12-12 13:49:45 +01004073err_free_put_context:
Thomas Gleixner0793a612008-12-04 20:12:29 +01004074 kfree(counter);
4075
4076err_put_context:
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004077 put_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004078
Ingo Molnar04289bb2008-12-11 08:38:42 +01004079 goto out_fput;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004080}
4081
Ingo Molnar9b51f662008-12-12 13:49:45 +01004082/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004083 * inherit a counter from parent task to child task:
4084 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004085static struct perf_counter *
Ingo Molnar9b51f662008-12-12 13:49:45 +01004086inherit_counter(struct perf_counter *parent_counter,
4087 struct task_struct *parent,
4088 struct perf_counter_context *parent_ctx,
4089 struct task_struct *child,
Paul Mackerrasd859e292009-01-17 18:10:22 +11004090 struct perf_counter *group_leader,
Ingo Molnar9b51f662008-12-12 13:49:45 +01004091 struct perf_counter_context *child_ctx)
4092{
4093 struct perf_counter *child_counter;
4094
Paul Mackerrasd859e292009-01-17 18:10:22 +11004095 /*
4096 * Instead of creating recursive hierarchies of counters,
4097 * we link inherited counters back to the original parent,
4098 * which has a filp for sure, which we use as the reference
4099 * count:
4100 */
4101 if (parent_counter->parent)
4102 parent_counter = parent_counter->parent;
4103
Peter Zijlstra0d486962009-06-02 19:22:16 +02004104 child_counter = perf_counter_alloc(&parent_counter->attr,
Paul Mackerras23a185c2009-02-09 22:42:47 +11004105 parent_counter->cpu, child_ctx,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004106 group_leader, parent_counter,
4107 GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004108 if (IS_ERR(child_counter))
4109 return child_counter;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004110 get_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004111
4112 /*
Paul Mackerras564c2b22009-05-22 14:27:22 +10004113 * Make the child state follow the state of the parent counter,
Peter Zijlstra0d486962009-06-02 19:22:16 +02004114 * not its attr.disabled bit. We hold the parent's mutex,
Ingo Molnar22a4f652009-06-01 10:13:37 +02004115 * so we won't race with perf_counter_{en, dis}able_family.
Paul Mackerras564c2b22009-05-22 14:27:22 +10004116 */
4117 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
4118 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
4119 else
4120 child_counter->state = PERF_COUNTER_STATE_OFF;
4121
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02004122 if (parent_counter->attr.freq)
4123 child_counter->hw.sample_period = parent_counter->hw.sample_period;
4124
Paul Mackerras564c2b22009-05-22 14:27:22 +10004125 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004126 * Link it up in the child's context:
4127 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11004128 add_counter_to_ctx(child_counter, child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004129
Ingo Molnar9b51f662008-12-12 13:49:45 +01004130 /*
4131 * Get a reference to the parent filp - we will fput it
4132 * when the child counter exits. This is safe to do because
4133 * we are in the parent and we know that the filp still
4134 * exists and has a nonzero count:
4135 */
4136 atomic_long_inc(&parent_counter->filp->f_count);
4137
Paul Mackerrasd859e292009-01-17 18:10:22 +11004138 /*
4139 * Link this into the parent counter's child list
4140 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004141 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004142 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004143 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004144 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004145
4146 return child_counter;
4147}
4148
4149static int inherit_group(struct perf_counter *parent_counter,
4150 struct task_struct *parent,
4151 struct perf_counter_context *parent_ctx,
4152 struct task_struct *child,
4153 struct perf_counter_context *child_ctx)
4154{
4155 struct perf_counter *leader;
4156 struct perf_counter *sub;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004157 struct perf_counter *child_ctr;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004158
4159 leader = inherit_counter(parent_counter, parent, parent_ctx,
4160 child, NULL, child_ctx);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004161 if (IS_ERR(leader))
4162 return PTR_ERR(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004163 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004164 child_ctr = inherit_counter(sub, parent, parent_ctx,
4165 child, leader, child_ctx);
4166 if (IS_ERR(child_ctr))
4167 return PTR_ERR(child_ctr);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004168 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004169 return 0;
4170}
4171
Paul Mackerrasd859e292009-01-17 18:10:22 +11004172static void sync_child_counter(struct perf_counter *child_counter,
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004173 struct task_struct *child)
Paul Mackerrasd859e292009-01-17 18:10:22 +11004174{
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004175 struct perf_counter *parent_counter = child_counter->parent;
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004176 u64 child_val;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004177
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02004178 if (child_counter->attr.inherit_stat)
4179 perf_counter_read_event(child_counter, child);
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004180
Paul Mackerrasd859e292009-01-17 18:10:22 +11004181 child_val = atomic64_read(&child_counter->count);
4182
4183 /*
4184 * Add back the child's count to the parent's count:
4185 */
4186 atomic64_add(child_val, &parent_counter->count);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11004187 atomic64_add(child_counter->total_time_enabled,
4188 &parent_counter->child_total_time_enabled);
4189 atomic64_add(child_counter->total_time_running,
4190 &parent_counter->child_total_time_running);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004191
4192 /*
4193 * Remove this counter from the parent's list
4194 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004195 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004196 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004197 list_del_init(&child_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004198 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004199
4200 /*
4201 * Release the parent counter, if this was the last
4202 * reference to it.
4203 */
4204 fput(parent_counter->filp);
4205}
4206
Ingo Molnar9b51f662008-12-12 13:49:45 +01004207static void
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004208__perf_counter_exit_task(struct perf_counter *child_counter,
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004209 struct perf_counter_context *child_ctx,
4210 struct task_struct *child)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004211{
4212 struct perf_counter *parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004213
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004214 update_counter_times(child_counter);
Peter Zijlstraaa9c67f2009-05-23 18:28:59 +02004215 perf_counter_remove_from_context(child_counter);
Ingo Molnar0cc0c022008-12-14 23:20:36 +01004216
Ingo Molnar9b51f662008-12-12 13:49:45 +01004217 parent_counter = child_counter->parent;
4218 /*
4219 * It can happen that parent exits first, and has counters
4220 * that are still around due to the child reference. These
4221 * counters need to be zapped - but otherwise linger.
4222 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004223 if (parent_counter) {
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004224 sync_child_counter(child_counter, child);
Peter Zijlstraf1600952009-03-19 20:26:16 +01004225 free_counter(child_counter);
Paul Mackerras4bcf3492009-02-11 13:53:19 +01004226 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004227}
4228
4229/*
Paul Mackerrasd859e292009-01-17 18:10:22 +11004230 * When a child task exits, feed back counter values to parent counters.
Ingo Molnar9b51f662008-12-12 13:49:45 +01004231 */
4232void perf_counter_exit_task(struct task_struct *child)
4233{
4234 struct perf_counter *child_counter, *tmp;
4235 struct perf_counter_context *child_ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004236 unsigned long flags;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004237
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004238 if (likely(!child->perf_counter_ctxp))
Ingo Molnar9b51f662008-12-12 13:49:45 +01004239 return;
4240
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004241 local_irq_save(flags);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004242 /*
4243 * We can't reschedule here because interrupts are disabled,
4244 * and either child is current or it is a task that can't be
4245 * scheduled, so we are now safe from rescheduling changing
4246 * our context.
4247 */
4248 child_ctx = child->perf_counter_ctxp;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004249 __perf_counter_task_sched_out(child_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004250
4251 /*
4252 * Take the context lock here so that if find_get_context is
4253 * reading child->perf_counter_ctxp, we wait until it has
4254 * incremented the context's refcount before we do put_ctx below.
4255 */
4256 spin_lock(&child_ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004257 child->perf_counter_ctxp = NULL;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004258 if (child_ctx->parent_ctx) {
4259 /*
4260 * This context is a clone; unclone it so it can't get
4261 * swapped to another process while we're removing all
4262 * the counters from it.
4263 */
4264 put_ctx(child_ctx->parent_ctx);
4265 child_ctx->parent_ctx = NULL;
4266 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004267 spin_unlock(&child_ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004268 local_irq_restore(flags);
4269
Peter Zijlstra66fff222009-06-10 22:53:37 +02004270 /*
4271 * We can recurse on the same lock type through:
4272 *
4273 * __perf_counter_exit_task()
4274 * sync_child_counter()
4275 * fput(parent_counter->filp)
4276 * perf_release()
4277 * mutex_lock(&ctx->mutex)
4278 *
4279 * But since its the parent context it won't be the same instance.
4280 */
4281 mutex_lock_nested(&child_ctx->mutex, SINGLE_DEPTH_NESTING);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004282
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004283again:
Ingo Molnar9b51f662008-12-12 13:49:45 +01004284 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
4285 list_entry)
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004286 __perf_counter_exit_task(child_counter, child_ctx, child);
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004287
4288 /*
4289 * If the last counter was a group counter, it will have appended all
4290 * its siblings to the list, but we obtained 'tmp' before that which
4291 * will still point to the list head terminating the iteration.
4292 */
4293 if (!list_empty(&child_ctx->counter_list))
4294 goto again;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004295
4296 mutex_unlock(&child_ctx->mutex);
4297
4298 put_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004299}
4300
4301/*
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004302 * free an unexposed, unused context as created by inheritance by
4303 * init_task below, used by fork() in case of fail.
4304 */
4305void perf_counter_free_task(struct task_struct *task)
4306{
4307 struct perf_counter_context *ctx = task->perf_counter_ctxp;
4308 struct perf_counter *counter, *tmp;
4309
4310 if (!ctx)
4311 return;
4312
4313 mutex_lock(&ctx->mutex);
4314again:
4315 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry) {
4316 struct perf_counter *parent = counter->parent;
4317
4318 if (WARN_ON_ONCE(!parent))
4319 continue;
4320
4321 mutex_lock(&parent->child_mutex);
4322 list_del_init(&counter->child_list);
4323 mutex_unlock(&parent->child_mutex);
4324
4325 fput(parent->filp);
4326
4327 list_del_counter(counter, ctx);
4328 free_counter(counter);
4329 }
4330
4331 if (!list_empty(&ctx->counter_list))
4332 goto again;
4333
4334 mutex_unlock(&ctx->mutex);
4335
4336 put_ctx(ctx);
4337}
4338
4339/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004340 * Initialize the perf_counter context in task_struct
4341 */
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004342int perf_counter_init_task(struct task_struct *child)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004343{
4344 struct perf_counter_context *child_ctx, *parent_ctx;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004345 struct perf_counter_context *cloned_ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004346 struct perf_counter *counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004347 struct task_struct *parent = current;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004348 int inherited_all = 1;
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004349 int ret = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004350
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004351 child->perf_counter_ctxp = NULL;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004352
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02004353 mutex_init(&child->perf_counter_mutex);
4354 INIT_LIST_HEAD(&child->perf_counter_list);
4355
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004356 if (likely(!parent->perf_counter_ctxp))
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004357 return 0;
4358
Ingo Molnar9b51f662008-12-12 13:49:45 +01004359 /*
4360 * This is executed from the parent task context, so inherit
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004361 * counters that have been marked for cloning.
4362 * First allocate and initialize a context for the child.
Ingo Molnar9b51f662008-12-12 13:49:45 +01004363 */
4364
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004365 child_ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
4366 if (!child_ctx)
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004367 return -ENOMEM;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004368
4369 __perf_counter_init_context(child_ctx, child);
4370 child->perf_counter_ctxp = child_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004371 get_task_struct(child);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004372
Ingo Molnar9b51f662008-12-12 13:49:45 +01004373 /*
Paul Mackerras25346b932009-06-01 17:48:12 +10004374 * If the parent's context is a clone, pin it so it won't get
4375 * swapped under us.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004376 */
Paul Mackerras25346b932009-06-01 17:48:12 +10004377 parent_ctx = perf_pin_task_context(parent);
4378
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004379 /*
4380 * No need to check if parent_ctx != NULL here; since we saw
4381 * it non-NULL earlier, the only reason for it to become NULL
4382 * is if we exit, and since we're currently in the middle of
4383 * a fork we can't be exiting at the same time.
4384 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004385
4386 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004387 * Lock the parent list. No need to lock the child - not PID
4388 * hashed yet and not running, so nobody can access it.
4389 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004390 mutex_lock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004391
4392 /*
4393 * We dont have to disable NMIs - we are only looking at
4394 * the list, not manipulating it:
4395 */
Peter Zijlstrad7b629a2009-05-20 12:21:19 +02004396 list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
4397 if (counter != counter->group_leader)
4398 continue;
4399
Peter Zijlstra0d486962009-06-02 19:22:16 +02004400 if (!counter->attr.inherit) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004401 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004402 continue;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004403 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004404
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004405 ret = inherit_group(counter, parent, parent_ctx,
4406 child, child_ctx);
4407 if (ret) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004408 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004409 break;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004410 }
4411 }
4412
4413 if (inherited_all) {
4414 /*
4415 * Mark the child context as a clone of the parent
4416 * context, or of whatever the parent is a clone of.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004417 * Note that if the parent is a clone, it could get
4418 * uncloned at any point, but that doesn't matter
4419 * because the list of counters and the generation
4420 * count can't have changed since we took the mutex.
Paul Mackerras564c2b22009-05-22 14:27:22 +10004421 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004422 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
4423 if (cloned_ctx) {
4424 child_ctx->parent_ctx = cloned_ctx;
Paul Mackerras25346b932009-06-01 17:48:12 +10004425 child_ctx->parent_gen = parent_ctx->parent_gen;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004426 } else {
4427 child_ctx->parent_ctx = parent_ctx;
4428 child_ctx->parent_gen = parent_ctx->generation;
4429 }
4430 get_ctx(child_ctx->parent_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004431 }
4432
Paul Mackerrasd859e292009-01-17 18:10:22 +11004433 mutex_unlock(&parent_ctx->mutex);
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004434
Paul Mackerras25346b932009-06-01 17:48:12 +10004435 perf_unpin_context(parent_ctx);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004436
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004437 return ret;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004438}
4439
Ingo Molnar04289bb2008-12-11 08:38:42 +01004440static void __cpuinit perf_counter_init_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004441{
Ingo Molnar04289bb2008-12-11 08:38:42 +01004442 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004443
Ingo Molnar04289bb2008-12-11 08:38:42 +01004444 cpuctx = &per_cpu(perf_cpu_context, cpu);
4445 __perf_counter_init_context(&cpuctx->ctx, NULL);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004446
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004447 spin_lock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004448 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004449 spin_unlock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004450
Paul Mackerras01d02872009-01-14 13:44:19 +11004451 hw_perf_counter_setup(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004452}
4453
4454#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnar04289bb2008-12-11 08:38:42 +01004455static void __perf_counter_exit_cpu(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004456{
4457 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
4458 struct perf_counter_context *ctx = &cpuctx->ctx;
4459 struct perf_counter *counter, *tmp;
4460
Ingo Molnar04289bb2008-12-11 08:38:42 +01004461 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
4462 __perf_counter_remove_from_context(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004463}
Ingo Molnar04289bb2008-12-11 08:38:42 +01004464static void perf_counter_exit_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004465{
Paul Mackerrasd859e292009-01-17 18:10:22 +11004466 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
4467 struct perf_counter_context *ctx = &cpuctx->ctx;
4468
4469 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004470 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004471 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004472}
4473#else
Ingo Molnar04289bb2008-12-11 08:38:42 +01004474static inline void perf_counter_exit_cpu(int cpu) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +01004475#endif
4476
4477static int __cpuinit
4478perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
4479{
4480 unsigned int cpu = (long)hcpu;
4481
4482 switch (action) {
4483
4484 case CPU_UP_PREPARE:
4485 case CPU_UP_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004486 perf_counter_init_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004487 break;
4488
4489 case CPU_DOWN_PREPARE:
4490 case CPU_DOWN_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004491 perf_counter_exit_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004492 break;
4493
4494 default:
4495 break;
4496 }
4497
4498 return NOTIFY_OK;
4499}
4500
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004501/*
4502 * This has to have a higher priority than migration_notifier in sched.c.
4503 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01004504static struct notifier_block __cpuinitdata perf_cpu_nb = {
4505 .notifier_call = perf_cpu_notify,
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004506 .priority = 20,
Thomas Gleixner0793a612008-12-04 20:12:29 +01004507};
4508
Ingo Molnar0d905bc2009-05-04 19:13:30 +02004509void __init perf_counter_init(void)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004510{
4511 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
4512 (void *)(long)smp_processor_id());
4513 register_cpu_notifier(&perf_cpu_nb);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004514}
Thomas Gleixner0793a612008-12-04 20:12:29 +01004515
4516static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
4517{
4518 return sprintf(buf, "%d\n", perf_reserved_percpu);
4519}
4520
4521static ssize_t
4522perf_set_reserve_percpu(struct sysdev_class *class,
4523 const char *buf,
4524 size_t count)
4525{
4526 struct perf_cpu_context *cpuctx;
4527 unsigned long val;
4528 int err, cpu, mpt;
4529
4530 err = strict_strtoul(buf, 10, &val);
4531 if (err)
4532 return err;
4533 if (val > perf_max_counters)
4534 return -EINVAL;
4535
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004536 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004537 perf_reserved_percpu = val;
4538 for_each_online_cpu(cpu) {
4539 cpuctx = &per_cpu(perf_cpu_context, cpu);
4540 spin_lock_irq(&cpuctx->ctx.lock);
4541 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
4542 perf_max_counters - perf_reserved_percpu);
4543 cpuctx->max_pertask = mpt;
4544 spin_unlock_irq(&cpuctx->ctx.lock);
4545 }
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004546 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004547
4548 return count;
4549}
4550
4551static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
4552{
4553 return sprintf(buf, "%d\n", perf_overcommit);
4554}
4555
4556static ssize_t
4557perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
4558{
4559 unsigned long val;
4560 int err;
4561
4562 err = strict_strtoul(buf, 10, &val);
4563 if (err)
4564 return err;
4565 if (val > 1)
4566 return -EINVAL;
4567
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004568 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004569 perf_overcommit = val;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004570 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004571
4572 return count;
4573}
4574
4575static SYSDEV_CLASS_ATTR(
4576 reserve_percpu,
4577 0644,
4578 perf_show_reserve_percpu,
4579 perf_set_reserve_percpu
4580 );
4581
4582static SYSDEV_CLASS_ATTR(
4583 overcommit,
4584 0644,
4585 perf_show_overcommit,
4586 perf_set_overcommit
4587 );
4588
4589static struct attribute *perfclass_attrs[] = {
4590 &attr_reserve_percpu.attr,
4591 &attr_overcommit.attr,
4592 NULL
4593};
4594
4595static struct attribute_group perfclass_attr_group = {
4596 .attrs = perfclass_attrs,
4597 .name = "perf_counters",
4598};
4599
4600static int __init perf_counter_sysfs_init(void)
4601{
4602 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
4603 &perfclass_attr_group);
4604}
4605device_initcall(perf_counter_sysfs_init);