blob: 29b685f551aac6aa2f5bee8e1356755ae5627001 [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 Zijlstra7b732a752009-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{
127 atomic_inc(&ctx->refcount);
128}
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 }
178 }
179 rcu_read_unlock();
180 return ctx;
181}
182
183/*
184 * Get the context for a task and increment its pin_count so it
185 * can't get swapped to another task. This also increments its
186 * reference count so that the context can't get freed.
187 */
188static struct perf_counter_context *perf_pin_task_context(struct task_struct *task)
189{
190 struct perf_counter_context *ctx;
191 unsigned long flags;
192
193 ctx = perf_lock_task_context(task, &flags);
194 if (ctx) {
195 ++ctx->pin_count;
196 get_ctx(ctx);
197 spin_unlock_irqrestore(&ctx->lock, flags);
198 }
199 return ctx;
200}
201
202static void perf_unpin_context(struct perf_counter_context *ctx)
203{
204 unsigned long flags;
205
206 spin_lock_irqsave(&ctx->lock, flags);
207 --ctx->pin_count;
208 spin_unlock_irqrestore(&ctx->lock, flags);
209 put_ctx(ctx);
210}
211
212/*
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200213 * Add a counter from the lists for its context.
214 * Must be called with ctx->mutex and ctx->lock held.
215 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100216static void
217list_add_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
218{
219 struct perf_counter *group_leader = counter->group_leader;
220
221 /*
222 * Depending on whether it is a standalone or sibling counter,
223 * add it straight to the context's counter list, or to the group
224 * leader's sibling list:
225 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +0200226 if (group_leader == counter)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100227 list_add_tail(&counter->list_entry, &ctx->counter_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100228 else {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100229 list_add_tail(&counter->list_entry, &group_leader->sibling_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100230 group_leader->nr_siblings++;
231 }
Peter Zijlstra592903c2009-03-13 12:21:36 +0100232
233 list_add_rcu(&counter->event_entry, &ctx->event_list);
Peter Zijlstra8bc209592009-05-15 20:45:59 +0200234 ctx->nr_counters++;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100235}
236
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000237/*
238 * Remove a counter from the lists for its context.
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200239 * Must be called with ctx->mutex and ctx->lock held.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000240 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100241static void
242list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
243{
244 struct perf_counter *sibling, *tmp;
245
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000246 if (list_empty(&counter->list_entry))
247 return;
Peter Zijlstra8bc209592009-05-15 20:45:59 +0200248 ctx->nr_counters--;
249
Ingo Molnar04289bb2008-12-11 08:38:42 +0100250 list_del_init(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100251 list_del_rcu(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100252
Peter Zijlstra5c148192009-03-25 12:30:23 +0100253 if (counter->group_leader != counter)
254 counter->group_leader->nr_siblings--;
255
Ingo Molnar04289bb2008-12-11 08:38:42 +0100256 /*
257 * If this was a group counter with sibling counters then
258 * upgrade the siblings to singleton counters by adding them
259 * to the context list directly:
260 */
261 list_for_each_entry_safe(sibling, tmp,
262 &counter->sibling_list, list_entry) {
263
Peter Zijlstra75564232009-03-13 12:21:29 +0100264 list_move_tail(&sibling->list_entry, &ctx->counter_list);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100265 sibling->group_leader = sibling;
266 }
267}
268
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100269static void
270counter_sched_out(struct perf_counter *counter,
271 struct perf_cpu_context *cpuctx,
272 struct perf_counter_context *ctx)
273{
274 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
275 return;
276
277 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200278 counter->tstamp_stopped = ctx->time;
Robert Richter4aeb0b42009-04-29 12:47:03 +0200279 counter->pmu->disable(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100280 counter->oncpu = -1;
281
282 if (!is_software_counter(counter))
283 cpuctx->active_oncpu--;
284 ctx->nr_active--;
Peter Zijlstra0d486962009-06-02 19:22:16 +0200285 if (counter->attr.exclusive || !cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100286 cpuctx->exclusive = 0;
287}
288
Paul Mackerrasd859e292009-01-17 18:10:22 +1100289static void
290group_sched_out(struct perf_counter *group_counter,
291 struct perf_cpu_context *cpuctx,
292 struct perf_counter_context *ctx)
293{
294 struct perf_counter *counter;
295
296 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
297 return;
298
299 counter_sched_out(group_counter, cpuctx, ctx);
300
301 /*
302 * Schedule out siblings (if any):
303 */
304 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
305 counter_sched_out(counter, cpuctx, ctx);
306
Peter Zijlstra0d486962009-06-02 19:22:16 +0200307 if (group_counter->attr.exclusive)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100308 cpuctx->exclusive = 0;
309}
310
Thomas Gleixner0793a612008-12-04 20:12:29 +0100311/*
312 * Cross CPU call to remove a performance counter
313 *
314 * We disable the counter on the hardware level first. After that we
315 * remove it from the context list.
316 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100317static void __perf_counter_remove_from_context(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100318{
319 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
320 struct perf_counter *counter = info;
321 struct perf_counter_context *ctx = counter->ctx;
322
323 /*
324 * If this is a task context, we need to check whether it is
325 * the current task context of this cpu. If not it has been
326 * scheduled out before the smp call arrived.
327 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200328 if (ctx->task && cpuctx->task_ctx != ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100329 return;
330
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200331 spin_lock(&ctx->lock);
Ingo Molnar34adc802009-05-20 20:13:28 +0200332 /*
333 * Protect the list operation against NMI by disabling the
334 * counters on a global level.
335 */
336 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100337
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100338 counter_sched_out(counter, cpuctx, ctx);
339
Ingo Molnar04289bb2008-12-11 08:38:42 +0100340 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100341
342 if (!ctx->task) {
343 /*
344 * Allow more per task counters with respect to the
345 * reservation:
346 */
347 cpuctx->max_pertask =
348 min(perf_max_counters - ctx->nr_counters,
349 perf_max_counters - perf_reserved_percpu);
350 }
351
Ingo Molnar34adc802009-05-20 20:13:28 +0200352 perf_enable();
Peter Zijlstra665c2142009-05-29 14:51:57 +0200353 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100354}
355
356
357/*
358 * Remove the counter from a task's (or a CPU's) list of counters.
359 *
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200360 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100361 *
362 * CPU counters are removed with a smp call. For task counters we only
363 * call when the task is on a CPU.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000364 *
365 * If counter->ctx is a cloned context, callers must make sure that
366 * every task struct that counter->ctx->task could possibly point to
367 * remains valid. This is OK when called from perf_release since
368 * that only calls us on the top-level context, which can't be a clone.
369 * When called from perf_counter_exit_task, it's OK because the
370 * context has been detached from its task.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100371 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100372static void perf_counter_remove_from_context(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100373{
374 struct perf_counter_context *ctx = counter->ctx;
375 struct task_struct *task = ctx->task;
376
377 if (!task) {
378 /*
379 * Per cpu counters are removed via an smp call and
380 * the removal is always sucessful.
381 */
382 smp_call_function_single(counter->cpu,
Ingo Molnar04289bb2008-12-11 08:38:42 +0100383 __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100384 counter, 1);
385 return;
386 }
387
388retry:
Ingo Molnar04289bb2008-12-11 08:38:42 +0100389 task_oncpu_function_call(task, __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100390 counter);
391
392 spin_lock_irq(&ctx->lock);
393 /*
394 * If the context is active we need to retry the smp call.
395 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100396 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100397 spin_unlock_irq(&ctx->lock);
398 goto retry;
399 }
400
401 /*
402 * The lock prevents that this context is scheduled in so we
Ingo Molnar04289bb2008-12-11 08:38:42 +0100403 * can remove the counter safely, if the call above did not
Thomas Gleixner0793a612008-12-04 20:12:29 +0100404 * succeed.
405 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100406 if (!list_empty(&counter->list_entry)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100407 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100408 }
409 spin_unlock_irq(&ctx->lock);
410}
411
Peter Zijlstra4af49982009-04-06 11:45:10 +0200412static inline u64 perf_clock(void)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100413{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200414 return cpu_clock(smp_processor_id());
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100415}
416
417/*
418 * Update the record of the current time in a context.
419 */
Peter Zijlstra4af49982009-04-06 11:45:10 +0200420static void update_context_time(struct perf_counter_context *ctx)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100421{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200422 u64 now = perf_clock();
423
424 ctx->time += now - ctx->timestamp;
425 ctx->timestamp = now;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100426}
427
428/*
429 * Update the total_time_enabled and total_time_running fields for a counter.
430 */
431static void update_counter_times(struct perf_counter *counter)
432{
433 struct perf_counter_context *ctx = counter->ctx;
434 u64 run_end;
435
Peter Zijlstra4af49982009-04-06 11:45:10 +0200436 if (counter->state < PERF_COUNTER_STATE_INACTIVE)
437 return;
438
439 counter->total_time_enabled = ctx->time - counter->tstamp_enabled;
440
441 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
442 run_end = counter->tstamp_stopped;
443 else
444 run_end = ctx->time;
445
446 counter->total_time_running = run_end - counter->tstamp_running;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100447}
448
449/*
450 * Update total_time_enabled and total_time_running for all counters in a group.
451 */
452static void update_group_times(struct perf_counter *leader)
453{
454 struct perf_counter *counter;
455
456 update_counter_times(leader);
457 list_for_each_entry(counter, &leader->sibling_list, list_entry)
458 update_counter_times(counter);
459}
460
461/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100462 * Cross CPU call to disable a performance counter
463 */
464static void __perf_counter_disable(void *info)
465{
466 struct perf_counter *counter = info;
467 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
468 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100469
470 /*
471 * If this is a per-task counter, need to check whether this
472 * counter's task is the current task on this cpu.
473 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200474 if (ctx->task && cpuctx->task_ctx != ctx)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100475 return;
476
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200477 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100478
479 /*
480 * If the counter is on, turn it off.
481 * If it is in error state, leave it in error state.
482 */
483 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
Peter Zijlstra4af49982009-04-06 11:45:10 +0200484 update_context_time(ctx);
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100485 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100486 if (counter == counter->group_leader)
487 group_sched_out(counter, cpuctx, ctx);
488 else
489 counter_sched_out(counter, cpuctx, ctx);
490 counter->state = PERF_COUNTER_STATE_OFF;
491 }
492
Peter Zijlstra665c2142009-05-29 14:51:57 +0200493 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100494}
495
496/*
497 * Disable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000498 *
499 * If counter->ctx is a cloned context, callers must make sure that
500 * every task struct that counter->ctx->task could possibly point to
501 * remains valid. This condition is satisifed when called through
502 * perf_counter_for_each_child or perf_counter_for_each because they
503 * hold the top-level counter's child_mutex, so any descendant that
504 * goes to exit will block in sync_child_counter.
505 * When called from perf_pending_counter it's OK because counter->ctx
506 * is the current context on this CPU and preemption is disabled,
507 * hence we can't get into perf_counter_task_sched_out for this context.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100508 */
509static void perf_counter_disable(struct perf_counter *counter)
510{
511 struct perf_counter_context *ctx = counter->ctx;
512 struct task_struct *task = ctx->task;
513
514 if (!task) {
515 /*
516 * Disable the counter on the cpu that it's on
517 */
518 smp_call_function_single(counter->cpu, __perf_counter_disable,
519 counter, 1);
520 return;
521 }
522
523 retry:
524 task_oncpu_function_call(task, __perf_counter_disable, counter);
525
526 spin_lock_irq(&ctx->lock);
527 /*
528 * If the counter is still active, we need to retry the cross-call.
529 */
530 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
531 spin_unlock_irq(&ctx->lock);
532 goto retry;
533 }
534
535 /*
536 * Since we have the lock this context can't be scheduled
537 * in, so we can change the state safely.
538 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100539 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
540 update_counter_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100541 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100542 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100543
544 spin_unlock_irq(&ctx->lock);
545}
546
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100547static int
548counter_sched_in(struct perf_counter *counter,
549 struct perf_cpu_context *cpuctx,
550 struct perf_counter_context *ctx,
551 int cpu)
552{
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100553 if (counter->state <= PERF_COUNTER_STATE_OFF)
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100554 return 0;
555
556 counter->state = PERF_COUNTER_STATE_ACTIVE;
557 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
558 /*
559 * The new state must be visible before we turn it on in the hardware:
560 */
561 smp_wmb();
562
Robert Richter4aeb0b42009-04-29 12:47:03 +0200563 if (counter->pmu->enable(counter)) {
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100564 counter->state = PERF_COUNTER_STATE_INACTIVE;
565 counter->oncpu = -1;
566 return -EAGAIN;
567 }
568
Peter Zijlstra4af49982009-04-06 11:45:10 +0200569 counter->tstamp_running += ctx->time - counter->tstamp_stopped;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100570
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100571 if (!is_software_counter(counter))
572 cpuctx->active_oncpu++;
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100573 ctx->nr_active++;
574
Peter Zijlstra0d486962009-06-02 19:22:16 +0200575 if (counter->attr.exclusive)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100576 cpuctx->exclusive = 1;
577
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100578 return 0;
579}
580
Paul Mackerras6751b712009-05-11 12:08:02 +1000581static int
582group_sched_in(struct perf_counter *group_counter,
583 struct perf_cpu_context *cpuctx,
584 struct perf_counter_context *ctx,
585 int cpu)
586{
587 struct perf_counter *counter, *partial_group;
588 int ret;
589
590 if (group_counter->state == PERF_COUNTER_STATE_OFF)
591 return 0;
592
593 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
594 if (ret)
595 return ret < 0 ? ret : 0;
596
Paul Mackerras6751b712009-05-11 12:08:02 +1000597 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
598 return -EAGAIN;
599
600 /*
601 * Schedule in siblings as one group (if any):
602 */
603 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
Paul Mackerras6751b712009-05-11 12:08:02 +1000604 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
605 partial_group = counter;
606 goto group_error;
607 }
608 }
609
610 return 0;
611
612group_error:
613 /*
614 * Groups can be scheduled in as one unit only, so undo any
615 * partial group before returning:
616 */
617 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
618 if (counter == partial_group)
619 break;
620 counter_sched_out(counter, cpuctx, ctx);
621 }
622 counter_sched_out(group_counter, cpuctx, ctx);
623
624 return -EAGAIN;
625}
626
Thomas Gleixner0793a612008-12-04 20:12:29 +0100627/*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100628 * Return 1 for a group consisting entirely of software counters,
629 * 0 if the group contains any hardware counters.
630 */
631static int is_software_only_group(struct perf_counter *leader)
632{
633 struct perf_counter *counter;
634
635 if (!is_software_counter(leader))
636 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100637
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100638 list_for_each_entry(counter, &leader->sibling_list, list_entry)
639 if (!is_software_counter(counter))
640 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100641
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100642 return 1;
643}
644
645/*
646 * Work out whether we can put this counter group on the CPU now.
647 */
648static int group_can_go_on(struct perf_counter *counter,
649 struct perf_cpu_context *cpuctx,
650 int can_add_hw)
651{
652 /*
653 * Groups consisting entirely of software counters can always go on.
654 */
655 if (is_software_only_group(counter))
656 return 1;
657 /*
658 * If an exclusive group is already on, no other hardware
659 * counters can go on.
660 */
661 if (cpuctx->exclusive)
662 return 0;
663 /*
664 * If this group is exclusive and there are already
665 * counters on the CPU, it can't go on.
666 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200667 if (counter->attr.exclusive && cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100668 return 0;
669 /*
670 * Otherwise, try to add it if all previous groups were able
671 * to go on.
672 */
673 return can_add_hw;
674}
675
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100676static void add_counter_to_ctx(struct perf_counter *counter,
677 struct perf_counter_context *ctx)
678{
679 list_add_counter(counter, ctx);
Peter Zijlstra4af49982009-04-06 11:45:10 +0200680 counter->tstamp_enabled = ctx->time;
681 counter->tstamp_running = ctx->time;
682 counter->tstamp_stopped = ctx->time;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100683}
684
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100685/*
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100686 * Cross CPU call to install and enable a performance counter
Peter Zijlstra682076a2009-05-23 18:28:57 +0200687 *
688 * Must be called with ctx->mutex held
Thomas Gleixner0793a612008-12-04 20:12:29 +0100689 */
690static void __perf_install_in_context(void *info)
691{
692 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
693 struct perf_counter *counter = info;
694 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100695 struct perf_counter *leader = counter->group_leader;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100696 int cpu = smp_processor_id();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100697 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100698
699 /*
700 * If this is a task context, we need to check whether it is
701 * the current task context of this cpu. If not it has been
702 * scheduled out before the smp call arrived.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000703 * Or possibly this is the right context but it isn't
704 * on this cpu because it had no counters.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100705 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000706 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200707 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000708 return;
709 cpuctx->task_ctx = ctx;
710 }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100711
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200712 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000713 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200714 update_context_time(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100715
716 /*
717 * Protect the list operation against NMI by disabling the
718 * counters on a global level. NOP for non NMI based counters.
719 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200720 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100721
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100722 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100723
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100724 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100725 * Don't put the counter on if it is disabled or if
726 * it is in a group and the group isn't on.
727 */
728 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
729 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
730 goto unlock;
731
732 /*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100733 * An exclusive counter can't go on if there are already active
734 * hardware counters, and no hardware counter can go on if there
735 * is already an exclusive counter on.
736 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100737 if (!group_can_go_on(counter, cpuctx, 1))
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100738 err = -EEXIST;
739 else
740 err = counter_sched_in(counter, cpuctx, ctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100741
Paul Mackerrasd859e292009-01-17 18:10:22 +1100742 if (err) {
743 /*
744 * This counter couldn't go on. If it is in a group
745 * then we have to pull the whole group off.
746 * If the counter group is pinned then put it in error state.
747 */
748 if (leader != counter)
749 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200750 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100751 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100752 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100753 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100754 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100755
756 if (!err && !ctx->task && cpuctx->max_pertask)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100757 cpuctx->max_pertask--;
758
Paul Mackerrasd859e292009-01-17 18:10:22 +1100759 unlock:
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200760 perf_enable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100761
Peter Zijlstra665c2142009-05-29 14:51:57 +0200762 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100763}
764
765/*
766 * Attach a performance counter to a context
767 *
768 * First we add the counter to the list with the hardware enable bit
769 * in counter->hw_config cleared.
770 *
771 * If the counter is attached to a task which is on a CPU we use a smp
772 * call to enable it in the task context. The task might have been
773 * scheduled away, but we check this in the smp call again.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100774 *
775 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100776 */
777static void
778perf_install_in_context(struct perf_counter_context *ctx,
779 struct perf_counter *counter,
780 int cpu)
781{
782 struct task_struct *task = ctx->task;
783
Thomas Gleixner0793a612008-12-04 20:12:29 +0100784 if (!task) {
785 /*
786 * Per cpu counters are installed via an smp call and
787 * the install is always sucessful.
788 */
789 smp_call_function_single(cpu, __perf_install_in_context,
790 counter, 1);
791 return;
792 }
793
Thomas Gleixner0793a612008-12-04 20:12:29 +0100794retry:
795 task_oncpu_function_call(task, __perf_install_in_context,
796 counter);
797
798 spin_lock_irq(&ctx->lock);
799 /*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100800 * we need to retry the smp call.
801 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100802 if (ctx->is_active && list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100803 spin_unlock_irq(&ctx->lock);
804 goto retry;
805 }
806
807 /*
808 * The lock prevents that this context is scheduled in so we
809 * can add the counter safely, if it the call above did not
810 * succeed.
811 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100812 if (list_empty(&counter->list_entry))
813 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100814 spin_unlock_irq(&ctx->lock);
815}
816
Paul Mackerrasd859e292009-01-17 18:10:22 +1100817/*
818 * Cross CPU call to enable a performance counter
819 */
820static void __perf_counter_enable(void *info)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100821{
Paul Mackerrasd859e292009-01-17 18:10:22 +1100822 struct perf_counter *counter = info;
823 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
824 struct perf_counter_context *ctx = counter->ctx;
825 struct perf_counter *leader = counter->group_leader;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100826 int err;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100827
828 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100829 * If this is a per-task counter, need to check whether this
830 * counter's task is the current task on this cpu.
Ingo Molnar04289bb2008-12-11 08:38:42 +0100831 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000832 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200833 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000834 return;
835 cpuctx->task_ctx = ctx;
836 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100837
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200838 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000839 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200840 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100841
842 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
843 goto unlock;
844 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200845 counter->tstamp_enabled = ctx->time - counter->total_time_enabled;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100846
847 /*
848 * If the counter is in a group and isn't the group leader,
849 * then don't put it on unless the group is on.
850 */
851 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
852 goto unlock;
853
Paul Mackerrase758a332009-05-12 21:59:01 +1000854 if (!group_can_go_on(counter, cpuctx, 1)) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100855 err = -EEXIST;
Paul Mackerrase758a332009-05-12 21:59:01 +1000856 } else {
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200857 perf_disable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000858 if (counter == leader)
859 err = group_sched_in(counter, cpuctx, ctx,
860 smp_processor_id());
861 else
862 err = counter_sched_in(counter, cpuctx, ctx,
863 smp_processor_id());
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200864 perf_enable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000865 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100866
867 if (err) {
868 /*
869 * If this counter can't go on and it's part of a
870 * group, then the whole group has to come off.
871 */
872 if (leader != counter)
873 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200874 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100875 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100876 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100877 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100878 }
879
880 unlock:
Peter Zijlstra665c2142009-05-29 14:51:57 +0200881 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100882}
883
884/*
885 * Enable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000886 *
887 * If counter->ctx is a cloned context, callers must make sure that
888 * every task struct that counter->ctx->task could possibly point to
889 * remains valid. This condition is satisfied when called through
890 * perf_counter_for_each_child or perf_counter_for_each as described
891 * for perf_counter_disable.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100892 */
893static void perf_counter_enable(struct perf_counter *counter)
894{
895 struct perf_counter_context *ctx = counter->ctx;
896 struct task_struct *task = ctx->task;
897
898 if (!task) {
899 /*
900 * Enable the counter on the cpu that it's on
901 */
902 smp_call_function_single(counter->cpu, __perf_counter_enable,
903 counter, 1);
904 return;
905 }
906
907 spin_lock_irq(&ctx->lock);
908 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
909 goto out;
910
911 /*
912 * If the counter is in error state, clear that first.
913 * That way, if we see the counter in error state below, we
914 * know that it has gone back into error state, as distinct
915 * from the task having been scheduled away before the
916 * cross-call arrived.
917 */
918 if (counter->state == PERF_COUNTER_STATE_ERROR)
919 counter->state = PERF_COUNTER_STATE_OFF;
920
921 retry:
922 spin_unlock_irq(&ctx->lock);
923 task_oncpu_function_call(task, __perf_counter_enable, counter);
924
925 spin_lock_irq(&ctx->lock);
926
927 /*
928 * If the context is active and the counter is still off,
929 * we need to retry the cross-call.
930 */
931 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
932 goto retry;
933
934 /*
935 * Since we have the lock this context can't be scheduled
936 * in, so we can change the state safely.
937 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100938 if (counter->state == PERF_COUNTER_STATE_OFF) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100939 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200940 counter->tstamp_enabled =
941 ctx->time - counter->total_time_enabled;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100942 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100943 out:
944 spin_unlock_irq(&ctx->lock);
945}
946
Peter Zijlstra2023b352009-05-05 17:50:26 +0200947static int perf_counter_refresh(struct perf_counter *counter, int refresh)
Peter Zijlstra79f14642009-04-06 11:45:07 +0200948{
Peter Zijlstra2023b352009-05-05 17:50:26 +0200949 /*
950 * not supported on inherited counters
951 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200952 if (counter->attr.inherit)
Peter Zijlstra2023b352009-05-05 17:50:26 +0200953 return -EINVAL;
954
Peter Zijlstra79f14642009-04-06 11:45:07 +0200955 atomic_add(refresh, &counter->event_limit);
956 perf_counter_enable(counter);
Peter Zijlstra2023b352009-05-05 17:50:26 +0200957
958 return 0;
Peter Zijlstra79f14642009-04-06 11:45:07 +0200959}
960
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100961void __perf_counter_sched_out(struct perf_counter_context *ctx,
962 struct perf_cpu_context *cpuctx)
963{
964 struct perf_counter *counter;
965
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100966 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100967 ctx->is_active = 0;
968 if (likely(!ctx->nr_counters))
969 goto out;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200970 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100971
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200972 perf_disable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100973 if (ctx->nr_active) {
Peter Zijlstraafedadf2009-05-20 12:21:22 +0200974 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
975 if (counter != counter->group_leader)
976 counter_sched_out(counter, cpuctx, ctx);
977 else
978 group_sched_out(counter, cpuctx, ctx);
979 }
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100980 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200981 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +1100982 out:
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100983 spin_unlock(&ctx->lock);
984}
985
Thomas Gleixner0793a612008-12-04 20:12:29 +0100986/*
Paul Mackerras564c2b22009-05-22 14:27:22 +1000987 * Test whether two contexts are equivalent, i.e. whether they
988 * have both been cloned from the same version of the same context
989 * and they both have the same number of enabled counters.
990 * If the number of enabled counters is the same, then the set
991 * of enabled counters should be the same, because these are both
992 * inherited contexts, therefore we can't access individual counters
993 * in them directly with an fd; we can only enable/disable all
994 * counters via prctl, or enable/disable all counters in a family
995 * via ioctl, which will have the same effect on both contexts.
996 */
997static int context_equiv(struct perf_counter_context *ctx1,
998 struct perf_counter_context *ctx2)
999{
1000 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001001 && ctx1->parent_gen == ctx2->parent_gen
Paul Mackerras25346b932009-06-01 17:48:12 +10001002 && !ctx1->pin_count && !ctx2->pin_count;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001003}
1004
1005/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001006 * Called from scheduler to remove the counters of the current task,
1007 * with interrupts disabled.
1008 *
1009 * We stop each counter and update the counter value in counter->count.
1010 *
Ingo Molnar76715812008-12-17 14:20:28 +01001011 * This does not protect us against NMI, but disable()
Thomas Gleixner0793a612008-12-04 20:12:29 +01001012 * sets the disabled bit in the control field of counter _before_
1013 * accessing the counter control register. If a NMI hits, then it will
1014 * not restart the counter.
1015 */
Paul Mackerras564c2b22009-05-22 14:27:22 +10001016void perf_counter_task_sched_out(struct task_struct *task,
1017 struct task_struct *next, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001018{
1019 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001020 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001021 struct perf_counter_context *next_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001022 struct perf_counter_context *parent;
Peter Zijlstra4a0deca2009-03-19 20:26:12 +01001023 struct pt_regs *regs;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001024 int do_switch = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001025
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001026 regs = task_pt_regs(task);
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02001027 perf_swcounter_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 1, regs, 0);
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001028
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001029 if (likely(!ctx || !cpuctx->task_ctx))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001030 return;
1031
Peter Zijlstrabce379b2009-04-06 11:45:13 +02001032 update_context_time(ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001033
1034 rcu_read_lock();
1035 parent = rcu_dereference(ctx->parent_ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001036 next_ctx = next->perf_counter_ctxp;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001037 if (parent && next_ctx &&
1038 rcu_dereference(next_ctx->parent_ctx) == parent) {
1039 /*
1040 * Looks like the two contexts are clones, so we might be
1041 * able to optimize the context switch. We lock both
1042 * contexts and check that they are clones under the
1043 * lock (including re-checking that neither has been
1044 * uncloned in the meantime). It doesn't matter which
1045 * order we take the locks because no other cpu could
1046 * be trying to lock both of these tasks.
1047 */
1048 spin_lock(&ctx->lock);
1049 spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
1050 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra665c2142009-05-29 14:51:57 +02001051 /*
1052 * XXX do we need a memory barrier of sorts
1053 * wrt to rcu_dereference() of perf_counter_ctxp
1054 */
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001055 task->perf_counter_ctxp = next_ctx;
1056 next->perf_counter_ctxp = ctx;
1057 ctx->task = next;
1058 next_ctx->task = task;
1059 do_switch = 0;
1060 }
1061 spin_unlock(&next_ctx->lock);
1062 spin_unlock(&ctx->lock);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001063 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001064 rcu_read_unlock();
Paul Mackerras564c2b22009-05-22 14:27:22 +10001065
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001066 if (do_switch) {
1067 __perf_counter_sched_out(ctx, cpuctx);
1068 cpuctx->task_ctx = NULL;
1069 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001070}
1071
Peter Zijlstra665c2142009-05-29 14:51:57 +02001072/*
1073 * Called with IRQs disabled
1074 */
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001075static void __perf_counter_task_sched_out(struct perf_counter_context *ctx)
1076{
1077 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
1078
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001079 if (!cpuctx->task_ctx)
1080 return;
Ingo Molnar012b84d2009-05-17 11:08:41 +02001081
1082 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1083 return;
1084
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001085 __perf_counter_sched_out(ctx, cpuctx);
1086 cpuctx->task_ctx = NULL;
1087}
1088
Peter Zijlstra665c2142009-05-29 14:51:57 +02001089/*
1090 * Called with IRQs disabled
1091 */
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001092static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
Ingo Molnar04289bb2008-12-11 08:38:42 +01001093{
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001094 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001095}
1096
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001097static void
1098__perf_counter_sched_in(struct perf_counter_context *ctx,
1099 struct perf_cpu_context *cpuctx, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001100{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001101 struct perf_counter *counter;
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001102 int can_add_hw = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001103
Thomas Gleixner0793a612008-12-04 20:12:29 +01001104 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001105 ctx->is_active = 1;
1106 if (likely(!ctx->nr_counters))
1107 goto out;
1108
Peter Zijlstra4af49982009-04-06 11:45:10 +02001109 ctx->timestamp = perf_clock();
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001110
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001111 perf_disable();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001112
1113 /*
1114 * First go through the list and put on any pinned groups
1115 * in order to give them the best chance of going on.
1116 */
Ingo Molnar04289bb2008-12-11 08:38:42 +01001117 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001118 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001119 !counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001120 continue;
1121 if (counter->cpu != -1 && counter->cpu != cpu)
1122 continue;
1123
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001124 if (counter != counter->group_leader)
1125 counter_sched_in(counter, cpuctx, ctx, cpu);
1126 else {
1127 if (group_can_go_on(counter, cpuctx, 1))
1128 group_sched_in(counter, cpuctx, ctx, cpu);
1129 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001130
1131 /*
1132 * If this pinned group hasn't been scheduled,
1133 * put it in error state.
1134 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001135 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1136 update_group_times(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001137 counter->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001138 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001139 }
1140
1141 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1142 /*
1143 * Ignore counters in OFF or ERROR state, and
1144 * ignore pinned counters since we did them already.
1145 */
1146 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001147 counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001148 continue;
1149
Ingo Molnar04289bb2008-12-11 08:38:42 +01001150 /*
1151 * Listen to the 'cpu' scheduling filter constraint
1152 * of counters:
1153 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01001154 if (counter->cpu != -1 && counter->cpu != cpu)
1155 continue;
1156
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001157 if (counter != counter->group_leader) {
1158 if (counter_sched_in(counter, cpuctx, ctx, cpu))
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001159 can_add_hw = 0;
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001160 } else {
1161 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
1162 if (group_sched_in(counter, cpuctx, ctx, cpu))
1163 can_add_hw = 0;
1164 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001165 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001166 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001167 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001168 out:
Thomas Gleixner0793a612008-12-04 20:12:29 +01001169 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001170}
Ingo Molnar04289bb2008-12-11 08:38:42 +01001171
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001172/*
1173 * Called from scheduler to add the counters of the current task
1174 * with interrupts disabled.
1175 *
1176 * We restore the counter value and then enable it.
1177 *
1178 * This does not protect us against NMI, but enable()
1179 * sets the enabled bit in the control field of counter _before_
1180 * accessing the counter control register. If a NMI hits, then it will
1181 * keep the counter running.
1182 */
1183void perf_counter_task_sched_in(struct task_struct *task, int cpu)
1184{
1185 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001186 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001187
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001188 if (likely(!ctx))
1189 return;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001190 if (cpuctx->task_ctx == ctx)
1191 return;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001192 __perf_counter_sched_in(ctx, cpuctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001193 cpuctx->task_ctx = ctx;
1194}
1195
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001196static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
1197{
1198 struct perf_counter_context *ctx = &cpuctx->ctx;
1199
1200 __perf_counter_sched_in(ctx, cpuctx, cpu);
1201}
1202
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001203#define MAX_INTERRUPTS (~0ULL)
1204
1205static void perf_log_throttle(struct perf_counter *counter, int enable);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001206static void perf_log_period(struct perf_counter *counter, u64 period);
1207
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001208static void perf_adjust_period(struct perf_counter *counter, u64 events)
1209{
1210 struct hw_perf_counter *hwc = &counter->hw;
1211 u64 period, sample_period;
1212 s64 delta;
1213
1214 events *= hwc->sample_period;
1215 period = div64_u64(events, counter->attr.sample_freq);
1216
1217 delta = (s64)(period - hwc->sample_period);
1218 delta = (delta + 7) / 8; /* low pass filter */
1219
1220 sample_period = hwc->sample_period + delta;
1221
1222 if (!sample_period)
1223 sample_period = 1;
1224
1225 perf_log_period(counter, sample_period);
1226
1227 hwc->sample_period = sample_period;
1228}
1229
1230static void perf_ctx_adjust_freq(struct perf_counter_context *ctx)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001231{
1232 struct perf_counter *counter;
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001233 struct hw_perf_counter *hwc;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001234 u64 interrupts, freq;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001235
1236 spin_lock(&ctx->lock);
1237 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1238 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1239 continue;
1240
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001241 hwc = &counter->hw;
1242
1243 interrupts = hwc->interrupts;
1244 hwc->interrupts = 0;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001245
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001246 /*
1247 * unthrottle counters on the tick
1248 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001249 if (interrupts == MAX_INTERRUPTS) {
1250 perf_log_throttle(counter, 1);
1251 counter->pmu->unthrottle(counter);
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001252 interrupts = 2*sysctl_perf_counter_sample_rate/HZ;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001253 }
1254
Peter Zijlstra0d486962009-06-02 19:22:16 +02001255 if (!counter->attr.freq || !counter->attr.sample_freq)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001256 continue;
1257
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001258 /*
1259 * if the specified freq < HZ then we need to skip ticks
1260 */
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001261 if (counter->attr.sample_freq < HZ) {
1262 freq = counter->attr.sample_freq;
1263
1264 hwc->freq_count += freq;
1265 hwc->freq_interrupts += interrupts;
1266
1267 if (hwc->freq_count < HZ)
1268 continue;
1269
1270 interrupts = hwc->freq_interrupts;
1271 hwc->freq_interrupts = 0;
1272 hwc->freq_count -= HZ;
1273 } else
1274 freq = HZ;
1275
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001276 perf_adjust_period(counter, freq * interrupts);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001277
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001278 /*
1279 * In order to avoid being stalled by an (accidental) huge
1280 * sample period, force reset the sample period if we didn't
1281 * get any events in this freq period.
1282 */
1283 if (!interrupts) {
1284 perf_disable();
1285 counter->pmu->disable(counter);
1286 atomic_set(&hwc->period_left, 0);
1287 counter->pmu->enable(counter);
1288 perf_enable();
1289 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001290 }
1291 spin_unlock(&ctx->lock);
1292}
1293
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001294/*
1295 * Round-robin a context's counters:
1296 */
1297static void rotate_ctx(struct perf_counter_context *ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001298{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001299 struct perf_counter *counter;
1300
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001301 if (!ctx->nr_counters)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001302 return;
1303
Thomas Gleixner0793a612008-12-04 20:12:29 +01001304 spin_lock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001305 /*
Ingo Molnar04289bb2008-12-11 08:38:42 +01001306 * Rotate the first entry last (works just fine for group counters too):
Thomas Gleixner0793a612008-12-04 20:12:29 +01001307 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001308 perf_disable();
Ingo Molnar04289bb2008-12-11 08:38:42 +01001309 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Peter Zijlstra75564232009-03-13 12:21:29 +01001310 list_move_tail(&counter->list_entry, &ctx->counter_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001311 break;
1312 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001313 perf_enable();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001314
1315 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001316}
Thomas Gleixner0793a612008-12-04 20:12:29 +01001317
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001318void perf_counter_task_tick(struct task_struct *curr, int cpu)
1319{
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001320 struct perf_cpu_context *cpuctx;
1321 struct perf_counter_context *ctx;
1322
1323 if (!atomic_read(&nr_counters))
1324 return;
1325
1326 cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001327 ctx = curr->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001328
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001329 perf_ctx_adjust_freq(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001330 if (ctx)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001331 perf_ctx_adjust_freq(ctx);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001332
Ingo Molnarb82914c2009-05-04 18:54:32 +02001333 perf_counter_cpu_sched_out(cpuctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001334 if (ctx)
1335 __perf_counter_task_sched_out(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001336
Ingo Molnarb82914c2009-05-04 18:54:32 +02001337 rotate_ctx(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001338 if (ctx)
1339 rotate_ctx(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001340
Ingo Molnarb82914c2009-05-04 18:54:32 +02001341 perf_counter_cpu_sched_in(cpuctx, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001342 if (ctx)
1343 perf_counter_task_sched_in(curr, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001344}
1345
1346/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001347 * Cross CPU call to read the hardware counter
1348 */
Ingo Molnar76715812008-12-17 14:20:28 +01001349static void __read(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001350{
Ingo Molnar621a01e2008-12-11 12:46:46 +01001351 struct perf_counter *counter = info;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001352 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01001353 unsigned long flags;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001354
Peter Zijlstra849691a2009-04-06 11:45:12 +02001355 local_irq_save(flags);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001356 if (ctx->is_active)
Peter Zijlstra4af49982009-04-06 11:45:10 +02001357 update_context_time(ctx);
Robert Richter4aeb0b42009-04-29 12:47:03 +02001358 counter->pmu->read(counter);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001359 update_counter_times(counter);
Peter Zijlstra849691a2009-04-06 11:45:12 +02001360 local_irq_restore(flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001361}
1362
Ingo Molnar04289bb2008-12-11 08:38:42 +01001363static u64 perf_counter_read(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001364{
1365 /*
1366 * If counter is enabled and currently active on a CPU, update the
1367 * value in the counter structure:
1368 */
Ingo Molnar6a930702008-12-11 15:17:03 +01001369 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
Thomas Gleixner0793a612008-12-04 20:12:29 +01001370 smp_call_function_single(counter->oncpu,
Ingo Molnar76715812008-12-17 14:20:28 +01001371 __read, counter, 1);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001372 } else if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1373 update_counter_times(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001374 }
1375
Ingo Molnaree060942008-12-13 09:00:03 +01001376 return atomic64_read(&counter->count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001377}
1378
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001379/*
1380 * Initialize the perf_counter context in a task_struct:
1381 */
1382static void
1383__perf_counter_init_context(struct perf_counter_context *ctx,
1384 struct task_struct *task)
1385{
1386 memset(ctx, 0, sizeof(*ctx));
1387 spin_lock_init(&ctx->lock);
1388 mutex_init(&ctx->mutex);
1389 INIT_LIST_HEAD(&ctx->counter_list);
1390 INIT_LIST_HEAD(&ctx->event_list);
1391 atomic_set(&ctx->refcount, 1);
1392 ctx->task = task;
1393}
1394
Thomas Gleixner0793a612008-12-04 20:12:29 +01001395static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1396{
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001397 struct perf_counter_context *parent_ctx;
Ingo Molnar22a4f652009-06-01 10:13:37 +02001398 struct perf_counter_context *ctx;
1399 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001400 struct task_struct *task;
Paul Mackerras25346b932009-06-01 17:48:12 +10001401 unsigned long flags;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001402 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001403
1404 /*
1405 * If cpu is not a wildcard then this is a percpu counter:
1406 */
1407 if (cpu != -1) {
1408 /* Must be root to operate on a CPU counter: */
Peter Zijlstra07647712009-06-11 11:18:36 +02001409 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001410 return ERR_PTR(-EACCES);
1411
1412 if (cpu < 0 || cpu > num_possible_cpus())
1413 return ERR_PTR(-EINVAL);
1414
1415 /*
1416 * We could be clever and allow to attach a counter to an
1417 * offline CPU and activate it when the CPU comes up, but
1418 * that's for later.
1419 */
1420 if (!cpu_isset(cpu, cpu_online_map))
1421 return ERR_PTR(-ENODEV);
1422
1423 cpuctx = &per_cpu(perf_cpu_context, cpu);
1424 ctx = &cpuctx->ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001425 get_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001426
Thomas Gleixner0793a612008-12-04 20:12:29 +01001427 return ctx;
1428 }
1429
1430 rcu_read_lock();
1431 if (!pid)
1432 task = current;
1433 else
1434 task = find_task_by_vpid(pid);
1435 if (task)
1436 get_task_struct(task);
1437 rcu_read_unlock();
1438
1439 if (!task)
1440 return ERR_PTR(-ESRCH);
1441
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001442 /*
1443 * Can't attach counters to a dying task.
1444 */
1445 err = -ESRCH;
1446 if (task->flags & PF_EXITING)
1447 goto errout;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001448
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001449 /* Reuse ptrace permission checks for now. */
1450 err = -EACCES;
1451 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1452 goto errout;
1453
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001454 retry:
Paul Mackerras25346b932009-06-01 17:48:12 +10001455 ctx = perf_lock_task_context(task, &flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001456 if (ctx) {
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001457 parent_ctx = ctx->parent_ctx;
1458 if (parent_ctx) {
1459 put_ctx(parent_ctx);
1460 ctx->parent_ctx = NULL; /* no longer a clone */
1461 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001462 /*
1463 * Get an extra reference before dropping the lock so that
1464 * this context won't get freed if the task exits.
1465 */
1466 get_ctx(ctx);
Paul Mackerras25346b932009-06-01 17:48:12 +10001467 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001468 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001469
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001470 if (!ctx) {
1471 ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001472 err = -ENOMEM;
1473 if (!ctx)
1474 goto errout;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001475 __perf_counter_init_context(ctx, task);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001476 get_ctx(ctx);
1477 if (cmpxchg(&task->perf_counter_ctxp, NULL, ctx)) {
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001478 /*
1479 * We raced with some other task; use
1480 * the context they set.
1481 */
1482 kfree(ctx);
Paul Mackerras25346b932009-06-01 17:48:12 +10001483 goto retry;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001484 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001485 get_task_struct(task);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001486 }
1487
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001488 put_task_struct(task);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001489 return ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001490
1491 errout:
1492 put_task_struct(task);
1493 return ERR_PTR(err);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001494}
1495
Peter Zijlstra592903c2009-03-13 12:21:36 +01001496static void free_counter_rcu(struct rcu_head *head)
1497{
1498 struct perf_counter *counter;
1499
1500 counter = container_of(head, struct perf_counter, rcu_head);
Peter Zijlstra709e50c2009-06-02 14:13:15 +02001501 if (counter->ns)
1502 put_pid_ns(counter->ns);
Peter Zijlstra592903c2009-03-13 12:21:36 +01001503 kfree(counter);
1504}
1505
Peter Zijlstra925d5192009-03-30 19:07:02 +02001506static void perf_pending_sync(struct perf_counter *counter);
1507
Peter Zijlstraf1600952009-03-19 20:26:16 +01001508static void free_counter(struct perf_counter *counter)
1509{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001510 perf_pending_sync(counter);
1511
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001512 atomic_dec(&nr_counters);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001513 if (counter->attr.mmap)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02001514 atomic_dec(&nr_mmap_counters);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001515 if (counter->attr.comm)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02001516 atomic_dec(&nr_comm_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02001517
Peter Zijlstrae077df42009-03-19 20:26:17 +01001518 if (counter->destroy)
1519 counter->destroy(counter);
1520
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001521 put_ctx(counter->ctx);
Peter Zijlstraf1600952009-03-19 20:26:16 +01001522 call_rcu(&counter->rcu_head, free_counter_rcu);
1523}
1524
Thomas Gleixner0793a612008-12-04 20:12:29 +01001525/*
1526 * Called when the last reference to the file is gone.
1527 */
1528static int perf_release(struct inode *inode, struct file *file)
1529{
1530 struct perf_counter *counter = file->private_data;
1531 struct perf_counter_context *ctx = counter->ctx;
1532
1533 file->private_data = NULL;
1534
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001535 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001536 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001537 perf_counter_remove_from_context(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001538 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001539
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001540 mutex_lock(&counter->owner->perf_counter_mutex);
1541 list_del_init(&counter->owner_entry);
1542 mutex_unlock(&counter->owner->perf_counter_mutex);
1543 put_task_struct(counter->owner);
1544
Peter Zijlstraf1600952009-03-19 20:26:16 +01001545 free_counter(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001546
1547 return 0;
1548}
1549
1550/*
1551 * Read the performance counter - simple non blocking version for now
1552 */
1553static ssize_t
1554perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1555{
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001556 u64 values[3];
1557 int n;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001558
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001559 /*
1560 * Return end-of-file for a read on a counter that is in
1561 * error state (i.e. because it was pinned but it couldn't be
1562 * scheduled on to the CPU at some point).
1563 */
1564 if (counter->state == PERF_COUNTER_STATE_ERROR)
1565 return 0;
1566
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001567 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001568 mutex_lock(&counter->child_mutex);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001569 values[0] = perf_counter_read(counter);
1570 n = 1;
Peter Zijlstra0d486962009-06-02 19:22:16 +02001571 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001572 values[n++] = counter->total_time_enabled +
1573 atomic64_read(&counter->child_total_time_enabled);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001574 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001575 values[n++] = counter->total_time_running +
1576 atomic64_read(&counter->child_total_time_running);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001577 if (counter->attr.read_format & PERF_FORMAT_ID)
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02001578 values[n++] = counter->id;
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001579 mutex_unlock(&counter->child_mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001580
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001581 if (count < n * sizeof(u64))
1582 return -EINVAL;
1583 count = n * sizeof(u64);
1584
1585 if (copy_to_user(buf, values, count))
1586 return -EFAULT;
1587
1588 return count;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001589}
1590
1591static ssize_t
Thomas Gleixner0793a612008-12-04 20:12:29 +01001592perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1593{
1594 struct perf_counter *counter = file->private_data;
1595
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001596 return perf_read_hw(counter, buf, count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001597}
1598
1599static unsigned int perf_poll(struct file *file, poll_table *wait)
1600{
1601 struct perf_counter *counter = file->private_data;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001602 struct perf_mmap_data *data;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001603 unsigned int events = POLL_HUP;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001604
1605 rcu_read_lock();
1606 data = rcu_dereference(counter->data);
1607 if (data)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001608 events = atomic_xchg(&data->poll, 0);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001609 rcu_read_unlock();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001610
1611 poll_wait(file, &counter->waitq, wait);
1612
Thomas Gleixner0793a612008-12-04 20:12:29 +01001613 return events;
1614}
1615
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001616static void perf_counter_reset(struct perf_counter *counter)
1617{
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001618 (void)perf_counter_read(counter);
Paul Mackerras615a3f12009-05-11 15:50:21 +10001619 atomic64_set(&counter->count, 0);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001620 perf_counter_update_userpage(counter);
1621}
1622
1623static void perf_counter_for_each_sibling(struct perf_counter *counter,
1624 void (*func)(struct perf_counter *))
1625{
1626 struct perf_counter_context *ctx = counter->ctx;
1627 struct perf_counter *sibling;
1628
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001629 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra682076a2009-05-23 18:28:57 +02001630 mutex_lock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001631 counter = counter->group_leader;
1632
1633 func(counter);
1634 list_for_each_entry(sibling, &counter->sibling_list, list_entry)
1635 func(sibling);
Peter Zijlstra682076a2009-05-23 18:28:57 +02001636 mutex_unlock(&ctx->mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001637}
1638
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001639/*
1640 * Holding the top-level counter's child_mutex means that any
1641 * descendant process that has inherited this counter will block
1642 * in sync_child_counter if it goes to exit, thus satisfying the
1643 * task existence requirements of perf_counter_enable/disable.
1644 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001645static void perf_counter_for_each_child(struct perf_counter *counter,
1646 void (*func)(struct perf_counter *))
1647{
1648 struct perf_counter *child;
1649
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001650 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001651 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001652 func(counter);
1653 list_for_each_entry(child, &counter->child_list, child_list)
1654 func(child);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001655 mutex_unlock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001656}
1657
1658static void perf_counter_for_each(struct perf_counter *counter,
1659 void (*func)(struct perf_counter *))
1660{
1661 struct perf_counter *child;
1662
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001663 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001664 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001665 perf_counter_for_each_sibling(counter, func);
1666 list_for_each_entry(child, &counter->child_list, child_list)
1667 perf_counter_for_each_sibling(child, func);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001668 mutex_unlock(&counter->child_mutex);
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001669}
1670
Peter Zijlstra08247e32009-06-02 16:46:57 +02001671static int perf_counter_period(struct perf_counter *counter, u64 __user *arg)
1672{
1673 struct perf_counter_context *ctx = counter->ctx;
1674 unsigned long size;
1675 int ret = 0;
1676 u64 value;
1677
Peter Zijlstra0d486962009-06-02 19:22:16 +02001678 if (!counter->attr.sample_period)
Peter Zijlstra08247e32009-06-02 16:46:57 +02001679 return -EINVAL;
1680
1681 size = copy_from_user(&value, arg, sizeof(value));
1682 if (size != sizeof(value))
1683 return -EFAULT;
1684
1685 if (!value)
1686 return -EINVAL;
1687
1688 spin_lock_irq(&ctx->lock);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001689 if (counter->attr.freq) {
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001690 if (value > sysctl_perf_counter_sample_rate) {
Peter Zijlstra08247e32009-06-02 16:46:57 +02001691 ret = -EINVAL;
1692 goto unlock;
1693 }
1694
Peter Zijlstra0d486962009-06-02 19:22:16 +02001695 counter->attr.sample_freq = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001696 } else {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001697 perf_log_period(counter, value);
1698
Peter Zijlstra0d486962009-06-02 19:22:16 +02001699 counter->attr.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001700 counter->hw.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001701 }
1702unlock:
1703 spin_unlock_irq(&ctx->lock);
1704
1705 return ret;
1706}
1707
Paul Mackerrasd859e292009-01-17 18:10:22 +11001708static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1709{
1710 struct perf_counter *counter = file->private_data;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001711 void (*func)(struct perf_counter *);
1712 u32 flags = arg;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001713
1714 switch (cmd) {
1715 case PERF_COUNTER_IOC_ENABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001716 func = perf_counter_enable;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001717 break;
1718 case PERF_COUNTER_IOC_DISABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001719 func = perf_counter_disable;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001720 break;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001721 case PERF_COUNTER_IOC_RESET:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001722 func = perf_counter_reset;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001723 break;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001724
1725 case PERF_COUNTER_IOC_REFRESH:
1726 return perf_counter_refresh(counter, arg);
Peter Zijlstra08247e32009-06-02 16:46:57 +02001727
1728 case PERF_COUNTER_IOC_PERIOD:
1729 return perf_counter_period(counter, (u64 __user *)arg);
1730
Paul Mackerrasd859e292009-01-17 18:10:22 +11001731 default:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001732 return -ENOTTY;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001733 }
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001734
1735 if (flags & PERF_IOC_FLAG_GROUP)
1736 perf_counter_for_each(counter, func);
1737 else
1738 perf_counter_for_each_child(counter, func);
1739
1740 return 0;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001741}
1742
Peter Zijlstra771d7cd2009-05-25 14:45:26 +02001743int perf_counter_task_enable(void)
1744{
1745 struct perf_counter *counter;
1746
1747 mutex_lock(&current->perf_counter_mutex);
1748 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1749 perf_counter_for_each_child(counter, perf_counter_enable);
1750 mutex_unlock(&current->perf_counter_mutex);
1751
1752 return 0;
1753}
1754
1755int perf_counter_task_disable(void)
1756{
1757 struct perf_counter *counter;
1758
1759 mutex_lock(&current->perf_counter_mutex);
1760 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
1761 perf_counter_for_each_child(counter, perf_counter_disable);
1762 mutex_unlock(&current->perf_counter_mutex);
1763
1764 return 0;
1765}
1766
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001767/*
1768 * Callers need to ensure there can be no nesting of this function, otherwise
1769 * the seqlock logic goes bad. We can not serialize this because the arch
1770 * code calls this from NMI context.
1771 */
1772void perf_counter_update_userpage(struct perf_counter *counter)
Paul Mackerras37d81822009-03-23 18:22:08 +01001773{
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001774 struct perf_counter_mmap_page *userpg;
Ingo Molnar22a4f652009-06-01 10:13:37 +02001775 struct perf_mmap_data *data;
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001776
1777 rcu_read_lock();
1778 data = rcu_dereference(counter->data);
1779 if (!data)
1780 goto unlock;
1781
1782 userpg = data->user_page;
Paul Mackerras37d81822009-03-23 18:22:08 +01001783
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001784 /*
1785 * Disable preemption so as to not let the corresponding user-space
1786 * spin too long if we get preempted.
1787 */
1788 preempt_disable();
Paul Mackerras37d81822009-03-23 18:22:08 +01001789 ++userpg->lock;
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001790 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001791 userpg->index = counter->hw.idx;
1792 userpg->offset = atomic64_read(&counter->count);
1793 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
1794 userpg->offset -= atomic64_read(&counter->hw.prev_count);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001795
Peter Zijlstra92f22a32009-04-02 11:12:04 +02001796 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01001797 ++userpg->lock;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001798 preempt_enable();
Peter Zijlstra38ff6672009-03-30 19:07:03 +02001799unlock:
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001800 rcu_read_unlock();
Paul Mackerras37d81822009-03-23 18:22:08 +01001801}
1802
1803static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1804{
1805 struct perf_counter *counter = vma->vm_file->private_data;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001806 struct perf_mmap_data *data;
1807 int ret = VM_FAULT_SIGBUS;
Paul Mackerras37d81822009-03-23 18:22:08 +01001808
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001809 rcu_read_lock();
1810 data = rcu_dereference(counter->data);
1811 if (!data)
1812 goto unlock;
Paul Mackerras37d81822009-03-23 18:22:08 +01001813
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001814 if (vmf->pgoff == 0) {
1815 vmf->page = virt_to_page(data->user_page);
1816 } else {
1817 int nr = vmf->pgoff - 1;
1818
1819 if ((unsigned)nr > data->nr_pages)
1820 goto unlock;
1821
1822 vmf->page = virt_to_page(data->data_pages[nr]);
1823 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001824 get_page(vmf->page);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001825 ret = 0;
1826unlock:
1827 rcu_read_unlock();
1828
1829 return ret;
1830}
1831
1832static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
1833{
1834 struct perf_mmap_data *data;
1835 unsigned long size;
1836 int i;
1837
1838 WARN_ON(atomic_read(&counter->mmap_count));
1839
1840 size = sizeof(struct perf_mmap_data);
1841 size += nr_pages * sizeof(void *);
1842
1843 data = kzalloc(size, GFP_KERNEL);
1844 if (!data)
1845 goto fail;
1846
1847 data->user_page = (void *)get_zeroed_page(GFP_KERNEL);
1848 if (!data->user_page)
1849 goto fail_user_page;
1850
1851 for (i = 0; i < nr_pages; i++) {
1852 data->data_pages[i] = (void *)get_zeroed_page(GFP_KERNEL);
1853 if (!data->data_pages[i])
1854 goto fail_data_pages;
1855 }
1856
1857 data->nr_pages = nr_pages;
Peter Zijlstra22c15582009-05-05 17:50:25 +02001858 atomic_set(&data->lock, -1);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001859
1860 rcu_assign_pointer(counter->data, data);
1861
Paul Mackerras37d81822009-03-23 18:22:08 +01001862 return 0;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001863
1864fail_data_pages:
1865 for (i--; i >= 0; i--)
1866 free_page((unsigned long)data->data_pages[i]);
1867
1868 free_page((unsigned long)data->user_page);
1869
1870fail_user_page:
1871 kfree(data);
1872
1873fail:
1874 return -ENOMEM;
1875}
1876
1877static void __perf_mmap_data_free(struct rcu_head *rcu_head)
1878{
Ingo Molnar22a4f652009-06-01 10:13:37 +02001879 struct perf_mmap_data *data;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001880 int i;
1881
Ingo Molnar22a4f652009-06-01 10:13:37 +02001882 data = container_of(rcu_head, struct perf_mmap_data, rcu_head);
1883
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001884 free_page((unsigned long)data->user_page);
1885 for (i = 0; i < data->nr_pages; i++)
1886 free_page((unsigned long)data->data_pages[i]);
1887 kfree(data);
1888}
1889
1890static void perf_mmap_data_free(struct perf_counter *counter)
1891{
1892 struct perf_mmap_data *data = counter->data;
1893
1894 WARN_ON(atomic_read(&counter->mmap_count));
1895
1896 rcu_assign_pointer(counter->data, NULL);
1897 call_rcu(&data->rcu_head, __perf_mmap_data_free);
1898}
1899
1900static void perf_mmap_open(struct vm_area_struct *vma)
1901{
1902 struct perf_counter *counter = vma->vm_file->private_data;
1903
1904 atomic_inc(&counter->mmap_count);
1905}
1906
1907static void perf_mmap_close(struct vm_area_struct *vma)
1908{
1909 struct perf_counter *counter = vma->vm_file->private_data;
1910
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001911 WARN_ON_ONCE(counter->ctx->parent_ctx);
Ingo Molnar22a4f652009-06-01 10:13:37 +02001912 if (atomic_dec_and_mutex_lock(&counter->mmap_count, &counter->mmap_mutex)) {
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001913 struct user_struct *user = current_user();
1914
1915 atomic_long_sub(counter->data->nr_pages + 1, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001916 vma->vm_mm->locked_vm -= counter->data->nr_locked;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001917 perf_mmap_data_free(counter);
1918 mutex_unlock(&counter->mmap_mutex);
1919 }
Paul Mackerras37d81822009-03-23 18:22:08 +01001920}
1921
1922static struct vm_operations_struct perf_mmap_vmops = {
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001923 .open = perf_mmap_open,
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001924 .close = perf_mmap_close,
Paul Mackerras37d81822009-03-23 18:22:08 +01001925 .fault = perf_mmap_fault,
1926};
1927
1928static int perf_mmap(struct file *file, struct vm_area_struct *vma)
1929{
1930 struct perf_counter *counter = file->private_data;
Ingo Molnar22a4f652009-06-01 10:13:37 +02001931 unsigned long user_locked, user_lock_limit;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001932 struct user_struct *user = current_user();
Ingo Molnar22a4f652009-06-01 10:13:37 +02001933 unsigned long locked, lock_limit;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001934 unsigned long vma_size;
1935 unsigned long nr_pages;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001936 long user_extra, extra;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001937 int ret = 0;
Paul Mackerras37d81822009-03-23 18:22:08 +01001938
1939 if (!(vma->vm_flags & VM_SHARED) || (vma->vm_flags & VM_WRITE))
1940 return -EINVAL;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001941
1942 vma_size = vma->vm_end - vma->vm_start;
1943 nr_pages = (vma_size / PAGE_SIZE) - 1;
1944
Peter Zijlstra7730d862009-03-25 12:48:31 +01001945 /*
1946 * If we have data pages ensure they're a power-of-two number, so we
1947 * can do bitmasks instead of modulo.
1948 */
1949 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001950 return -EINVAL;
1951
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001952 if (vma_size != PAGE_SIZE * (1 + nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01001953 return -EINVAL;
1954
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001955 if (vma->vm_pgoff != 0)
1956 return -EINVAL;
Paul Mackerras37d81822009-03-23 18:22:08 +01001957
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001958 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001959 mutex_lock(&counter->mmap_mutex);
1960 if (atomic_inc_not_zero(&counter->mmap_count)) {
1961 if (nr_pages != counter->data->nr_pages)
1962 ret = -EINVAL;
1963 goto unlock;
1964 }
1965
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001966 user_extra = nr_pages + 1;
1967 user_lock_limit = sysctl_perf_counter_mlock >> (PAGE_SHIFT - 10);
Ingo Molnara3862d32009-05-24 09:02:37 +02001968
1969 /*
1970 * Increase the limit linearly with more CPUs:
1971 */
1972 user_lock_limit *= num_online_cpus();
1973
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001974 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001975
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001976 extra = 0;
1977 if (user_locked > user_lock_limit)
1978 extra = user_locked - user_lock_limit;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001979
1980 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
1981 lock_limit >>= PAGE_SHIFT;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001982 locked = vma->vm_mm->locked_vm + extra;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001983
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001984 if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
1985 ret = -EPERM;
1986 goto unlock;
1987 }
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001988
1989 WARN_ON(counter->data);
1990 ret = perf_mmap_data_alloc(counter, nr_pages);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001991 if (ret)
1992 goto unlock;
1993
1994 atomic_set(&counter->mmap_count, 1);
Peter Zijlstra789f90f2009-05-15 15:19:27 +02001995 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001996 vma->vm_mm->locked_vm += extra;
1997 counter->data->nr_locked = extra;
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02001998unlock:
Peter Zijlstra7b732a752009-03-23 18:22:10 +01001999 mutex_unlock(&counter->mmap_mutex);
Paul Mackerras37d81822009-03-23 18:22:08 +01002000
2001 vma->vm_flags &= ~VM_MAYWRITE;
2002 vma->vm_flags |= VM_RESERVED;
2003 vma->vm_ops = &perf_mmap_vmops;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002004
2005 return ret;
Paul Mackerras37d81822009-03-23 18:22:08 +01002006}
2007
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002008static int perf_fasync(int fd, struct file *filp, int on)
2009{
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002010 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002011 struct perf_counter *counter = filp->private_data;
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002012 int retval;
2013
2014 mutex_lock(&inode->i_mutex);
2015 retval = fasync_helper(fd, filp, on, &counter->fasync);
2016 mutex_unlock(&inode->i_mutex);
2017
2018 if (retval < 0)
2019 return retval;
2020
2021 return 0;
2022}
2023
Thomas Gleixner0793a612008-12-04 20:12:29 +01002024static const struct file_operations perf_fops = {
2025 .release = perf_release,
2026 .read = perf_read,
2027 .poll = perf_poll,
Paul Mackerrasd859e292009-01-17 18:10:22 +11002028 .unlocked_ioctl = perf_ioctl,
2029 .compat_ioctl = perf_ioctl,
Paul Mackerras37d81822009-03-23 18:22:08 +01002030 .mmap = perf_mmap,
Peter Zijlstra3c446b3d2009-04-06 11:45:01 +02002031 .fasync = perf_fasync,
Thomas Gleixner0793a612008-12-04 20:12:29 +01002032};
2033
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002034/*
Peter Zijlstra925d5192009-03-30 19:07:02 +02002035 * Perf counter wakeup
2036 *
2037 * If there's data, ensure we set the poll() state and publish everything
2038 * to user-space before waking everybody up.
2039 */
2040
2041void perf_counter_wakeup(struct perf_counter *counter)
2042{
Peter Zijlstra925d5192009-03-30 19:07:02 +02002043 wake_up_all(&counter->waitq);
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002044
2045 if (counter->pending_kill) {
2046 kill_fasync(&counter->fasync, SIGIO, counter->pending_kill);
2047 counter->pending_kill = 0;
2048 }
Peter Zijlstra925d5192009-03-30 19:07:02 +02002049}
2050
2051/*
2052 * Pending wakeups
2053 *
2054 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
2055 *
2056 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
2057 * single linked list and use cmpxchg() to add entries lockless.
2058 */
2059
Peter Zijlstra79f14642009-04-06 11:45:07 +02002060static void perf_pending_counter(struct perf_pending_entry *entry)
2061{
2062 struct perf_counter *counter = container_of(entry,
2063 struct perf_counter, pending);
2064
2065 if (counter->pending_disable) {
2066 counter->pending_disable = 0;
2067 perf_counter_disable(counter);
2068 }
2069
2070 if (counter->pending_wakeup) {
2071 counter->pending_wakeup = 0;
2072 perf_counter_wakeup(counter);
2073 }
2074}
2075
Peter Zijlstra671dec52009-04-06 11:45:02 +02002076#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002077
Peter Zijlstra671dec52009-04-06 11:45:02 +02002078static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
Peter Zijlstra925d5192009-03-30 19:07:02 +02002079 PENDING_TAIL,
2080};
2081
Peter Zijlstra671dec52009-04-06 11:45:02 +02002082static void perf_pending_queue(struct perf_pending_entry *entry,
2083 void (*func)(struct perf_pending_entry *))
Peter Zijlstra925d5192009-03-30 19:07:02 +02002084{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002085 struct perf_pending_entry **head;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002086
Peter Zijlstra671dec52009-04-06 11:45:02 +02002087 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002088 return;
2089
Peter Zijlstra671dec52009-04-06 11:45:02 +02002090 entry->func = func;
2091
2092 head = &get_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002093
2094 do {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002095 entry->next = *head;
2096 } while (cmpxchg(head, entry->next, entry) != entry->next);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002097
2098 set_perf_counter_pending();
2099
Peter Zijlstra671dec52009-04-06 11:45:02 +02002100 put_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002101}
2102
2103static int __perf_pending_run(void)
2104{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002105 struct perf_pending_entry *list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002106 int nr = 0;
2107
Peter Zijlstra671dec52009-04-06 11:45:02 +02002108 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002109 while (list != PENDING_TAIL) {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002110 void (*func)(struct perf_pending_entry *);
2111 struct perf_pending_entry *entry = list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002112
2113 list = list->next;
2114
Peter Zijlstra671dec52009-04-06 11:45:02 +02002115 func = entry->func;
2116 entry->next = NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002117 /*
2118 * Ensure we observe the unqueue before we issue the wakeup,
2119 * so that we won't be waiting forever.
2120 * -- see perf_not_pending().
2121 */
2122 smp_wmb();
2123
Peter Zijlstra671dec52009-04-06 11:45:02 +02002124 func(entry);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002125 nr++;
2126 }
2127
2128 return nr;
2129}
2130
2131static inline int perf_not_pending(struct perf_counter *counter)
2132{
2133 /*
2134 * If we flush on whatever cpu we run, there is a chance we don't
2135 * need to wait.
2136 */
2137 get_cpu();
2138 __perf_pending_run();
2139 put_cpu();
2140
2141 /*
2142 * Ensure we see the proper queue state before going to sleep
2143 * so that we do not miss the wakeup. -- see perf_pending_handle()
2144 */
2145 smp_rmb();
Peter Zijlstra671dec52009-04-06 11:45:02 +02002146 return counter->pending.next == NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002147}
2148
2149static void perf_pending_sync(struct perf_counter *counter)
2150{
2151 wait_event(counter->waitq, perf_not_pending(counter));
2152}
2153
2154void perf_counter_do_pending(void)
2155{
2156 __perf_pending_run();
2157}
2158
2159/*
Peter Zijlstra394ee072009-03-30 19:07:14 +02002160 * Callchain support -- arch specific
2161 */
2162
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002163__weak struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
Peter Zijlstra394ee072009-03-30 19:07:14 +02002164{
2165 return NULL;
2166}
2167
2168/*
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002169 * Output
2170 */
2171
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002172struct perf_output_handle {
2173 struct perf_counter *counter;
2174 struct perf_mmap_data *data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002175 unsigned long head;
2176 unsigned long offset;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002177 int nmi;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002178 int overflow;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002179 int locked;
2180 unsigned long flags;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002181};
2182
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002183static void perf_output_wakeup(struct perf_output_handle *handle)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002184{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002185 atomic_set(&handle->data->poll, POLL_IN);
2186
Peter Zijlstra671dec52009-04-06 11:45:02 +02002187 if (handle->nmi) {
Peter Zijlstra79f14642009-04-06 11:45:07 +02002188 handle->counter->pending_wakeup = 1;
Peter Zijlstra671dec52009-04-06 11:45:02 +02002189 perf_pending_queue(&handle->counter->pending,
Peter Zijlstra79f14642009-04-06 11:45:07 +02002190 perf_pending_counter);
Peter Zijlstra671dec52009-04-06 11:45:02 +02002191 } else
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002192 perf_counter_wakeup(handle->counter);
2193}
2194
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002195/*
2196 * Curious locking construct.
2197 *
2198 * We need to ensure a later event doesn't publish a head when a former
2199 * event isn't done writing. However since we need to deal with NMIs we
2200 * cannot fully serialize things.
2201 *
2202 * What we do is serialize between CPUs so we only have to deal with NMI
2203 * nesting on a single CPU.
2204 *
2205 * We only publish the head (and generate a wakeup) when the outer-most
2206 * event completes.
2207 */
2208static void perf_output_lock(struct perf_output_handle *handle)
2209{
2210 struct perf_mmap_data *data = handle->data;
2211 int cpu;
2212
2213 handle->locked = 0;
2214
2215 local_irq_save(handle->flags);
2216 cpu = smp_processor_id();
2217
2218 if (in_nmi() && atomic_read(&data->lock) == cpu)
2219 return;
2220
Peter Zijlstra22c15582009-05-05 17:50:25 +02002221 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002222 cpu_relax();
2223
2224 handle->locked = 1;
2225}
2226
2227static void perf_output_unlock(struct perf_output_handle *handle)
2228{
2229 struct perf_mmap_data *data = handle->data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002230 unsigned long head;
2231 int cpu;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002232
Peter Zijlstrac66de4a52009-05-05 17:50:22 +02002233 data->done_head = data->head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002234
2235 if (!handle->locked)
2236 goto out;
2237
2238again:
2239 /*
2240 * The xchg implies a full barrier that ensures all writes are done
2241 * before we publish the new head, matched by a rmb() in userspace when
2242 * reading this position.
2243 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002244 while ((head = atomic_long_xchg(&data->done_head, 0)))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002245 data->user_page->data_head = head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002246
2247 /*
Peter Zijlstrac66de4a52009-05-05 17:50:22 +02002248 * NMI can happen here, which means we can miss a done_head update.
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002249 */
2250
Peter Zijlstra22c15582009-05-05 17:50:25 +02002251 cpu = atomic_xchg(&data->lock, -1);
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002252 WARN_ON_ONCE(cpu != smp_processor_id());
2253
2254 /*
2255 * Therefore we have to validate we did not indeed do so.
2256 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002257 if (unlikely(atomic_long_read(&data->done_head))) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002258 /*
2259 * Since we had it locked, we can lock it again.
2260 */
Peter Zijlstra22c15582009-05-05 17:50:25 +02002261 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002262 cpu_relax();
2263
2264 goto again;
2265 }
2266
Peter Zijlstrac66de4a52009-05-05 17:50:22 +02002267 if (atomic_xchg(&data->wakeup, 0))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002268 perf_output_wakeup(handle);
2269out:
2270 local_irq_restore(handle->flags);
2271}
2272
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002273static int perf_output_begin(struct perf_output_handle *handle,
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002274 struct perf_counter *counter, unsigned int size,
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002275 int nmi, int overflow)
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002276{
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002277 struct perf_mmap_data *data;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002278 unsigned int offset, head;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002279
Peter Zijlstra2023b352009-05-05 17:50:26 +02002280 /*
2281 * For inherited counters we send all the output towards the parent.
2282 */
2283 if (counter->parent)
2284 counter = counter->parent;
2285
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002286 rcu_read_lock();
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002287 data = rcu_dereference(counter->data);
2288 if (!data)
2289 goto out;
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002290
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002291 handle->data = data;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002292 handle->counter = counter;
2293 handle->nmi = nmi;
2294 handle->overflow = overflow;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002295
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002296 if (!data->nr_pages)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002297 goto fail;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002298
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002299 perf_output_lock(handle);
2300
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002301 do {
Paul Mackerras6dc5f2a2009-06-05 12:36:28 +10002302 offset = head = atomic_long_read(&data->head);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01002303 head += size;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002304 } while (atomic_long_cmpxchg(&data->head, offset, head) != offset);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002305
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002306 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002307 handle->head = head;
Peter Zijlstrac66de4a52009-05-05 17:50:22 +02002308
2309 if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
2310 atomic_set(&data->wakeup, 1);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002311
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002312 return 0;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002313
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002314fail:
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002315 perf_output_wakeup(handle);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002316out:
2317 rcu_read_unlock();
2318
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002319 return -ENOSPC;
2320}
2321
2322static void perf_output_copy(struct perf_output_handle *handle,
Peter Zijlstra089dd792009-06-05 14:04:55 +02002323 const void *buf, unsigned int len)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002324{
2325 unsigned int pages_mask;
2326 unsigned int offset;
2327 unsigned int size;
2328 void **pages;
2329
2330 offset = handle->offset;
2331 pages_mask = handle->data->nr_pages - 1;
2332 pages = handle->data->data_pages;
2333
2334 do {
2335 unsigned int page_offset;
2336 int nr;
2337
2338 nr = (offset >> PAGE_SHIFT) & pages_mask;
2339 page_offset = offset & (PAGE_SIZE - 1);
2340 size = min_t(unsigned int, PAGE_SIZE - page_offset, len);
2341
2342 memcpy(pages[nr] + page_offset, buf, size);
2343
2344 len -= size;
2345 buf += size;
2346 offset += size;
2347 } while (len);
2348
2349 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002350
Peter Zijlstra53020fe2009-05-13 21:26:19 +02002351 /*
2352 * Check we didn't copy past our reservation window, taking the
2353 * possible unsigned int wrap into account.
2354 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002355 WARN_ON_ONCE(((long)(handle->head - handle->offset)) < 0);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002356}
2357
Peter Zijlstra5c148192009-03-25 12:30:23 +01002358#define perf_output_put(handle, x) \
2359 perf_output_copy((handle), &(x), sizeof(x))
2360
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002361static void perf_output_end(struct perf_output_handle *handle)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002362{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002363 struct perf_counter *counter = handle->counter;
2364 struct perf_mmap_data *data = handle->data;
2365
Peter Zijlstra0d486962009-06-02 19:22:16 +02002366 int wakeup_events = counter->attr.wakeup_events;
Peter Zijlstrac4578102009-04-02 11:12:01 +02002367
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002368 if (handle->overflow && wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002369 int events = atomic_inc_return(&data->events);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002370 if (events >= wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002371 atomic_sub(wakeup_events, &data->events);
Peter Zijlstrac66de4a52009-05-05 17:50:22 +02002372 atomic_set(&data->wakeup, 1);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002373 }
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002374 }
2375
2376 perf_output_unlock(handle);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002377 rcu_read_unlock();
2378}
2379
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002380static u32 perf_counter_pid(struct perf_counter *counter, struct task_struct *p)
2381{
2382 /*
2383 * only top level counters have the pid namespace they were created in
2384 */
2385 if (counter->parent)
2386 counter = counter->parent;
2387
2388 return task_tgid_nr_ns(p, counter->ns);
2389}
2390
2391static u32 perf_counter_tid(struct perf_counter *counter, struct task_struct *p)
2392{
2393 /*
2394 * only top level counters have the pid namespace they were created in
2395 */
2396 if (counter->parent)
2397 counter = counter->parent;
2398
2399 return task_pid_nr_ns(p, counter->ns);
2400}
2401
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002402static void perf_counter_output(struct perf_counter *counter, int nmi,
2403 struct perf_sample_data *data)
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002404{
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002405 int ret;
Peter Zijlstra0d486962009-06-02 19:22:16 +02002406 u64 sample_type = counter->attr.sample_type;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002407 struct perf_output_handle handle;
2408 struct perf_event_header header;
2409 u64 ip;
Peter Zijlstra5c148192009-03-25 12:30:23 +01002410 struct {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002411 u32 pid, tid;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002412 } tid_entry;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002413 struct {
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02002414 u64 id;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002415 u64 counter;
2416 } group_entry;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002417 struct perf_callchain_entry *callchain = NULL;
2418 int callchain_size = 0;
Peter Zijlstra339f7c92009-04-06 11:45:06 +02002419 u64 time;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002420 struct {
2421 u32 cpu, reserved;
2422 } cpu_entry;
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002423
Peter Zijlstra6b6e54862009-04-08 15:01:27 +02002424 header.type = 0;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002425 header.size = sizeof(header);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002426
Peter Zijlstra6b6e54862009-04-08 15:01:27 +02002427 header.misc = PERF_EVENT_MISC_OVERFLOW;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002428 header.misc |= perf_misc_flags(data->regs);
Peter Zijlstra6fab0192009-04-08 15:01:26 +02002429
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002430 if (sample_type & PERF_SAMPLE_IP) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002431 ip = perf_instruction_pointer(data->regs);
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002432 header.type |= PERF_SAMPLE_IP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002433 header.size += sizeof(ip);
2434 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002435
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002436 if (sample_type & PERF_SAMPLE_TID) {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002437 /* namespace issues */
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002438 tid_entry.pid = perf_counter_pid(counter, current);
2439 tid_entry.tid = perf_counter_tid(counter, current);
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002440
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002441 header.type |= PERF_SAMPLE_TID;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002442 header.size += sizeof(tid_entry);
2443 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002444
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002445 if (sample_type & PERF_SAMPLE_TIME) {
Peter Zijlstra4d855452009-04-08 15:01:32 +02002446 /*
2447 * Maybe do better on x86 and provide cpu_clock_nmi()
2448 */
2449 time = sched_clock();
2450
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002451 header.type |= PERF_SAMPLE_TIME;
Peter Zijlstra4d855452009-04-08 15:01:32 +02002452 header.size += sizeof(u64);
2453 }
2454
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002455 if (sample_type & PERF_SAMPLE_ADDR) {
2456 header.type |= PERF_SAMPLE_ADDR;
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002457 header.size += sizeof(u64);
2458 }
2459
Peter Zijlstraac4bcf82009-06-05 14:44:52 +02002460 if (sample_type & PERF_SAMPLE_ID) {
2461 header.type |= PERF_SAMPLE_ID;
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002462 header.size += sizeof(u64);
2463 }
2464
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002465 if (sample_type & PERF_SAMPLE_CPU) {
2466 header.type |= PERF_SAMPLE_CPU;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002467 header.size += sizeof(cpu_entry);
2468
2469 cpu_entry.cpu = raw_smp_processor_id();
2470 }
2471
Peter Zijlstra689802b2009-06-05 15:05:43 +02002472 if (sample_type & PERF_SAMPLE_PERIOD) {
2473 header.type |= PERF_SAMPLE_PERIOD;
2474 header.size += sizeof(u64);
2475 }
2476
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002477 if (sample_type & PERF_SAMPLE_GROUP) {
2478 header.type |= PERF_SAMPLE_GROUP;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002479 header.size += sizeof(u64) +
2480 counter->nr_siblings * sizeof(group_entry);
2481 }
2482
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002483 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002484 callchain = perf_callchain(data->regs);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002485
2486 if (callchain) {
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002487 callchain_size = (1 + callchain->nr) * sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002488
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002489 header.type |= PERF_SAMPLE_CALLCHAIN;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002490 header.size += callchain_size;
2491 }
2492 }
2493
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002494 ret = perf_output_begin(&handle, counter, header.size, nmi, 1);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002495 if (ret)
2496 return;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002497
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002498 perf_output_put(&handle, header);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002499
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002500 if (sample_type & PERF_SAMPLE_IP)
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002501 perf_output_put(&handle, ip);
2502
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002503 if (sample_type & PERF_SAMPLE_TID)
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002504 perf_output_put(&handle, tid_entry);
2505
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002506 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra4d855452009-04-08 15:01:32 +02002507 perf_output_put(&handle, time);
2508
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002509 if (sample_type & PERF_SAMPLE_ADDR)
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002510 perf_output_put(&handle, data->addr);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002511
Peter Zijlstraac4bcf82009-06-05 14:44:52 +02002512 if (sample_type & PERF_SAMPLE_ID)
2513 perf_output_put(&handle, counter->id);
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002514
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002515 if (sample_type & PERF_SAMPLE_CPU)
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002516 perf_output_put(&handle, cpu_entry);
2517
Peter Zijlstra689802b2009-06-05 15:05:43 +02002518 if (sample_type & PERF_SAMPLE_PERIOD)
Peter Zijlstra9e350de2009-06-10 21:34:59 +02002519 perf_output_put(&handle, data->period);
Peter Zijlstra689802b2009-06-05 15:05:43 +02002520
Peter Zijlstra2023b352009-05-05 17:50:26 +02002521 /*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002522 * XXX PERF_SAMPLE_GROUP vs inherited counters seems difficult.
Peter Zijlstra2023b352009-05-05 17:50:26 +02002523 */
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002524 if (sample_type & PERF_SAMPLE_GROUP) {
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002525 struct perf_counter *leader, *sub;
2526 u64 nr = counter->nr_siblings;
2527
2528 perf_output_put(&handle, nr);
2529
2530 leader = counter->group_leader;
2531 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
2532 if (sub != counter)
Robert Richter4aeb0b42009-04-29 12:47:03 +02002533 sub->pmu->read(sub);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002534
Peter Zijlstra8e5799b2009-06-02 15:08:15 +02002535 group_entry.id = sub->id;
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002536 group_entry.counter = atomic64_read(&sub->count);
2537
2538 perf_output_put(&handle, group_entry);
2539 }
2540 }
2541
Peter Zijlstra394ee072009-03-30 19:07:14 +02002542 if (callchain)
2543 perf_output_copy(&handle, callchain, callchain_size);
2544
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002545 perf_output_end(&handle);
Peter Zijlstra7b732a752009-03-23 18:22:10 +01002546}
2547
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002548/*
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002549 * fork tracking
2550 */
2551
2552struct perf_fork_event {
2553 struct task_struct *task;
2554
2555 struct {
2556 struct perf_event_header header;
2557
2558 u32 pid;
2559 u32 ppid;
2560 } event;
2561};
2562
2563static void perf_counter_fork_output(struct perf_counter *counter,
2564 struct perf_fork_event *fork_event)
2565{
2566 struct perf_output_handle handle;
2567 int size = fork_event->event.header.size;
2568 struct task_struct *task = fork_event->task;
2569 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2570
2571 if (ret)
2572 return;
2573
2574 fork_event->event.pid = perf_counter_pid(counter, task);
2575 fork_event->event.ppid = perf_counter_pid(counter, task->real_parent);
2576
2577 perf_output_put(&handle, fork_event->event);
2578 perf_output_end(&handle);
2579}
2580
2581static int perf_counter_fork_match(struct perf_counter *counter)
2582{
Peter Zijlstrad99e9442009-06-04 17:08:58 +02002583 if (counter->attr.comm || counter->attr.mmap)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002584 return 1;
2585
2586 return 0;
2587}
2588
2589static void perf_counter_fork_ctx(struct perf_counter_context *ctx,
2590 struct perf_fork_event *fork_event)
2591{
2592 struct perf_counter *counter;
2593
2594 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2595 return;
2596
2597 rcu_read_lock();
2598 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2599 if (perf_counter_fork_match(counter))
2600 perf_counter_fork_output(counter, fork_event);
2601 }
2602 rcu_read_unlock();
2603}
2604
2605static void perf_counter_fork_event(struct perf_fork_event *fork_event)
2606{
2607 struct perf_cpu_context *cpuctx;
2608 struct perf_counter_context *ctx;
2609
2610 cpuctx = &get_cpu_var(perf_cpu_context);
2611 perf_counter_fork_ctx(&cpuctx->ctx, fork_event);
2612 put_cpu_var(perf_cpu_context);
2613
2614 rcu_read_lock();
2615 /*
2616 * doesn't really matter which of the child contexts the
2617 * events ends up in.
2618 */
2619 ctx = rcu_dereference(current->perf_counter_ctxp);
2620 if (ctx)
2621 perf_counter_fork_ctx(ctx, fork_event);
2622 rcu_read_unlock();
2623}
2624
2625void perf_counter_fork(struct task_struct *task)
2626{
2627 struct perf_fork_event fork_event;
2628
2629 if (!atomic_read(&nr_comm_counters) &&
Peter Zijlstrad99e9442009-06-04 17:08:58 +02002630 !atomic_read(&nr_mmap_counters))
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002631 return;
2632
2633 fork_event = (struct perf_fork_event){
2634 .task = task,
2635 .event = {
2636 .header = {
2637 .type = PERF_EVENT_FORK,
2638 .size = sizeof(fork_event.event),
2639 },
2640 },
2641 };
2642
2643 perf_counter_fork_event(&fork_event);
2644}
2645
2646/*
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002647 * comm tracking
2648 */
2649
2650struct perf_comm_event {
Ingo Molnar22a4f652009-06-01 10:13:37 +02002651 struct task_struct *task;
2652 char *comm;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002653 int comm_size;
2654
2655 struct {
2656 struct perf_event_header header;
2657
2658 u32 pid;
2659 u32 tid;
2660 } event;
2661};
2662
2663static void perf_counter_comm_output(struct perf_counter *counter,
2664 struct perf_comm_event *comm_event)
2665{
2666 struct perf_output_handle handle;
2667 int size = comm_event->event.header.size;
2668 int ret = perf_output_begin(&handle, counter, size, 0, 0);
2669
2670 if (ret)
2671 return;
2672
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002673 comm_event->event.pid = perf_counter_pid(counter, comm_event->task);
2674 comm_event->event.tid = perf_counter_tid(counter, comm_event->task);
2675
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002676 perf_output_put(&handle, comm_event->event);
2677 perf_output_copy(&handle, comm_event->comm,
2678 comm_event->comm_size);
2679 perf_output_end(&handle);
2680}
2681
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002682static int perf_counter_comm_match(struct perf_counter *counter)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002683{
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002684 if (counter->attr.comm)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002685 return 1;
2686
2687 return 0;
2688}
2689
2690static void perf_counter_comm_ctx(struct perf_counter_context *ctx,
2691 struct perf_comm_event *comm_event)
2692{
2693 struct perf_counter *counter;
2694
2695 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2696 return;
2697
2698 rcu_read_lock();
2699 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002700 if (perf_counter_comm_match(counter))
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002701 perf_counter_comm_output(counter, comm_event);
2702 }
2703 rcu_read_unlock();
2704}
2705
2706static void perf_counter_comm_event(struct perf_comm_event *comm_event)
2707{
2708 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02002709 struct perf_counter_context *ctx;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002710 unsigned int size;
2711 char *comm = comm_event->task->comm;
2712
Ingo Molnar888fcee2009-04-09 09:48:22 +02002713 size = ALIGN(strlen(comm)+1, sizeof(u64));
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002714
2715 comm_event->comm = comm;
2716 comm_event->comm_size = size;
2717
2718 comm_event->event.header.size = sizeof(comm_event->event) + size;
2719
2720 cpuctx = &get_cpu_var(perf_cpu_context);
2721 perf_counter_comm_ctx(&cpuctx->ctx, comm_event);
2722 put_cpu_var(perf_cpu_context);
Peter Zijlstra665c2142009-05-29 14:51:57 +02002723
2724 rcu_read_lock();
2725 /*
2726 * doesn't really matter which of the child contexts the
2727 * events ends up in.
2728 */
2729 ctx = rcu_dereference(current->perf_counter_ctxp);
2730 if (ctx)
2731 perf_counter_comm_ctx(ctx, comm_event);
2732 rcu_read_unlock();
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002733}
2734
2735void perf_counter_comm(struct task_struct *task)
2736{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002737 struct perf_comm_event comm_event;
2738
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002739 if (!atomic_read(&nr_comm_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002740 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10002741
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002742 comm_event = (struct perf_comm_event){
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002743 .task = task,
2744 .event = {
2745 .header = { .type = PERF_EVENT_COMM, },
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02002746 },
2747 };
2748
2749 perf_counter_comm_event(&comm_event);
2750}
2751
2752/*
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002753 * mmap tracking
2754 */
2755
2756struct perf_mmap_event {
Peter Zijlstra089dd792009-06-05 14:04:55 +02002757 struct vm_area_struct *vma;
2758
2759 const char *file_name;
2760 int file_size;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002761
2762 struct {
2763 struct perf_event_header header;
2764
2765 u32 pid;
2766 u32 tid;
2767 u64 start;
2768 u64 len;
2769 u64 pgoff;
2770 } event;
2771};
2772
2773static void perf_counter_mmap_output(struct perf_counter *counter,
2774 struct perf_mmap_event *mmap_event)
2775{
2776 struct perf_output_handle handle;
2777 int size = mmap_event->event.header.size;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002778 int ret = perf_output_begin(&handle, counter, size, 0, 0);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002779
2780 if (ret)
2781 return;
2782
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002783 mmap_event->event.pid = perf_counter_pid(counter, current);
2784 mmap_event->event.tid = perf_counter_tid(counter, current);
2785
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002786 perf_output_put(&handle, mmap_event->event);
2787 perf_output_copy(&handle, mmap_event->file_name,
2788 mmap_event->file_size);
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002789 perf_output_end(&handle);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002790}
2791
2792static int perf_counter_mmap_match(struct perf_counter *counter,
2793 struct perf_mmap_event *mmap_event)
2794{
Peter Zijlstrad99e9442009-06-04 17:08:58 +02002795 if (counter->attr.mmap)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002796 return 1;
2797
2798 return 0;
2799}
2800
2801static void perf_counter_mmap_ctx(struct perf_counter_context *ctx,
2802 struct perf_mmap_event *mmap_event)
2803{
2804 struct perf_counter *counter;
2805
2806 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
2807 return;
2808
2809 rcu_read_lock();
2810 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
2811 if (perf_counter_mmap_match(counter, mmap_event))
2812 perf_counter_mmap_output(counter, mmap_event);
2813 }
2814 rcu_read_unlock();
2815}
2816
2817static void perf_counter_mmap_event(struct perf_mmap_event *mmap_event)
2818{
2819 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02002820 struct perf_counter_context *ctx;
Peter Zijlstra089dd792009-06-05 14:04:55 +02002821 struct vm_area_struct *vma = mmap_event->vma;
2822 struct file *file = vma->vm_file;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002823 unsigned int size;
2824 char tmp[16];
2825 char *buf = NULL;
Peter Zijlstra089dd792009-06-05 14:04:55 +02002826 const char *name;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002827
2828 if (file) {
2829 buf = kzalloc(PATH_MAX, GFP_KERNEL);
2830 if (!buf) {
2831 name = strncpy(tmp, "//enomem", sizeof(tmp));
2832 goto got_name;
2833 }
Peter Zijlstrad3d21c42009-04-09 10:53:46 +02002834 name = d_path(&file->f_path, buf, PATH_MAX);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002835 if (IS_ERR(name)) {
2836 name = strncpy(tmp, "//toolong", sizeof(tmp));
2837 goto got_name;
2838 }
2839 } else {
Peter Zijlstra089dd792009-06-05 14:04:55 +02002840 name = arch_vma_name(mmap_event->vma);
2841 if (name)
2842 goto got_name;
2843
2844 if (!vma->vm_mm) {
2845 name = strncpy(tmp, "[vdso]", sizeof(tmp));
2846 goto got_name;
2847 }
2848
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002849 name = strncpy(tmp, "//anon", sizeof(tmp));
2850 goto got_name;
2851 }
2852
2853got_name:
Ingo Molnar888fcee2009-04-09 09:48:22 +02002854 size = ALIGN(strlen(name)+1, sizeof(u64));
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002855
2856 mmap_event->file_name = name;
2857 mmap_event->file_size = size;
2858
2859 mmap_event->event.header.size = sizeof(mmap_event->event) + size;
2860
2861 cpuctx = &get_cpu_var(perf_cpu_context);
2862 perf_counter_mmap_ctx(&cpuctx->ctx, mmap_event);
2863 put_cpu_var(perf_cpu_context);
2864
Peter Zijlstra665c2142009-05-29 14:51:57 +02002865 rcu_read_lock();
2866 /*
2867 * doesn't really matter which of the child contexts the
2868 * events ends up in.
2869 */
2870 ctx = rcu_dereference(current->perf_counter_ctxp);
2871 if (ctx)
2872 perf_counter_mmap_ctx(ctx, mmap_event);
2873 rcu_read_unlock();
2874
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002875 kfree(buf);
2876}
2877
Peter Zijlstra089dd792009-06-05 14:04:55 +02002878void __perf_counter_mmap(struct vm_area_struct *vma)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002879{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002880 struct perf_mmap_event mmap_event;
2881
Peter Zijlstra60313eb2009-06-04 16:53:44 +02002882 if (!atomic_read(&nr_mmap_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02002883 return;
2884
2885 mmap_event = (struct perf_mmap_event){
Peter Zijlstra089dd792009-06-05 14:04:55 +02002886 .vma = vma,
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002887 .event = {
2888 .header = { .type = PERF_EVENT_MMAP, },
Peter Zijlstra089dd792009-06-05 14:04:55 +02002889 .start = vma->vm_start,
2890 .len = vma->vm_end - vma->vm_start,
2891 .pgoff = vma->vm_pgoff,
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002892 },
2893 };
2894
2895 perf_counter_mmap_event(&mmap_event);
2896}
2897
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02002898/*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002899 * Log sample_period changes so that analyzing tools can re-normalize the
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02002900 * event flow.
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002901 */
2902
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002903struct freq_event {
2904 struct perf_event_header header;
2905 u64 time;
2906 u64 id;
2907 u64 period;
2908};
2909
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002910static void perf_log_period(struct perf_counter *counter, u64 period)
2911{
2912 struct perf_output_handle handle;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002913 struct freq_event event;
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002914 int ret;
2915
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002916 if (counter->hw.sample_period == period)
2917 return;
2918
2919 if (counter->attr.sample_type & PERF_SAMPLE_PERIOD)
2920 return;
2921
2922 event = (struct freq_event) {
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002923 .header = {
2924 .type = PERF_EVENT_PERIOD,
2925 .misc = 0,
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002926 .size = sizeof(event),
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002927 },
2928 .time = sched_clock(),
Peter Zijlstra689802b2009-06-05 15:05:43 +02002929 .id = counter->id,
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002930 .period = period,
2931 };
2932
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002933 ret = perf_output_begin(&handle, counter, sizeof(event), 1, 0);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002934 if (ret)
2935 return;
2936
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002937 perf_output_put(&handle, event);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02002938 perf_output_end(&handle);
2939}
2940
2941/*
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002942 * IRQ throttle logging
2943 */
2944
2945static void perf_log_throttle(struct perf_counter *counter, int enable)
2946{
2947 struct perf_output_handle handle;
2948 int ret;
2949
2950 struct {
2951 struct perf_event_header header;
2952 u64 time;
Peter Zijlstracca3f452009-06-11 14:57:55 +02002953 u64 id;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002954 } throttle_event = {
2955 .header = {
2956 .type = PERF_EVENT_THROTTLE + 1,
2957 .misc = 0,
2958 .size = sizeof(throttle_event),
2959 },
Peter Zijlstracca3f452009-06-11 14:57:55 +02002960 .time = sched_clock(),
2961 .id = counter->id,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002962 };
2963
Ingo Molnar0127c3e2009-05-25 22:03:26 +02002964 ret = perf_output_begin(&handle, counter, sizeof(throttle_event), 1, 0);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002965 if (ret)
2966 return;
2967
2968 perf_output_put(&handle, throttle_event);
2969 perf_output_end(&handle);
2970}
2971
2972/*
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002973 * Generic counter overflow handling.
2974 */
2975
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002976int perf_counter_overflow(struct perf_counter *counter, int nmi,
2977 struct perf_sample_data *data)
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02002978{
Peter Zijlstra79f14642009-04-06 11:45:07 +02002979 int events = atomic_read(&counter->event_limit);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002980 int throttle = counter->pmu->unthrottle != NULL;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002981 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstra79f14642009-04-06 11:45:07 +02002982 int ret = 0;
2983
Peter Zijlstraa78ac322009-05-25 17:39:05 +02002984 if (!throttle) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002985 hwc->interrupts++;
Ingo Molnar128f0482009-06-03 22:19:36 +02002986 } else {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002987 if (hwc->interrupts != MAX_INTERRUPTS) {
2988 hwc->interrupts++;
Peter Zijlstradf58ab22009-06-11 11:25:05 +02002989 if (HZ * hwc->interrupts >
2990 (u64)sysctl_perf_counter_sample_rate) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02002991 hwc->interrupts = MAX_INTERRUPTS;
Ingo Molnar128f0482009-06-03 22:19:36 +02002992 perf_log_throttle(counter, 0);
2993 ret = 1;
2994 }
2995 } else {
2996 /*
2997 * Keep re-disabling counters even though on the previous
2998 * pass we disabled it - just in case we raced with a
2999 * sched-in and the counter got enabled again:
3000 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003001 ret = 1;
3002 }
3003 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003004
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003005 if (counter->attr.freq) {
3006 u64 now = sched_clock();
3007 s64 delta = now - hwc->freq_stamp;
3008
3009 hwc->freq_stamp = now;
3010
3011 if (delta > 0 && delta < TICK_NSEC)
3012 perf_adjust_period(counter, NSEC_PER_SEC / (int)delta);
3013 }
3014
Peter Zijlstra2023b352009-05-05 17:50:26 +02003015 /*
3016 * XXX event_limit might not quite work as expected on inherited
3017 * counters
3018 */
3019
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003020 counter->pending_kill = POLL_IN;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003021 if (events && atomic_dec_and_test(&counter->event_limit)) {
3022 ret = 1;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003023 counter->pending_kill = POLL_HUP;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003024 if (nmi) {
3025 counter->pending_disable = 1;
3026 perf_pending_queue(&counter->pending,
3027 perf_pending_counter);
3028 } else
3029 perf_counter_disable(counter);
3030 }
3031
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003032 perf_counter_output(counter, nmi, data);
Peter Zijlstra79f14642009-04-06 11:45:07 +02003033 return ret;
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003034}
3035
3036/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003037 * Generic software counter infrastructure
3038 */
3039
3040static void perf_swcounter_update(struct perf_counter *counter)
3041{
3042 struct hw_perf_counter *hwc = &counter->hw;
3043 u64 prev, now;
3044 s64 delta;
3045
3046again:
3047 prev = atomic64_read(&hwc->prev_count);
3048 now = atomic64_read(&hwc->count);
3049 if (atomic64_cmpxchg(&hwc->prev_count, prev, now) != prev)
3050 goto again;
3051
3052 delta = now - prev;
3053
3054 atomic64_add(delta, &counter->count);
3055 atomic64_sub(delta, &hwc->period_left);
3056}
3057
3058static void perf_swcounter_set_period(struct perf_counter *counter)
3059{
3060 struct hw_perf_counter *hwc = &counter->hw;
3061 s64 left = atomic64_read(&hwc->period_left);
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003062 s64 period = hwc->sample_period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003063
3064 if (unlikely(left <= -period)) {
3065 left = period;
3066 atomic64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02003067 hwc->last_period = period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003068 }
3069
3070 if (unlikely(left <= 0)) {
3071 left += period;
3072 atomic64_add(period, &hwc->period_left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02003073 hwc->last_period = period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003074 }
3075
3076 atomic64_set(&hwc->prev_count, -left);
3077 atomic64_set(&hwc->count, -left);
3078}
3079
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003080static enum hrtimer_restart perf_swcounter_hrtimer(struct hrtimer *hrtimer)
3081{
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003082 enum hrtimer_restart ret = HRTIMER_RESTART;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003083 struct perf_sample_data data;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003084 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003085 u64 period;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003086
3087 counter = container_of(hrtimer, struct perf_counter, hw.hrtimer);
Robert Richter4aeb0b42009-04-29 12:47:03 +02003088 counter->pmu->read(counter);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003089
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003090 data.addr = 0;
3091 data.regs = get_irq_regs();
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003092 /*
3093 * In case we exclude kernel IPs or are somehow not in interrupt
3094 * context, provide the next best thing, the user IP.
3095 */
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003096 if ((counter->attr.exclude_kernel || !data.regs) &&
Peter Zijlstra0d486962009-06-02 19:22:16 +02003097 !counter->attr.exclude_user)
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003098 data.regs = task_pt_regs(current);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003099
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003100 if (data.regs) {
3101 if (perf_counter_overflow(counter, 0, &data))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003102 ret = HRTIMER_NORESTART;
3103 }
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003104
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003105 period = max_t(u64, 10000, counter->hw.sample_period);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003106 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003107
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003108 return ret;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003109}
3110
3111static void perf_swcounter_overflow(struct perf_counter *counter,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003112 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003113{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003114 struct perf_sample_data data = {
Peter Zijlstra9e350de2009-06-10 21:34:59 +02003115 .regs = regs,
3116 .addr = addr,
3117 .period = counter->hw.last_period,
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003118 };
3119
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003120 perf_swcounter_update(counter);
3121 perf_swcounter_set_period(counter);
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003122 if (perf_counter_overflow(counter, nmi, &data))
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003123 /* soft-disable the counter */
3124 ;
3125
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003126}
3127
Paul Mackerras880ca152009-06-01 17:49:14 +10003128static int perf_swcounter_is_counting(struct perf_counter *counter)
3129{
3130 struct perf_counter_context *ctx;
3131 unsigned long flags;
3132 int count;
3133
3134 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
3135 return 1;
3136
3137 if (counter->state != PERF_COUNTER_STATE_INACTIVE)
3138 return 0;
3139
3140 /*
3141 * If the counter is inactive, it could be just because
3142 * its task is scheduled out, or because it's in a group
3143 * which could not go on the PMU. We want to count in
3144 * the first case but not the second. If the context is
3145 * currently active then an inactive software counter must
3146 * be the second case. If it's not currently active then
3147 * we need to know whether the counter was active when the
3148 * context was last active, which we can determine by
3149 * comparing counter->tstamp_stopped with ctx->time.
3150 *
3151 * We are within an RCU read-side critical section,
3152 * which protects the existence of *ctx.
3153 */
3154 ctx = counter->ctx;
3155 spin_lock_irqsave(&ctx->lock, flags);
3156 count = 1;
3157 /* Re-check state now we have the lock */
3158 if (counter->state < PERF_COUNTER_STATE_INACTIVE ||
3159 counter->ctx->is_active ||
3160 counter->tstamp_stopped < ctx->time)
3161 count = 0;
3162 spin_unlock_irqrestore(&ctx->lock, flags);
3163 return count;
3164}
3165
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003166static int perf_swcounter_match(struct perf_counter *counter,
Peter Zijlstra1c432d82009-06-11 13:19:29 +02003167 enum perf_type_id type,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003168 u32 event, struct pt_regs *regs)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003169{
Paul Mackerras880ca152009-06-01 17:49:14 +10003170 if (!perf_swcounter_is_counting(counter))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003171 return 0;
3172
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003173 if (counter->attr.type != type)
3174 return 0;
3175 if (counter->attr.config != event)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003176 return 0;
3177
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003178 if (regs) {
Peter Zijlstra0d486962009-06-02 19:22:16 +02003179 if (counter->attr.exclude_user && user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003180 return 0;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003181
Peter Zijlstra0d486962009-06-02 19:22:16 +02003182 if (counter->attr.exclude_kernel && !user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003183 return 0;
3184 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003185
3186 return 1;
3187}
3188
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003189static void perf_swcounter_add(struct perf_counter *counter, u64 nr,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003190 int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003191{
3192 int neg = atomic64_add_negative(nr, &counter->hw.count);
Ingo Molnar22a4f652009-06-01 10:13:37 +02003193
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003194 if (counter->hw.sample_period && !neg && regs)
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003195 perf_swcounter_overflow(counter, nmi, regs, addr);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003196}
3197
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003198static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
Peter Zijlstra1c432d82009-06-11 13:19:29 +02003199 enum perf_type_id type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003200 u64 nr, int nmi, struct pt_regs *regs,
3201 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003202{
3203 struct perf_counter *counter;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003204
Peter Zijlstra01ef09d2009-03-19 20:26:11 +01003205 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003206 return;
3207
Peter Zijlstra592903c2009-03-13 12:21:36 +01003208 rcu_read_lock();
3209 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003210 if (perf_swcounter_match(counter, type, event, regs))
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003211 perf_swcounter_add(counter, nr, nmi, regs, addr);
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003212 }
Peter Zijlstra592903c2009-03-13 12:21:36 +01003213 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003214}
3215
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003216static int *perf_swcounter_recursion_context(struct perf_cpu_context *cpuctx)
3217{
3218 if (in_nmi())
3219 return &cpuctx->recursion[3];
3220
3221 if (in_irq())
3222 return &cpuctx->recursion[2];
3223
3224 if (in_softirq())
3225 return &cpuctx->recursion[1];
3226
3227 return &cpuctx->recursion[0];
3228}
3229
Peter Zijlstra1c432d82009-06-11 13:19:29 +02003230static void __perf_swcounter_event(enum perf_type_id type, u32 event,
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003231 u64 nr, int nmi, struct pt_regs *regs,
3232 u64 addr)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003233{
3234 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003235 int *recursion = perf_swcounter_recursion_context(cpuctx);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003236 struct perf_counter_context *ctx;
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003237
3238 if (*recursion)
3239 goto out;
3240
3241 (*recursion)++;
3242 barrier();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003243
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003244 perf_swcounter_ctx_event(&cpuctx->ctx, type, event,
3245 nr, nmi, regs, addr);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003246 rcu_read_lock();
3247 /*
3248 * doesn't really matter which of the child contexts the
3249 * events ends up in.
3250 */
3251 ctx = rcu_dereference(current->perf_counter_ctxp);
3252 if (ctx)
3253 perf_swcounter_ctx_event(ctx, type, event, nr, nmi, regs, addr);
3254 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003255
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003256 barrier();
3257 (*recursion)--;
3258
3259out:
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003260 put_cpu_var(perf_cpu_context);
3261}
3262
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003263void
3264perf_swcounter_event(u32 event, u64 nr, int nmi, struct pt_regs *regs, u64 addr)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003265{
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003266 __perf_swcounter_event(PERF_TYPE_SOFTWARE, event, nr, nmi, regs, addr);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003267}
3268
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003269static void perf_swcounter_read(struct perf_counter *counter)
3270{
3271 perf_swcounter_update(counter);
3272}
3273
3274static int perf_swcounter_enable(struct perf_counter *counter)
3275{
3276 perf_swcounter_set_period(counter);
3277 return 0;
3278}
3279
3280static void perf_swcounter_disable(struct perf_counter *counter)
3281{
3282 perf_swcounter_update(counter);
3283}
3284
Robert Richter4aeb0b42009-04-29 12:47:03 +02003285static const struct pmu perf_ops_generic = {
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003286 .enable = perf_swcounter_enable,
3287 .disable = perf_swcounter_disable,
3288 .read = perf_swcounter_read,
3289};
3290
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003291/*
3292 * Software counter: cpu wall time clock
3293 */
3294
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003295static void cpu_clock_perf_counter_update(struct perf_counter *counter)
3296{
3297 int cpu = raw_smp_processor_id();
3298 s64 prev;
3299 u64 now;
3300
3301 now = cpu_clock(cpu);
3302 prev = atomic64_read(&counter->hw.prev_count);
3303 atomic64_set(&counter->hw.prev_count, now);
3304 atomic64_add(now - prev, &counter->count);
3305}
3306
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003307static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
3308{
3309 struct hw_perf_counter *hwc = &counter->hw;
3310 int cpu = raw_smp_processor_id();
3311
3312 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
Peter Zijlstra039fc912009-03-13 16:43:47 +01003313 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3314 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003315 if (hwc->sample_period) {
3316 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003317 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003318 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003319 HRTIMER_MODE_REL, 0);
3320 }
3321
3322 return 0;
3323}
3324
Ingo Molnar5c92d122008-12-11 13:21:10 +01003325static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
3326{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003327 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003328 hrtimer_cancel(&counter->hw.hrtimer);
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003329 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003330}
3331
3332static void cpu_clock_perf_counter_read(struct perf_counter *counter)
3333{
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003334 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003335}
3336
Robert Richter4aeb0b42009-04-29 12:47:03 +02003337static const struct pmu perf_ops_cpu_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003338 .enable = cpu_clock_perf_counter_enable,
3339 .disable = cpu_clock_perf_counter_disable,
3340 .read = cpu_clock_perf_counter_read,
Ingo Molnar5c92d122008-12-11 13:21:10 +01003341};
3342
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003343/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003344 * Software counter: task time clock
3345 */
3346
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003347static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
Ingo Molnarbae43c92008-12-11 14:03:20 +01003348{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003349 u64 prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003350 s64 delta;
Ingo Molnarbae43c92008-12-11 14:03:20 +01003351
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003352 prev = atomic64_xchg(&counter->hw.prev_count, now);
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003353 delta = now - prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003354 atomic64_add(delta, &counter->count);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003355}
3356
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003357static int task_clock_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003358{
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003359 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003360 u64 now;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003361
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003362 now = counter->ctx->time;
3363
3364 atomic64_set(&hwc->prev_count, now);
Peter Zijlstra039fc912009-03-13 16:43:47 +01003365 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3366 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003367 if (hwc->sample_period) {
3368 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003369 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003370 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003371 HRTIMER_MODE_REL, 0);
3372 }
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003373
3374 return 0;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003375}
3376
3377static void task_clock_perf_counter_disable(struct perf_counter *counter)
3378{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003379 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003380 hrtimer_cancel(&counter->hw.hrtimer);
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003381 task_clock_perf_counter_update(counter, counter->ctx->time);
3382
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003383}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003384
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003385static void task_clock_perf_counter_read(struct perf_counter *counter)
3386{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003387 u64 time;
3388
3389 if (!in_nmi()) {
3390 update_context_time(counter->ctx);
3391 time = counter->ctx->time;
3392 } else {
3393 u64 now = perf_clock();
3394 u64 delta = now - counter->ctx->timestamp;
3395 time = counter->ctx->time + delta;
3396 }
3397
3398 task_clock_perf_counter_update(counter, time);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003399}
3400
Robert Richter4aeb0b42009-04-29 12:47:03 +02003401static const struct pmu perf_ops_task_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003402 .enable = task_clock_perf_counter_enable,
3403 .disable = task_clock_perf_counter_disable,
3404 .read = task_clock_perf_counter_read,
Ingo Molnarbae43c92008-12-11 14:03:20 +01003405};
3406
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003407/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003408 * Software counter: cpu migrations
3409 */
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003410void perf_counter_task_migration(struct task_struct *task, int cpu)
Ingo Molnar6c594c22008-12-14 12:34:15 +01003411{
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003412 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
3413 struct perf_counter_context *ctx;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003414
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003415 perf_swcounter_ctx_event(&cpuctx->ctx, PERF_TYPE_SOFTWARE,
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003416 PERF_COUNT_SW_CPU_MIGRATIONS,
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003417 1, 1, NULL, 0);
3418
3419 ctx = perf_pin_task_context(task);
3420 if (ctx) {
3421 perf_swcounter_ctx_event(ctx, PERF_TYPE_SOFTWARE,
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003422 PERF_COUNT_SW_CPU_MIGRATIONS,
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003423 1, 1, NULL, 0);
3424 perf_unpin_context(ctx);
3425 }
Ingo Molnar6c594c22008-12-14 12:34:15 +01003426}
3427
Peter Zijlstrae077df42009-03-19 20:26:17 +01003428#ifdef CONFIG_EVENT_PROFILE
3429void perf_tpcounter_event(int event_id)
3430{
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003431 struct pt_regs *regs = get_irq_regs();
3432
3433 if (!regs)
3434 regs = task_pt_regs(current);
3435
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003436 __perf_swcounter_event(PERF_TYPE_TRACEPOINT, event_id, 1, 1, regs, 0);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003437}
Steven Whitehouseff7b1b42009-04-15 16:55:05 +01003438EXPORT_SYMBOL_GPL(perf_tpcounter_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003439
3440extern int ftrace_profile_enable(int);
3441extern void ftrace_profile_disable(int);
3442
3443static void tp_perf_counter_destroy(struct perf_counter *counter)
3444{
Peter Zijlstra0d486962009-06-02 19:22:16 +02003445 ftrace_profile_disable(perf_event_id(&counter->attr));
Peter Zijlstrae077df42009-03-19 20:26:17 +01003446}
3447
Robert Richter4aeb0b42009-04-29 12:47:03 +02003448static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003449{
Peter Zijlstra0d486962009-06-02 19:22:16 +02003450 int event_id = perf_event_id(&counter->attr);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003451 int ret;
3452
3453 ret = ftrace_profile_enable(event_id);
3454 if (ret)
3455 return NULL;
3456
3457 counter->destroy = tp_perf_counter_destroy;
3458
3459 return &perf_ops_generic;
3460}
3461#else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003462static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003463{
3464 return NULL;
3465}
3466#endif
3467
Robert Richter4aeb0b42009-04-29 12:47:03 +02003468static const struct pmu *sw_perf_counter_init(struct perf_counter *counter)
Ingo Molnar5c92d122008-12-11 13:21:10 +01003469{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003470 const struct pmu *pmu = NULL;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003471
Paul Mackerras0475f9e2009-02-11 14:35:35 +11003472 /*
3473 * Software counters (currently) can't in general distinguish
3474 * between user, kernel and hypervisor events.
3475 * However, context switches and cpu migrations are considered
3476 * to be kernel events, and page faults are never hypervisor
3477 * events.
3478 */
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003479 switch (counter->attr.config) {
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003480 case PERF_COUNT_SW_CPU_CLOCK:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003481 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003482
Ingo Molnar5c92d122008-12-11 13:21:10 +01003483 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003484 case PERF_COUNT_SW_TASK_CLOCK:
Paul Mackerras23a185c2009-02-09 22:42:47 +11003485 /*
3486 * If the user instantiates this as a per-cpu counter,
3487 * use the cpu_clock counter instead.
3488 */
3489 if (counter->ctx->task)
Robert Richter4aeb0b42009-04-29 12:47:03 +02003490 pmu = &perf_ops_task_clock;
Paul Mackerras23a185c2009-02-09 22:42:47 +11003491 else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003492 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003493
Ingo Molnarbae43c92008-12-11 14:03:20 +01003494 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02003495 case PERF_COUNT_SW_PAGE_FAULTS:
3496 case PERF_COUNT_SW_PAGE_FAULTS_MIN:
3497 case PERF_COUNT_SW_PAGE_FAULTS_MAJ:
3498 case PERF_COUNT_SW_CONTEXT_SWITCHES:
3499 case PERF_COUNT_SW_CPU_MIGRATIONS:
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003500 pmu = &perf_ops_generic;
Ingo Molnar6c594c22008-12-14 12:34:15 +01003501 break;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003502 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003503
Robert Richter4aeb0b42009-04-29 12:47:03 +02003504 return pmu;
Ingo Molnar5c92d122008-12-11 13:21:10 +01003505}
3506
Thomas Gleixner0793a612008-12-04 20:12:29 +01003507/*
3508 * Allocate and initialize a counter structure
3509 */
3510static struct perf_counter *
Peter Zijlstra0d486962009-06-02 19:22:16 +02003511perf_counter_alloc(struct perf_counter_attr *attr,
Ingo Molnar04289bb2008-12-11 08:38:42 +01003512 int cpu,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003513 struct perf_counter_context *ctx,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003514 struct perf_counter *group_leader,
3515 gfp_t gfpflags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003516{
Robert Richter4aeb0b42009-04-29 12:47:03 +02003517 const struct pmu *pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01003518 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003519 struct hw_perf_counter *hwc;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003520 long err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003521
Ingo Molnar9b51f662008-12-12 13:49:45 +01003522 counter = kzalloc(sizeof(*counter), gfpflags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003523 if (!counter)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003524 return ERR_PTR(-ENOMEM);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003525
Ingo Molnar04289bb2008-12-11 08:38:42 +01003526 /*
3527 * Single counters are their own group leaders, with an
3528 * empty sibling list:
3529 */
3530 if (!group_leader)
3531 group_leader = counter;
3532
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003533 mutex_init(&counter->child_mutex);
3534 INIT_LIST_HEAD(&counter->child_list);
3535
Ingo Molnar04289bb2008-12-11 08:38:42 +01003536 INIT_LIST_HEAD(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +01003537 INIT_LIST_HEAD(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +01003538 INIT_LIST_HEAD(&counter->sibling_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003539 init_waitqueue_head(&counter->waitq);
3540
Peter Zijlstra7b732a752009-03-23 18:22:10 +01003541 mutex_init(&counter->mmap_mutex);
3542
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003543 counter->cpu = cpu;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003544 counter->attr = *attr;
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003545 counter->group_leader = group_leader;
3546 counter->pmu = NULL;
3547 counter->ctx = ctx;
3548 counter->oncpu = -1;
Ingo Molnar329d8762009-05-26 08:10:00 +02003549
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003550 counter->ns = get_pid_ns(current->nsproxy->pid_ns);
3551 counter->id = atomic64_inc_return(&perf_counter_id);
3552
3553 counter->state = PERF_COUNTER_STATE_INACTIVE;
3554
Peter Zijlstra0d486962009-06-02 19:22:16 +02003555 if (attr->disabled)
Ingo Molnara86ed502008-12-17 00:43:10 +01003556 counter->state = PERF_COUNTER_STATE_OFF;
3557
Robert Richter4aeb0b42009-04-29 12:47:03 +02003558 pmu = NULL;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003559
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003560 hwc = &counter->hw;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003561 hwc->sample_period = attr->sample_period;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003562 if (attr->freq && attr->sample_freq)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003563 hwc->sample_period = 1;
3564
3565 atomic64_set(&hwc->period_left, hwc->sample_period);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003566
Peter Zijlstra2023b352009-05-05 17:50:26 +02003567 /*
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003568 * we currently do not support PERF_SAMPLE_GROUP on inherited counters
Peter Zijlstra2023b352009-05-05 17:50:26 +02003569 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02003570 if (attr->inherit && (attr->sample_type & PERF_SAMPLE_GROUP))
Peter Zijlstra2023b352009-05-05 17:50:26 +02003571 goto done;
3572
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003573 switch (attr->type) {
Peter Zijlstra081fad82009-06-11 17:57:21 +02003574 case PERF_TYPE_RAW:
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003575 case PERF_TYPE_HARDWARE:
Ingo Molnar8326f442009-06-05 20:22:46 +02003576 case PERF_TYPE_HW_CACHE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003577 pmu = hw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003578 break;
3579
3580 case PERF_TYPE_SOFTWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003581 pmu = sw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003582 break;
3583
3584 case PERF_TYPE_TRACEPOINT:
Robert Richter4aeb0b42009-04-29 12:47:03 +02003585 pmu = tp_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003586 break;
Peter Zijlstra974802e2009-06-12 12:46:55 +02003587
3588 default:
3589 break;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003590 }
Peter Zijlstraf4a2deb42009-03-23 18:22:06 +01003591done:
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003592 err = 0;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003593 if (!pmu)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003594 err = -EINVAL;
Robert Richter4aeb0b42009-04-29 12:47:03 +02003595 else if (IS_ERR(pmu))
3596 err = PTR_ERR(pmu);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003597
3598 if (err) {
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02003599 if (counter->ns)
3600 put_pid_ns(counter->ns);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003601 kfree(counter);
3602 return ERR_PTR(err);
3603 }
3604
Robert Richter4aeb0b42009-04-29 12:47:03 +02003605 counter->pmu = pmu;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003606
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02003607 atomic_inc(&nr_counters);
Peter Zijlstra0d486962009-06-02 19:22:16 +02003608 if (counter->attr.mmap)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003609 atomic_inc(&nr_mmap_counters);
Peter Zijlstra0d486962009-06-02 19:22:16 +02003610 if (counter->attr.comm)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003611 atomic_inc(&nr_comm_counters);
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003612
Thomas Gleixner0793a612008-12-04 20:12:29 +01003613 return counter;
3614}
3615
Peter Zijlstra974802e2009-06-12 12:46:55 +02003616static int perf_copy_attr(struct perf_counter_attr __user *uattr,
3617 struct perf_counter_attr *attr)
3618{
3619 int ret;
3620 u32 size;
3621
3622 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
3623 return -EFAULT;
3624
3625 /*
3626 * zero the full structure, so that a short copy will be nice.
3627 */
3628 memset(attr, 0, sizeof(*attr));
3629
3630 ret = get_user(size, &uattr->size);
3631 if (ret)
3632 return ret;
3633
3634 if (size > PAGE_SIZE) /* silly large */
3635 goto err_size;
3636
3637 if (!size) /* abi compat */
3638 size = PERF_ATTR_SIZE_VER0;
3639
3640 if (size < PERF_ATTR_SIZE_VER0)
3641 goto err_size;
3642
3643 /*
3644 * If we're handed a bigger struct than we know of,
3645 * ensure all the unknown bits are 0.
3646 */
3647 if (size > sizeof(*attr)) {
3648 unsigned long val;
3649 unsigned long __user *addr;
3650 unsigned long __user *end;
3651
3652 addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr),
3653 sizeof(unsigned long));
3654 end = PTR_ALIGN((void __user *)uattr + size,
3655 sizeof(unsigned long));
3656
3657 for (; addr < end; addr += sizeof(unsigned long)) {
3658 ret = get_user(val, addr);
3659 if (ret)
3660 return ret;
3661 if (val)
3662 goto err_size;
3663 }
3664 }
3665
3666 ret = copy_from_user(attr, uattr, size);
3667 if (ret)
3668 return -EFAULT;
3669
3670 /*
3671 * If the type exists, the corresponding creation will verify
3672 * the attr->config.
3673 */
3674 if (attr->type >= PERF_TYPE_MAX)
3675 return -EINVAL;
3676
3677 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
3678 return -EINVAL;
3679
3680 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
3681 return -EINVAL;
3682
3683 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
3684 return -EINVAL;
3685
3686out:
3687 return ret;
3688
3689err_size:
3690 put_user(sizeof(*attr), &uattr->size);
3691 ret = -E2BIG;
3692 goto out;
3693}
3694
Thomas Gleixner0793a612008-12-04 20:12:29 +01003695/**
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003696 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
Ingo Molnar9f66a382008-12-10 12:33:23 +01003697 *
Peter Zijlstra0d486962009-06-02 19:22:16 +02003698 * @attr_uptr: event type attributes for monitoring/sampling
Thomas Gleixner0793a612008-12-04 20:12:29 +01003699 * @pid: target pid
Ingo Molnar9f66a382008-12-10 12:33:23 +01003700 * @cpu: target cpu
3701 * @group_fd: group leader counter fd
Thomas Gleixner0793a612008-12-04 20:12:29 +01003702 */
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003703SYSCALL_DEFINE5(perf_counter_open,
Peter Zijlstra974802e2009-06-12 12:46:55 +02003704 struct perf_counter_attr __user *, attr_uptr,
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003705 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01003706{
Ingo Molnar04289bb2008-12-11 08:38:42 +01003707 struct perf_counter *counter, *group_leader;
Peter Zijlstra0d486962009-06-02 19:22:16 +02003708 struct perf_counter_attr attr;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003709 struct perf_counter_context *ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003710 struct file *counter_file = NULL;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003711 struct file *group_file = NULL;
3712 int fput_needed = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003713 int fput_needed2 = 0;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003714 int ret;
3715
Paul Mackerras2743a5b2009-03-04 20:36:51 +11003716 /* for future expandability... */
3717 if (flags)
3718 return -EINVAL;
3719
Peter Zijlstra974802e2009-06-12 12:46:55 +02003720 ret = perf_copy_attr(attr_uptr, &attr);
3721 if (ret)
3722 return ret;
Thomas Gleixnereab656a2008-12-08 19:26:59 +01003723
Peter Zijlstra07647712009-06-11 11:18:36 +02003724 if (!attr.exclude_kernel) {
3725 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
3726 return -EACCES;
3727 }
3728
Peter Zijlstradf58ab22009-06-11 11:25:05 +02003729 if (attr.freq) {
3730 if (attr.sample_freq > sysctl_perf_counter_sample_rate)
3731 return -EINVAL;
3732 }
3733
Ingo Molnar04289bb2008-12-11 08:38:42 +01003734 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003735 * Get the target context (task or percpu):
3736 */
3737 ctx = find_get_context(pid, cpu);
3738 if (IS_ERR(ctx))
3739 return PTR_ERR(ctx);
3740
3741 /*
3742 * Look up the group leader (we will attach this counter to it):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003743 */
3744 group_leader = NULL;
3745 if (group_fd != -1) {
3746 ret = -EINVAL;
3747 group_file = fget_light(group_fd, &fput_needed);
3748 if (!group_file)
Ingo Molnarccff2862008-12-11 11:26:29 +01003749 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003750 if (group_file->f_op != &perf_fops)
Ingo Molnarccff2862008-12-11 11:26:29 +01003751 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003752
3753 group_leader = group_file->private_data;
3754 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01003755 * Do not allow a recursive hierarchy (this new sibling
3756 * becoming part of another group-sibling):
Ingo Molnar04289bb2008-12-11 08:38:42 +01003757 */
Ingo Molnarccff2862008-12-11 11:26:29 +01003758 if (group_leader->group_leader != group_leader)
3759 goto err_put_context;
3760 /*
3761 * Do not allow to attach to a group in a different
3762 * task or CPU context:
3763 */
3764 if (group_leader->ctx != ctx)
3765 goto err_put_context;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11003766 /*
3767 * Only a group leader can be exclusive or pinned
3768 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02003769 if (attr.exclusive || attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11003770 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01003771 }
3772
Peter Zijlstra0d486962009-06-02 19:22:16 +02003773 counter = perf_counter_alloc(&attr, cpu, ctx, group_leader,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003774 GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003775 ret = PTR_ERR(counter);
3776 if (IS_ERR(counter))
Thomas Gleixner0793a612008-12-04 20:12:29 +01003777 goto err_put_context;
3778
Thomas Gleixner0793a612008-12-04 20:12:29 +01003779 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
3780 if (ret < 0)
Ingo Molnar9b51f662008-12-12 13:49:45 +01003781 goto err_free_put_context;
3782
3783 counter_file = fget_light(ret, &fput_needed2);
3784 if (!counter_file)
3785 goto err_free_put_context;
3786
3787 counter->filp = counter_file;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003788 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003789 mutex_lock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003790 perf_install_in_context(ctx, counter, cpu);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003791 ++ctx->generation;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003792 mutex_unlock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003793
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02003794 counter->owner = current;
3795 get_task_struct(current);
3796 mutex_lock(&current->perf_counter_mutex);
3797 list_add_tail(&counter->owner_entry, &current->perf_counter_list);
3798 mutex_unlock(&current->perf_counter_mutex);
3799
Ingo Molnar9b51f662008-12-12 13:49:45 +01003800 fput_light(counter_file, fput_needed2);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003801
Ingo Molnar04289bb2008-12-11 08:38:42 +01003802out_fput:
3803 fput_light(group_file, fput_needed);
3804
Thomas Gleixner0793a612008-12-04 20:12:29 +01003805 return ret;
3806
Ingo Molnar9b51f662008-12-12 13:49:45 +01003807err_free_put_context:
Thomas Gleixner0793a612008-12-04 20:12:29 +01003808 kfree(counter);
3809
3810err_put_context:
Paul Mackerrasc93f7662009-05-28 22:18:17 +10003811 put_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01003812
Ingo Molnar04289bb2008-12-11 08:38:42 +01003813 goto out_fput;
Thomas Gleixner0793a612008-12-04 20:12:29 +01003814}
3815
Ingo Molnar9b51f662008-12-12 13:49:45 +01003816/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003817 * inherit a counter from parent task to child task:
3818 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003819static struct perf_counter *
Ingo Molnar9b51f662008-12-12 13:49:45 +01003820inherit_counter(struct perf_counter *parent_counter,
3821 struct task_struct *parent,
3822 struct perf_counter_context *parent_ctx,
3823 struct task_struct *child,
Paul Mackerrasd859e292009-01-17 18:10:22 +11003824 struct perf_counter *group_leader,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003825 struct perf_counter_context *child_ctx)
3826{
3827 struct perf_counter *child_counter;
3828
Paul Mackerrasd859e292009-01-17 18:10:22 +11003829 /*
3830 * Instead of creating recursive hierarchies of counters,
3831 * we link inherited counters back to the original parent,
3832 * which has a filp for sure, which we use as the reference
3833 * count:
3834 */
3835 if (parent_counter->parent)
3836 parent_counter = parent_counter->parent;
3837
Peter Zijlstra0d486962009-06-02 19:22:16 +02003838 child_counter = perf_counter_alloc(&parent_counter->attr,
Paul Mackerras23a185c2009-02-09 22:42:47 +11003839 parent_counter->cpu, child_ctx,
3840 group_leader, GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003841 if (IS_ERR(child_counter))
3842 return child_counter;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10003843 get_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003844
3845 /*
Paul Mackerras564c2b22009-05-22 14:27:22 +10003846 * Make the child state follow the state of the parent counter,
Peter Zijlstra0d486962009-06-02 19:22:16 +02003847 * not its attr.disabled bit. We hold the parent's mutex,
Ingo Molnar22a4f652009-06-01 10:13:37 +02003848 * so we won't race with perf_counter_{en, dis}able_family.
Paul Mackerras564c2b22009-05-22 14:27:22 +10003849 */
3850 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
3851 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
3852 else
3853 child_counter->state = PERF_COUNTER_STATE_OFF;
3854
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003855 if (parent_counter->attr.freq)
3856 child_counter->hw.sample_period = parent_counter->hw.sample_period;
3857
Paul Mackerras564c2b22009-05-22 14:27:22 +10003858 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01003859 * Link it up in the child's context:
3860 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003861 add_counter_to_ctx(child_counter, child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01003862
3863 child_counter->parent = parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003864 /*
3865 * inherit into child's child as well:
3866 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02003867 child_counter->attr.inherit = 1;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003868
3869 /*
3870 * Get a reference to the parent filp - we will fput it
3871 * when the child counter exits. This is safe to do because
3872 * we are in the parent and we know that the filp still
3873 * exists and has a nonzero count:
3874 */
3875 atomic_long_inc(&parent_counter->filp->f_count);
3876
Paul Mackerrasd859e292009-01-17 18:10:22 +11003877 /*
3878 * Link this into the parent counter's child list
3879 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003880 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003881 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003882 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003883 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003884
3885 return child_counter;
3886}
3887
3888static int inherit_group(struct perf_counter *parent_counter,
3889 struct task_struct *parent,
3890 struct perf_counter_context *parent_ctx,
3891 struct task_struct *child,
3892 struct perf_counter_context *child_ctx)
3893{
3894 struct perf_counter *leader;
3895 struct perf_counter *sub;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003896 struct perf_counter *child_ctr;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003897
3898 leader = inherit_counter(parent_counter, parent, parent_ctx,
3899 child, NULL, child_ctx);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003900 if (IS_ERR(leader))
3901 return PTR_ERR(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003902 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02003903 child_ctr = inherit_counter(sub, parent, parent_ctx,
3904 child, leader, child_ctx);
3905 if (IS_ERR(child_ctr))
3906 return PTR_ERR(child_ctr);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003907 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003908 return 0;
3909}
3910
Paul Mackerrasd859e292009-01-17 18:10:22 +11003911static void sync_child_counter(struct perf_counter *child_counter,
3912 struct perf_counter *parent_counter)
3913{
Peter Zijlstra8bc209592009-05-15 20:45:59 +02003914 u64 child_val;
Paul Mackerrasd859e292009-01-17 18:10:22 +11003915
Paul Mackerrasd859e292009-01-17 18:10:22 +11003916 child_val = atomic64_read(&child_counter->count);
3917
3918 /*
3919 * Add back the child's count to the parent's count:
3920 */
3921 atomic64_add(child_val, &parent_counter->count);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11003922 atomic64_add(child_counter->total_time_enabled,
3923 &parent_counter->child_total_time_enabled);
3924 atomic64_add(child_counter->total_time_running,
3925 &parent_counter->child_total_time_running);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003926
3927 /*
3928 * Remove this counter from the parent's list
3929 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003930 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003931 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003932 list_del_init(&child_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02003933 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11003934
3935 /*
3936 * Release the parent counter, if this was the last
3937 * reference to it.
3938 */
3939 fput(parent_counter->filp);
3940}
3941
Ingo Molnar9b51f662008-12-12 13:49:45 +01003942static void
Peter Zijlstrabbbee902009-05-29 14:25:58 +02003943__perf_counter_exit_task(struct perf_counter *child_counter,
Ingo Molnar9b51f662008-12-12 13:49:45 +01003944 struct perf_counter_context *child_ctx)
3945{
3946 struct perf_counter *parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003947
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003948 update_counter_times(child_counter);
Peter Zijlstraaa9c67f2009-05-23 18:28:59 +02003949 perf_counter_remove_from_context(child_counter);
Ingo Molnar0cc0c022008-12-14 23:20:36 +01003950
Ingo Molnar9b51f662008-12-12 13:49:45 +01003951 parent_counter = child_counter->parent;
3952 /*
3953 * It can happen that parent exits first, and has counters
3954 * that are still around due to the child reference. These
3955 * counters need to be zapped - but otherwise linger.
3956 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11003957 if (parent_counter) {
3958 sync_child_counter(child_counter, parent_counter);
Peter Zijlstraf1600952009-03-19 20:26:16 +01003959 free_counter(child_counter);
Paul Mackerras4bcf3492009-02-11 13:53:19 +01003960 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01003961}
3962
3963/*
Paul Mackerrasd859e292009-01-17 18:10:22 +11003964 * When a child task exits, feed back counter values to parent counters.
Ingo Molnar9b51f662008-12-12 13:49:45 +01003965 */
3966void perf_counter_exit_task(struct task_struct *child)
3967{
3968 struct perf_counter *child_counter, *tmp;
3969 struct perf_counter_context *child_ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003970 unsigned long flags;
Ingo Molnar9b51f662008-12-12 13:49:45 +01003971
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003972 if (likely(!child->perf_counter_ctxp))
Ingo Molnar9b51f662008-12-12 13:49:45 +01003973 return;
3974
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003975 local_irq_save(flags);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003976 /*
3977 * We can't reschedule here because interrupts are disabled,
3978 * and either child is current or it is a task that can't be
3979 * scheduled, so we are now safe from rescheduling changing
3980 * our context.
3981 */
3982 child_ctx = child->perf_counter_ctxp;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003983 __perf_counter_task_sched_out(child_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10003984
3985 /*
3986 * Take the context lock here so that if find_get_context is
3987 * reading child->perf_counter_ctxp, we wait until it has
3988 * incremented the context's refcount before we do put_ctx below.
3989 */
3990 spin_lock(&child_ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003991 child->perf_counter_ctxp = NULL;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10003992 if (child_ctx->parent_ctx) {
3993 /*
3994 * This context is a clone; unclone it so it can't get
3995 * swapped to another process while we're removing all
3996 * the counters from it.
3997 */
3998 put_ctx(child_ctx->parent_ctx);
3999 child_ctx->parent_ctx = NULL;
4000 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004001 spin_unlock(&child_ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004002 local_irq_restore(flags);
4003
Peter Zijlstra66fff222009-06-10 22:53:37 +02004004 /*
4005 * We can recurse on the same lock type through:
4006 *
4007 * __perf_counter_exit_task()
4008 * sync_child_counter()
4009 * fput(parent_counter->filp)
4010 * perf_release()
4011 * mutex_lock(&ctx->mutex)
4012 *
4013 * But since its the parent context it won't be the same instance.
4014 */
4015 mutex_lock_nested(&child_ctx->mutex, SINGLE_DEPTH_NESTING);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004016
Peter Zijlstra8bc209592009-05-15 20:45:59 +02004017again:
Ingo Molnar9b51f662008-12-12 13:49:45 +01004018 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
4019 list_entry)
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004020 __perf_counter_exit_task(child_counter, child_ctx);
Peter Zijlstra8bc209592009-05-15 20:45:59 +02004021
4022 /*
4023 * If the last counter was a group counter, it will have appended all
4024 * its siblings to the list, but we obtained 'tmp' before that which
4025 * will still point to the list head terminating the iteration.
4026 */
4027 if (!list_empty(&child_ctx->counter_list))
4028 goto again;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004029
4030 mutex_unlock(&child_ctx->mutex);
4031
4032 put_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004033}
4034
4035/*
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004036 * free an unexposed, unused context as created by inheritance by
4037 * init_task below, used by fork() in case of fail.
4038 */
4039void perf_counter_free_task(struct task_struct *task)
4040{
4041 struct perf_counter_context *ctx = task->perf_counter_ctxp;
4042 struct perf_counter *counter, *tmp;
4043
4044 if (!ctx)
4045 return;
4046
4047 mutex_lock(&ctx->mutex);
4048again:
4049 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry) {
4050 struct perf_counter *parent = counter->parent;
4051
4052 if (WARN_ON_ONCE(!parent))
4053 continue;
4054
4055 mutex_lock(&parent->child_mutex);
4056 list_del_init(&counter->child_list);
4057 mutex_unlock(&parent->child_mutex);
4058
4059 fput(parent->filp);
4060
4061 list_del_counter(counter, ctx);
4062 free_counter(counter);
4063 }
4064
4065 if (!list_empty(&ctx->counter_list))
4066 goto again;
4067
4068 mutex_unlock(&ctx->mutex);
4069
4070 put_ctx(ctx);
4071}
4072
4073/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004074 * Initialize the perf_counter context in task_struct
4075 */
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004076int perf_counter_init_task(struct task_struct *child)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004077{
4078 struct perf_counter_context *child_ctx, *parent_ctx;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004079 struct perf_counter_context *cloned_ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004080 struct perf_counter *counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004081 struct task_struct *parent = current;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004082 int inherited_all = 1;
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004083 int ret = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004084
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004085 child->perf_counter_ctxp = NULL;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004086
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02004087 mutex_init(&child->perf_counter_mutex);
4088 INIT_LIST_HEAD(&child->perf_counter_list);
4089
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004090 if (likely(!parent->perf_counter_ctxp))
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004091 return 0;
4092
Ingo Molnar9b51f662008-12-12 13:49:45 +01004093 /*
4094 * This is executed from the parent task context, so inherit
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004095 * counters that have been marked for cloning.
4096 * First allocate and initialize a context for the child.
Ingo Molnar9b51f662008-12-12 13:49:45 +01004097 */
4098
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004099 child_ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
4100 if (!child_ctx)
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004101 return -ENOMEM;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004102
4103 __perf_counter_init_context(child_ctx, child);
4104 child->perf_counter_ctxp = child_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004105 get_task_struct(child);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004106
Ingo Molnar9b51f662008-12-12 13:49:45 +01004107 /*
Paul Mackerras25346b932009-06-01 17:48:12 +10004108 * If the parent's context is a clone, pin it so it won't get
4109 * swapped under us.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004110 */
Paul Mackerras25346b932009-06-01 17:48:12 +10004111 parent_ctx = perf_pin_task_context(parent);
4112
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004113 /*
4114 * No need to check if parent_ctx != NULL here; since we saw
4115 * it non-NULL earlier, the only reason for it to become NULL
4116 * is if we exit, and since we're currently in the middle of
4117 * a fork we can't be exiting at the same time.
4118 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004119
4120 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004121 * Lock the parent list. No need to lock the child - not PID
4122 * hashed yet and not running, so nobody can access it.
4123 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004124 mutex_lock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004125
4126 /*
4127 * We dont have to disable NMIs - we are only looking at
4128 * the list, not manipulating it:
4129 */
Peter Zijlstrad7b629a2009-05-20 12:21:19 +02004130 list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
4131 if (counter != counter->group_leader)
4132 continue;
4133
Peter Zijlstra0d486962009-06-02 19:22:16 +02004134 if (!counter->attr.inherit) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004135 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004136 continue;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004137 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004138
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004139 ret = inherit_group(counter, parent, parent_ctx,
4140 child, child_ctx);
4141 if (ret) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004142 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004143 break;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004144 }
4145 }
4146
4147 if (inherited_all) {
4148 /*
4149 * Mark the child context as a clone of the parent
4150 * context, or of whatever the parent is a clone of.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004151 * Note that if the parent is a clone, it could get
4152 * uncloned at any point, but that doesn't matter
4153 * because the list of counters and the generation
4154 * count can't have changed since we took the mutex.
Paul Mackerras564c2b22009-05-22 14:27:22 +10004155 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004156 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
4157 if (cloned_ctx) {
4158 child_ctx->parent_ctx = cloned_ctx;
Paul Mackerras25346b932009-06-01 17:48:12 +10004159 child_ctx->parent_gen = parent_ctx->parent_gen;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004160 } else {
4161 child_ctx->parent_ctx = parent_ctx;
4162 child_ctx->parent_gen = parent_ctx->generation;
4163 }
4164 get_ctx(child_ctx->parent_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004165 }
4166
Paul Mackerrasd859e292009-01-17 18:10:22 +11004167 mutex_unlock(&parent_ctx->mutex);
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004168
Paul Mackerras25346b932009-06-01 17:48:12 +10004169 perf_unpin_context(parent_ctx);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004170
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004171 return ret;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004172}
4173
Ingo Molnar04289bb2008-12-11 08:38:42 +01004174static void __cpuinit perf_counter_init_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004175{
Ingo Molnar04289bb2008-12-11 08:38:42 +01004176 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004177
Ingo Molnar04289bb2008-12-11 08:38:42 +01004178 cpuctx = &per_cpu(perf_cpu_context, cpu);
4179 __perf_counter_init_context(&cpuctx->ctx, NULL);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004180
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004181 spin_lock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004182 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004183 spin_unlock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004184
Paul Mackerras01d02872009-01-14 13:44:19 +11004185 hw_perf_counter_setup(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004186}
4187
4188#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnar04289bb2008-12-11 08:38:42 +01004189static void __perf_counter_exit_cpu(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004190{
4191 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
4192 struct perf_counter_context *ctx = &cpuctx->ctx;
4193 struct perf_counter *counter, *tmp;
4194
Ingo Molnar04289bb2008-12-11 08:38:42 +01004195 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
4196 __perf_counter_remove_from_context(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004197}
Ingo Molnar04289bb2008-12-11 08:38:42 +01004198static void perf_counter_exit_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004199{
Paul Mackerrasd859e292009-01-17 18:10:22 +11004200 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
4201 struct perf_counter_context *ctx = &cpuctx->ctx;
4202
4203 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004204 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004205 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004206}
4207#else
Ingo Molnar04289bb2008-12-11 08:38:42 +01004208static inline void perf_counter_exit_cpu(int cpu) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +01004209#endif
4210
4211static int __cpuinit
4212perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
4213{
4214 unsigned int cpu = (long)hcpu;
4215
4216 switch (action) {
4217
4218 case CPU_UP_PREPARE:
4219 case CPU_UP_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004220 perf_counter_init_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004221 break;
4222
4223 case CPU_DOWN_PREPARE:
4224 case CPU_DOWN_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004225 perf_counter_exit_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004226 break;
4227
4228 default:
4229 break;
4230 }
4231
4232 return NOTIFY_OK;
4233}
4234
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004235/*
4236 * This has to have a higher priority than migration_notifier in sched.c.
4237 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01004238static struct notifier_block __cpuinitdata perf_cpu_nb = {
4239 .notifier_call = perf_cpu_notify,
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004240 .priority = 20,
Thomas Gleixner0793a612008-12-04 20:12:29 +01004241};
4242
Ingo Molnar0d905bc2009-05-04 19:13:30 +02004243void __init perf_counter_init(void)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004244{
4245 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
4246 (void *)(long)smp_processor_id());
4247 register_cpu_notifier(&perf_cpu_nb);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004248}
Thomas Gleixner0793a612008-12-04 20:12:29 +01004249
4250static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
4251{
4252 return sprintf(buf, "%d\n", perf_reserved_percpu);
4253}
4254
4255static ssize_t
4256perf_set_reserve_percpu(struct sysdev_class *class,
4257 const char *buf,
4258 size_t count)
4259{
4260 struct perf_cpu_context *cpuctx;
4261 unsigned long val;
4262 int err, cpu, mpt;
4263
4264 err = strict_strtoul(buf, 10, &val);
4265 if (err)
4266 return err;
4267 if (val > perf_max_counters)
4268 return -EINVAL;
4269
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004270 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004271 perf_reserved_percpu = val;
4272 for_each_online_cpu(cpu) {
4273 cpuctx = &per_cpu(perf_cpu_context, cpu);
4274 spin_lock_irq(&cpuctx->ctx.lock);
4275 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
4276 perf_max_counters - perf_reserved_percpu);
4277 cpuctx->max_pertask = mpt;
4278 spin_unlock_irq(&cpuctx->ctx.lock);
4279 }
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004280 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004281
4282 return count;
4283}
4284
4285static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
4286{
4287 return sprintf(buf, "%d\n", perf_overcommit);
4288}
4289
4290static ssize_t
4291perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
4292{
4293 unsigned long val;
4294 int err;
4295
4296 err = strict_strtoul(buf, 10, &val);
4297 if (err)
4298 return err;
4299 if (val > 1)
4300 return -EINVAL;
4301
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004302 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004303 perf_overcommit = val;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004304 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004305
4306 return count;
4307}
4308
4309static SYSDEV_CLASS_ATTR(
4310 reserve_percpu,
4311 0644,
4312 perf_show_reserve_percpu,
4313 perf_set_reserve_percpu
4314 );
4315
4316static SYSDEV_CLASS_ATTR(
4317 overcommit,
4318 0644,
4319 perf_show_overcommit,
4320 perf_set_overcommit
4321 );
4322
4323static struct attribute *perfclass_attrs[] = {
4324 &attr_reserve_percpu.attr,
4325 &attr_overcommit.attr,
4326 NULL
4327};
4328
4329static struct attribute_group perfclass_attr_group = {
4330 .attrs = perfclass_attrs,
4331 .name = "perf_counters",
4332};
4333
4334static int __init perf_counter_sysfs_init(void)
4335{
4336 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
4337 &perfclass_attr_group);
4338}
4339device_initcall(perf_counter_sysfs_init);