blob: 53abcbefa0bf64e6c0d7abea64174b59595345db [file] [log] [blame]
Thomas Gleixner0793a612008-12-04 20:12:29 +01001/*
2 * Performance counter core code
3 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Paul Mackerrasc5dd0162009-04-30 09:48:16 +10007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Peter Zijlstra7b732a72009-03-23 18:22:10 +01008 *
9 * For licensing details see kernel-base/COPYING
Thomas Gleixner0793a612008-12-04 20:12:29 +010010 */
11
12#include <linux/fs.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010013#include <linux/mm.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010014#include <linux/cpu.h>
15#include <linux/smp.h>
Ingo Molnar04289bb2008-12-11 08:38:42 +010016#include <linux/file.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010017#include <linux/poll.h>
18#include <linux/sysfs.h>
Ingo Molnar22a4f652009-06-01 10:13:37 +020019#include <linux/dcache.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010020#include <linux/percpu.h>
Ingo Molnar22a4f652009-06-01 10:13:37 +020021#include <linux/ptrace.h>
Peter Zijlstrab9cacc72009-03-25 12:30:22 +010022#include <linux/vmstat.h>
23#include <linux/hardirq.h>
24#include <linux/rculist.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010025#include <linux/uaccess.h>
26#include <linux/syscalls.h>
27#include <linux/anon_inodes.h>
Ingo Molnaraa9c4c02008-12-17 14:10:57 +010028#include <linux/kernel_stat.h>
Thomas Gleixner0793a612008-12-04 20:12:29 +010029#include <linux/perf_counter.h>
30
Tim Blechmann4e193bd2009-03-14 14:29:25 +010031#include <asm/irq_regs.h>
32
Thomas Gleixner0793a612008-12-04 20:12:29 +010033/*
34 * Each CPU has a list of per CPU counters:
35 */
36DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context);
37
Ingo Molnar088e2852008-12-14 20:21:00 +010038int perf_max_counters __read_mostly = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +010039static int perf_reserved_percpu __read_mostly;
40static int perf_overcommit __read_mostly = 1;
41
Peter Zijlstra7fc23a52009-05-08 18:52:21 +020042static atomic_t nr_counters __read_mostly;
Peter Zijlstra60313eb2009-06-04 16:53:44 +020043static atomic_t nr_mmap_counters __read_mostly;
Peter Zijlstra60313eb2009-06-04 16:53:44 +020044static atomic_t nr_comm_counters __read_mostly;
Peter Zijlstra9f498cc2009-07-23 14:46:33 +020045static atomic_t nr_task_counters __read_mostly;
Peter Zijlstra9ee318a2009-04-09 10:53:44 +020046
Peter Zijlstra07647712009-06-11 11:18:36 +020047/*
Peter Zijlstradf58ab22009-06-11 11:25:05 +020048 * perf counter paranoia level:
49 * 0 - not paranoid
50 * 1 - disallow cpu counters to unpriv
51 * 2 - disallow kernel profiling to unpriv
Peter Zijlstra07647712009-06-11 11:18:36 +020052 */
Peter Zijlstradf58ab22009-06-11 11:25:05 +020053int sysctl_perf_counter_paranoid __read_mostly;
Peter Zijlstra07647712009-06-11 11:18:36 +020054
55static inline bool perf_paranoid_cpu(void)
56{
57 return sysctl_perf_counter_paranoid > 0;
58}
59
60static inline bool perf_paranoid_kernel(void)
61{
62 return sysctl_perf_counter_paranoid > 1;
63}
64
Peter Zijlstra789f90f2009-05-15 15:19:27 +020065int sysctl_perf_counter_mlock __read_mostly = 512; /* 'free' kb per user */
Peter Zijlstradf58ab22009-06-11 11:25:05 +020066
67/*
68 * max perf counter sample rate
69 */
70int sysctl_perf_counter_sample_rate __read_mostly = 100000;
Peter Zijlstra1ccd1542009-04-09 10:53:45 +020071
Peter Zijlstraa96bbc12009-06-03 14:01:36 +020072static atomic64_t perf_counter_id;
73
Thomas Gleixner0793a612008-12-04 20:12:29 +010074/*
Ingo Molnar1dce8d92009-05-04 19:23:18 +020075 * Lock for (sysadmin-configurable) counter reservations:
Thomas Gleixner0793a612008-12-04 20:12:29 +010076 */
Ingo Molnar1dce8d92009-05-04 19:23:18 +020077static DEFINE_SPINLOCK(perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +010078
79/*
80 * Architecture provided APIs - weak aliases:
81 */
Robert Richter4aeb0b42009-04-29 12:47:03 +020082extern __weak const struct pmu *hw_perf_counter_init(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +010083{
Paul Mackerrasff6f0542009-01-09 16:19:25 +110084 return NULL;
Thomas Gleixner0793a612008-12-04 20:12:29 +010085}
86
Peter Zijlstra9e35ad32009-05-13 16:21:38 +020087void __weak hw_perf_disable(void) { barrier(); }
88void __weak hw_perf_enable(void) { barrier(); }
89
Paul Mackerras01d02872009-01-14 13:44:19 +110090void __weak hw_perf_counter_setup(int cpu) { barrier(); }
Ingo Molnar28402972009-08-13 10:13:22 +020091void __weak hw_perf_counter_setup_online(int cpu) { barrier(); }
Ingo Molnar22a4f652009-06-01 10:13:37 +020092
93int __weak
94hw_perf_group_sched_in(struct perf_counter *group_leader,
Paul Mackerras3cbed422009-01-09 16:43:42 +110095 struct perf_cpu_context *cpuctx,
96 struct perf_counter_context *ctx, int cpu)
97{
98 return 0;
99}
Thomas Gleixner0793a612008-12-04 20:12:29 +0100100
Paul Mackerras4eb96fc2009-01-09 17:24:34 +1100101void __weak perf_counter_print_debug(void) { }
102
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200103static DEFINE_PER_CPU(int, disable_count);
104
105void __perf_disable(void)
106{
107 __get_cpu_var(disable_count)++;
108}
109
110bool __perf_enable(void)
111{
112 return !--__get_cpu_var(disable_count);
113}
114
115void perf_disable(void)
116{
117 __perf_disable();
118 hw_perf_disable();
119}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200120
121void perf_enable(void)
122{
123 if (__perf_enable())
124 hw_perf_enable();
125}
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200126
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000127static void get_ctx(struct perf_counter_context *ctx)
128{
Peter Zijlstrae5289d42009-06-19 13:22:51 +0200129 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000130}
131
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000132static void free_ctx(struct rcu_head *head)
133{
134 struct perf_counter_context *ctx;
135
136 ctx = container_of(head, struct perf_counter_context, rcu_head);
137 kfree(ctx);
138}
139
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000140static void put_ctx(struct perf_counter_context *ctx)
141{
Paul Mackerras564c2b22009-05-22 14:27:22 +1000142 if (atomic_dec_and_test(&ctx->refcount)) {
143 if (ctx->parent_ctx)
144 put_ctx(ctx->parent_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000145 if (ctx->task)
146 put_task_struct(ctx->task);
147 call_rcu(&ctx->rcu_head, free_ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +1000148 }
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000149}
150
Peter Zijlstra71a851b2009-07-10 09:06:56 +0200151static void unclone_ctx(struct perf_counter_context *ctx)
152{
153 if (ctx->parent_ctx) {
154 put_ctx(ctx->parent_ctx);
155 ctx->parent_ctx = NULL;
156 }
157}
158
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200159/*
Peter Zijlstra7f453c22009-07-21 13:19:40 +0200160 * If we inherit counters we want to return the parent counter id
161 * to userspace.
162 */
163static u64 primary_counter_id(struct perf_counter *counter)
164{
165 u64 id = counter->id;
166
167 if (counter->parent)
168 id = counter->parent->id;
169
170 return id;
171}
172
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200173/*
Paul Mackerras25346b92009-06-01 17:48:12 +1000174 * Get the perf_counter_context for a task and lock it.
175 * This has to cope with with the fact that until it is locked,
176 * the context could get moved to another task.
177 */
Ingo Molnar22a4f652009-06-01 10:13:37 +0200178static struct perf_counter_context *
179perf_lock_task_context(struct task_struct *task, unsigned long *flags)
Paul Mackerras25346b92009-06-01 17:48:12 +1000180{
181 struct perf_counter_context *ctx;
182
183 rcu_read_lock();
184 retry:
185 ctx = rcu_dereference(task->perf_counter_ctxp);
186 if (ctx) {
187 /*
188 * If this context is a clone of another, it might
189 * get swapped for another underneath us by
190 * perf_counter_task_sched_out, though the
191 * rcu_read_lock() protects us from any context
192 * getting freed. Lock the context and check if it
193 * got swapped before we could get the lock, and retry
194 * if so. If we locked the right context, then it
195 * can't get swapped on us any more.
196 */
197 spin_lock_irqsave(&ctx->lock, *flags);
198 if (ctx != rcu_dereference(task->perf_counter_ctxp)) {
199 spin_unlock_irqrestore(&ctx->lock, *flags);
200 goto retry;
201 }
Peter Zijlstrab49a9e72009-06-19 17:39:33 +0200202
203 if (!atomic_inc_not_zero(&ctx->refcount)) {
204 spin_unlock_irqrestore(&ctx->lock, *flags);
205 ctx = NULL;
206 }
Paul Mackerras25346b92009-06-01 17:48:12 +1000207 }
208 rcu_read_unlock();
209 return ctx;
210}
211
212/*
213 * Get the context for a task and increment its pin_count so it
214 * can't get swapped to another task. This also increments its
215 * reference count so that the context can't get freed.
216 */
217static struct perf_counter_context *perf_pin_task_context(struct task_struct *task)
218{
219 struct perf_counter_context *ctx;
220 unsigned long flags;
221
222 ctx = perf_lock_task_context(task, &flags);
223 if (ctx) {
224 ++ctx->pin_count;
Paul Mackerras25346b92009-06-01 17:48:12 +1000225 spin_unlock_irqrestore(&ctx->lock, flags);
226 }
227 return ctx;
228}
229
230static void perf_unpin_context(struct perf_counter_context *ctx)
231{
232 unsigned long flags;
233
234 spin_lock_irqsave(&ctx->lock, flags);
235 --ctx->pin_count;
236 spin_unlock_irqrestore(&ctx->lock, flags);
237 put_ctx(ctx);
238}
239
240/*
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200241 * Add a counter from the lists for its context.
242 * Must be called with ctx->mutex and ctx->lock held.
243 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100244static void
245list_add_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
246{
247 struct perf_counter *group_leader = counter->group_leader;
248
249 /*
250 * Depending on whether it is a standalone or sibling counter,
251 * add it straight to the context's counter list, or to the group
252 * leader's sibling list:
253 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +0200254 if (group_leader == counter)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100255 list_add_tail(&counter->list_entry, &ctx->counter_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100256 else {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100257 list_add_tail(&counter->list_entry, &group_leader->sibling_list);
Peter Zijlstra5c148192009-03-25 12:30:23 +0100258 group_leader->nr_siblings++;
259 }
Peter Zijlstra592903c2009-03-13 12:21:36 +0100260
261 list_add_rcu(&counter->event_entry, &ctx->event_list);
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200262 ctx->nr_counters++;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +0200263 if (counter->attr.inherit_stat)
264 ctx->nr_stat++;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100265}
266
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000267/*
268 * Remove a counter from the lists for its context.
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200269 * Must be called with ctx->mutex and ctx->lock held.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000270 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100271static void
272list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
273{
274 struct perf_counter *sibling, *tmp;
275
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000276 if (list_empty(&counter->list_entry))
277 return;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200278 ctx->nr_counters--;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +0200279 if (counter->attr.inherit_stat)
280 ctx->nr_stat--;
Peter Zijlstra8bc20952009-05-15 20:45:59 +0200281
Ingo Molnar04289bb2008-12-11 08:38:42 +0100282 list_del_init(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +0100283 list_del_rcu(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100284
Peter Zijlstra5c148192009-03-25 12:30:23 +0100285 if (counter->group_leader != counter)
286 counter->group_leader->nr_siblings--;
287
Ingo Molnar04289bb2008-12-11 08:38:42 +0100288 /*
289 * If this was a group counter with sibling counters then
290 * upgrade the siblings to singleton counters by adding them
291 * to the context list directly:
292 */
293 list_for_each_entry_safe(sibling, tmp,
294 &counter->sibling_list, list_entry) {
295
Peter Zijlstra75564232009-03-13 12:21:29 +0100296 list_move_tail(&sibling->list_entry, &ctx->counter_list);
Ingo Molnar04289bb2008-12-11 08:38:42 +0100297 sibling->group_leader = sibling;
298 }
299}
300
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100301static void
302counter_sched_out(struct perf_counter *counter,
303 struct perf_cpu_context *cpuctx,
304 struct perf_counter_context *ctx)
305{
306 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
307 return;
308
309 counter->state = PERF_COUNTER_STATE_INACTIVE;
Peter Zijlstra970892a2009-08-13 11:47:54 +0200310 if (counter->pending_disable) {
311 counter->pending_disable = 0;
312 counter->state = PERF_COUNTER_STATE_OFF;
313 }
Peter Zijlstra4af49982009-04-06 11:45:10 +0200314 counter->tstamp_stopped = ctx->time;
Robert Richter4aeb0b42009-04-29 12:47:03 +0200315 counter->pmu->disable(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100316 counter->oncpu = -1;
317
318 if (!is_software_counter(counter))
319 cpuctx->active_oncpu--;
320 ctx->nr_active--;
Peter Zijlstra0d486962009-06-02 19:22:16 +0200321 if (counter->attr.exclusive || !cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100322 cpuctx->exclusive = 0;
323}
324
Paul Mackerrasd859e292009-01-17 18:10:22 +1100325static void
326group_sched_out(struct perf_counter *group_counter,
327 struct perf_cpu_context *cpuctx,
328 struct perf_counter_context *ctx)
329{
330 struct perf_counter *counter;
331
332 if (group_counter->state != PERF_COUNTER_STATE_ACTIVE)
333 return;
334
335 counter_sched_out(group_counter, cpuctx, ctx);
336
337 /*
338 * Schedule out siblings (if any):
339 */
340 list_for_each_entry(counter, &group_counter->sibling_list, list_entry)
341 counter_sched_out(counter, cpuctx, ctx);
342
Peter Zijlstra0d486962009-06-02 19:22:16 +0200343 if (group_counter->attr.exclusive)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100344 cpuctx->exclusive = 0;
345}
346
Thomas Gleixner0793a612008-12-04 20:12:29 +0100347/*
348 * Cross CPU call to remove a performance counter
349 *
350 * We disable the counter on the hardware level first. After that we
351 * remove it from the context list.
352 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100353static void __perf_counter_remove_from_context(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100354{
355 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
356 struct perf_counter *counter = info;
357 struct perf_counter_context *ctx = counter->ctx;
358
359 /*
360 * If this is a task context, we need to check whether it is
361 * the current task context of this cpu. If not it has been
362 * scheduled out before the smp call arrived.
363 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200364 if (ctx->task && cpuctx->task_ctx != ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100365 return;
366
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200367 spin_lock(&ctx->lock);
Ingo Molnar34adc802009-05-20 20:13:28 +0200368 /*
369 * Protect the list operation against NMI by disabling the
370 * counters on a global level.
371 */
372 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100373
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100374 counter_sched_out(counter, cpuctx, ctx);
375
Ingo Molnar04289bb2008-12-11 08:38:42 +0100376 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100377
378 if (!ctx->task) {
379 /*
380 * Allow more per task counters with respect to the
381 * reservation:
382 */
383 cpuctx->max_pertask =
384 min(perf_max_counters - ctx->nr_counters,
385 perf_max_counters - perf_reserved_percpu);
386 }
387
Ingo Molnar34adc802009-05-20 20:13:28 +0200388 perf_enable();
Peter Zijlstra665c2142009-05-29 14:51:57 +0200389 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100390}
391
392
393/*
394 * Remove the counter from a task's (or a CPU's) list of counters.
395 *
Peter Zijlstrafccc7142009-05-23 18:28:56 +0200396 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100397 *
398 * CPU counters are removed with a smp call. For task counters we only
399 * call when the task is on a CPU.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000400 *
401 * If counter->ctx is a cloned context, callers must make sure that
402 * every task struct that counter->ctx->task could possibly point to
403 * remains valid. This is OK when called from perf_release since
404 * that only calls us on the top-level context, which can't be a clone.
405 * When called from perf_counter_exit_task, it's OK because the
406 * context has been detached from its task.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100407 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100408static void perf_counter_remove_from_context(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100409{
410 struct perf_counter_context *ctx = counter->ctx;
411 struct task_struct *task = ctx->task;
412
413 if (!task) {
414 /*
415 * Per cpu counters are removed via an smp call and
416 * the removal is always sucessful.
417 */
418 smp_call_function_single(counter->cpu,
Ingo Molnar04289bb2008-12-11 08:38:42 +0100419 __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100420 counter, 1);
421 return;
422 }
423
424retry:
Ingo Molnar04289bb2008-12-11 08:38:42 +0100425 task_oncpu_function_call(task, __perf_counter_remove_from_context,
Thomas Gleixner0793a612008-12-04 20:12:29 +0100426 counter);
427
428 spin_lock_irq(&ctx->lock);
429 /*
430 * If the context is active we need to retry the smp call.
431 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100432 if (ctx->nr_active && !list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100433 spin_unlock_irq(&ctx->lock);
434 goto retry;
435 }
436
437 /*
438 * The lock prevents that this context is scheduled in so we
Ingo Molnar04289bb2008-12-11 08:38:42 +0100439 * can remove the counter safely, if the call above did not
Thomas Gleixner0793a612008-12-04 20:12:29 +0100440 * succeed.
441 */
Ingo Molnar04289bb2008-12-11 08:38:42 +0100442 if (!list_empty(&counter->list_entry)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +0100443 list_del_counter(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100444 }
445 spin_unlock_irq(&ctx->lock);
446}
447
Peter Zijlstra4af49982009-04-06 11:45:10 +0200448static inline u64 perf_clock(void)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100449{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200450 return cpu_clock(smp_processor_id());
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100451}
452
453/*
454 * Update the record of the current time in a context.
455 */
Peter Zijlstra4af49982009-04-06 11:45:10 +0200456static void update_context_time(struct perf_counter_context *ctx)
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100457{
Peter Zijlstra4af49982009-04-06 11:45:10 +0200458 u64 now = perf_clock();
459
460 ctx->time += now - ctx->timestamp;
461 ctx->timestamp = now;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100462}
463
464/*
465 * Update the total_time_enabled and total_time_running fields for a counter.
466 */
467static void update_counter_times(struct perf_counter *counter)
468{
469 struct perf_counter_context *ctx = counter->ctx;
470 u64 run_end;
471
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000472 if (counter->state < PERF_COUNTER_STATE_INACTIVE ||
473 counter->group_leader->state < PERF_COUNTER_STATE_INACTIVE)
Peter Zijlstra4af49982009-04-06 11:45:10 +0200474 return;
475
476 counter->total_time_enabled = ctx->time - counter->tstamp_enabled;
477
478 if (counter->state == PERF_COUNTER_STATE_INACTIVE)
479 run_end = counter->tstamp_stopped;
480 else
481 run_end = ctx->time;
482
483 counter->total_time_running = run_end - counter->tstamp_running;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100484}
485
486/*
487 * Update total_time_enabled and total_time_running for all counters in a group.
488 */
489static void update_group_times(struct perf_counter *leader)
490{
491 struct perf_counter *counter;
492
493 update_counter_times(leader);
494 list_for_each_entry(counter, &leader->sibling_list, list_entry)
495 update_counter_times(counter);
496}
497
498/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100499 * Cross CPU call to disable a performance counter
500 */
501static void __perf_counter_disable(void *info)
502{
503 struct perf_counter *counter = info;
504 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
505 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100506
507 /*
508 * If this is a per-task counter, need to check whether this
509 * counter's task is the current task on this cpu.
510 */
Peter Zijlstra665c2142009-05-29 14:51:57 +0200511 if (ctx->task && cpuctx->task_ctx != ctx)
Paul Mackerrasd859e292009-01-17 18:10:22 +1100512 return;
513
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200514 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100515
516 /*
517 * If the counter is on, turn it off.
518 * If it is in error state, leave it in error state.
519 */
520 if (counter->state >= PERF_COUNTER_STATE_INACTIVE) {
Peter Zijlstra4af49982009-04-06 11:45:10 +0200521 update_context_time(ctx);
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000522 update_group_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100523 if (counter == counter->group_leader)
524 group_sched_out(counter, cpuctx, ctx);
525 else
526 counter_sched_out(counter, cpuctx, ctx);
527 counter->state = PERF_COUNTER_STATE_OFF;
528 }
529
Peter Zijlstra665c2142009-05-29 14:51:57 +0200530 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100531}
532
533/*
534 * Disable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000535 *
536 * If counter->ctx is a cloned context, callers must make sure that
537 * every task struct that counter->ctx->task could possibly point to
538 * remains valid. This condition is satisifed when called through
539 * perf_counter_for_each_child or perf_counter_for_each because they
540 * hold the top-level counter's child_mutex, so any descendant that
541 * goes to exit will block in sync_child_counter.
542 * When called from perf_pending_counter it's OK because counter->ctx
543 * is the current context on this CPU and preemption is disabled,
544 * hence we can't get into perf_counter_task_sched_out for this context.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100545 */
546static void perf_counter_disable(struct perf_counter *counter)
547{
548 struct perf_counter_context *ctx = counter->ctx;
549 struct task_struct *task = ctx->task;
550
551 if (!task) {
552 /*
553 * Disable the counter on the cpu that it's on
554 */
555 smp_call_function_single(counter->cpu, __perf_counter_disable,
556 counter, 1);
557 return;
558 }
559
560 retry:
561 task_oncpu_function_call(task, __perf_counter_disable, counter);
562
563 spin_lock_irq(&ctx->lock);
564 /*
565 * If the counter is still active, we need to retry the cross-call.
566 */
567 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
568 spin_unlock_irq(&ctx->lock);
569 goto retry;
570 }
571
572 /*
573 * Since we have the lock this context can't be scheduled
574 * in, so we can change the state safely.
575 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100576 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000577 update_group_times(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100578 counter->state = PERF_COUNTER_STATE_OFF;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100579 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100580
581 spin_unlock_irq(&ctx->lock);
582}
583
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100584static int
585counter_sched_in(struct perf_counter *counter,
586 struct perf_cpu_context *cpuctx,
587 struct perf_counter_context *ctx,
588 int cpu)
589{
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100590 if (counter->state <= PERF_COUNTER_STATE_OFF)
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100591 return 0;
592
593 counter->state = PERF_COUNTER_STATE_ACTIVE;
594 counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
595 /*
596 * The new state must be visible before we turn it on in the hardware:
597 */
598 smp_wmb();
599
Robert Richter4aeb0b42009-04-29 12:47:03 +0200600 if (counter->pmu->enable(counter)) {
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100601 counter->state = PERF_COUNTER_STATE_INACTIVE;
602 counter->oncpu = -1;
603 return -EAGAIN;
604 }
605
Peter Zijlstra4af49982009-04-06 11:45:10 +0200606 counter->tstamp_running += ctx->time - counter->tstamp_stopped;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100607
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100608 if (!is_software_counter(counter))
609 cpuctx->active_oncpu++;
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100610 ctx->nr_active++;
611
Peter Zijlstra0d486962009-06-02 19:22:16 +0200612 if (counter->attr.exclusive)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100613 cpuctx->exclusive = 1;
614
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100615 return 0;
616}
617
Paul Mackerras6751b712009-05-11 12:08:02 +1000618static int
619group_sched_in(struct perf_counter *group_counter,
620 struct perf_cpu_context *cpuctx,
621 struct perf_counter_context *ctx,
622 int cpu)
623{
624 struct perf_counter *counter, *partial_group;
625 int ret;
626
627 if (group_counter->state == PERF_COUNTER_STATE_OFF)
628 return 0;
629
630 ret = hw_perf_group_sched_in(group_counter, cpuctx, ctx, cpu);
631 if (ret)
632 return ret < 0 ? ret : 0;
633
Paul Mackerras6751b712009-05-11 12:08:02 +1000634 if (counter_sched_in(group_counter, cpuctx, ctx, cpu))
635 return -EAGAIN;
636
637 /*
638 * Schedule in siblings as one group (if any):
639 */
640 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
Paul Mackerras6751b712009-05-11 12:08:02 +1000641 if (counter_sched_in(counter, cpuctx, ctx, cpu)) {
642 partial_group = counter;
643 goto group_error;
644 }
645 }
646
647 return 0;
648
649group_error:
650 /*
651 * Groups can be scheduled in as one unit only, so undo any
652 * partial group before returning:
653 */
654 list_for_each_entry(counter, &group_counter->sibling_list, list_entry) {
655 if (counter == partial_group)
656 break;
657 counter_sched_out(counter, cpuctx, ctx);
658 }
659 counter_sched_out(group_counter, cpuctx, ctx);
660
661 return -EAGAIN;
662}
663
Thomas Gleixner0793a612008-12-04 20:12:29 +0100664/*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100665 * Return 1 for a group consisting entirely of software counters,
666 * 0 if the group contains any hardware counters.
667 */
668static int is_software_only_group(struct perf_counter *leader)
669{
670 struct perf_counter *counter;
671
672 if (!is_software_counter(leader))
673 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100674
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100675 list_for_each_entry(counter, &leader->sibling_list, list_entry)
676 if (!is_software_counter(counter))
677 return 0;
Peter Zijlstra5c148192009-03-25 12:30:23 +0100678
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100679 return 1;
680}
681
682/*
683 * Work out whether we can put this counter group on the CPU now.
684 */
685static int group_can_go_on(struct perf_counter *counter,
686 struct perf_cpu_context *cpuctx,
687 int can_add_hw)
688{
689 /*
690 * Groups consisting entirely of software counters can always go on.
691 */
692 if (is_software_only_group(counter))
693 return 1;
694 /*
695 * If an exclusive group is already on, no other hardware
696 * counters can go on.
697 */
698 if (cpuctx->exclusive)
699 return 0;
700 /*
701 * If this group is exclusive and there are already
702 * counters on the CPU, it can't go on.
703 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200704 if (counter->attr.exclusive && cpuctx->active_oncpu)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100705 return 0;
706 /*
707 * Otherwise, try to add it if all previous groups were able
708 * to go on.
709 */
710 return can_add_hw;
711}
712
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100713static void add_counter_to_ctx(struct perf_counter *counter,
714 struct perf_counter_context *ctx)
715{
716 list_add_counter(counter, ctx);
Peter Zijlstra4af49982009-04-06 11:45:10 +0200717 counter->tstamp_enabled = ctx->time;
718 counter->tstamp_running = ctx->time;
719 counter->tstamp_stopped = ctx->time;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100720}
721
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100722/*
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100723 * Cross CPU call to install and enable a performance counter
Peter Zijlstra682076a2009-05-23 18:28:57 +0200724 *
725 * Must be called with ctx->mutex held
Thomas Gleixner0793a612008-12-04 20:12:29 +0100726 */
727static void __perf_install_in_context(void *info)
728{
729 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
730 struct perf_counter *counter = info;
731 struct perf_counter_context *ctx = counter->ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100732 struct perf_counter *leader = counter->group_leader;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100733 int cpu = smp_processor_id();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100734 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +0100735
736 /*
737 * If this is a task context, we need to check whether it is
738 * the current task context of this cpu. If not it has been
739 * scheduled out before the smp call arrived.
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000740 * Or possibly this is the right context but it isn't
741 * on this cpu because it had no counters.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100742 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000743 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200744 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000745 return;
746 cpuctx->task_ctx = ctx;
747 }
Thomas Gleixner0793a612008-12-04 20:12:29 +0100748
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200749 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000750 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200751 update_context_time(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100752
753 /*
754 * Protect the list operation against NMI by disabling the
755 * counters on a global level. NOP for non NMI based counters.
756 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200757 perf_disable();
Thomas Gleixner0793a612008-12-04 20:12:29 +0100758
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100759 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100760
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100761 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100762 * Don't put the counter on if it is disabled or if
763 * it is in a group and the group isn't on.
764 */
765 if (counter->state != PERF_COUNTER_STATE_INACTIVE ||
766 (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE))
767 goto unlock;
768
769 /*
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100770 * An exclusive counter can't go on if there are already active
771 * hardware counters, and no hardware counter can go on if there
772 * is already an exclusive counter on.
773 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100774 if (!group_can_go_on(counter, cpuctx, 1))
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100775 err = -EEXIST;
776 else
777 err = counter_sched_in(counter, cpuctx, ctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100778
Paul Mackerrasd859e292009-01-17 18:10:22 +1100779 if (err) {
780 /*
781 * This counter couldn't go on. If it is in a group
782 * then we have to pull the whole group off.
783 * If the counter group is pinned then put it in error state.
784 */
785 if (leader != counter)
786 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200787 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100788 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100789 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100790 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100791 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100792
793 if (!err && !ctx->task && cpuctx->max_pertask)
Thomas Gleixner0793a612008-12-04 20:12:29 +0100794 cpuctx->max_pertask--;
795
Paul Mackerrasd859e292009-01-17 18:10:22 +1100796 unlock:
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200797 perf_enable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +0100798
Peter Zijlstra665c2142009-05-29 14:51:57 +0200799 spin_unlock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100800}
801
802/*
803 * Attach a performance counter to a context
804 *
805 * First we add the counter to the list with the hardware enable bit
806 * in counter->hw_config cleared.
807 *
808 * If the counter is attached to a task which is on a CPU we use a smp
809 * call to enable it in the task context. The task might have been
810 * scheduled away, but we check this in the smp call again.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100811 *
812 * Must be called with ctx->mutex held.
Thomas Gleixner0793a612008-12-04 20:12:29 +0100813 */
814static void
815perf_install_in_context(struct perf_counter_context *ctx,
816 struct perf_counter *counter,
817 int cpu)
818{
819 struct task_struct *task = ctx->task;
820
Thomas Gleixner0793a612008-12-04 20:12:29 +0100821 if (!task) {
822 /*
823 * Per cpu counters are installed via an smp call and
824 * the install is always sucessful.
825 */
826 smp_call_function_single(cpu, __perf_install_in_context,
827 counter, 1);
828 return;
829 }
830
Thomas Gleixner0793a612008-12-04 20:12:29 +0100831retry:
832 task_oncpu_function_call(task, __perf_install_in_context,
833 counter);
834
835 spin_lock_irq(&ctx->lock);
836 /*
Thomas Gleixner0793a612008-12-04 20:12:29 +0100837 * we need to retry the smp call.
838 */
Paul Mackerrasd859e292009-01-17 18:10:22 +1100839 if (ctx->is_active && list_empty(&counter->list_entry)) {
Thomas Gleixner0793a612008-12-04 20:12:29 +0100840 spin_unlock_irq(&ctx->lock);
841 goto retry;
842 }
843
844 /*
845 * The lock prevents that this context is scheduled in so we
846 * can add the counter safely, if it the call above did not
847 * succeed.
848 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100849 if (list_empty(&counter->list_entry))
850 add_counter_to_ctx(counter, ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +0100851 spin_unlock_irq(&ctx->lock);
852}
853
Paul Mackerrasd859e292009-01-17 18:10:22 +1100854/*
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000855 * Put a counter into inactive state and update time fields.
856 * Enabling the leader of a group effectively enables all
857 * the group members that aren't explicitly disabled, so we
858 * have to update their ->tstamp_enabled also.
859 * Note: this works for group members as well as group leaders
860 * since the non-leader members' sibling_lists will be empty.
861 */
862static void __perf_counter_mark_enabled(struct perf_counter *counter,
863 struct perf_counter_context *ctx)
864{
865 struct perf_counter *sub;
866
867 counter->state = PERF_COUNTER_STATE_INACTIVE;
868 counter->tstamp_enabled = ctx->time - counter->total_time_enabled;
869 list_for_each_entry(sub, &counter->sibling_list, list_entry)
870 if (sub->state >= PERF_COUNTER_STATE_INACTIVE)
871 sub->tstamp_enabled =
872 ctx->time - sub->total_time_enabled;
873}
874
875/*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100876 * Cross CPU call to enable a performance counter
877 */
878static void __perf_counter_enable(void *info)
Ingo Molnar04289bb2008-12-11 08:38:42 +0100879{
Paul Mackerrasd859e292009-01-17 18:10:22 +1100880 struct perf_counter *counter = info;
881 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
882 struct perf_counter_context *ctx = counter->ctx;
883 struct perf_counter *leader = counter->group_leader;
Paul Mackerrasd859e292009-01-17 18:10:22 +1100884 int err;
Ingo Molnar04289bb2008-12-11 08:38:42 +0100885
886 /*
Paul Mackerrasd859e292009-01-17 18:10:22 +1100887 * If this is a per-task counter, need to check whether this
888 * counter's task is the current task on this cpu.
Ingo Molnar04289bb2008-12-11 08:38:42 +0100889 */
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000890 if (ctx->task && cpuctx->task_ctx != ctx) {
Peter Zijlstra665c2142009-05-29 14:51:57 +0200891 if (cpuctx->task_ctx || ctx->task != current)
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000892 return;
893 cpuctx->task_ctx = ctx;
894 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +1100895
Ingo Molnar3f4dee22009-05-29 11:25:09 +0200896 spin_lock(&ctx->lock);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +1000897 ctx->is_active = 1;
Peter Zijlstra4af49982009-04-06 11:45:10 +0200898 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100899
900 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
901 goto unlock;
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000902 __perf_counter_mark_enabled(counter, ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100903
904 /*
905 * If the counter is in a group and isn't the group leader,
906 * then don't put it on unless the group is on.
907 */
908 if (leader != counter && leader->state != PERF_COUNTER_STATE_ACTIVE)
909 goto unlock;
910
Paul Mackerrase758a332009-05-12 21:59:01 +1000911 if (!group_can_go_on(counter, cpuctx, 1)) {
Paul Mackerrasd859e292009-01-17 18:10:22 +1100912 err = -EEXIST;
Paul Mackerrase758a332009-05-12 21:59:01 +1000913 } else {
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200914 perf_disable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000915 if (counter == leader)
916 err = group_sched_in(counter, cpuctx, ctx,
917 smp_processor_id());
918 else
919 err = counter_sched_in(counter, cpuctx, ctx,
920 smp_processor_id());
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200921 perf_enable();
Paul Mackerrase758a332009-05-12 21:59:01 +1000922 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100923
924 if (err) {
925 /*
926 * If this counter can't go on and it's part of a
927 * group, then the whole group has to come off.
928 */
929 if (leader != counter)
930 group_sched_out(leader, cpuctx, ctx);
Peter Zijlstra0d486962009-06-02 19:22:16 +0200931 if (leader->attr.pinned) {
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100932 update_group_times(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100933 leader->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +1100934 }
Paul Mackerrasd859e292009-01-17 18:10:22 +1100935 }
936
937 unlock:
Peter Zijlstra665c2142009-05-29 14:51:57 +0200938 spin_unlock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +1100939}
940
941/*
942 * Enable a counter.
Paul Mackerrasc93f7662009-05-28 22:18:17 +1000943 *
944 * If counter->ctx is a cloned context, callers must make sure that
945 * every task struct that counter->ctx->task could possibly point to
946 * remains valid. This condition is satisfied when called through
947 * perf_counter_for_each_child or perf_counter_for_each as described
948 * for perf_counter_disable.
Paul Mackerrasd859e292009-01-17 18:10:22 +1100949 */
950static void perf_counter_enable(struct perf_counter *counter)
951{
952 struct perf_counter_context *ctx = counter->ctx;
953 struct task_struct *task = ctx->task;
954
955 if (!task) {
956 /*
957 * Enable the counter on the cpu that it's on
958 */
959 smp_call_function_single(counter->cpu, __perf_counter_enable,
960 counter, 1);
961 return;
962 }
963
964 spin_lock_irq(&ctx->lock);
965 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
966 goto out;
967
968 /*
969 * If the counter is in error state, clear that first.
970 * That way, if we see the counter in error state below, we
971 * know that it has gone back into error state, as distinct
972 * from the task having been scheduled away before the
973 * cross-call arrived.
974 */
975 if (counter->state == PERF_COUNTER_STATE_ERROR)
976 counter->state = PERF_COUNTER_STATE_OFF;
977
978 retry:
979 spin_unlock_irq(&ctx->lock);
980 task_oncpu_function_call(task, __perf_counter_enable, counter);
981
982 spin_lock_irq(&ctx->lock);
983
984 /*
985 * If the context is active and the counter is still off,
986 * we need to retry the cross-call.
987 */
988 if (ctx->is_active && counter->state == PERF_COUNTER_STATE_OFF)
989 goto retry;
990
991 /*
992 * Since we have the lock this context can't be scheduled
993 * in, so we can change the state safely.
994 */
Paul Mackerrasfa289be2009-08-25 15:17:20 +1000995 if (counter->state == PERF_COUNTER_STATE_OFF)
996 __perf_counter_mark_enabled(counter, ctx);
997
Paul Mackerrasd859e292009-01-17 18:10:22 +1100998 out:
999 spin_unlock_irq(&ctx->lock);
1000}
1001
Peter Zijlstra2023b352009-05-05 17:50:26 +02001002static int perf_counter_refresh(struct perf_counter *counter, int refresh)
Peter Zijlstra79f14642009-04-06 11:45:07 +02001003{
Peter Zijlstra2023b352009-05-05 17:50:26 +02001004 /*
1005 * not supported on inherited counters
1006 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02001007 if (counter->attr.inherit)
Peter Zijlstra2023b352009-05-05 17:50:26 +02001008 return -EINVAL;
1009
Peter Zijlstra79f14642009-04-06 11:45:07 +02001010 atomic_add(refresh, &counter->event_limit);
1011 perf_counter_enable(counter);
Peter Zijlstra2023b352009-05-05 17:50:26 +02001012
1013 return 0;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001014}
1015
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001016void __perf_counter_sched_out(struct perf_counter_context *ctx,
1017 struct perf_cpu_context *cpuctx)
1018{
1019 struct perf_counter *counter;
1020
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001021 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001022 ctx->is_active = 0;
1023 if (likely(!ctx->nr_counters))
1024 goto out;
Peter Zijlstra4af49982009-04-06 11:45:10 +02001025 update_context_time(ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001026
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001027 perf_disable();
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001028 if (ctx->nr_active) {
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001029 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1030 if (counter != counter->group_leader)
1031 counter_sched_out(counter, cpuctx, ctx);
1032 else
1033 group_sched_out(counter, cpuctx, ctx);
1034 }
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001035 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001036 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001037 out:
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001038 spin_unlock(&ctx->lock);
1039}
1040
Thomas Gleixner0793a612008-12-04 20:12:29 +01001041/*
Paul Mackerras564c2b22009-05-22 14:27:22 +10001042 * Test whether two contexts are equivalent, i.e. whether they
1043 * have both been cloned from the same version of the same context
1044 * and they both have the same number of enabled counters.
1045 * If the number of enabled counters is the same, then the set
1046 * of enabled counters should be the same, because these are both
1047 * inherited contexts, therefore we can't access individual counters
1048 * in them directly with an fd; we can only enable/disable all
1049 * counters via prctl, or enable/disable all counters in a family
1050 * via ioctl, which will have the same effect on both contexts.
1051 */
1052static int context_equiv(struct perf_counter_context *ctx1,
1053 struct perf_counter_context *ctx2)
1054{
1055 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001056 && ctx1->parent_gen == ctx2->parent_gen
Paul Mackerras25346b92009-06-01 17:48:12 +10001057 && !ctx1->pin_count && !ctx2->pin_count;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001058}
1059
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001060static void __perf_counter_read(void *counter);
1061
1062static void __perf_counter_sync_stat(struct perf_counter *counter,
1063 struct perf_counter *next_counter)
1064{
1065 u64 value;
1066
1067 if (!counter->attr.inherit_stat)
1068 return;
1069
1070 /*
1071 * Update the counter value, we cannot use perf_counter_read()
1072 * because we're in the middle of a context switch and have IRQs
1073 * disabled, which upsets smp_call_function_single(), however
1074 * we know the counter must be on the current CPU, therefore we
1075 * don't need to use it.
1076 */
1077 switch (counter->state) {
1078 case PERF_COUNTER_STATE_ACTIVE:
1079 __perf_counter_read(counter);
1080 break;
1081
1082 case PERF_COUNTER_STATE_INACTIVE:
1083 update_counter_times(counter);
1084 break;
1085
1086 default:
1087 break;
1088 }
1089
1090 /*
1091 * In order to keep per-task stats reliable we need to flip the counter
1092 * values when we flip the contexts.
1093 */
1094 value = atomic64_read(&next_counter->count);
1095 value = atomic64_xchg(&counter->count, value);
1096 atomic64_set(&next_counter->count, value);
1097
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001098 swap(counter->total_time_enabled, next_counter->total_time_enabled);
1099 swap(counter->total_time_running, next_counter->total_time_running);
1100
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001101 /*
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001102 * Since we swizzled the values, update the user visible data too.
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001103 */
Peter Zijlstra19d2e752009-06-26 13:10:23 +02001104 perf_counter_update_userpage(counter);
1105 perf_counter_update_userpage(next_counter);
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001106}
1107
1108#define list_next_entry(pos, member) \
1109 list_entry(pos->member.next, typeof(*pos), member)
1110
1111static void perf_counter_sync_stat(struct perf_counter_context *ctx,
1112 struct perf_counter_context *next_ctx)
1113{
1114 struct perf_counter *counter, *next_counter;
1115
1116 if (!ctx->nr_stat)
1117 return;
1118
1119 counter = list_first_entry(&ctx->event_list,
1120 struct perf_counter, event_entry);
1121
1122 next_counter = list_first_entry(&next_ctx->event_list,
1123 struct perf_counter, event_entry);
1124
1125 while (&counter->event_entry != &ctx->event_list &&
1126 &next_counter->event_entry != &next_ctx->event_list) {
1127
1128 __perf_counter_sync_stat(counter, next_counter);
1129
1130 counter = list_next_entry(counter, event_entry);
Peter Zijlstra10545982009-08-06 18:06:26 +02001131 next_counter = list_next_entry(next_counter, event_entry);
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001132 }
1133}
1134
Paul Mackerras564c2b22009-05-22 14:27:22 +10001135/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001136 * Called from scheduler to remove the counters of the current task,
1137 * with interrupts disabled.
1138 *
1139 * We stop each counter and update the counter value in counter->count.
1140 *
Ingo Molnar76715812008-12-17 14:20:28 +01001141 * This does not protect us against NMI, but disable()
Thomas Gleixner0793a612008-12-04 20:12:29 +01001142 * sets the disabled bit in the control field of counter _before_
1143 * accessing the counter control register. If a NMI hits, then it will
1144 * not restart the counter.
1145 */
Paul Mackerras564c2b22009-05-22 14:27:22 +10001146void perf_counter_task_sched_out(struct task_struct *task,
1147 struct task_struct *next, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001148{
1149 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001150 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001151 struct perf_counter_context *next_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001152 struct perf_counter_context *parent;
Peter Zijlstra4a0deca2009-03-19 20:26:12 +01001153 struct pt_regs *regs;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001154 int do_switch = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001155
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001156 regs = task_pt_regs(task);
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02001157 perf_swcounter_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 1, regs, 0);
Peter Zijlstra10989fb2009-05-25 14:45:28 +02001158
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001159 if (likely(!ctx || !cpuctx->task_ctx))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001160 return;
1161
Peter Zijlstrabce379b2009-04-06 11:45:13 +02001162 update_context_time(ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001163
1164 rcu_read_lock();
1165 parent = rcu_dereference(ctx->parent_ctx);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001166 next_ctx = next->perf_counter_ctxp;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001167 if (parent && next_ctx &&
1168 rcu_dereference(next_ctx->parent_ctx) == parent) {
1169 /*
1170 * Looks like the two contexts are clones, so we might be
1171 * able to optimize the context switch. We lock both
1172 * contexts and check that they are clones under the
1173 * lock (including re-checking that neither has been
1174 * uncloned in the meantime). It doesn't matter which
1175 * order we take the locks because no other cpu could
1176 * be trying to lock both of these tasks.
1177 */
1178 spin_lock(&ctx->lock);
1179 spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
1180 if (context_equiv(ctx, next_ctx)) {
Peter Zijlstra665c2142009-05-29 14:51:57 +02001181 /*
1182 * XXX do we need a memory barrier of sorts
1183 * wrt to rcu_dereference() of perf_counter_ctxp
1184 */
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001185 task->perf_counter_ctxp = next_ctx;
1186 next->perf_counter_ctxp = ctx;
1187 ctx->task = next;
1188 next_ctx->task = task;
1189 do_switch = 0;
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001190
1191 perf_counter_sync_stat(ctx, next_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001192 }
1193 spin_unlock(&next_ctx->lock);
1194 spin_unlock(&ctx->lock);
Paul Mackerras564c2b22009-05-22 14:27:22 +10001195 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001196 rcu_read_unlock();
Paul Mackerras564c2b22009-05-22 14:27:22 +10001197
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001198 if (do_switch) {
1199 __perf_counter_sched_out(ctx, cpuctx);
1200 cpuctx->task_ctx = NULL;
1201 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001202}
1203
Peter Zijlstra665c2142009-05-29 14:51:57 +02001204/*
1205 * Called with IRQs disabled
1206 */
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001207static void __perf_counter_task_sched_out(struct perf_counter_context *ctx)
1208{
1209 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
1210
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001211 if (!cpuctx->task_ctx)
1212 return;
Ingo Molnar012b84d2009-05-17 11:08:41 +02001213
1214 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1215 return;
1216
Paul Mackerrasa08b1592009-05-11 15:46:10 +10001217 __perf_counter_sched_out(ctx, cpuctx);
1218 cpuctx->task_ctx = NULL;
1219}
1220
Peter Zijlstra665c2142009-05-29 14:51:57 +02001221/*
1222 * Called with IRQs disabled
1223 */
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001224static void perf_counter_cpu_sched_out(struct perf_cpu_context *cpuctx)
Ingo Molnar04289bb2008-12-11 08:38:42 +01001225{
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001226 __perf_counter_sched_out(&cpuctx->ctx, cpuctx);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001227}
1228
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001229static void
1230__perf_counter_sched_in(struct perf_counter_context *ctx,
1231 struct perf_cpu_context *cpuctx, int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001232{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001233 struct perf_counter *counter;
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001234 int can_add_hw = 1;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001235
Thomas Gleixner0793a612008-12-04 20:12:29 +01001236 spin_lock(&ctx->lock);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001237 ctx->is_active = 1;
1238 if (likely(!ctx->nr_counters))
1239 goto out;
1240
Peter Zijlstra4af49982009-04-06 11:45:10 +02001241 ctx->timestamp = perf_clock();
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001242
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001243 perf_disable();
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001244
1245 /*
1246 * First go through the list and put on any pinned groups
1247 * in order to give them the best chance of going on.
1248 */
Ingo Molnar04289bb2008-12-11 08:38:42 +01001249 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001250 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001251 !counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001252 continue;
1253 if (counter->cpu != -1 && counter->cpu != cpu)
1254 continue;
1255
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001256 if (counter != counter->group_leader)
1257 counter_sched_in(counter, cpuctx, ctx, cpu);
1258 else {
1259 if (group_can_go_on(counter, cpuctx, 1))
1260 group_sched_in(counter, cpuctx, ctx, cpu);
1261 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001262
1263 /*
1264 * If this pinned group hasn't been scheduled,
1265 * put it in error state.
1266 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001267 if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1268 update_group_times(counter);
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001269 counter->state = PERF_COUNTER_STATE_ERROR;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001270 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001271 }
1272
1273 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1274 /*
1275 * Ignore counters in OFF or ERROR state, and
1276 * ignore pinned counters since we did them already.
1277 */
1278 if (counter->state <= PERF_COUNTER_STATE_OFF ||
Peter Zijlstra0d486962009-06-02 19:22:16 +02001279 counter->attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001280 continue;
1281
Ingo Molnar04289bb2008-12-11 08:38:42 +01001282 /*
1283 * Listen to the 'cpu' scheduling filter constraint
1284 * of counters:
1285 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01001286 if (counter->cpu != -1 && counter->cpu != cpu)
1287 continue;
1288
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001289 if (counter != counter->group_leader) {
1290 if (counter_sched_in(counter, cpuctx, ctx, cpu))
Paul Mackerrasdd0e6ba2009-01-12 15:11:00 +11001291 can_add_hw = 0;
Peter Zijlstraafedadf2009-05-20 12:21:22 +02001292 } else {
1293 if (group_can_go_on(counter, cpuctx, can_add_hw)) {
1294 if (group_sched_in(counter, cpuctx, ctx, cpu))
1295 can_add_hw = 0;
1296 }
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001297 }
Thomas Gleixner0793a612008-12-04 20:12:29 +01001298 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001299 perf_enable();
Paul Mackerrasd859e292009-01-17 18:10:22 +11001300 out:
Thomas Gleixner0793a612008-12-04 20:12:29 +01001301 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001302}
Ingo Molnar04289bb2008-12-11 08:38:42 +01001303
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001304/*
1305 * Called from scheduler to add the counters of the current task
1306 * with interrupts disabled.
1307 *
1308 * We restore the counter value and then enable it.
1309 *
1310 * This does not protect us against NMI, but enable()
1311 * sets the enabled bit in the control field of counter _before_
1312 * accessing the counter control register. If a NMI hits, then it will
1313 * keep the counter running.
1314 */
1315void perf_counter_task_sched_in(struct task_struct *task, int cpu)
1316{
1317 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001318 struct perf_counter_context *ctx = task->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001319
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001320 if (likely(!ctx))
1321 return;
Paul Mackerras564c2b22009-05-22 14:27:22 +10001322 if (cpuctx->task_ctx == ctx)
1323 return;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001324 __perf_counter_sched_in(ctx, cpuctx, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001325 cpuctx->task_ctx = ctx;
1326}
1327
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001328static void perf_counter_cpu_sched_in(struct perf_cpu_context *cpuctx, int cpu)
1329{
1330 struct perf_counter_context *ctx = &cpuctx->ctx;
1331
1332 __perf_counter_sched_in(ctx, cpuctx, cpu);
1333}
1334
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001335#define MAX_INTERRUPTS (~0ULL)
1336
1337static void perf_log_throttle(struct perf_counter *counter, int enable);
Peter Zijlstra26b119b2009-05-20 12:21:20 +02001338
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001339static void perf_adjust_period(struct perf_counter *counter, u64 events)
1340{
1341 struct hw_perf_counter *hwc = &counter->hw;
1342 u64 period, sample_period;
1343 s64 delta;
1344
1345 events *= hwc->sample_period;
1346 period = div64_u64(events, counter->attr.sample_freq);
1347
1348 delta = (s64)(period - hwc->sample_period);
1349 delta = (delta + 7) / 8; /* low pass filter */
1350
1351 sample_period = hwc->sample_period + delta;
1352
1353 if (!sample_period)
1354 sample_period = 1;
1355
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001356 hwc->sample_period = sample_period;
1357}
1358
1359static void perf_ctx_adjust_freq(struct perf_counter_context *ctx)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001360{
1361 struct perf_counter *counter;
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001362 struct hw_perf_counter *hwc;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001363 u64 interrupts, freq;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001364
1365 spin_lock(&ctx->lock);
1366 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1367 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
1368 continue;
1369
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001370 hwc = &counter->hw;
1371
1372 interrupts = hwc->interrupts;
1373 hwc->interrupts = 0;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001374
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001375 /*
1376 * unthrottle counters on the tick
1377 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001378 if (interrupts == MAX_INTERRUPTS) {
1379 perf_log_throttle(counter, 1);
1380 counter->pmu->unthrottle(counter);
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001381 interrupts = 2*sysctl_perf_counter_sample_rate/HZ;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001382 }
1383
Peter Zijlstra0d486962009-06-02 19:22:16 +02001384 if (!counter->attr.freq || !counter->attr.sample_freq)
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001385 continue;
1386
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001387 /*
1388 * if the specified freq < HZ then we need to skip ticks
1389 */
Peter Zijlstra6a24ed6c2009-06-05 18:01:29 +02001390 if (counter->attr.sample_freq < HZ) {
1391 freq = counter->attr.sample_freq;
1392
1393 hwc->freq_count += freq;
1394 hwc->freq_interrupts += interrupts;
1395
1396 if (hwc->freq_count < HZ)
1397 continue;
1398
1399 interrupts = hwc->freq_interrupts;
1400 hwc->freq_interrupts = 0;
1401 hwc->freq_count -= HZ;
1402 } else
1403 freq = HZ;
1404
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001405 perf_adjust_period(counter, freq * interrupts);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001406
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001407 /*
1408 * In order to avoid being stalled by an (accidental) huge
1409 * sample period, force reset the sample period if we didn't
1410 * get any events in this freq period.
1411 */
1412 if (!interrupts) {
1413 perf_disable();
1414 counter->pmu->disable(counter);
Paul Mackerras87847b82009-06-13 17:06:50 +10001415 atomic64_set(&hwc->period_left, 0);
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001416 counter->pmu->enable(counter);
1417 perf_enable();
1418 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001419 }
1420 spin_unlock(&ctx->lock);
1421}
1422
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001423/*
1424 * Round-robin a context's counters:
1425 */
1426static void rotate_ctx(struct perf_counter_context *ctx)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001427{
Thomas Gleixner0793a612008-12-04 20:12:29 +01001428 struct perf_counter *counter;
1429
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001430 if (!ctx->nr_counters)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001431 return;
1432
Thomas Gleixner0793a612008-12-04 20:12:29 +01001433 spin_lock(&ctx->lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001434 /*
Ingo Molnar04289bb2008-12-11 08:38:42 +01001435 * Rotate the first entry last (works just fine for group counters too):
Thomas Gleixner0793a612008-12-04 20:12:29 +01001436 */
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001437 perf_disable();
Ingo Molnar04289bb2008-12-11 08:38:42 +01001438 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
Peter Zijlstra75564232009-03-13 12:21:29 +01001439 list_move_tail(&counter->list_entry, &ctx->counter_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001440 break;
1441 }
Peter Zijlstra9e35ad32009-05-13 16:21:38 +02001442 perf_enable();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001443
1444 spin_unlock(&ctx->lock);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001445}
Thomas Gleixner0793a612008-12-04 20:12:29 +01001446
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001447void perf_counter_task_tick(struct task_struct *curr, int cpu)
1448{
Peter Zijlstra7fc23a52009-05-08 18:52:21 +02001449 struct perf_cpu_context *cpuctx;
1450 struct perf_counter_context *ctx;
1451
1452 if (!atomic_read(&nr_counters))
1453 return;
1454
1455 cpuctx = &per_cpu(perf_cpu_context, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001456 ctx = curr->perf_counter_ctxp;
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001457
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001458 perf_ctx_adjust_freq(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001459 if (ctx)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02001460 perf_ctx_adjust_freq(ctx);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02001461
Ingo Molnarb82914c2009-05-04 18:54:32 +02001462 perf_counter_cpu_sched_out(cpuctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001463 if (ctx)
1464 __perf_counter_task_sched_out(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001465
Ingo Molnarb82914c2009-05-04 18:54:32 +02001466 rotate_ctx(&cpuctx->ctx);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001467 if (ctx)
1468 rotate_ctx(ctx);
Ingo Molnar235c7fc2008-12-21 14:43:25 +01001469
Ingo Molnarb82914c2009-05-04 18:54:32 +02001470 perf_counter_cpu_sched_in(cpuctx, cpu);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001471 if (ctx)
1472 perf_counter_task_sched_in(curr, cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001473}
1474
1475/*
Paul Mackerras57e79862009-06-30 16:07:19 +10001476 * Enable all of a task's counters that have been marked enable-on-exec.
1477 * This expects task == current.
1478 */
1479static void perf_counter_enable_on_exec(struct task_struct *task)
1480{
1481 struct perf_counter_context *ctx;
1482 struct perf_counter *counter;
1483 unsigned long flags;
1484 int enabled = 0;
1485
1486 local_irq_save(flags);
1487 ctx = task->perf_counter_ctxp;
1488 if (!ctx || !ctx->nr_counters)
1489 goto out;
1490
1491 __perf_counter_task_sched_out(ctx);
1492
1493 spin_lock(&ctx->lock);
1494
1495 list_for_each_entry(counter, &ctx->counter_list, list_entry) {
1496 if (!counter->attr.enable_on_exec)
1497 continue;
1498 counter->attr.enable_on_exec = 0;
1499 if (counter->state >= PERF_COUNTER_STATE_INACTIVE)
1500 continue;
Paul Mackerrasfa289be2009-08-25 15:17:20 +10001501 __perf_counter_mark_enabled(counter, ctx);
Paul Mackerras57e79862009-06-30 16:07:19 +10001502 enabled = 1;
1503 }
1504
1505 /*
1506 * Unclone this context if we enabled any counter.
1507 */
Peter Zijlstra71a851b2009-07-10 09:06:56 +02001508 if (enabled)
1509 unclone_ctx(ctx);
Paul Mackerras57e79862009-06-30 16:07:19 +10001510
1511 spin_unlock(&ctx->lock);
1512
1513 perf_counter_task_sched_in(task, smp_processor_id());
1514 out:
1515 local_irq_restore(flags);
1516}
1517
1518/*
Thomas Gleixner0793a612008-12-04 20:12:29 +01001519 * Cross CPU call to read the hardware counter
1520 */
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001521static void __perf_counter_read(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001522{
Paul Mackerrase1ac3612009-08-14 15:39:10 +10001523 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001524 struct perf_counter *counter = info;
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001525 struct perf_counter_context *ctx = counter->ctx;
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01001526 unsigned long flags;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001527
Paul Mackerrase1ac3612009-08-14 15:39:10 +10001528 /*
1529 * If this is a task context, we need to check whether it is
1530 * the current task context of this cpu. If not it has been
1531 * scheduled out before the smp call arrived. In that case
1532 * counter->count would have been updated to a recent sample
1533 * when the counter was scheduled out.
1534 */
1535 if (ctx->task && cpuctx->task_ctx != ctx)
1536 return;
1537
Peter Zijlstra849691a2009-04-06 11:45:12 +02001538 local_irq_save(flags);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001539 if (ctx->is_active)
Peter Zijlstra4af49982009-04-06 11:45:10 +02001540 update_context_time(ctx);
Robert Richter4aeb0b42009-04-29 12:47:03 +02001541 counter->pmu->read(counter);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001542 update_counter_times(counter);
Peter Zijlstra849691a2009-04-06 11:45:12 +02001543 local_irq_restore(flags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001544}
1545
Ingo Molnar04289bb2008-12-11 08:38:42 +01001546static u64 perf_counter_read(struct perf_counter *counter)
Thomas Gleixner0793a612008-12-04 20:12:29 +01001547{
1548 /*
1549 * If counter is enabled and currently active on a CPU, update the
1550 * value in the counter structure:
1551 */
Ingo Molnar6a930702008-12-11 15:17:03 +01001552 if (counter->state == PERF_COUNTER_STATE_ACTIVE) {
Thomas Gleixner0793a612008-12-04 20:12:29 +01001553 smp_call_function_single(counter->oncpu,
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02001554 __perf_counter_read, counter, 1);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11001555 } else if (counter->state == PERF_COUNTER_STATE_INACTIVE) {
1556 update_counter_times(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001557 }
1558
Ingo Molnaree060942008-12-13 09:00:03 +01001559 return atomic64_read(&counter->count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001560}
1561
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001562/*
1563 * Initialize the perf_counter context in a task_struct:
1564 */
1565static void
1566__perf_counter_init_context(struct perf_counter_context *ctx,
1567 struct task_struct *task)
1568{
1569 memset(ctx, 0, sizeof(*ctx));
1570 spin_lock_init(&ctx->lock);
1571 mutex_init(&ctx->mutex);
1572 INIT_LIST_HEAD(&ctx->counter_list);
1573 INIT_LIST_HEAD(&ctx->event_list);
1574 atomic_set(&ctx->refcount, 1);
1575 ctx->task = task;
1576}
1577
Thomas Gleixner0793a612008-12-04 20:12:29 +01001578static struct perf_counter_context *find_get_context(pid_t pid, int cpu)
1579{
Ingo Molnar22a4f652009-06-01 10:13:37 +02001580 struct perf_counter_context *ctx;
1581 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001582 struct task_struct *task;
Paul Mackerras25346b92009-06-01 17:48:12 +10001583 unsigned long flags;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001584 int err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001585
1586 /*
1587 * If cpu is not a wildcard then this is a percpu counter:
1588 */
1589 if (cpu != -1) {
1590 /* Must be root to operate on a CPU counter: */
Peter Zijlstra07647712009-06-11 11:18:36 +02001591 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
Thomas Gleixner0793a612008-12-04 20:12:29 +01001592 return ERR_PTR(-EACCES);
1593
1594 if (cpu < 0 || cpu > num_possible_cpus())
1595 return ERR_PTR(-EINVAL);
1596
1597 /*
1598 * We could be clever and allow to attach a counter to an
1599 * offline CPU and activate it when the CPU comes up, but
1600 * that's for later.
1601 */
1602 if (!cpu_isset(cpu, cpu_online_map))
1603 return ERR_PTR(-ENODEV);
1604
1605 cpuctx = &per_cpu(perf_cpu_context, cpu);
1606 ctx = &cpuctx->ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001607 get_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001608
Thomas Gleixner0793a612008-12-04 20:12:29 +01001609 return ctx;
1610 }
1611
1612 rcu_read_lock();
1613 if (!pid)
1614 task = current;
1615 else
1616 task = find_task_by_vpid(pid);
1617 if (task)
1618 get_task_struct(task);
1619 rcu_read_unlock();
1620
1621 if (!task)
1622 return ERR_PTR(-ESRCH);
1623
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001624 /*
1625 * Can't attach counters to a dying task.
1626 */
1627 err = -ESRCH;
1628 if (task->flags & PF_EXITING)
1629 goto errout;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001630
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001631 /* Reuse ptrace permission checks for now. */
1632 err = -EACCES;
1633 if (!ptrace_may_access(task, PTRACE_MODE_READ))
1634 goto errout;
1635
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001636 retry:
Paul Mackerras25346b92009-06-01 17:48:12 +10001637 ctx = perf_lock_task_context(task, &flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001638 if (ctx) {
Peter Zijlstra71a851b2009-07-10 09:06:56 +02001639 unclone_ctx(ctx);
Paul Mackerras25346b92009-06-01 17:48:12 +10001640 spin_unlock_irqrestore(&ctx->lock, flags);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001641 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001642
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001643 if (!ctx) {
1644 ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001645 err = -ENOMEM;
1646 if (!ctx)
1647 goto errout;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001648 __perf_counter_init_context(ctx, task);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001649 get_ctx(ctx);
1650 if (cmpxchg(&task->perf_counter_ctxp, NULL, ctx)) {
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001651 /*
1652 * We raced with some other task; use
1653 * the context they set.
1654 */
1655 kfree(ctx);
Paul Mackerras25346b92009-06-01 17:48:12 +10001656 goto retry;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001657 }
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001658 get_task_struct(task);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10001659 }
1660
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001661 put_task_struct(task);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001662 return ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001663
1664 errout:
1665 put_task_struct(task);
1666 return ERR_PTR(err);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001667}
1668
Peter Zijlstra592903c2009-03-13 12:21:36 +01001669static void free_counter_rcu(struct rcu_head *head)
1670{
1671 struct perf_counter *counter;
1672
1673 counter = container_of(head, struct perf_counter, rcu_head);
Peter Zijlstra709e50c2009-06-02 14:13:15 +02001674 if (counter->ns)
1675 put_pid_ns(counter->ns);
Peter Zijlstra592903c2009-03-13 12:21:36 +01001676 kfree(counter);
1677}
1678
Peter Zijlstra925d5192009-03-30 19:07:02 +02001679static void perf_pending_sync(struct perf_counter *counter);
1680
Peter Zijlstraf1600952009-03-19 20:26:16 +01001681static void free_counter(struct perf_counter *counter)
1682{
Peter Zijlstra925d5192009-03-30 19:07:02 +02001683 perf_pending_sync(counter);
1684
Peter Zijlstraf3440112009-06-22 13:58:35 +02001685 if (!counter->parent) {
1686 atomic_dec(&nr_counters);
1687 if (counter->attr.mmap)
1688 atomic_dec(&nr_mmap_counters);
1689 if (counter->attr.comm)
1690 atomic_dec(&nr_comm_counters);
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02001691 if (counter->attr.task)
1692 atomic_dec(&nr_task_counters);
Peter Zijlstraf3440112009-06-22 13:58:35 +02001693 }
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02001694
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02001695 if (counter->output) {
1696 fput(counter->output->filp);
1697 counter->output = NULL;
1698 }
1699
Peter Zijlstrae077df42009-03-19 20:26:17 +01001700 if (counter->destroy)
1701 counter->destroy(counter);
1702
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001703 put_ctx(counter->ctx);
Peter Zijlstraf1600952009-03-19 20:26:16 +01001704 call_rcu(&counter->rcu_head, free_counter_rcu);
1705}
1706
Thomas Gleixner0793a612008-12-04 20:12:29 +01001707/*
1708 * Called when the last reference to the file is gone.
1709 */
1710static int perf_release(struct inode *inode, struct file *file)
1711{
1712 struct perf_counter *counter = file->private_data;
1713 struct perf_counter_context *ctx = counter->ctx;
1714
1715 file->private_data = NULL;
1716
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001717 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001718 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01001719 perf_counter_remove_from_context(counter);
Paul Mackerrasd859e292009-01-17 18:10:22 +11001720 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001721
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02001722 mutex_lock(&counter->owner->perf_counter_mutex);
1723 list_del_init(&counter->owner_entry);
1724 mutex_unlock(&counter->owner->perf_counter_mutex);
1725 put_task_struct(counter->owner);
1726
Peter Zijlstraf1600952009-03-19 20:26:16 +01001727 free_counter(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001728
1729 return 0;
1730}
1731
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001732static int perf_counter_read_size(struct perf_counter *counter)
1733{
1734 int entry = sizeof(u64); /* value */
1735 int size = 0;
1736 int nr = 1;
1737
1738 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1739 size += sizeof(u64);
1740
1741 if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1742 size += sizeof(u64);
1743
1744 if (counter->attr.read_format & PERF_FORMAT_ID)
1745 entry += sizeof(u64);
1746
1747 if (counter->attr.read_format & PERF_FORMAT_GROUP) {
1748 nr += counter->group_leader->nr_siblings;
1749 size += sizeof(u64);
1750 }
1751
1752 size += entry * nr;
1753
1754 return size;
1755}
1756
1757static u64 perf_counter_read_value(struct perf_counter *counter)
Peter Zijlstrae53c0992009-07-24 14:42:10 +02001758{
1759 struct perf_counter *child;
1760 u64 total = 0;
1761
1762 total += perf_counter_read(counter);
1763 list_for_each_entry(child, &counter->child_list, child_list)
1764 total += perf_counter_read(child);
1765
1766 return total;
1767}
1768
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001769static int perf_counter_read_entry(struct perf_counter *counter,
1770 u64 read_format, char __user *buf)
1771{
1772 int n = 0, count = 0;
1773 u64 values[2];
1774
1775 values[n++] = perf_counter_read_value(counter);
1776 if (read_format & PERF_FORMAT_ID)
1777 values[n++] = primary_counter_id(counter);
1778
1779 count = n * sizeof(u64);
1780
1781 if (copy_to_user(buf, values, count))
1782 return -EFAULT;
1783
1784 return count;
1785}
1786
1787static int perf_counter_read_group(struct perf_counter *counter,
1788 u64 read_format, char __user *buf)
1789{
1790 struct perf_counter *leader = counter->group_leader, *sub;
1791 int n = 0, size = 0, err = -EFAULT;
1792 u64 values[3];
1793
1794 values[n++] = 1 + leader->nr_siblings;
1795 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
1796 values[n++] = leader->total_time_enabled +
1797 atomic64_read(&leader->child_total_time_enabled);
1798 }
1799 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
1800 values[n++] = leader->total_time_running +
1801 atomic64_read(&leader->child_total_time_running);
1802 }
1803
1804 size = n * sizeof(u64);
1805
1806 if (copy_to_user(buf, values, size))
1807 return -EFAULT;
1808
1809 err = perf_counter_read_entry(leader, read_format, buf + size);
1810 if (err < 0)
1811 return err;
1812
1813 size += err;
1814
1815 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
Peter Zijlstra4464fca2009-08-21 17:19:36 +02001816 err = perf_counter_read_entry(sub, read_format,
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001817 buf + size);
1818 if (err < 0)
1819 return err;
1820
1821 size += err;
1822 }
1823
1824 return size;
1825}
1826
1827static int perf_counter_read_one(struct perf_counter *counter,
1828 u64 read_format, char __user *buf)
1829{
1830 u64 values[4];
1831 int n = 0;
1832
1833 values[n++] = perf_counter_read_value(counter);
1834 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
1835 values[n++] = counter->total_time_enabled +
1836 atomic64_read(&counter->child_total_time_enabled);
1837 }
1838 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
1839 values[n++] = counter->total_time_running +
1840 atomic64_read(&counter->child_total_time_running);
1841 }
1842 if (read_format & PERF_FORMAT_ID)
1843 values[n++] = primary_counter_id(counter);
1844
1845 if (copy_to_user(buf, values, n * sizeof(u64)))
1846 return -EFAULT;
1847
1848 return n * sizeof(u64);
1849}
1850
Thomas Gleixner0793a612008-12-04 20:12:29 +01001851/*
1852 * Read the performance counter - simple non blocking version for now
1853 */
1854static ssize_t
1855perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count)
1856{
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001857 u64 read_format = counter->attr.read_format;
1858 int ret;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001859
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11001860 /*
1861 * Return end-of-file for a read on a counter that is in
1862 * error state (i.e. because it was pinned but it couldn't be
1863 * scheduled on to the CPU at some point).
1864 */
1865 if (counter->state == PERF_COUNTER_STATE_ERROR)
1866 return 0;
1867
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001868 if (count < perf_counter_read_size(counter))
1869 return -ENOSPC;
1870
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001871 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001872 mutex_lock(&counter->child_mutex);
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001873 if (read_format & PERF_FORMAT_GROUP)
1874 ret = perf_counter_read_group(counter, read_format, buf);
1875 else
1876 ret = perf_counter_read_one(counter, read_format, buf);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001877 mutex_unlock(&counter->child_mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001878
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02001879 return ret;
Thomas Gleixner0793a612008-12-04 20:12:29 +01001880}
1881
1882static ssize_t
Thomas Gleixner0793a612008-12-04 20:12:29 +01001883perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
1884{
1885 struct perf_counter *counter = file->private_data;
1886
Peter Zijlstra7b732a72009-03-23 18:22:10 +01001887 return perf_read_hw(counter, buf, count);
Thomas Gleixner0793a612008-12-04 20:12:29 +01001888}
1889
1890static unsigned int perf_poll(struct file *file, poll_table *wait)
1891{
1892 struct perf_counter *counter = file->private_data;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001893 struct perf_mmap_data *data;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001894 unsigned int events = POLL_HUP;
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001895
1896 rcu_read_lock();
1897 data = rcu_dereference(counter->data);
1898 if (data)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02001899 events = atomic_xchg(&data->poll, 0);
Peter Zijlstrac7138f32009-03-24 13:18:16 +01001900 rcu_read_unlock();
Thomas Gleixner0793a612008-12-04 20:12:29 +01001901
1902 poll_wait(file, &counter->waitq, wait);
1903
Thomas Gleixner0793a612008-12-04 20:12:29 +01001904 return events;
1905}
1906
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001907static void perf_counter_reset(struct perf_counter *counter)
1908{
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001909 (void)perf_counter_read(counter);
Paul Mackerras615a3f12009-05-11 15:50:21 +10001910 atomic64_set(&counter->count, 0);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001911 perf_counter_update_userpage(counter);
1912}
1913
Paul Mackerrasc93f7662009-05-28 22:18:17 +10001914/*
1915 * Holding the top-level counter's child_mutex means that any
1916 * descendant process that has inherited this counter will block
1917 * in sync_child_counter if it goes to exit, thus satisfying the
1918 * task existence requirements of perf_counter_enable/disable.
1919 */
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001920static void perf_counter_for_each_child(struct perf_counter *counter,
1921 void (*func)(struct perf_counter *))
1922{
1923 struct perf_counter *child;
1924
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10001925 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001926 mutex_lock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001927 func(counter);
1928 list_for_each_entry(child, &counter->child_list, child_list)
1929 func(child);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02001930 mutex_unlock(&counter->child_mutex);
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001931}
1932
1933static void perf_counter_for_each(struct perf_counter *counter,
1934 void (*func)(struct perf_counter *))
1935{
Peter Zijlstra75f937f2009-06-15 15:05:12 +02001936 struct perf_counter_context *ctx = counter->ctx;
1937 struct perf_counter *sibling;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001938
Peter Zijlstra75f937f2009-06-15 15:05:12 +02001939 WARN_ON_ONCE(ctx->parent_ctx);
1940 mutex_lock(&ctx->mutex);
1941 counter = counter->group_leader;
1942
1943 perf_counter_for_each_child(counter, func);
1944 func(counter);
1945 list_for_each_entry(sibling, &counter->sibling_list, list_entry)
1946 perf_counter_for_each_child(counter, func);
1947 mutex_unlock(&ctx->mutex);
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02001948}
1949
Peter Zijlstra08247e32009-06-02 16:46:57 +02001950static int perf_counter_period(struct perf_counter *counter, u64 __user *arg)
1951{
1952 struct perf_counter_context *ctx = counter->ctx;
1953 unsigned long size;
1954 int ret = 0;
1955 u64 value;
1956
Peter Zijlstra0d486962009-06-02 19:22:16 +02001957 if (!counter->attr.sample_period)
Peter Zijlstra08247e32009-06-02 16:46:57 +02001958 return -EINVAL;
1959
1960 size = copy_from_user(&value, arg, sizeof(value));
1961 if (size != sizeof(value))
1962 return -EFAULT;
1963
1964 if (!value)
1965 return -EINVAL;
1966
1967 spin_lock_irq(&ctx->lock);
Peter Zijlstra0d486962009-06-02 19:22:16 +02001968 if (counter->attr.freq) {
Peter Zijlstradf58ab22009-06-11 11:25:05 +02001969 if (value > sysctl_perf_counter_sample_rate) {
Peter Zijlstra08247e32009-06-02 16:46:57 +02001970 ret = -EINVAL;
1971 goto unlock;
1972 }
1973
Peter Zijlstra0d486962009-06-02 19:22:16 +02001974 counter->attr.sample_freq = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001975 } else {
Peter Zijlstra0d486962009-06-02 19:22:16 +02001976 counter->attr.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001977 counter->hw.sample_period = value;
Peter Zijlstra08247e32009-06-02 16:46:57 +02001978 }
1979unlock:
1980 spin_unlock_irq(&ctx->lock);
1981
1982 return ret;
1983}
1984
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02001985int perf_counter_set_output(struct perf_counter *counter, int output_fd);
1986
Paul Mackerrasd859e292009-01-17 18:10:22 +11001987static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1988{
1989 struct perf_counter *counter = file->private_data;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001990 void (*func)(struct perf_counter *);
1991 u32 flags = arg;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001992
1993 switch (cmd) {
1994 case PERF_COUNTER_IOC_ENABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001995 func = perf_counter_enable;
Paul Mackerrasd859e292009-01-17 18:10:22 +11001996 break;
1997 case PERF_COUNTER_IOC_DISABLE:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02001998 func = perf_counter_disable;
Peter Zijlstra79f14642009-04-06 11:45:07 +02001999 break;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02002000 case PERF_COUNTER_IOC_RESET:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02002001 func = perf_counter_reset;
Peter Zijlstra6de6a7b2009-05-05 17:50:23 +02002002 break;
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02002003
2004 case PERF_COUNTER_IOC_REFRESH:
2005 return perf_counter_refresh(counter, arg);
Peter Zijlstra08247e32009-06-02 16:46:57 +02002006
2007 case PERF_COUNTER_IOC_PERIOD:
2008 return perf_counter_period(counter, (u64 __user *)arg);
2009
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02002010 case PERF_COUNTER_IOC_SET_OUTPUT:
2011 return perf_counter_set_output(counter, arg);
2012
Paul Mackerrasd859e292009-01-17 18:10:22 +11002013 default:
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02002014 return -ENOTTY;
Paul Mackerrasd859e292009-01-17 18:10:22 +11002015 }
Peter Zijlstra3df5eda2009-05-08 18:52:22 +02002016
2017 if (flags & PERF_IOC_FLAG_GROUP)
2018 perf_counter_for_each(counter, func);
2019 else
2020 perf_counter_for_each_child(counter, func);
2021
2022 return 0;
Paul Mackerrasd859e292009-01-17 18:10:22 +11002023}
2024
Peter Zijlstra771d7cd2009-05-25 14:45:26 +02002025int perf_counter_task_enable(void)
2026{
2027 struct perf_counter *counter;
2028
2029 mutex_lock(&current->perf_counter_mutex);
2030 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
2031 perf_counter_for_each_child(counter, perf_counter_enable);
2032 mutex_unlock(&current->perf_counter_mutex);
2033
2034 return 0;
2035}
2036
2037int perf_counter_task_disable(void)
2038{
2039 struct perf_counter *counter;
2040
2041 mutex_lock(&current->perf_counter_mutex);
2042 list_for_each_entry(counter, &current->perf_counter_list, owner_entry)
2043 perf_counter_for_each_child(counter, perf_counter_disable);
2044 mutex_unlock(&current->perf_counter_mutex);
2045
2046 return 0;
2047}
2048
Ingo Molnarf738eb12009-08-18 11:32:24 +02002049#ifndef PERF_COUNTER_INDEX_OFFSET
2050# define PERF_COUNTER_INDEX_OFFSET 0
2051#endif
2052
Peter Zijlstra194002b2009-06-22 16:35:24 +02002053static int perf_counter_index(struct perf_counter *counter)
2054{
2055 if (counter->state != PERF_COUNTER_STATE_ACTIVE)
2056 return 0;
2057
2058 return counter->hw.idx + 1 - PERF_COUNTER_INDEX_OFFSET;
2059}
2060
Peter Zijlstra38ff6672009-03-30 19:07:03 +02002061/*
2062 * Callers need to ensure there can be no nesting of this function, otherwise
2063 * the seqlock logic goes bad. We can not serialize this because the arch
2064 * code calls this from NMI context.
2065 */
2066void perf_counter_update_userpage(struct perf_counter *counter)
Paul Mackerras37d81822009-03-23 18:22:08 +01002067{
Peter Zijlstra38ff6672009-03-30 19:07:03 +02002068 struct perf_counter_mmap_page *userpg;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002069 struct perf_mmap_data *data;
Peter Zijlstra38ff6672009-03-30 19:07:03 +02002070
2071 rcu_read_lock();
2072 data = rcu_dereference(counter->data);
2073 if (!data)
2074 goto unlock;
2075
2076 userpg = data->user_page;
Paul Mackerras37d81822009-03-23 18:22:08 +01002077
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002078 /*
2079 * Disable preemption so as to not let the corresponding user-space
2080 * spin too long if we get preempted.
2081 */
2082 preempt_disable();
Paul Mackerras37d81822009-03-23 18:22:08 +01002083 ++userpg->lock;
Peter Zijlstra92f22a32009-04-02 11:12:04 +02002084 barrier();
Peter Zijlstra194002b2009-06-22 16:35:24 +02002085 userpg->index = perf_counter_index(counter);
Paul Mackerras37d81822009-03-23 18:22:08 +01002086 userpg->offset = atomic64_read(&counter->count);
2087 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
2088 userpg->offset -= atomic64_read(&counter->hw.prev_count);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002089
Peter Zijlstra7f8b4e42009-06-22 14:34:35 +02002090 userpg->time_enabled = counter->total_time_enabled +
2091 atomic64_read(&counter->child_total_time_enabled);
2092
2093 userpg->time_running = counter->total_time_running +
2094 atomic64_read(&counter->child_total_time_running);
2095
Peter Zijlstra92f22a32009-04-02 11:12:04 +02002096 barrier();
Paul Mackerras37d81822009-03-23 18:22:08 +01002097 ++userpg->lock;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002098 preempt_enable();
Peter Zijlstra38ff6672009-03-30 19:07:03 +02002099unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002100 rcu_read_unlock();
Paul Mackerras37d81822009-03-23 18:22:08 +01002101}
2102
2103static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2104{
2105 struct perf_counter *counter = vma->vm_file->private_data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002106 struct perf_mmap_data *data;
2107 int ret = VM_FAULT_SIGBUS;
Paul Mackerras37d81822009-03-23 18:22:08 +01002108
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002109 if (vmf->flags & FAULT_FLAG_MKWRITE) {
2110 if (vmf->pgoff == 0)
2111 ret = 0;
2112 return ret;
2113 }
2114
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002115 rcu_read_lock();
2116 data = rcu_dereference(counter->data);
2117 if (!data)
2118 goto unlock;
Paul Mackerras37d81822009-03-23 18:22:08 +01002119
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002120 if (vmf->pgoff == 0) {
2121 vmf->page = virt_to_page(data->user_page);
2122 } else {
2123 int nr = vmf->pgoff - 1;
2124
2125 if ((unsigned)nr > data->nr_pages)
2126 goto unlock;
2127
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002128 if (vmf->flags & FAULT_FLAG_WRITE)
2129 goto unlock;
2130
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002131 vmf->page = virt_to_page(data->data_pages[nr]);
2132 }
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002133
Paul Mackerras37d81822009-03-23 18:22:08 +01002134 get_page(vmf->page);
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002135 vmf->page->mapping = vma->vm_file->f_mapping;
2136 vmf->page->index = vmf->pgoff;
2137
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002138 ret = 0;
2139unlock:
2140 rcu_read_unlock();
2141
2142 return ret;
2143}
2144
2145static int perf_mmap_data_alloc(struct perf_counter *counter, int nr_pages)
2146{
2147 struct perf_mmap_data *data;
2148 unsigned long size;
2149 int i;
2150
2151 WARN_ON(atomic_read(&counter->mmap_count));
2152
2153 size = sizeof(struct perf_mmap_data);
2154 size += nr_pages * sizeof(void *);
2155
2156 data = kzalloc(size, GFP_KERNEL);
2157 if (!data)
2158 goto fail;
2159
2160 data->user_page = (void *)get_zeroed_page(GFP_KERNEL);
2161 if (!data->user_page)
2162 goto fail_user_page;
2163
2164 for (i = 0; i < nr_pages; i++) {
2165 data->data_pages[i] = (void *)get_zeroed_page(GFP_KERNEL);
2166 if (!data->data_pages[i])
2167 goto fail_data_pages;
2168 }
2169
2170 data->nr_pages = nr_pages;
Peter Zijlstra22c15582009-05-05 17:50:25 +02002171 atomic_set(&data->lock, -1);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002172
2173 rcu_assign_pointer(counter->data, data);
2174
Paul Mackerras37d81822009-03-23 18:22:08 +01002175 return 0;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002176
2177fail_data_pages:
2178 for (i--; i >= 0; i--)
2179 free_page((unsigned long)data->data_pages[i]);
2180
2181 free_page((unsigned long)data->user_page);
2182
2183fail_user_page:
2184 kfree(data);
2185
2186fail:
2187 return -ENOMEM;
2188}
2189
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002190static void perf_mmap_free_page(unsigned long addr)
2191{
Kevin Cernekee5bfd7562009-07-05 12:08:19 -07002192 struct page *page = virt_to_page((void *)addr);
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002193
2194 page->mapping = NULL;
2195 __free_page(page);
2196}
2197
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002198static void __perf_mmap_data_free(struct rcu_head *rcu_head)
2199{
Ingo Molnar22a4f652009-06-01 10:13:37 +02002200 struct perf_mmap_data *data;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002201 int i;
2202
Ingo Molnar22a4f652009-06-01 10:13:37 +02002203 data = container_of(rcu_head, struct perf_mmap_data, rcu_head);
2204
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002205 perf_mmap_free_page((unsigned long)data->user_page);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002206 for (i = 0; i < data->nr_pages; i++)
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002207 perf_mmap_free_page((unsigned long)data->data_pages[i]);
2208
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002209 kfree(data);
2210}
2211
2212static void perf_mmap_data_free(struct perf_counter *counter)
2213{
2214 struct perf_mmap_data *data = counter->data;
2215
2216 WARN_ON(atomic_read(&counter->mmap_count));
2217
2218 rcu_assign_pointer(counter->data, NULL);
2219 call_rcu(&data->rcu_head, __perf_mmap_data_free);
2220}
2221
2222static void perf_mmap_open(struct vm_area_struct *vma)
2223{
2224 struct perf_counter *counter = vma->vm_file->private_data;
2225
2226 atomic_inc(&counter->mmap_count);
2227}
2228
2229static void perf_mmap_close(struct vm_area_struct *vma)
2230{
2231 struct perf_counter *counter = vma->vm_file->private_data;
2232
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10002233 WARN_ON_ONCE(counter->ctx->parent_ctx);
Ingo Molnar22a4f652009-06-01 10:13:37 +02002234 if (atomic_dec_and_mutex_lock(&counter->mmap_count, &counter->mmap_mutex)) {
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002235 struct user_struct *user = current_user();
2236
2237 atomic_long_sub(counter->data->nr_pages + 1, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002238 vma->vm_mm->locked_vm -= counter->data->nr_locked;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002239 perf_mmap_data_free(counter);
2240 mutex_unlock(&counter->mmap_mutex);
2241 }
Paul Mackerras37d81822009-03-23 18:22:08 +01002242}
2243
2244static struct vm_operations_struct perf_mmap_vmops = {
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002245 .open = perf_mmap_open,
2246 .close = perf_mmap_close,
2247 .fault = perf_mmap_fault,
2248 .page_mkwrite = perf_mmap_fault,
Paul Mackerras37d81822009-03-23 18:22:08 +01002249};
2250
2251static int perf_mmap(struct file *file, struct vm_area_struct *vma)
2252{
2253 struct perf_counter *counter = file->private_data;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002254 unsigned long user_locked, user_lock_limit;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002255 struct user_struct *user = current_user();
Ingo Molnar22a4f652009-06-01 10:13:37 +02002256 unsigned long locked, lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002257 unsigned long vma_size;
2258 unsigned long nr_pages;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002259 long user_extra, extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002260 int ret = 0;
Paul Mackerras37d81822009-03-23 18:22:08 +01002261
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002262 if (!(vma->vm_flags & VM_SHARED))
Paul Mackerras37d81822009-03-23 18:22:08 +01002263 return -EINVAL;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002264
2265 vma_size = vma->vm_end - vma->vm_start;
2266 nr_pages = (vma_size / PAGE_SIZE) - 1;
2267
Peter Zijlstra7730d862009-03-25 12:48:31 +01002268 /*
2269 * If we have data pages ensure they're a power-of-two number, so we
2270 * can do bitmasks instead of modulo.
2271 */
2272 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01002273 return -EINVAL;
2274
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002275 if (vma_size != PAGE_SIZE * (1 + nr_pages))
Paul Mackerras37d81822009-03-23 18:22:08 +01002276 return -EINVAL;
2277
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002278 if (vma->vm_pgoff != 0)
2279 return -EINVAL;
Paul Mackerras37d81822009-03-23 18:22:08 +01002280
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10002281 WARN_ON_ONCE(counter->ctx->parent_ctx);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002282 mutex_lock(&counter->mmap_mutex);
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02002283 if (counter->output) {
2284 ret = -EINVAL;
2285 goto unlock;
2286 }
2287
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002288 if (atomic_inc_not_zero(&counter->mmap_count)) {
2289 if (nr_pages != counter->data->nr_pages)
2290 ret = -EINVAL;
2291 goto unlock;
2292 }
2293
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002294 user_extra = nr_pages + 1;
2295 user_lock_limit = sysctl_perf_counter_mlock >> (PAGE_SHIFT - 10);
Ingo Molnara3862d32009-05-24 09:02:37 +02002296
2297 /*
2298 * Increase the limit linearly with more CPUs:
2299 */
2300 user_lock_limit *= num_online_cpus();
2301
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002302 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002303
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002304 extra = 0;
2305 if (user_locked > user_lock_limit)
2306 extra = user_locked - user_lock_limit;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002307
2308 lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur;
2309 lock_limit >>= PAGE_SHIFT;
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002310 locked = vma->vm_mm->locked_vm + extra;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002311
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002312 if ((locked > lock_limit) && !capable(CAP_IPC_LOCK)) {
2313 ret = -EPERM;
2314 goto unlock;
2315 }
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002316
2317 WARN_ON(counter->data);
2318 ret = perf_mmap_data_alloc(counter, nr_pages);
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002319 if (ret)
2320 goto unlock;
2321
2322 atomic_set(&counter->mmap_count, 1);
Peter Zijlstra789f90f2009-05-15 15:19:27 +02002323 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstrac5078f72009-05-05 17:50:24 +02002324 vma->vm_mm->locked_vm += extra;
2325 counter->data->nr_locked = extra;
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002326 if (vma->vm_flags & VM_WRITE)
2327 counter->data->writable = 1;
2328
Peter Zijlstraebb3c4c2009-04-06 11:45:05 +02002329unlock:
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002330 mutex_unlock(&counter->mmap_mutex);
Paul Mackerras37d81822009-03-23 18:22:08 +01002331
Paul Mackerras37d81822009-03-23 18:22:08 +01002332 vma->vm_flags |= VM_RESERVED;
2333 vma->vm_ops = &perf_mmap_vmops;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002334
2335 return ret;
Paul Mackerras37d81822009-03-23 18:22:08 +01002336}
2337
Peter Zijlstra3c446b32009-04-06 11:45:01 +02002338static int perf_fasync(int fd, struct file *filp, int on)
2339{
Peter Zijlstra3c446b32009-04-06 11:45:01 +02002340 struct inode *inode = filp->f_path.dentry->d_inode;
Ingo Molnar22a4f652009-06-01 10:13:37 +02002341 struct perf_counter *counter = filp->private_data;
Peter Zijlstra3c446b32009-04-06 11:45:01 +02002342 int retval;
2343
2344 mutex_lock(&inode->i_mutex);
2345 retval = fasync_helper(fd, filp, on, &counter->fasync);
2346 mutex_unlock(&inode->i_mutex);
2347
2348 if (retval < 0)
2349 return retval;
2350
2351 return 0;
2352}
2353
Thomas Gleixner0793a612008-12-04 20:12:29 +01002354static const struct file_operations perf_fops = {
2355 .release = perf_release,
2356 .read = perf_read,
2357 .poll = perf_poll,
Paul Mackerrasd859e292009-01-17 18:10:22 +11002358 .unlocked_ioctl = perf_ioctl,
2359 .compat_ioctl = perf_ioctl,
Paul Mackerras37d81822009-03-23 18:22:08 +01002360 .mmap = perf_mmap,
Peter Zijlstra3c446b32009-04-06 11:45:01 +02002361 .fasync = perf_fasync,
Thomas Gleixner0793a612008-12-04 20:12:29 +01002362};
2363
Peter Zijlstra15dbf272009-03-13 12:21:32 +01002364/*
Peter Zijlstra925d5192009-03-30 19:07:02 +02002365 * Perf counter wakeup
2366 *
2367 * If there's data, ensure we set the poll() state and publish everything
2368 * to user-space before waking everybody up.
2369 */
2370
2371void perf_counter_wakeup(struct perf_counter *counter)
2372{
Peter Zijlstra925d5192009-03-30 19:07:02 +02002373 wake_up_all(&counter->waitq);
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002374
2375 if (counter->pending_kill) {
2376 kill_fasync(&counter->fasync, SIGIO, counter->pending_kill);
2377 counter->pending_kill = 0;
2378 }
Peter Zijlstra925d5192009-03-30 19:07:02 +02002379}
2380
2381/*
2382 * Pending wakeups
2383 *
2384 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
2385 *
2386 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
2387 * single linked list and use cmpxchg() to add entries lockless.
2388 */
2389
Peter Zijlstra79f14642009-04-06 11:45:07 +02002390static void perf_pending_counter(struct perf_pending_entry *entry)
2391{
2392 struct perf_counter *counter = container_of(entry,
2393 struct perf_counter, pending);
2394
2395 if (counter->pending_disable) {
2396 counter->pending_disable = 0;
Peter Zijlstra970892a2009-08-13 11:47:54 +02002397 __perf_counter_disable(counter);
Peter Zijlstra79f14642009-04-06 11:45:07 +02002398 }
2399
2400 if (counter->pending_wakeup) {
2401 counter->pending_wakeup = 0;
2402 perf_counter_wakeup(counter);
2403 }
2404}
2405
Peter Zijlstra671dec52009-04-06 11:45:02 +02002406#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002407
Peter Zijlstra671dec52009-04-06 11:45:02 +02002408static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
Peter Zijlstra925d5192009-03-30 19:07:02 +02002409 PENDING_TAIL,
2410};
2411
Peter Zijlstra671dec52009-04-06 11:45:02 +02002412static void perf_pending_queue(struct perf_pending_entry *entry,
2413 void (*func)(struct perf_pending_entry *))
Peter Zijlstra925d5192009-03-30 19:07:02 +02002414{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002415 struct perf_pending_entry **head;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002416
Peter Zijlstra671dec52009-04-06 11:45:02 +02002417 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
Peter Zijlstra925d5192009-03-30 19:07:02 +02002418 return;
2419
Peter Zijlstra671dec52009-04-06 11:45:02 +02002420 entry->func = func;
2421
2422 head = &get_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002423
2424 do {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002425 entry->next = *head;
2426 } while (cmpxchg(head, entry->next, entry) != entry->next);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002427
2428 set_perf_counter_pending();
2429
Peter Zijlstra671dec52009-04-06 11:45:02 +02002430 put_cpu_var(perf_pending_head);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002431}
2432
2433static int __perf_pending_run(void)
2434{
Peter Zijlstra671dec52009-04-06 11:45:02 +02002435 struct perf_pending_entry *list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002436 int nr = 0;
2437
Peter Zijlstra671dec52009-04-06 11:45:02 +02002438 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002439 while (list != PENDING_TAIL) {
Peter Zijlstra671dec52009-04-06 11:45:02 +02002440 void (*func)(struct perf_pending_entry *);
2441 struct perf_pending_entry *entry = list;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002442
2443 list = list->next;
2444
Peter Zijlstra671dec52009-04-06 11:45:02 +02002445 func = entry->func;
2446 entry->next = NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002447 /*
2448 * Ensure we observe the unqueue before we issue the wakeup,
2449 * so that we won't be waiting forever.
2450 * -- see perf_not_pending().
2451 */
2452 smp_wmb();
2453
Peter Zijlstra671dec52009-04-06 11:45:02 +02002454 func(entry);
Peter Zijlstra925d5192009-03-30 19:07:02 +02002455 nr++;
2456 }
2457
2458 return nr;
2459}
2460
2461static inline int perf_not_pending(struct perf_counter *counter)
2462{
2463 /*
2464 * If we flush on whatever cpu we run, there is a chance we don't
2465 * need to wait.
2466 */
2467 get_cpu();
2468 __perf_pending_run();
2469 put_cpu();
2470
2471 /*
2472 * Ensure we see the proper queue state before going to sleep
2473 * so that we do not miss the wakeup. -- see perf_pending_handle()
2474 */
2475 smp_rmb();
Peter Zijlstra671dec52009-04-06 11:45:02 +02002476 return counter->pending.next == NULL;
Peter Zijlstra925d5192009-03-30 19:07:02 +02002477}
2478
2479static void perf_pending_sync(struct perf_counter *counter)
2480{
2481 wait_event(counter->waitq, perf_not_pending(counter));
2482}
2483
2484void perf_counter_do_pending(void)
2485{
2486 __perf_pending_run();
2487}
2488
2489/*
Peter Zijlstra394ee072009-03-30 19:07:14 +02002490 * Callchain support -- arch specific
2491 */
2492
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002493__weak struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
Peter Zijlstra394ee072009-03-30 19:07:14 +02002494{
2495 return NULL;
2496}
2497
2498/*
Peter Zijlstra0322cd62009-03-19 20:26:19 +01002499 * Output
2500 */
2501
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002502struct perf_output_handle {
2503 struct perf_counter *counter;
2504 struct perf_mmap_data *data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002505 unsigned long head;
2506 unsigned long offset;
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002507 int nmi;
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002508 int sample;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002509 int locked;
2510 unsigned long flags;
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002511};
2512
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002513static bool perf_output_space(struct perf_mmap_data *data,
2514 unsigned int offset, unsigned int head)
2515{
2516 unsigned long tail;
2517 unsigned long mask;
2518
2519 if (!data->writable)
2520 return true;
2521
2522 mask = (data->nr_pages << PAGE_SHIFT) - 1;
2523 /*
2524 * Userspace could choose to issue a mb() before updating the tail
2525 * pointer. So that all reads will be completed before the write is
2526 * issued.
2527 */
2528 tail = ACCESS_ONCE(data->user_page->data_tail);
2529 smp_rmb();
2530
2531 offset = (offset - tail) & mask;
2532 head = (head - tail) & mask;
2533
2534 if ((int)(head - offset) < 0)
2535 return false;
2536
2537 return true;
2538}
2539
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002540static void perf_output_wakeup(struct perf_output_handle *handle)
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002541{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002542 atomic_set(&handle->data->poll, POLL_IN);
2543
Peter Zijlstra671dec52009-04-06 11:45:02 +02002544 if (handle->nmi) {
Peter Zijlstra79f14642009-04-06 11:45:07 +02002545 handle->counter->pending_wakeup = 1;
Peter Zijlstra671dec52009-04-06 11:45:02 +02002546 perf_pending_queue(&handle->counter->pending,
Peter Zijlstra79f14642009-04-06 11:45:07 +02002547 perf_pending_counter);
Peter Zijlstra671dec52009-04-06 11:45:02 +02002548 } else
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002549 perf_counter_wakeup(handle->counter);
2550}
2551
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002552/*
2553 * Curious locking construct.
2554 *
2555 * We need to ensure a later event doesn't publish a head when a former
2556 * event isn't done writing. However since we need to deal with NMIs we
2557 * cannot fully serialize things.
2558 *
2559 * What we do is serialize between CPUs so we only have to deal with NMI
2560 * nesting on a single CPU.
2561 *
2562 * We only publish the head (and generate a wakeup) when the outer-most
2563 * event completes.
2564 */
2565static void perf_output_lock(struct perf_output_handle *handle)
2566{
2567 struct perf_mmap_data *data = handle->data;
2568 int cpu;
2569
2570 handle->locked = 0;
2571
2572 local_irq_save(handle->flags);
2573 cpu = smp_processor_id();
2574
2575 if (in_nmi() && atomic_read(&data->lock) == cpu)
2576 return;
2577
Peter Zijlstra22c15582009-05-05 17:50:25 +02002578 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002579 cpu_relax();
2580
2581 handle->locked = 1;
2582}
2583
2584static void perf_output_unlock(struct perf_output_handle *handle)
2585{
2586 struct perf_mmap_data *data = handle->data;
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002587 unsigned long head;
2588 int cpu;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002589
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002590 data->done_head = data->head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002591
2592 if (!handle->locked)
2593 goto out;
2594
2595again:
2596 /*
2597 * The xchg implies a full barrier that ensures all writes are done
2598 * before we publish the new head, matched by a rmb() in userspace when
2599 * reading this position.
2600 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002601 while ((head = atomic_long_xchg(&data->done_head, 0)))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002602 data->user_page->data_head = head;
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002603
2604 /*
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002605 * NMI can happen here, which means we can miss a done_head update.
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002606 */
2607
Peter Zijlstra22c15582009-05-05 17:50:25 +02002608 cpu = atomic_xchg(&data->lock, -1);
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002609 WARN_ON_ONCE(cpu != smp_processor_id());
2610
2611 /*
2612 * Therefore we have to validate we did not indeed do so.
2613 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002614 if (unlikely(atomic_long_read(&data->done_head))) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002615 /*
2616 * Since we had it locked, we can lock it again.
2617 */
Peter Zijlstra22c15582009-05-05 17:50:25 +02002618 while (atomic_cmpxchg(&data->lock, -1, cpu) != -1)
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002619 cpu_relax();
2620
2621 goto again;
2622 }
2623
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002624 if (atomic_xchg(&data->wakeup, 0))
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002625 perf_output_wakeup(handle);
2626out:
2627 local_irq_restore(handle->flags);
2628}
2629
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002630static void perf_output_copy(struct perf_output_handle *handle,
Peter Zijlstra089dd792009-06-05 14:04:55 +02002631 const void *buf, unsigned int len)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002632{
2633 unsigned int pages_mask;
2634 unsigned int offset;
2635 unsigned int size;
2636 void **pages;
2637
2638 offset = handle->offset;
2639 pages_mask = handle->data->nr_pages - 1;
2640 pages = handle->data->data_pages;
2641
2642 do {
2643 unsigned int page_offset;
2644 int nr;
2645
2646 nr = (offset >> PAGE_SHIFT) & pages_mask;
2647 page_offset = offset & (PAGE_SIZE - 1);
2648 size = min_t(unsigned int, PAGE_SIZE - page_offset, len);
2649
2650 memcpy(pages[nr] + page_offset, buf, size);
2651
2652 len -= size;
2653 buf += size;
2654 offset += size;
2655 } while (len);
2656
2657 handle->offset = offset;
Peter Zijlstra63e35b22009-03-25 12:30:24 +01002658
Peter Zijlstra53020fe2009-05-13 21:26:19 +02002659 /*
2660 * Check we didn't copy past our reservation window, taking the
2661 * possible unsigned int wrap into account.
2662 */
Peter Zijlstra8e3747c2009-06-02 16:16:02 +02002663 WARN_ON_ONCE(((long)(handle->head - handle->offset)) < 0);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002664}
2665
Peter Zijlstra5c148192009-03-25 12:30:23 +01002666#define perf_output_put(handle, x) \
2667 perf_output_copy((handle), &(x), sizeof(x))
2668
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002669static int perf_output_begin(struct perf_output_handle *handle,
2670 struct perf_counter *counter, unsigned int size,
2671 int nmi, int sample)
2672{
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02002673 struct perf_counter *output_counter;
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002674 struct perf_mmap_data *data;
2675 unsigned int offset, head;
2676 int have_lost;
2677 struct {
2678 struct perf_event_header header;
2679 u64 id;
2680 u64 lost;
2681 } lost_event;
2682
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02002683 rcu_read_lock();
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002684 /*
2685 * For inherited counters we send all the output towards the parent.
2686 */
2687 if (counter->parent)
2688 counter = counter->parent;
2689
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02002690 output_counter = rcu_dereference(counter->output);
2691 if (output_counter)
2692 counter = output_counter;
2693
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002694 data = rcu_dereference(counter->data);
2695 if (!data)
2696 goto out;
2697
2698 handle->data = data;
2699 handle->counter = counter;
2700 handle->nmi = nmi;
2701 handle->sample = sample;
2702
2703 if (!data->nr_pages)
2704 goto fail;
2705
2706 have_lost = atomic_read(&data->lost);
2707 if (have_lost)
2708 size += sizeof(lost_event);
2709
2710 perf_output_lock(handle);
2711
2712 do {
2713 offset = head = atomic_long_read(&data->head);
2714 head += size;
2715 if (unlikely(!perf_output_space(data, offset, head)))
2716 goto fail;
2717 } while (atomic_long_cmpxchg(&data->head, offset, head) != offset);
2718
2719 handle->offset = offset;
2720 handle->head = head;
2721
2722 if ((offset >> PAGE_SHIFT) != (head >> PAGE_SHIFT))
2723 atomic_set(&data->wakeup, 1);
2724
2725 if (have_lost) {
2726 lost_event.header.type = PERF_EVENT_LOST;
2727 lost_event.header.misc = 0;
2728 lost_event.header.size = sizeof(lost_event);
2729 lost_event.id = counter->id;
2730 lost_event.lost = atomic_xchg(&data->lost, 0);
2731
2732 perf_output_put(handle, lost_event);
2733 }
2734
2735 return 0;
2736
2737fail:
2738 atomic_inc(&data->lost);
2739 perf_output_unlock(handle);
2740out:
2741 rcu_read_unlock();
2742
2743 return -ENOSPC;
2744}
2745
Peter Zijlstra78d613e2009-03-30 19:07:11 +02002746static void perf_output_end(struct perf_output_handle *handle)
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002747{
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002748 struct perf_counter *counter = handle->counter;
2749 struct perf_mmap_data *data = handle->data;
2750
Peter Zijlstra0d486962009-06-02 19:22:16 +02002751 int wakeup_events = counter->attr.wakeup_events;
Peter Zijlstrac4578102009-04-02 11:12:01 +02002752
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01002753 if (handle->sample && wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002754 int events = atomic_inc_return(&data->events);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002755 if (events >= wakeup_events) {
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002756 atomic_sub(wakeup_events, &data->events);
Peter Zijlstrac66de4a2009-05-05 17:50:22 +02002757 atomic_set(&data->wakeup, 1);
Peter Zijlstrac4578102009-04-02 11:12:01 +02002758 }
Peter Zijlstrac33a0bc2009-05-01 12:23:16 +02002759 }
2760
2761 perf_output_unlock(handle);
Peter Zijlstrab9cacc72009-03-25 12:30:22 +01002762 rcu_read_unlock();
2763}
2764
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002765static u32 perf_counter_pid(struct perf_counter *counter, struct task_struct *p)
2766{
2767 /*
2768 * only top level counters have the pid namespace they were created in
2769 */
2770 if (counter->parent)
2771 counter = counter->parent;
2772
2773 return task_tgid_nr_ns(p, counter->ns);
2774}
2775
2776static u32 perf_counter_tid(struct perf_counter *counter, struct task_struct *p)
2777{
2778 /*
2779 * only top level counters have the pid namespace they were created in
2780 */
2781 if (counter->parent)
2782 counter = counter->parent;
2783
2784 return task_pid_nr_ns(p, counter->ns);
2785}
2786
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02002787static void perf_output_read_one(struct perf_output_handle *handle,
2788 struct perf_counter *counter)
2789{
2790 u64 read_format = counter->attr.read_format;
2791 u64 values[4];
2792 int n = 0;
2793
2794 values[n++] = atomic64_read(&counter->count);
2795 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
2796 values[n++] = counter->total_time_enabled +
2797 atomic64_read(&counter->child_total_time_enabled);
2798 }
2799 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
2800 values[n++] = counter->total_time_running +
2801 atomic64_read(&counter->child_total_time_running);
2802 }
2803 if (read_format & PERF_FORMAT_ID)
2804 values[n++] = primary_counter_id(counter);
2805
2806 perf_output_copy(handle, values, n * sizeof(u64));
2807}
2808
2809/*
2810 * XXX PERF_FORMAT_GROUP vs inherited counters seems difficult.
2811 */
2812static void perf_output_read_group(struct perf_output_handle *handle,
2813 struct perf_counter *counter)
2814{
2815 struct perf_counter *leader = counter->group_leader, *sub;
2816 u64 read_format = counter->attr.read_format;
2817 u64 values[5];
2818 int n = 0;
2819
2820 values[n++] = 1 + leader->nr_siblings;
2821
2822 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2823 values[n++] = leader->total_time_enabled;
2824
2825 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2826 values[n++] = leader->total_time_running;
2827
2828 if (leader != counter)
2829 leader->pmu->read(leader);
2830
2831 values[n++] = atomic64_read(&leader->count);
2832 if (read_format & PERF_FORMAT_ID)
2833 values[n++] = primary_counter_id(leader);
2834
2835 perf_output_copy(handle, values, n * sizeof(u64));
2836
2837 list_for_each_entry(sub, &leader->sibling_list, list_entry) {
2838 n = 0;
2839
2840 if (sub != counter)
2841 sub->pmu->read(sub);
2842
2843 values[n++] = atomic64_read(&sub->count);
2844 if (read_format & PERF_FORMAT_ID)
2845 values[n++] = primary_counter_id(sub);
2846
2847 perf_output_copy(handle, values, n * sizeof(u64));
2848 }
2849}
2850
2851static void perf_output_read(struct perf_output_handle *handle,
2852 struct perf_counter *counter)
2853{
2854 if (counter->attr.read_format & PERF_FORMAT_GROUP)
2855 perf_output_read_group(handle, counter);
2856 else
2857 perf_output_read_one(handle, counter);
2858}
2859
Ingo Molnar28402972009-08-13 10:13:22 +02002860void perf_counter_output(struct perf_counter *counter, int nmi,
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002861 struct perf_sample_data *data)
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002862{
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002863 int ret;
Peter Zijlstra0d486962009-06-02 19:22:16 +02002864 u64 sample_type = counter->attr.sample_type;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002865 struct perf_output_handle handle;
2866 struct perf_event_header header;
2867 u64 ip;
Peter Zijlstra5c148192009-03-25 12:30:23 +01002868 struct {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002869 u32 pid, tid;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002870 } tid_entry;
Peter Zijlstra394ee072009-03-30 19:07:14 +02002871 struct perf_callchain_entry *callchain = NULL;
2872 int callchain_size = 0;
Peter Zijlstra339f7c92009-04-06 11:45:06 +02002873 u64 time;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002874 struct {
2875 u32 cpu, reserved;
2876 } cpu_entry;
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002877
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002878 header.type = PERF_EVENT_SAMPLE;
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002879 header.size = sizeof(header);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01002880
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002881 header.misc = 0;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002882 header.misc |= perf_misc_flags(data->regs);
Peter Zijlstra6fab0192009-04-08 15:01:26 +02002883
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002884 if (sample_type & PERF_SAMPLE_IP) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002885 ip = perf_instruction_pointer(data->regs);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002886 header.size += sizeof(ip);
2887 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002888
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002889 if (sample_type & PERF_SAMPLE_TID) {
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002890 /* namespace issues */
Peter Zijlstra709e50c2009-06-02 14:13:15 +02002891 tid_entry.pid = perf_counter_pid(counter, current);
2892 tid_entry.tid = perf_counter_tid(counter, current);
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002893
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002894 header.size += sizeof(tid_entry);
2895 }
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002896
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002897 if (sample_type & PERF_SAMPLE_TIME) {
Peter Zijlstra4d855452009-04-08 15:01:32 +02002898 /*
2899 * Maybe do better on x86 and provide cpu_clock_nmi()
2900 */
2901 time = sched_clock();
2902
Peter Zijlstra4d855452009-04-08 15:01:32 +02002903 header.size += sizeof(u64);
2904 }
2905
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002906 if (sample_type & PERF_SAMPLE_ADDR)
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002907 header.size += sizeof(u64);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002908
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002909 if (sample_type & PERF_SAMPLE_ID)
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002910 header.size += sizeof(u64);
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002911
Peter Zijlstra7f453c22009-07-21 13:19:40 +02002912 if (sample_type & PERF_SAMPLE_STREAM_ID)
2913 header.size += sizeof(u64);
2914
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002915 if (sample_type & PERF_SAMPLE_CPU) {
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002916 header.size += sizeof(cpu_entry);
2917
2918 cpu_entry.cpu = raw_smp_processor_id();
Arjan van de Ven0dc3d522009-07-21 00:55:05 -07002919 cpu_entry.reserved = 0;
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002920 }
2921
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002922 if (sample_type & PERF_SAMPLE_PERIOD)
Peter Zijlstra689802b2009-06-05 15:05:43 +02002923 header.size += sizeof(u64);
Peter Zijlstra689802b2009-06-05 15:05:43 +02002924
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02002925 if (sample_type & PERF_SAMPLE_READ)
2926 header.size += perf_counter_read_size(counter);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002927
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002928 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002929 callchain = perf_callchain(data->regs);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002930
2931 if (callchain) {
Peter Zijlstra9c03d882009-04-06 11:45:00 +02002932 callchain_size = (1 + callchain->nr) * sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002933 header.size += callchain_size;
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002934 } else
2935 header.size += sizeof(u64);
Peter Zijlstra394ee072009-03-30 19:07:14 +02002936 }
2937
Frederic Weisbecker3a43ce62009-08-08 04:26:37 +02002938 if (sample_type & PERF_SAMPLE_RAW) {
Peter Zijlstraa0445602009-08-10 11:16:52 +02002939 int size = sizeof(u32);
2940
2941 if (data->raw)
2942 size += data->raw->size;
2943 else
2944 size += sizeof(u32);
2945
2946 WARN_ON_ONCE(size & (sizeof(u64)-1));
2947 header.size += size;
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02002948 }
2949
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02002950 ret = perf_output_begin(&handle, counter, header.size, nmi, 1);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002951 if (ret)
2952 return;
Peter Zijlstraea5d20c2009-03-25 12:30:25 +01002953
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002954 perf_output_put(&handle, header);
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002955
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002956 if (sample_type & PERF_SAMPLE_IP)
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002957 perf_output_put(&handle, ip);
2958
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002959 if (sample_type & PERF_SAMPLE_TID)
Peter Zijlstra5ed00412009-03-30 19:07:12 +02002960 perf_output_put(&handle, tid_entry);
2961
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002962 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra4d855452009-04-08 15:01:32 +02002963 perf_output_put(&handle, time);
2964
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002965 if (sample_type & PERF_SAMPLE_ADDR)
Peter Zijlstradf1a1322009-06-10 21:02:22 +02002966 perf_output_put(&handle, data->addr);
Peter Zijlstra78f13e92009-04-08 15:01:33 +02002967
Peter Zijlstra7f453c22009-07-21 13:19:40 +02002968 if (sample_type & PERF_SAMPLE_ID) {
2969 u64 id = primary_counter_id(counter);
2970
2971 perf_output_put(&handle, id);
2972 }
2973
2974 if (sample_type & PERF_SAMPLE_STREAM_ID)
Peter Zijlstraac4bcf82009-06-05 14:44:52 +02002975 perf_output_put(&handle, counter->id);
Peter Zijlstraa85f61a2009-05-08 18:52:23 +02002976
Peter Zijlstrab23f3322009-06-02 15:13:03 +02002977 if (sample_type & PERF_SAMPLE_CPU)
Peter Zijlstraf370e1e2009-05-08 18:52:24 +02002978 perf_output_put(&handle, cpu_entry);
2979
Peter Zijlstra689802b2009-06-05 15:05:43 +02002980 if (sample_type & PERF_SAMPLE_PERIOD)
Peter Zijlstra9e350de2009-06-10 21:34:59 +02002981 perf_output_put(&handle, data->period);
Peter Zijlstra689802b2009-06-05 15:05:43 +02002982
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02002983 if (sample_type & PERF_SAMPLE_READ)
2984 perf_output_read(&handle, counter);
Peter Zijlstra8a057d82009-04-02 11:11:59 +02002985
Peter Zijlstrae6e18ec2009-06-25 11:27:12 +02002986 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
2987 if (callchain)
2988 perf_output_copy(&handle, callchain, callchain_size);
2989 else {
2990 u64 nr = 0;
2991 perf_output_put(&handle, nr);
2992 }
2993 }
Peter Zijlstra394ee072009-03-30 19:07:14 +02002994
Peter Zijlstraa0445602009-08-10 11:16:52 +02002995 if (sample_type & PERF_SAMPLE_RAW) {
2996 if (data->raw) {
2997 perf_output_put(&handle, data->raw->size);
2998 perf_output_copy(&handle, data->raw->data, data->raw->size);
2999 } else {
3000 struct {
3001 u32 size;
3002 u32 data;
3003 } raw = {
3004 .size = sizeof(u32),
3005 .data = 0,
3006 };
3007 perf_output_put(&handle, raw);
3008 }
3009 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02003010
Peter Zijlstra5ed00412009-03-30 19:07:12 +02003011 perf_output_end(&handle);
Peter Zijlstra7b732a72009-03-23 18:22:10 +01003012}
3013
Peter Zijlstra0322cd62009-03-19 20:26:19 +01003014/*
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003015 * read event
3016 */
3017
3018struct perf_read_event {
3019 struct perf_event_header header;
3020
3021 u32 pid;
3022 u32 tid;
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003023};
3024
3025static void
3026perf_counter_read_event(struct perf_counter *counter,
3027 struct task_struct *task)
3028{
3029 struct perf_output_handle handle;
3030 struct perf_read_event event = {
3031 .header = {
3032 .type = PERF_EVENT_READ,
3033 .misc = 0,
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02003034 .size = sizeof(event) + perf_counter_read_size(counter),
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003035 },
3036 .pid = perf_counter_pid(counter, task),
3037 .tid = perf_counter_tid(counter, task),
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003038 };
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02003039 int ret;
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003040
3041 ret = perf_output_begin(&handle, counter, event.header.size, 0, 0);
3042 if (ret)
3043 return;
3044
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02003045 perf_output_put(&handle, event);
3046 perf_output_read(&handle, counter);
3047
Peter Zijlstra38b200d2009-06-23 20:13:11 +02003048 perf_output_end(&handle);
3049}
3050
3051/*
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003052 * task tracking -- fork/exit
3053 *
3054 * enabled by: attr.comm | attr.mmap | attr.task
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003055 */
3056
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003057struct perf_task_event {
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003058 struct task_struct *task;
3059 struct perf_counter_context *task_ctx;
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003060
3061 struct {
3062 struct perf_event_header header;
3063
3064 u32 pid;
3065 u32 ppid;
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003066 u32 tid;
3067 u32 ptid;
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003068 } event;
3069};
3070
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003071static void perf_counter_task_output(struct perf_counter *counter,
3072 struct perf_task_event *task_event)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003073{
3074 struct perf_output_handle handle;
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003075 int size = task_event->event.header.size;
3076 struct task_struct *task = task_event->task;
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003077 int ret = perf_output_begin(&handle, counter, size, 0, 0);
3078
3079 if (ret)
3080 return;
3081
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003082 task_event->event.pid = perf_counter_pid(counter, task);
Peter Zijlstra94d5d1b2009-08-13 16:14:42 +02003083 task_event->event.ppid = perf_counter_pid(counter, current);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003084
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003085 task_event->event.tid = perf_counter_tid(counter, task);
Peter Zijlstra94d5d1b2009-08-13 16:14:42 +02003086 task_event->event.ptid = perf_counter_tid(counter, current);
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003087
3088 perf_output_put(&handle, task_event->event);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003089 perf_output_end(&handle);
3090}
3091
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003092static int perf_counter_task_match(struct perf_counter *counter)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003093{
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003094 if (counter->attr.comm || counter->attr.mmap || counter->attr.task)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003095 return 1;
3096
3097 return 0;
3098}
3099
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003100static void perf_counter_task_ctx(struct perf_counter_context *ctx,
3101 struct perf_task_event *task_event)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003102{
3103 struct perf_counter *counter;
3104
3105 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
3106 return;
3107
3108 rcu_read_lock();
3109 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003110 if (perf_counter_task_match(counter))
3111 perf_counter_task_output(counter, task_event);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003112 }
3113 rcu_read_unlock();
3114}
3115
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003116static void perf_counter_task_event(struct perf_task_event *task_event)
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003117{
3118 struct perf_cpu_context *cpuctx;
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003119 struct perf_counter_context *ctx = task_event->task_ctx;
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003120
3121 cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003122 perf_counter_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003123 put_cpu_var(perf_cpu_context);
3124
3125 rcu_read_lock();
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003126 if (!ctx)
3127 ctx = rcu_dereference(task_event->task->perf_counter_ctxp);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003128 if (ctx)
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003129 perf_counter_task_ctx(ctx, task_event);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003130 rcu_read_unlock();
3131}
3132
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003133static void perf_counter_task(struct task_struct *task,
3134 struct perf_counter_context *task_ctx,
3135 int new)
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003136{
3137 struct perf_task_event task_event;
3138
3139 if (!atomic_read(&nr_comm_counters) &&
3140 !atomic_read(&nr_mmap_counters) &&
3141 !atomic_read(&nr_task_counters))
3142 return;
3143
3144 task_event = (struct perf_task_event){
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003145 .task = task,
3146 .task_ctx = task_ctx,
3147 .event = {
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02003148 .header = {
3149 .type = new ? PERF_EVENT_FORK : PERF_EVENT_EXIT,
3150 .misc = 0,
3151 .size = sizeof(task_event.event),
3152 },
3153 /* .pid */
3154 /* .ppid */
3155 /* .tid */
3156 /* .ptid */
3157 },
3158 };
3159
3160 perf_counter_task_event(&task_event);
3161}
3162
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003163void perf_counter_fork(struct task_struct *task)
3164{
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02003165 perf_counter_task(task, NULL, 1);
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003166}
3167
3168/*
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003169 * comm tracking
3170 */
3171
3172struct perf_comm_event {
Ingo Molnar22a4f652009-06-01 10:13:37 +02003173 struct task_struct *task;
3174 char *comm;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003175 int comm_size;
3176
3177 struct {
3178 struct perf_event_header header;
3179
3180 u32 pid;
3181 u32 tid;
3182 } event;
3183};
3184
3185static void perf_counter_comm_output(struct perf_counter *counter,
3186 struct perf_comm_event *comm_event)
3187{
3188 struct perf_output_handle handle;
3189 int size = comm_event->event.header.size;
3190 int ret = perf_output_begin(&handle, counter, size, 0, 0);
3191
3192 if (ret)
3193 return;
3194
Peter Zijlstra709e50c2009-06-02 14:13:15 +02003195 comm_event->event.pid = perf_counter_pid(counter, comm_event->task);
3196 comm_event->event.tid = perf_counter_tid(counter, comm_event->task);
3197
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003198 perf_output_put(&handle, comm_event->event);
3199 perf_output_copy(&handle, comm_event->comm,
3200 comm_event->comm_size);
3201 perf_output_end(&handle);
3202}
3203
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003204static int perf_counter_comm_match(struct perf_counter *counter)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003205{
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003206 if (counter->attr.comm)
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003207 return 1;
3208
3209 return 0;
3210}
3211
3212static void perf_counter_comm_ctx(struct perf_counter_context *ctx,
3213 struct perf_comm_event *comm_event)
3214{
3215 struct perf_counter *counter;
3216
3217 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
3218 return;
3219
3220 rcu_read_lock();
3221 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003222 if (perf_counter_comm_match(counter))
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003223 perf_counter_comm_output(counter, comm_event);
3224 }
3225 rcu_read_unlock();
3226}
3227
3228static void perf_counter_comm_event(struct perf_comm_event *comm_event)
3229{
3230 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02003231 struct perf_counter_context *ctx;
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003232 unsigned int size;
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003233 char comm[TASK_COMM_LEN];
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003234
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003235 memset(comm, 0, sizeof(comm));
3236 strncpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnar888fcee2009-04-09 09:48:22 +02003237 size = ALIGN(strlen(comm)+1, sizeof(u64));
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003238
3239 comm_event->comm = comm;
3240 comm_event->comm_size = size;
3241
3242 comm_event->event.header.size = sizeof(comm_event->event) + size;
3243
3244 cpuctx = &get_cpu_var(perf_cpu_context);
3245 perf_counter_comm_ctx(&cpuctx->ctx, comm_event);
3246 put_cpu_var(perf_cpu_context);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003247
3248 rcu_read_lock();
3249 /*
3250 * doesn't really matter which of the child contexts the
3251 * events ends up in.
3252 */
3253 ctx = rcu_dereference(current->perf_counter_ctxp);
3254 if (ctx)
3255 perf_counter_comm_ctx(ctx, comm_event);
3256 rcu_read_unlock();
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003257}
3258
3259void perf_counter_comm(struct task_struct *task)
3260{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003261 struct perf_comm_event comm_event;
3262
Paul Mackerras57e79862009-06-30 16:07:19 +10003263 if (task->perf_counter_ctxp)
3264 perf_counter_enable_on_exec(task);
3265
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003266 if (!atomic_read(&nr_comm_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003267 return;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10003268
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003269 comm_event = (struct perf_comm_event){
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003270 .task = task,
Peter Zijlstra573402d2009-07-22 11:13:50 +02003271 /* .comm */
3272 /* .comm_size */
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003273 .event = {
Peter Zijlstra573402d2009-07-22 11:13:50 +02003274 .header = {
3275 .type = PERF_EVENT_COMM,
3276 .misc = 0,
3277 /* .size */
3278 },
3279 /* .pid */
3280 /* .tid */
Peter Zijlstra8d1b2d92009-04-08 15:01:30 +02003281 },
3282 };
3283
3284 perf_counter_comm_event(&comm_event);
3285}
3286
3287/*
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003288 * mmap tracking
3289 */
3290
3291struct perf_mmap_event {
Peter Zijlstra089dd792009-06-05 14:04:55 +02003292 struct vm_area_struct *vma;
3293
3294 const char *file_name;
3295 int file_size;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003296
3297 struct {
3298 struct perf_event_header header;
3299
3300 u32 pid;
3301 u32 tid;
3302 u64 start;
3303 u64 len;
3304 u64 pgoff;
3305 } event;
3306};
3307
3308static void perf_counter_mmap_output(struct perf_counter *counter,
3309 struct perf_mmap_event *mmap_event)
3310{
3311 struct perf_output_handle handle;
3312 int size = mmap_event->event.header.size;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003313 int ret = perf_output_begin(&handle, counter, size, 0, 0);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003314
3315 if (ret)
3316 return;
3317
Peter Zijlstra709e50c2009-06-02 14:13:15 +02003318 mmap_event->event.pid = perf_counter_pid(counter, current);
3319 mmap_event->event.tid = perf_counter_tid(counter, current);
3320
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003321 perf_output_put(&handle, mmap_event->event);
3322 perf_output_copy(&handle, mmap_event->file_name,
3323 mmap_event->file_size);
Peter Zijlstra78d613e2009-03-30 19:07:11 +02003324 perf_output_end(&handle);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003325}
3326
3327static int perf_counter_mmap_match(struct perf_counter *counter,
3328 struct perf_mmap_event *mmap_event)
3329{
Peter Zijlstrad99e9442009-06-04 17:08:58 +02003330 if (counter->attr.mmap)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003331 return 1;
3332
3333 return 0;
3334}
3335
3336static void perf_counter_mmap_ctx(struct perf_counter_context *ctx,
3337 struct perf_mmap_event *mmap_event)
3338{
3339 struct perf_counter *counter;
3340
3341 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
3342 return;
3343
3344 rcu_read_lock();
3345 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
3346 if (perf_counter_mmap_match(counter, mmap_event))
3347 perf_counter_mmap_output(counter, mmap_event);
3348 }
3349 rcu_read_unlock();
3350}
3351
3352static void perf_counter_mmap_event(struct perf_mmap_event *mmap_event)
3353{
3354 struct perf_cpu_context *cpuctx;
Peter Zijlstra665c2142009-05-29 14:51:57 +02003355 struct perf_counter_context *ctx;
Peter Zijlstra089dd792009-06-05 14:04:55 +02003356 struct vm_area_struct *vma = mmap_event->vma;
3357 struct file *file = vma->vm_file;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003358 unsigned int size;
3359 char tmp[16];
3360 char *buf = NULL;
Peter Zijlstra089dd792009-06-05 14:04:55 +02003361 const char *name;
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003362
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003363 memset(tmp, 0, sizeof(tmp));
3364
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003365 if (file) {
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003366 /*
3367 * d_path works from the end of the buffer backwards, so we
3368 * need to add enough zero bytes after the string to handle
3369 * the 64bit alignment we do later.
3370 */
3371 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003372 if (!buf) {
3373 name = strncpy(tmp, "//enomem", sizeof(tmp));
3374 goto got_name;
3375 }
Peter Zijlstrad3d21c42009-04-09 10:53:46 +02003376 name = d_path(&file->f_path, buf, PATH_MAX);
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003377 if (IS_ERR(name)) {
3378 name = strncpy(tmp, "//toolong", sizeof(tmp));
3379 goto got_name;
3380 }
3381 } else {
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003382 if (arch_vma_name(mmap_event->vma)) {
3383 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
3384 sizeof(tmp));
Peter Zijlstra089dd792009-06-05 14:04:55 +02003385 goto got_name;
Anton Blanchard413ee3b2009-07-16 15:15:52 +02003386 }
Peter Zijlstra089dd792009-06-05 14:04:55 +02003387
3388 if (!vma->vm_mm) {
3389 name = strncpy(tmp, "[vdso]", sizeof(tmp));
3390 goto got_name;
3391 }
3392
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003393 name = strncpy(tmp, "//anon", sizeof(tmp));
3394 goto got_name;
3395 }
3396
3397got_name:
Ingo Molnar888fcee2009-04-09 09:48:22 +02003398 size = ALIGN(strlen(name)+1, sizeof(u64));
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003399
3400 mmap_event->file_name = name;
3401 mmap_event->file_size = size;
3402
3403 mmap_event->event.header.size = sizeof(mmap_event->event) + size;
3404
3405 cpuctx = &get_cpu_var(perf_cpu_context);
3406 perf_counter_mmap_ctx(&cpuctx->ctx, mmap_event);
3407 put_cpu_var(perf_cpu_context);
3408
Peter Zijlstra665c2142009-05-29 14:51:57 +02003409 rcu_read_lock();
3410 /*
3411 * doesn't really matter which of the child contexts the
3412 * events ends up in.
3413 */
3414 ctx = rcu_dereference(current->perf_counter_ctxp);
3415 if (ctx)
3416 perf_counter_mmap_ctx(ctx, mmap_event);
3417 rcu_read_unlock();
3418
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003419 kfree(buf);
3420}
3421
Peter Zijlstra089dd792009-06-05 14:04:55 +02003422void __perf_counter_mmap(struct vm_area_struct *vma)
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003423{
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003424 struct perf_mmap_event mmap_event;
3425
Peter Zijlstra60313eb2009-06-04 16:53:44 +02003426 if (!atomic_read(&nr_mmap_counters))
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02003427 return;
3428
3429 mmap_event = (struct perf_mmap_event){
Peter Zijlstra089dd792009-06-05 14:04:55 +02003430 .vma = vma,
Peter Zijlstra573402d2009-07-22 11:13:50 +02003431 /* .file_name */
3432 /* .file_size */
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003433 .event = {
Peter Zijlstra573402d2009-07-22 11:13:50 +02003434 .header = {
3435 .type = PERF_EVENT_MMAP,
3436 .misc = 0,
3437 /* .size */
3438 },
3439 /* .pid */
3440 /* .tid */
Peter Zijlstra089dd792009-06-05 14:04:55 +02003441 .start = vma->vm_start,
3442 .len = vma->vm_end - vma->vm_start,
3443 .pgoff = vma->vm_pgoff,
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003444 },
3445 };
3446
3447 perf_counter_mmap_event(&mmap_event);
3448}
3449
Peter Zijlstra0a4a9392009-03-30 19:07:05 +02003450/*
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003451 * IRQ throttle logging
3452 */
3453
3454static void perf_log_throttle(struct perf_counter *counter, int enable)
3455{
3456 struct perf_output_handle handle;
3457 int ret;
3458
3459 struct {
3460 struct perf_event_header header;
3461 u64 time;
Peter Zijlstracca3f452009-06-11 14:57:55 +02003462 u64 id;
Peter Zijlstra7f453c22009-07-21 13:19:40 +02003463 u64 stream_id;
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003464 } throttle_event = {
3465 .header = {
Anton Blanchard966ee4d2009-07-22 23:05:46 +10003466 .type = PERF_EVENT_THROTTLE,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003467 .misc = 0,
3468 .size = sizeof(throttle_event),
3469 },
Peter Zijlstra7f453c22009-07-21 13:19:40 +02003470 .time = sched_clock(),
3471 .id = primary_counter_id(counter),
3472 .stream_id = counter->id,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003473 };
3474
Anton Blanchard966ee4d2009-07-22 23:05:46 +10003475 if (enable)
3476 throttle_event.header.type = PERF_EVENT_UNTHROTTLE;
3477
Ingo Molnar0127c3e2009-05-25 22:03:26 +02003478 ret = perf_output_begin(&handle, counter, sizeof(throttle_event), 1, 0);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003479 if (ret)
3480 return;
3481
3482 perf_output_put(&handle, throttle_event);
3483 perf_output_end(&handle);
3484}
3485
3486/*
Peter Zijlstra43a21ea2009-03-25 19:39:37 +01003487 * Generic counter overflow handling, sampling.
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003488 */
3489
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003490int perf_counter_overflow(struct perf_counter *counter, int nmi,
3491 struct perf_sample_data *data)
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003492{
Peter Zijlstra79f14642009-04-06 11:45:07 +02003493 int events = atomic_read(&counter->event_limit);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003494 int throttle = counter->pmu->unthrottle != NULL;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003495 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003496 int ret = 0;
3497
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003498 if (!throttle) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003499 hwc->interrupts++;
Ingo Molnar128f0482009-06-03 22:19:36 +02003500 } else {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003501 if (hwc->interrupts != MAX_INTERRUPTS) {
3502 hwc->interrupts++;
Peter Zijlstradf58ab22009-06-11 11:25:05 +02003503 if (HZ * hwc->interrupts >
3504 (u64)sysctl_perf_counter_sample_rate) {
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003505 hwc->interrupts = MAX_INTERRUPTS;
Ingo Molnar128f0482009-06-03 22:19:36 +02003506 perf_log_throttle(counter, 0);
3507 ret = 1;
3508 }
3509 } else {
3510 /*
3511 * Keep re-disabling counters even though on the previous
3512 * pass we disabled it - just in case we raced with a
3513 * sched-in and the counter got enabled again:
3514 */
Peter Zijlstraa78ac322009-05-25 17:39:05 +02003515 ret = 1;
3516 }
3517 }
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003518
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02003519 if (counter->attr.freq) {
3520 u64 now = sched_clock();
3521 s64 delta = now - hwc->freq_stamp;
3522
3523 hwc->freq_stamp = now;
3524
3525 if (delta > 0 && delta < TICK_NSEC)
3526 perf_adjust_period(counter, NSEC_PER_SEC / (int)delta);
3527 }
3528
Peter Zijlstra2023b352009-05-05 17:50:26 +02003529 /*
3530 * XXX event_limit might not quite work as expected on inherited
3531 * counters
3532 */
3533
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003534 counter->pending_kill = POLL_IN;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003535 if (events && atomic_dec_and_test(&counter->event_limit)) {
3536 ret = 1;
Peter Zijlstra4c9e2542009-04-06 11:45:09 +02003537 counter->pending_kill = POLL_HUP;
Peter Zijlstra79f14642009-04-06 11:45:07 +02003538 if (nmi) {
3539 counter->pending_disable = 1;
3540 perf_pending_queue(&counter->pending,
3541 perf_pending_counter);
3542 } else
3543 perf_counter_disable(counter);
3544 }
3545
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003546 perf_counter_output(counter, nmi, data);
Peter Zijlstra79f14642009-04-06 11:45:07 +02003547 return ret;
Peter Zijlstraf6c7d5f2009-04-06 11:45:04 +02003548}
3549
3550/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003551 * Generic software counter infrastructure
3552 */
3553
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003554/*
3555 * We directly increment counter->count and keep a second value in
3556 * counter->hw.period_left to count intervals. This period counter
3557 * is kept in the range [-sample_period, 0] so that we can use the
3558 * sign as trigger.
3559 */
3560
3561static u64 perf_swcounter_set_period(struct perf_counter *counter)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003562{
3563 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003564 u64 period = hwc->last_period;
3565 u64 nr, offset;
3566 s64 old, val;
3567
3568 hwc->last_period = hwc->sample_period;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003569
3570again:
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003571 old = val = atomic64_read(&hwc->period_left);
3572 if (val < 0)
3573 return 0;
3574
3575 nr = div64_u64(period + val, period);
3576 offset = nr * period;
3577 val -= offset;
3578 if (atomic64_cmpxchg(&hwc->period_left, old, val) != old)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003579 goto again;
3580
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003581 return nr;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003582}
3583
3584static void perf_swcounter_overflow(struct perf_counter *counter,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003585 int nmi, struct perf_sample_data *data)
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003586{
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003587 struct hw_perf_counter *hwc = &counter->hw;
3588 u64 overflow;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02003589
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003590 data->period = counter->hw.last_period;
3591 overflow = perf_swcounter_set_period(counter);
3592
3593 if (hwc->interrupts == MAX_INTERRUPTS)
3594 return;
3595
3596 for (; overflow; overflow--) {
3597 if (perf_counter_overflow(counter, nmi, data)) {
3598 /*
3599 * We inhibit the overflow from happening when
3600 * hwc->interrupts == MAX_INTERRUPTS.
3601 */
3602 break;
3603 }
3604 }
3605}
3606
3607static void perf_swcounter_unthrottle(struct perf_counter *counter)
3608{
3609 /*
3610 * Nothing to do, we already reset hwc->interrupts.
3611 */
3612}
3613
3614static void perf_swcounter_add(struct perf_counter *counter, u64 nr,
3615 int nmi, struct perf_sample_data *data)
3616{
3617 struct hw_perf_counter *hwc = &counter->hw;
3618
3619 atomic64_add(nr, &counter->count);
3620
3621 if (!hwc->sample_period)
3622 return;
3623
3624 if (!data->regs)
3625 return;
3626
3627 if (!atomic64_add_negative(nr, &hwc->period_left))
3628 perf_swcounter_overflow(counter, nmi, data);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003629}
3630
Paul Mackerras880ca152009-06-01 17:49:14 +10003631static int perf_swcounter_is_counting(struct perf_counter *counter)
3632{
Peter Zijlstrabcfc2602009-08-13 09:51:55 +02003633 /*
3634 * The counter is active, we're good!
3635 */
Paul Mackerras880ca152009-06-01 17:49:14 +10003636 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
3637 return 1;
3638
Peter Zijlstrabcfc2602009-08-13 09:51:55 +02003639 /*
3640 * The counter is off/error, not counting.
3641 */
Paul Mackerras880ca152009-06-01 17:49:14 +10003642 if (counter->state != PERF_COUNTER_STATE_INACTIVE)
3643 return 0;
3644
3645 /*
Peter Zijlstrabcfc2602009-08-13 09:51:55 +02003646 * The counter is inactive, if the context is active
3647 * we're part of a group that didn't make it on the 'pmu',
3648 * not counting.
Paul Mackerras880ca152009-06-01 17:49:14 +10003649 */
Peter Zijlstrabcfc2602009-08-13 09:51:55 +02003650 if (counter->ctx->is_active)
3651 return 0;
3652
3653 /*
3654 * We're inactive and the context is too, this means the
3655 * task is scheduled out, we're counting events that happen
3656 * to us, like migration events.
3657 */
3658 return 1;
Paul Mackerras880ca152009-06-01 17:49:14 +10003659}
3660
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003661static int perf_swcounter_match(struct perf_counter *counter,
Peter Zijlstra1c432d82009-06-11 13:19:29 +02003662 enum perf_type_id type,
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003663 u32 event, struct pt_regs *regs)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003664{
Paul Mackerras880ca152009-06-01 17:49:14 +10003665 if (!perf_swcounter_is_counting(counter))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003666 return 0;
3667
Ingo Molnara21ca2c2009-06-06 09:58:57 +02003668 if (counter->attr.type != type)
3669 return 0;
3670 if (counter->attr.config != event)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003671 return 0;
3672
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003673 if (regs) {
Peter Zijlstra0d486962009-06-02 19:22:16 +02003674 if (counter->attr.exclude_user && user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003675 return 0;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003676
Peter Zijlstra0d486962009-06-02 19:22:16 +02003677 if (counter->attr.exclude_kernel && !user_mode(regs))
Paul Mackerras3f731ca2009-06-01 17:52:30 +10003678 return 0;
3679 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003680
3681 return 1;
3682}
3683
3684static void perf_swcounter_ctx_event(struct perf_counter_context *ctx,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003685 enum perf_type_id type,
3686 u32 event, u64 nr, int nmi,
3687 struct perf_sample_data *data)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003688{
3689 struct perf_counter *counter;
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003690
Peter Zijlstra01ef09d2009-03-19 20:26:11 +01003691 if (system_state != SYSTEM_RUNNING || list_empty(&ctx->event_list))
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003692 return;
3693
Peter Zijlstra592903c2009-03-13 12:21:36 +01003694 rcu_read_lock();
3695 list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) {
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003696 if (perf_swcounter_match(counter, type, event, data->regs))
3697 perf_swcounter_add(counter, nr, nmi, data);
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003698 }
Peter Zijlstra592903c2009-03-13 12:21:36 +01003699 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003700}
3701
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003702static int *perf_swcounter_recursion_context(struct perf_cpu_context *cpuctx)
3703{
3704 if (in_nmi())
3705 return &cpuctx->recursion[3];
3706
3707 if (in_irq())
3708 return &cpuctx->recursion[2];
3709
3710 if (in_softirq())
3711 return &cpuctx->recursion[1];
3712
3713 return &cpuctx->recursion[0];
3714}
3715
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003716static void do_perf_swcounter_event(enum perf_type_id type, u32 event,
3717 u64 nr, int nmi,
3718 struct perf_sample_data *data)
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003719{
3720 struct perf_cpu_context *cpuctx = &get_cpu_var(perf_cpu_context);
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003721 int *recursion = perf_swcounter_recursion_context(cpuctx);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003722 struct perf_counter_context *ctx;
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003723
3724 if (*recursion)
3725 goto out;
3726
3727 (*recursion)++;
3728 barrier();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003729
Peter Zijlstra78f13e92009-04-08 15:01:33 +02003730 perf_swcounter_ctx_event(&cpuctx->ctx, type, event,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003731 nr, nmi, data);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003732 rcu_read_lock();
3733 /*
3734 * doesn't really matter which of the child contexts the
3735 * events ends up in.
3736 */
3737 ctx = rcu_dereference(current->perf_counter_ctxp);
3738 if (ctx)
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003739 perf_swcounter_ctx_event(ctx, type, event, nr, nmi, data);
Peter Zijlstra665c2142009-05-29 14:51:57 +02003740 rcu_read_unlock();
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003741
Peter Zijlstra96f6d442009-03-23 18:22:07 +01003742 barrier();
3743 (*recursion)--;
3744
3745out:
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003746 put_cpu_var(perf_cpu_context);
3747}
3748
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003749void __perf_swcounter_event(u32 event, u64 nr, int nmi,
3750 struct pt_regs *regs, u64 addr)
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003751{
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003752 struct perf_sample_data data = {
3753 .regs = regs,
3754 .addr = addr,
3755 };
3756
3757 do_perf_swcounter_event(PERF_TYPE_SOFTWARE, event, nr, nmi, &data);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003758}
3759
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003760static void perf_swcounter_read(struct perf_counter *counter)
3761{
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003762}
3763
3764static int perf_swcounter_enable(struct perf_counter *counter)
3765{
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003766 struct hw_perf_counter *hwc = &counter->hw;
3767
3768 if (hwc->sample_period) {
3769 hwc->last_period = hwc->sample_period;
3770 perf_swcounter_set_period(counter);
3771 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003772 return 0;
3773}
3774
3775static void perf_swcounter_disable(struct perf_counter *counter)
3776{
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003777}
3778
Robert Richter4aeb0b42009-04-29 12:47:03 +02003779static const struct pmu perf_ops_generic = {
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003780 .enable = perf_swcounter_enable,
3781 .disable = perf_swcounter_disable,
3782 .read = perf_swcounter_read,
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003783 .unthrottle = perf_swcounter_unthrottle,
Peter Zijlstraac17dc82009-03-13 12:21:34 +01003784};
3785
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003786/*
Peter Zijlstra7b4b6652009-07-22 09:29:32 +02003787 * hrtimer based swcounter callback
3788 */
3789
3790static enum hrtimer_restart perf_swcounter_hrtimer(struct hrtimer *hrtimer)
3791{
3792 enum hrtimer_restart ret = HRTIMER_RESTART;
3793 struct perf_sample_data data;
3794 struct perf_counter *counter;
3795 u64 period;
3796
3797 counter = container_of(hrtimer, struct perf_counter, hw.hrtimer);
3798 counter->pmu->read(counter);
3799
3800 data.addr = 0;
3801 data.regs = get_irq_regs();
3802 /*
3803 * In case we exclude kernel IPs or are somehow not in interrupt
3804 * context, provide the next best thing, the user IP.
3805 */
3806 if ((counter->attr.exclude_kernel || !data.regs) &&
3807 !counter->attr.exclude_user)
3808 data.regs = task_pt_regs(current);
3809
3810 if (data.regs) {
3811 if (perf_counter_overflow(counter, 0, &data))
3812 ret = HRTIMER_NORESTART;
3813 }
3814
3815 period = max_t(u64, 10000, counter->hw.sample_period);
3816 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
3817
3818 return ret;
3819}
3820
3821/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003822 * Software counter: cpu wall time clock
3823 */
3824
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003825static void cpu_clock_perf_counter_update(struct perf_counter *counter)
3826{
3827 int cpu = raw_smp_processor_id();
3828 s64 prev;
3829 u64 now;
3830
3831 now = cpu_clock(cpu);
3832 prev = atomic64_read(&counter->hw.prev_count);
3833 atomic64_set(&counter->hw.prev_count, now);
3834 atomic64_add(now - prev, &counter->count);
3835}
3836
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003837static int cpu_clock_perf_counter_enable(struct perf_counter *counter)
3838{
3839 struct hw_perf_counter *hwc = &counter->hw;
3840 int cpu = raw_smp_processor_id();
3841
3842 atomic64_set(&hwc->prev_count, cpu_clock(cpu));
Peter Zijlstra039fc912009-03-13 16:43:47 +01003843 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3844 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003845 if (hwc->sample_period) {
3846 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003847 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003848 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003849 HRTIMER_MODE_REL, 0);
3850 }
3851
3852 return 0;
3853}
3854
Ingo Molnar5c92d122008-12-11 13:21:10 +01003855static void cpu_clock_perf_counter_disable(struct perf_counter *counter)
3856{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003857 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003858 hrtimer_cancel(&counter->hw.hrtimer);
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003859 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003860}
3861
3862static void cpu_clock_perf_counter_read(struct perf_counter *counter)
3863{
Paul Mackerras9abf8a02009-01-09 16:26:43 +11003864 cpu_clock_perf_counter_update(counter);
Ingo Molnar5c92d122008-12-11 13:21:10 +01003865}
3866
Robert Richter4aeb0b42009-04-29 12:47:03 +02003867static const struct pmu perf_ops_cpu_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003868 .enable = cpu_clock_perf_counter_enable,
3869 .disable = cpu_clock_perf_counter_disable,
3870 .read = cpu_clock_perf_counter_read,
Ingo Molnar5c92d122008-12-11 13:21:10 +01003871};
3872
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003873/*
Peter Zijlstra15dbf272009-03-13 12:21:32 +01003874 * Software counter: task time clock
3875 */
3876
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003877static void task_clock_perf_counter_update(struct perf_counter *counter, u64 now)
Ingo Molnarbae43c92008-12-11 14:03:20 +01003878{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003879 u64 prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003880 s64 delta;
Ingo Molnarbae43c92008-12-11 14:03:20 +01003881
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003882 prev = atomic64_xchg(&counter->hw.prev_count, now);
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003883 delta = now - prev;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003884 atomic64_add(delta, &counter->count);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003885}
3886
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003887static int task_clock_perf_counter_enable(struct perf_counter *counter)
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003888{
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003889 struct hw_perf_counter *hwc = &counter->hw;
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003890 u64 now;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003891
Peter Zijlstraa39d6f22009-04-06 11:45:11 +02003892 now = counter->ctx->time;
3893
3894 atomic64_set(&hwc->prev_count, now);
Peter Zijlstra039fc912009-03-13 16:43:47 +01003895 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
3896 hwc->hrtimer.function = perf_swcounter_hrtimer;
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003897 if (hwc->sample_period) {
3898 u64 period = max_t(u64, 10000, hwc->sample_period);
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003899 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstra60db5e02009-05-15 15:19:28 +02003900 ns_to_ktime(period), 0,
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003901 HRTIMER_MODE_REL, 0);
3902 }
Ingo Molnar95cdd2e2008-12-21 13:50:42 +01003903
3904 return 0;
Ingo Molnar8cb391e2008-12-14 12:22:31 +01003905}
3906
3907static void task_clock_perf_counter_disable(struct perf_counter *counter)
3908{
Peter Zijlstrab23f3322009-06-02 15:13:03 +02003909 if (counter->hw.sample_period)
Peter Zijlstrab986d7e2009-05-20 12:21:21 +02003910 hrtimer_cancel(&counter->hw.hrtimer);
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003911 task_clock_perf_counter_update(counter, counter->ctx->time);
3912
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003913}
Ingo Molnaraa9c4c02008-12-17 14:10:57 +01003914
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01003915static void task_clock_perf_counter_read(struct perf_counter *counter)
3916{
Peter Zijlstrae30e08f2009-04-08 15:01:25 +02003917 u64 time;
3918
3919 if (!in_nmi()) {
3920 update_context_time(counter->ctx);
3921 time = counter->ctx->time;
3922 } else {
3923 u64 now = perf_clock();
3924 u64 delta = now - counter->ctx->timestamp;
3925 time = counter->ctx->time + delta;
3926 }
3927
3928 task_clock_perf_counter_update(counter, time);
Ingo Molnarbae43c92008-12-11 14:03:20 +01003929}
3930
Robert Richter4aeb0b42009-04-29 12:47:03 +02003931static const struct pmu perf_ops_task_clock = {
Ingo Molnar76715812008-12-17 14:20:28 +01003932 .enable = task_clock_perf_counter_enable,
3933 .disable = task_clock_perf_counter_disable,
3934 .read = task_clock_perf_counter_read,
Ingo Molnarbae43c92008-12-11 14:03:20 +01003935};
3936
Peter Zijlstrae077df42009-03-19 20:26:17 +01003937#ifdef CONFIG_EVENT_PROFILE
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02003938void perf_tpcounter_event(int event_id, u64 addr, u64 count, void *record,
3939 int entry_size)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003940{
Frederic Weisbecker3a43ce62009-08-08 04:26:37 +02003941 struct perf_raw_record raw = {
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02003942 .size = entry_size,
Frederic Weisbecker3a43ce62009-08-08 04:26:37 +02003943 .data = record,
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02003944 };
3945
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003946 struct perf_sample_data data = {
Chris Wilsond4d7d0b2009-07-06 09:31:33 +01003947 .regs = get_irq_regs(),
Peter Zijlstra3a659302009-07-21 17:34:57 +02003948 .addr = addr,
Frederic Weisbecker3a43ce62009-08-08 04:26:37 +02003949 .raw = &raw,
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003950 };
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003951
Peter Zijlstra92bf3092009-06-19 18:11:53 +02003952 if (!data.regs)
3953 data.regs = task_pt_regs(current);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01003954
Peter Zijlstra3a659302009-07-21 17:34:57 +02003955 do_perf_swcounter_event(PERF_TYPE_TRACEPOINT, event_id, count, 1, &data);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003956}
Steven Whitehouseff7b1b42009-04-15 16:55:05 +01003957EXPORT_SYMBOL_GPL(perf_tpcounter_event);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003958
3959extern int ftrace_profile_enable(int);
3960extern void ftrace_profile_disable(int);
3961
3962static void tp_perf_counter_destroy(struct perf_counter *counter)
3963{
Chris Wilsond4d7d0b2009-07-06 09:31:33 +01003964 ftrace_profile_disable(counter->attr.config);
Peter Zijlstrae077df42009-03-19 20:26:17 +01003965}
3966
Robert Richter4aeb0b42009-04-29 12:47:03 +02003967static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003968{
Peter Zijlstraa4e95fc2009-08-10 11:20:12 +02003969 /*
3970 * Raw tracepoint data is a severe data leak, only allow root to
3971 * have these.
3972 */
3973 if ((counter->attr.sample_type & PERF_SAMPLE_RAW) &&
3974 !capable(CAP_SYS_ADMIN))
3975 return ERR_PTR(-EPERM);
3976
Chris Wilsond4d7d0b2009-07-06 09:31:33 +01003977 if (ftrace_profile_enable(counter->attr.config))
Peter Zijlstrae077df42009-03-19 20:26:17 +01003978 return NULL;
3979
3980 counter->destroy = tp_perf_counter_destroy;
3981
3982 return &perf_ops_generic;
3983}
3984#else
Robert Richter4aeb0b42009-04-29 12:47:03 +02003985static const struct pmu *tp_perf_counter_init(struct perf_counter *counter)
Peter Zijlstrae077df42009-03-19 20:26:17 +01003986{
3987 return NULL;
3988}
3989#endif
3990
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003991atomic_t perf_swcounter_enabled[PERF_COUNT_SW_MAX];
3992
3993static void sw_perf_counter_destroy(struct perf_counter *counter)
3994{
3995 u64 event = counter->attr.config;
3996
Peter Zijlstraf3440112009-06-22 13:58:35 +02003997 WARN_ON(counter->parent);
3998
Peter Zijlstraf29ac752009-06-19 18:27:26 +02003999 atomic_dec(&perf_swcounter_enabled[event]);
4000}
4001
Robert Richter4aeb0b42009-04-29 12:47:03 +02004002static const struct pmu *sw_perf_counter_init(struct perf_counter *counter)
Ingo Molnar5c92d122008-12-11 13:21:10 +01004003{
Robert Richter4aeb0b42009-04-29 12:47:03 +02004004 const struct pmu *pmu = NULL;
Peter Zijlstraf29ac752009-06-19 18:27:26 +02004005 u64 event = counter->attr.config;
Ingo Molnar5c92d122008-12-11 13:21:10 +01004006
Paul Mackerras0475f9e2009-02-11 14:35:35 +11004007 /*
4008 * Software counters (currently) can't in general distinguish
4009 * between user, kernel and hypervisor events.
4010 * However, context switches and cpu migrations are considered
4011 * to be kernel events, and page faults are never hypervisor
4012 * events.
4013 */
Peter Zijlstraf29ac752009-06-19 18:27:26 +02004014 switch (event) {
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02004015 case PERF_COUNT_SW_CPU_CLOCK:
Robert Richter4aeb0b42009-04-29 12:47:03 +02004016 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01004017
Ingo Molnar5c92d122008-12-11 13:21:10 +01004018 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02004019 case PERF_COUNT_SW_TASK_CLOCK:
Paul Mackerras23a185c2009-02-09 22:42:47 +11004020 /*
4021 * If the user instantiates this as a per-cpu counter,
4022 * use the cpu_clock counter instead.
4023 */
4024 if (counter->ctx->task)
Robert Richter4aeb0b42009-04-29 12:47:03 +02004025 pmu = &perf_ops_task_clock;
Paul Mackerras23a185c2009-02-09 22:42:47 +11004026 else
Robert Richter4aeb0b42009-04-29 12:47:03 +02004027 pmu = &perf_ops_cpu_clock;
Peter Zijlstrad6d020e2009-03-13 12:21:35 +01004028
Ingo Molnarbae43c92008-12-11 14:03:20 +01004029 break;
Peter Zijlstraf4dbfa82009-06-11 14:06:28 +02004030 case PERF_COUNT_SW_PAGE_FAULTS:
4031 case PERF_COUNT_SW_PAGE_FAULTS_MIN:
4032 case PERF_COUNT_SW_PAGE_FAULTS_MAJ:
4033 case PERF_COUNT_SW_CONTEXT_SWITCHES:
4034 case PERF_COUNT_SW_CPU_MIGRATIONS:
Peter Zijlstraf3440112009-06-22 13:58:35 +02004035 if (!counter->parent) {
4036 atomic_inc(&perf_swcounter_enabled[event]);
4037 counter->destroy = sw_perf_counter_destroy;
4038 }
Paul Mackerras3f731ca2009-06-01 17:52:30 +10004039 pmu = &perf_ops_generic;
Ingo Molnar6c594c22008-12-14 12:34:15 +01004040 break;
Ingo Molnar5c92d122008-12-11 13:21:10 +01004041 }
Peter Zijlstra15dbf272009-03-13 12:21:32 +01004042
Robert Richter4aeb0b42009-04-29 12:47:03 +02004043 return pmu;
Ingo Molnar5c92d122008-12-11 13:21:10 +01004044}
4045
Thomas Gleixner0793a612008-12-04 20:12:29 +01004046/*
4047 * Allocate and initialize a counter structure
4048 */
4049static struct perf_counter *
Peter Zijlstra0d486962009-06-02 19:22:16 +02004050perf_counter_alloc(struct perf_counter_attr *attr,
Ingo Molnar04289bb2008-12-11 08:38:42 +01004051 int cpu,
Paul Mackerras23a185c2009-02-09 22:42:47 +11004052 struct perf_counter_context *ctx,
Ingo Molnar9b51f662008-12-12 13:49:45 +01004053 struct perf_counter *group_leader,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004054 struct perf_counter *parent_counter,
Ingo Molnar9b51f662008-12-12 13:49:45 +01004055 gfp_t gfpflags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004056{
Robert Richter4aeb0b42009-04-29 12:47:03 +02004057 const struct pmu *pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01004058 struct perf_counter *counter;
Peter Zijlstra60db5e02009-05-15 15:19:28 +02004059 struct hw_perf_counter *hwc;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004060 long err;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004061
Ingo Molnar9b51f662008-12-12 13:49:45 +01004062 counter = kzalloc(sizeof(*counter), gfpflags);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004063 if (!counter)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004064 return ERR_PTR(-ENOMEM);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004065
Ingo Molnar04289bb2008-12-11 08:38:42 +01004066 /*
4067 * Single counters are their own group leaders, with an
4068 * empty sibling list:
4069 */
4070 if (!group_leader)
4071 group_leader = counter;
4072
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004073 mutex_init(&counter->child_mutex);
4074 INIT_LIST_HEAD(&counter->child_list);
4075
Ingo Molnar04289bb2008-12-11 08:38:42 +01004076 INIT_LIST_HEAD(&counter->list_entry);
Peter Zijlstra592903c2009-03-13 12:21:36 +01004077 INIT_LIST_HEAD(&counter->event_entry);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004078 INIT_LIST_HEAD(&counter->sibling_list);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004079 init_waitqueue_head(&counter->waitq);
4080
Peter Zijlstra7b732a72009-03-23 18:22:10 +01004081 mutex_init(&counter->mmap_mutex);
4082
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02004083 counter->cpu = cpu;
Peter Zijlstra0d486962009-06-02 19:22:16 +02004084 counter->attr = *attr;
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02004085 counter->group_leader = group_leader;
4086 counter->pmu = NULL;
4087 counter->ctx = ctx;
4088 counter->oncpu = -1;
Ingo Molnar329d8762009-05-26 08:10:00 +02004089
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004090 counter->parent = parent_counter;
4091
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02004092 counter->ns = get_pid_ns(current->nsproxy->pid_ns);
4093 counter->id = atomic64_inc_return(&perf_counter_id);
4094
4095 counter->state = PERF_COUNTER_STATE_INACTIVE;
4096
Peter Zijlstra0d486962009-06-02 19:22:16 +02004097 if (attr->disabled)
Ingo Molnara86ed502008-12-17 00:43:10 +01004098 counter->state = PERF_COUNTER_STATE_OFF;
4099
Robert Richter4aeb0b42009-04-29 12:47:03 +02004100 pmu = NULL;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004101
Peter Zijlstra60db5e02009-05-15 15:19:28 +02004102 hwc = &counter->hw;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02004103 hwc->sample_period = attr->sample_period;
Peter Zijlstra0d486962009-06-02 19:22:16 +02004104 if (attr->freq && attr->sample_freq)
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02004105 hwc->sample_period = 1;
4106
4107 atomic64_set(&hwc->period_left, hwc->sample_period);
Peter Zijlstra60db5e02009-05-15 15:19:28 +02004108
Peter Zijlstra2023b352009-05-05 17:50:26 +02004109 /*
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02004110 * we currently do not support PERF_FORMAT_GROUP on inherited counters
Peter Zijlstra2023b352009-05-05 17:50:26 +02004111 */
Peter Zijlstra3dab77f2009-08-13 11:47:53 +02004112 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Peter Zijlstra2023b352009-05-05 17:50:26 +02004113 goto done;
4114
Ingo Molnara21ca2c2009-06-06 09:58:57 +02004115 switch (attr->type) {
Peter Zijlstra081fad82009-06-11 17:57:21 +02004116 case PERF_TYPE_RAW:
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004117 case PERF_TYPE_HARDWARE:
Ingo Molnar8326f442009-06-05 20:22:46 +02004118 case PERF_TYPE_HW_CACHE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02004119 pmu = hw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004120 break;
4121
4122 case PERF_TYPE_SOFTWARE:
Robert Richter4aeb0b42009-04-29 12:47:03 +02004123 pmu = sw_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004124 break;
4125
4126 case PERF_TYPE_TRACEPOINT:
Robert Richter4aeb0b42009-04-29 12:47:03 +02004127 pmu = tp_perf_counter_init(counter);
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004128 break;
Peter Zijlstra974802e2009-06-12 12:46:55 +02004129
4130 default:
4131 break;
Peter Zijlstrab8e83512009-03-19 20:26:18 +01004132 }
Peter Zijlstraf4a2deb2009-03-23 18:22:06 +01004133done:
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004134 err = 0;
Robert Richter4aeb0b42009-04-29 12:47:03 +02004135 if (!pmu)
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004136 err = -EINVAL;
Robert Richter4aeb0b42009-04-29 12:47:03 +02004137 else if (IS_ERR(pmu))
4138 err = PTR_ERR(pmu);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004139
4140 if (err) {
Peter Zijlstraa96bbc12009-06-03 14:01:36 +02004141 if (counter->ns)
4142 put_pid_ns(counter->ns);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004143 kfree(counter);
4144 return ERR_PTR(err);
4145 }
4146
Robert Richter4aeb0b42009-04-29 12:47:03 +02004147 counter->pmu = pmu;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004148
Peter Zijlstraf3440112009-06-22 13:58:35 +02004149 if (!counter->parent) {
4150 atomic_inc(&nr_counters);
4151 if (counter->attr.mmap)
4152 atomic_inc(&nr_mmap_counters);
4153 if (counter->attr.comm)
4154 atomic_inc(&nr_comm_counters);
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02004155 if (counter->attr.task)
4156 atomic_inc(&nr_task_counters);
Peter Zijlstraf3440112009-06-22 13:58:35 +02004157 }
Peter Zijlstra9ee318a2009-04-09 10:53:44 +02004158
Thomas Gleixner0793a612008-12-04 20:12:29 +01004159 return counter;
4160}
4161
Peter Zijlstra974802e2009-06-12 12:46:55 +02004162static int perf_copy_attr(struct perf_counter_attr __user *uattr,
4163 struct perf_counter_attr *attr)
4164{
4165 int ret;
4166 u32 size;
4167
4168 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
4169 return -EFAULT;
4170
4171 /*
4172 * zero the full structure, so that a short copy will be nice.
4173 */
4174 memset(attr, 0, sizeof(*attr));
4175
4176 ret = get_user(size, &uattr->size);
4177 if (ret)
4178 return ret;
4179
4180 if (size > PAGE_SIZE) /* silly large */
4181 goto err_size;
4182
4183 if (!size) /* abi compat */
4184 size = PERF_ATTR_SIZE_VER0;
4185
4186 if (size < PERF_ATTR_SIZE_VER0)
4187 goto err_size;
4188
4189 /*
4190 * If we're handed a bigger struct than we know of,
4191 * ensure all the unknown bits are 0.
4192 */
4193 if (size > sizeof(*attr)) {
4194 unsigned long val;
4195 unsigned long __user *addr;
4196 unsigned long __user *end;
4197
4198 addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr),
4199 sizeof(unsigned long));
4200 end = PTR_ALIGN((void __user *)uattr + size,
4201 sizeof(unsigned long));
4202
4203 for (; addr < end; addr += sizeof(unsigned long)) {
4204 ret = get_user(val, addr);
4205 if (ret)
4206 return ret;
4207 if (val)
4208 goto err_size;
4209 }
4210 }
4211
4212 ret = copy_from_user(attr, uattr, size);
4213 if (ret)
4214 return -EFAULT;
4215
4216 /*
4217 * If the type exists, the corresponding creation will verify
4218 * the attr->config.
4219 */
4220 if (attr->type >= PERF_TYPE_MAX)
4221 return -EINVAL;
4222
4223 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3)
4224 return -EINVAL;
4225
4226 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
4227 return -EINVAL;
4228
4229 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
4230 return -EINVAL;
4231
4232out:
4233 return ret;
4234
4235err_size:
4236 put_user(sizeof(*attr), &uattr->size);
4237 ret = -E2BIG;
4238 goto out;
4239}
4240
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02004241int perf_counter_set_output(struct perf_counter *counter, int output_fd)
4242{
4243 struct perf_counter *output_counter = NULL;
4244 struct file *output_file = NULL;
4245 struct perf_counter *old_output;
4246 int fput_needed = 0;
4247 int ret = -EINVAL;
4248
4249 if (!output_fd)
4250 goto set;
4251
4252 output_file = fget_light(output_fd, &fput_needed);
4253 if (!output_file)
4254 return -EBADF;
4255
4256 if (output_file->f_op != &perf_fops)
4257 goto out;
4258
4259 output_counter = output_file->private_data;
4260
4261 /* Don't chain output fds */
4262 if (output_counter->output)
4263 goto out;
4264
4265 /* Don't set an output fd when we already have an output channel */
4266 if (counter->data)
4267 goto out;
4268
4269 atomic_long_inc(&output_file->f_count);
4270
4271set:
4272 mutex_lock(&counter->mmap_mutex);
4273 old_output = counter->output;
4274 rcu_assign_pointer(counter->output, output_counter);
4275 mutex_unlock(&counter->mmap_mutex);
4276
4277 if (old_output) {
4278 /*
4279 * we need to make sure no existing perf_output_*()
4280 * is still referencing this counter.
4281 */
4282 synchronize_rcu();
4283 fput(old_output->filp);
4284 }
4285
4286 ret = 0;
4287out:
4288 fput_light(output_file, fput_needed);
4289 return ret;
4290}
4291
Thomas Gleixner0793a612008-12-04 20:12:29 +01004292/**
Paul Mackerras2743a5b2009-03-04 20:36:51 +11004293 * sys_perf_counter_open - open a performance counter, associate it to a task/cpu
Ingo Molnar9f66a382008-12-10 12:33:23 +01004294 *
Peter Zijlstra0d486962009-06-02 19:22:16 +02004295 * @attr_uptr: event type attributes for monitoring/sampling
Thomas Gleixner0793a612008-12-04 20:12:29 +01004296 * @pid: target pid
Ingo Molnar9f66a382008-12-10 12:33:23 +01004297 * @cpu: target cpu
4298 * @group_fd: group leader counter fd
Thomas Gleixner0793a612008-12-04 20:12:29 +01004299 */
Paul Mackerras2743a5b2009-03-04 20:36:51 +11004300SYSCALL_DEFINE5(perf_counter_open,
Peter Zijlstra974802e2009-06-12 12:46:55 +02004301 struct perf_counter_attr __user *, attr_uptr,
Paul Mackerras2743a5b2009-03-04 20:36:51 +11004302 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004303{
Ingo Molnar04289bb2008-12-11 08:38:42 +01004304 struct perf_counter *counter, *group_leader;
Peter Zijlstra0d486962009-06-02 19:22:16 +02004305 struct perf_counter_attr attr;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004306 struct perf_counter_context *ctx;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004307 struct file *counter_file = NULL;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004308 struct file *group_file = NULL;
4309 int fput_needed = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004310 int fput_needed2 = 0;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004311 int ret;
4312
Paul Mackerras2743a5b2009-03-04 20:36:51 +11004313 /* for future expandability... */
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02004314 if (flags & ~(PERF_FLAG_FD_NO_GROUP | PERF_FLAG_FD_OUTPUT))
Paul Mackerras2743a5b2009-03-04 20:36:51 +11004315 return -EINVAL;
4316
Peter Zijlstra974802e2009-06-12 12:46:55 +02004317 ret = perf_copy_attr(attr_uptr, &attr);
4318 if (ret)
4319 return ret;
Thomas Gleixnereab656a2008-12-08 19:26:59 +01004320
Peter Zijlstra07647712009-06-11 11:18:36 +02004321 if (!attr.exclude_kernel) {
4322 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
4323 return -EACCES;
4324 }
4325
Peter Zijlstradf58ab22009-06-11 11:25:05 +02004326 if (attr.freq) {
4327 if (attr.sample_freq > sysctl_perf_counter_sample_rate)
4328 return -EINVAL;
4329 }
4330
Ingo Molnar04289bb2008-12-11 08:38:42 +01004331 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01004332 * Get the target context (task or percpu):
4333 */
4334 ctx = find_get_context(pid, cpu);
4335 if (IS_ERR(ctx))
4336 return PTR_ERR(ctx);
4337
4338 /*
4339 * Look up the group leader (we will attach this counter to it):
Ingo Molnar04289bb2008-12-11 08:38:42 +01004340 */
4341 group_leader = NULL;
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02004342 if (group_fd != -1 && !(flags & PERF_FLAG_FD_NO_GROUP)) {
Ingo Molnar04289bb2008-12-11 08:38:42 +01004343 ret = -EINVAL;
4344 group_file = fget_light(group_fd, &fput_needed);
4345 if (!group_file)
Ingo Molnarccff2862008-12-11 11:26:29 +01004346 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004347 if (group_file->f_op != &perf_fops)
Ingo Molnarccff2862008-12-11 11:26:29 +01004348 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004349
4350 group_leader = group_file->private_data;
4351 /*
Ingo Molnarccff2862008-12-11 11:26:29 +01004352 * Do not allow a recursive hierarchy (this new sibling
4353 * becoming part of another group-sibling):
Ingo Molnar04289bb2008-12-11 08:38:42 +01004354 */
Ingo Molnarccff2862008-12-11 11:26:29 +01004355 if (group_leader->group_leader != group_leader)
4356 goto err_put_context;
4357 /*
4358 * Do not allow to attach to a group in a different
4359 * task or CPU context:
4360 */
4361 if (group_leader->ctx != ctx)
4362 goto err_put_context;
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11004363 /*
4364 * Only a group leader can be exclusive or pinned
4365 */
Peter Zijlstra0d486962009-06-02 19:22:16 +02004366 if (attr.exclusive || attr.pinned)
Paul Mackerras3b6f9e52009-01-14 21:00:30 +11004367 goto err_put_context;
Ingo Molnar04289bb2008-12-11 08:38:42 +01004368 }
4369
Peter Zijlstra0d486962009-06-02 19:22:16 +02004370 counter = perf_counter_alloc(&attr, cpu, ctx, group_leader,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004371 NULL, GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004372 ret = PTR_ERR(counter);
4373 if (IS_ERR(counter))
Thomas Gleixner0793a612008-12-04 20:12:29 +01004374 goto err_put_context;
4375
Thomas Gleixner0793a612008-12-04 20:12:29 +01004376 ret = anon_inode_getfd("[perf_counter]", &perf_fops, counter, 0);
4377 if (ret < 0)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004378 goto err_free_put_context;
4379
4380 counter_file = fget_light(ret, &fput_needed2);
4381 if (!counter_file)
4382 goto err_free_put_context;
4383
Peter Zijlstraa4be7c22009-08-19 11:18:27 +02004384 if (flags & PERF_FLAG_FD_OUTPUT) {
4385 ret = perf_counter_set_output(counter, group_fd);
4386 if (ret)
4387 goto err_free_put_context;
4388 }
4389
Ingo Molnar9b51f662008-12-12 13:49:45 +01004390 counter->filp = counter_file;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004391 WARN_ON_ONCE(ctx->parent_ctx);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004392 mutex_lock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004393 perf_install_in_context(ctx, counter, cpu);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004394 ++ctx->generation;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004395 mutex_unlock(&ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004396
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02004397 counter->owner = current;
4398 get_task_struct(current);
4399 mutex_lock(&current->perf_counter_mutex);
4400 list_add_tail(&counter->owner_entry, &current->perf_counter_list);
4401 mutex_unlock(&current->perf_counter_mutex);
4402
Ingo Molnar9b51f662008-12-12 13:49:45 +01004403 fput_light(counter_file, fput_needed2);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004404
Ingo Molnar04289bb2008-12-11 08:38:42 +01004405out_fput:
4406 fput_light(group_file, fput_needed);
4407
Thomas Gleixner0793a612008-12-04 20:12:29 +01004408 return ret;
4409
Ingo Molnar9b51f662008-12-12 13:49:45 +01004410err_free_put_context:
Thomas Gleixner0793a612008-12-04 20:12:29 +01004411 kfree(counter);
4412
4413err_put_context:
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004414 put_ctx(ctx);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004415
Ingo Molnar04289bb2008-12-11 08:38:42 +01004416 goto out_fput;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004417}
4418
Ingo Molnar9b51f662008-12-12 13:49:45 +01004419/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004420 * inherit a counter from parent task to child task:
4421 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004422static struct perf_counter *
Ingo Molnar9b51f662008-12-12 13:49:45 +01004423inherit_counter(struct perf_counter *parent_counter,
4424 struct task_struct *parent,
4425 struct perf_counter_context *parent_ctx,
4426 struct task_struct *child,
Paul Mackerrasd859e292009-01-17 18:10:22 +11004427 struct perf_counter *group_leader,
Ingo Molnar9b51f662008-12-12 13:49:45 +01004428 struct perf_counter_context *child_ctx)
4429{
4430 struct perf_counter *child_counter;
4431
Paul Mackerrasd859e292009-01-17 18:10:22 +11004432 /*
4433 * Instead of creating recursive hierarchies of counters,
4434 * we link inherited counters back to the original parent,
4435 * which has a filp for sure, which we use as the reference
4436 * count:
4437 */
4438 if (parent_counter->parent)
4439 parent_counter = parent_counter->parent;
4440
Peter Zijlstra0d486962009-06-02 19:22:16 +02004441 child_counter = perf_counter_alloc(&parent_counter->attr,
Paul Mackerras23a185c2009-02-09 22:42:47 +11004442 parent_counter->cpu, child_ctx,
Peter Zijlstrab84fbc92009-06-22 13:57:40 +02004443 group_leader, parent_counter,
4444 GFP_KERNEL);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004445 if (IS_ERR(child_counter))
4446 return child_counter;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004447 get_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004448
4449 /*
Paul Mackerras564c2b22009-05-22 14:27:22 +10004450 * Make the child state follow the state of the parent counter,
Peter Zijlstra0d486962009-06-02 19:22:16 +02004451 * not its attr.disabled bit. We hold the parent's mutex,
Ingo Molnar22a4f652009-06-01 10:13:37 +02004452 * so we won't race with perf_counter_{en, dis}able_family.
Paul Mackerras564c2b22009-05-22 14:27:22 +10004453 */
4454 if (parent_counter->state >= PERF_COUNTER_STATE_INACTIVE)
4455 child_counter->state = PERF_COUNTER_STATE_INACTIVE;
4456 else
4457 child_counter->state = PERF_COUNTER_STATE_OFF;
4458
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +02004459 if (parent_counter->attr.freq)
4460 child_counter->hw.sample_period = parent_counter->hw.sample_period;
4461
Paul Mackerras564c2b22009-05-22 14:27:22 +10004462 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004463 * Link it up in the child's context:
4464 */
Paul Mackerras53cfbf52009-03-25 22:46:58 +11004465 add_counter_to_ctx(child_counter, child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004466
Ingo Molnar9b51f662008-12-12 13:49:45 +01004467 /*
4468 * Get a reference to the parent filp - we will fput it
4469 * when the child counter exits. This is safe to do because
4470 * we are in the parent and we know that the filp still
4471 * exists and has a nonzero count:
4472 */
4473 atomic_long_inc(&parent_counter->filp->f_count);
4474
Paul Mackerrasd859e292009-01-17 18:10:22 +11004475 /*
4476 * Link this into the parent counter's child list
4477 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004478 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004479 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004480 list_add_tail(&child_counter->child_list, &parent_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004481 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004482
4483 return child_counter;
4484}
4485
4486static int inherit_group(struct perf_counter *parent_counter,
4487 struct task_struct *parent,
4488 struct perf_counter_context *parent_ctx,
4489 struct task_struct *child,
4490 struct perf_counter_context *child_ctx)
4491{
4492 struct perf_counter *leader;
4493 struct perf_counter *sub;
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004494 struct perf_counter *child_ctr;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004495
4496 leader = inherit_counter(parent_counter, parent, parent_ctx,
4497 child, NULL, child_ctx);
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004498 if (IS_ERR(leader))
4499 return PTR_ERR(leader);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004500 list_for_each_entry(sub, &parent_counter->sibling_list, list_entry) {
Paul Mackerrasd5d2bc0d2009-03-30 19:07:08 +02004501 child_ctr = inherit_counter(sub, parent, parent_ctx,
4502 child, leader, child_ctx);
4503 if (IS_ERR(child_ctr))
4504 return PTR_ERR(child_ctr);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004505 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004506 return 0;
4507}
4508
Paul Mackerrasd859e292009-01-17 18:10:22 +11004509static void sync_child_counter(struct perf_counter *child_counter,
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004510 struct task_struct *child)
Paul Mackerrasd859e292009-01-17 18:10:22 +11004511{
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004512 struct perf_counter *parent_counter = child_counter->parent;
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004513 u64 child_val;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004514
Peter Zijlstrabfbd3382009-06-24 21:11:59 +02004515 if (child_counter->attr.inherit_stat)
4516 perf_counter_read_event(child_counter, child);
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004517
Paul Mackerrasd859e292009-01-17 18:10:22 +11004518 child_val = atomic64_read(&child_counter->count);
4519
4520 /*
4521 * Add back the child's count to the parent's count:
4522 */
4523 atomic64_add(child_val, &parent_counter->count);
Paul Mackerras53cfbf52009-03-25 22:46:58 +11004524 atomic64_add(child_counter->total_time_enabled,
4525 &parent_counter->child_total_time_enabled);
4526 atomic64_add(child_counter->total_time_running,
4527 &parent_counter->child_total_time_running);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004528
4529 /*
4530 * Remove this counter from the parent's list
4531 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004532 WARN_ON_ONCE(parent_counter->ctx->parent_ctx);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004533 mutex_lock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004534 list_del_init(&child_counter->child_list);
Peter Zijlstrafccc7142009-05-23 18:28:56 +02004535 mutex_unlock(&parent_counter->child_mutex);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004536
4537 /*
4538 * Release the parent counter, if this was the last
4539 * reference to it.
4540 */
4541 fput(parent_counter->filp);
4542}
4543
Ingo Molnar9b51f662008-12-12 13:49:45 +01004544static void
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004545__perf_counter_exit_task(struct perf_counter *child_counter,
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004546 struct perf_counter_context *child_ctx,
4547 struct task_struct *child)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004548{
4549 struct perf_counter *parent_counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004550
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004551 update_counter_times(child_counter);
Peter Zijlstraaa9c67f2009-05-23 18:28:59 +02004552 perf_counter_remove_from_context(child_counter);
Ingo Molnar0cc0c022008-12-14 23:20:36 +01004553
Ingo Molnar9b51f662008-12-12 13:49:45 +01004554 parent_counter = child_counter->parent;
4555 /*
4556 * It can happen that parent exits first, and has counters
4557 * that are still around due to the child reference. These
4558 * counters need to be zapped - but otherwise linger.
4559 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004560 if (parent_counter) {
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004561 sync_child_counter(child_counter, child);
Peter Zijlstraf1600952009-03-19 20:26:16 +01004562 free_counter(child_counter);
Paul Mackerras4bcf3492009-02-11 13:53:19 +01004563 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004564}
4565
4566/*
Paul Mackerrasd859e292009-01-17 18:10:22 +11004567 * When a child task exits, feed back counter values to parent counters.
Ingo Molnar9b51f662008-12-12 13:49:45 +01004568 */
4569void perf_counter_exit_task(struct task_struct *child)
4570{
4571 struct perf_counter *child_counter, *tmp;
4572 struct perf_counter_context *child_ctx;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004573 unsigned long flags;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004574
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02004575 if (likely(!child->perf_counter_ctxp)) {
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02004576 perf_counter_task(child, NULL, 0);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004577 return;
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02004578 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004579
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004580 local_irq_save(flags);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004581 /*
4582 * We can't reschedule here because interrupts are disabled,
4583 * and either child is current or it is a task that can't be
4584 * scheduled, so we are now safe from rescheduling changing
4585 * our context.
4586 */
4587 child_ctx = child->perf_counter_ctxp;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004588 __perf_counter_task_sched_out(child_ctx);
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004589
4590 /*
4591 * Take the context lock here so that if find_get_context is
4592 * reading child->perf_counter_ctxp, we wait until it has
4593 * incremented the context's refcount before we do put_ctx below.
4594 */
4595 spin_lock(&child_ctx->lock);
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02004596 child->perf_counter_ctxp = NULL;
Peter Zijlstra71a851b2009-07-10 09:06:56 +02004597 /*
4598 * If this context is a clone; unclone it so it can't get
4599 * swapped to another process while we're removing all
4600 * the counters from it.
4601 */
4602 unclone_ctx(child_ctx);
Peter Zijlstra9f498cc2009-07-23 14:46:33 +02004603 spin_unlock_irqrestore(&child_ctx->lock, flags);
4604
4605 /*
4606 * Report the task dead after unscheduling the counters so that we
4607 * won't get any samples after PERF_EVENT_EXIT. We can however still
4608 * get a few PERF_EVENT_READ events.
4609 */
Peter Zijlstra3a80b4a2009-08-07 19:49:01 +02004610 perf_counter_task(child, child_ctx, 0);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004611
Peter Zijlstra66fff222009-06-10 22:53:37 +02004612 /*
4613 * We can recurse on the same lock type through:
4614 *
4615 * __perf_counter_exit_task()
4616 * sync_child_counter()
4617 * fput(parent_counter->filp)
4618 * perf_release()
4619 * mutex_lock(&ctx->mutex)
4620 *
4621 * But since its the parent context it won't be the same instance.
4622 */
4623 mutex_lock_nested(&child_ctx->mutex, SINGLE_DEPTH_NESTING);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004624
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004625again:
Ingo Molnar9b51f662008-12-12 13:49:45 +01004626 list_for_each_entry_safe(child_counter, tmp, &child_ctx->counter_list,
4627 list_entry)
Peter Zijlstra38b200d2009-06-23 20:13:11 +02004628 __perf_counter_exit_task(child_counter, child_ctx, child);
Peter Zijlstra8bc20952009-05-15 20:45:59 +02004629
4630 /*
4631 * If the last counter was a group counter, it will have appended all
4632 * its siblings to the list, but we obtained 'tmp' before that which
4633 * will still point to the list head terminating the iteration.
4634 */
4635 if (!list_empty(&child_ctx->counter_list))
4636 goto again;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004637
4638 mutex_unlock(&child_ctx->mutex);
4639
4640 put_ctx(child_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004641}
4642
4643/*
Peter Zijlstrabbbee902009-05-29 14:25:58 +02004644 * free an unexposed, unused context as created by inheritance by
4645 * init_task below, used by fork() in case of fail.
4646 */
4647void perf_counter_free_task(struct task_struct *task)
4648{
4649 struct perf_counter_context *ctx = task->perf_counter_ctxp;
4650 struct perf_counter *counter, *tmp;
4651
4652 if (!ctx)
4653 return;
4654
4655 mutex_lock(&ctx->mutex);
4656again:
4657 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry) {
4658 struct perf_counter *parent = counter->parent;
4659
4660 if (WARN_ON_ONCE(!parent))
4661 continue;
4662
4663 mutex_lock(&parent->child_mutex);
4664 list_del_init(&counter->child_list);
4665 mutex_unlock(&parent->child_mutex);
4666
4667 fput(parent->filp);
4668
4669 list_del_counter(counter, ctx);
4670 free_counter(counter);
4671 }
4672
4673 if (!list_empty(&ctx->counter_list))
4674 goto again;
4675
4676 mutex_unlock(&ctx->mutex);
4677
4678 put_ctx(ctx);
4679}
4680
4681/*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004682 * Initialize the perf_counter context in task_struct
4683 */
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004684int perf_counter_init_task(struct task_struct *child)
Ingo Molnar9b51f662008-12-12 13:49:45 +01004685{
4686 struct perf_counter_context *child_ctx, *parent_ctx;
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004687 struct perf_counter_context *cloned_ctx;
Paul Mackerrasd859e292009-01-17 18:10:22 +11004688 struct perf_counter *counter;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004689 struct task_struct *parent = current;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004690 int inherited_all = 1;
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004691 int ret = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004692
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004693 child->perf_counter_ctxp = NULL;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004694
Peter Zijlstra082ff5a2009-05-23 18:29:00 +02004695 mutex_init(&child->perf_counter_mutex);
4696 INIT_LIST_HEAD(&child->perf_counter_list);
4697
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004698 if (likely(!parent->perf_counter_ctxp))
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004699 return 0;
4700
Ingo Molnar9b51f662008-12-12 13:49:45 +01004701 /*
4702 * This is executed from the parent task context, so inherit
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004703 * counters that have been marked for cloning.
4704 * First allocate and initialize a context for the child.
Ingo Molnar9b51f662008-12-12 13:49:45 +01004705 */
4706
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004707 child_ctx = kmalloc(sizeof(struct perf_counter_context), GFP_KERNEL);
4708 if (!child_ctx)
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004709 return -ENOMEM;
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004710
4711 __perf_counter_init_context(child_ctx, child);
4712 child->perf_counter_ctxp = child_ctx;
Paul Mackerrasc93f7662009-05-28 22:18:17 +10004713 get_task_struct(child);
Paul Mackerrasa63eaf32009-05-22 14:17:31 +10004714
Ingo Molnar9b51f662008-12-12 13:49:45 +01004715 /*
Paul Mackerras25346b92009-06-01 17:48:12 +10004716 * If the parent's context is a clone, pin it so it won't get
4717 * swapped under us.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004718 */
Paul Mackerras25346b92009-06-01 17:48:12 +10004719 parent_ctx = perf_pin_task_context(parent);
4720
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004721 /*
4722 * No need to check if parent_ctx != NULL here; since we saw
4723 * it non-NULL earlier, the only reason for it to become NULL
4724 * is if we exit, and since we're currently in the middle of
4725 * a fork we can't be exiting at the same time.
4726 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004727
4728 /*
Ingo Molnar9b51f662008-12-12 13:49:45 +01004729 * Lock the parent list. No need to lock the child - not PID
4730 * hashed yet and not running, so nobody can access it.
4731 */
Paul Mackerrasd859e292009-01-17 18:10:22 +11004732 mutex_lock(&parent_ctx->mutex);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004733
4734 /*
4735 * We dont have to disable NMIs - we are only looking at
4736 * the list, not manipulating it:
4737 */
Peter Zijlstrad7b629a2009-05-20 12:21:19 +02004738 list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
4739 if (counter != counter->group_leader)
4740 continue;
4741
Peter Zijlstra0d486962009-06-02 19:22:16 +02004742 if (!counter->attr.inherit) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004743 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004744 continue;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004745 }
Ingo Molnar9b51f662008-12-12 13:49:45 +01004746
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004747 ret = inherit_group(counter, parent, parent_ctx,
4748 child, child_ctx);
4749 if (ret) {
Paul Mackerras564c2b22009-05-22 14:27:22 +10004750 inherited_all = 0;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004751 break;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004752 }
4753 }
4754
4755 if (inherited_all) {
4756 /*
4757 * Mark the child context as a clone of the parent
4758 * context, or of whatever the parent is a clone of.
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004759 * Note that if the parent is a clone, it could get
4760 * uncloned at any point, but that doesn't matter
4761 * because the list of counters and the generation
4762 * count can't have changed since we took the mutex.
Paul Mackerras564c2b22009-05-22 14:27:22 +10004763 */
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004764 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
4765 if (cloned_ctx) {
4766 child_ctx->parent_ctx = cloned_ctx;
Paul Mackerras25346b92009-06-01 17:48:12 +10004767 child_ctx->parent_gen = parent_ctx->parent_gen;
Paul Mackerras564c2b22009-05-22 14:27:22 +10004768 } else {
4769 child_ctx->parent_ctx = parent_ctx;
4770 child_ctx->parent_gen = parent_ctx->generation;
4771 }
4772 get_ctx(child_ctx->parent_ctx);
Ingo Molnar9b51f662008-12-12 13:49:45 +01004773 }
4774
Paul Mackerrasd859e292009-01-17 18:10:22 +11004775 mutex_unlock(&parent_ctx->mutex);
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004776
Paul Mackerras25346b92009-06-01 17:48:12 +10004777 perf_unpin_context(parent_ctx);
Paul Mackerrasad3a37d2009-05-29 16:06:20 +10004778
Peter Zijlstra6ab423e2009-05-25 14:45:27 +02004779 return ret;
Ingo Molnar9b51f662008-12-12 13:49:45 +01004780}
4781
Ingo Molnar04289bb2008-12-11 08:38:42 +01004782static void __cpuinit perf_counter_init_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004783{
Ingo Molnar04289bb2008-12-11 08:38:42 +01004784 struct perf_cpu_context *cpuctx;
Thomas Gleixner0793a612008-12-04 20:12:29 +01004785
Ingo Molnar04289bb2008-12-11 08:38:42 +01004786 cpuctx = &per_cpu(perf_cpu_context, cpu);
4787 __perf_counter_init_context(&cpuctx->ctx, NULL);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004788
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004789 spin_lock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004790 cpuctx->max_pertask = perf_max_counters - perf_reserved_percpu;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004791 spin_unlock(&perf_resource_lock);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004792
Paul Mackerras01d02872009-01-14 13:44:19 +11004793 hw_perf_counter_setup(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004794}
4795
4796#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnar04289bb2008-12-11 08:38:42 +01004797static void __perf_counter_exit_cpu(void *info)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004798{
4799 struct perf_cpu_context *cpuctx = &__get_cpu_var(perf_cpu_context);
4800 struct perf_counter_context *ctx = &cpuctx->ctx;
4801 struct perf_counter *counter, *tmp;
4802
Ingo Molnar04289bb2008-12-11 08:38:42 +01004803 list_for_each_entry_safe(counter, tmp, &ctx->counter_list, list_entry)
4804 __perf_counter_remove_from_context(counter);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004805}
Ingo Molnar04289bb2008-12-11 08:38:42 +01004806static void perf_counter_exit_cpu(int cpu)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004807{
Paul Mackerrasd859e292009-01-17 18:10:22 +11004808 struct perf_cpu_context *cpuctx = &per_cpu(perf_cpu_context, cpu);
4809 struct perf_counter_context *ctx = &cpuctx->ctx;
4810
4811 mutex_lock(&ctx->mutex);
Ingo Molnar04289bb2008-12-11 08:38:42 +01004812 smp_call_function_single(cpu, __perf_counter_exit_cpu, NULL, 1);
Paul Mackerrasd859e292009-01-17 18:10:22 +11004813 mutex_unlock(&ctx->mutex);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004814}
4815#else
Ingo Molnar04289bb2008-12-11 08:38:42 +01004816static inline void perf_counter_exit_cpu(int cpu) { }
Thomas Gleixner0793a612008-12-04 20:12:29 +01004817#endif
4818
4819static int __cpuinit
4820perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
4821{
4822 unsigned int cpu = (long)hcpu;
4823
4824 switch (action) {
4825
4826 case CPU_UP_PREPARE:
4827 case CPU_UP_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004828 perf_counter_init_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004829 break;
4830
Ingo Molnar28402972009-08-13 10:13:22 +02004831 case CPU_ONLINE:
4832 case CPU_ONLINE_FROZEN:
4833 hw_perf_counter_setup_online(cpu);
4834 break;
4835
Thomas Gleixner0793a612008-12-04 20:12:29 +01004836 case CPU_DOWN_PREPARE:
4837 case CPU_DOWN_PREPARE_FROZEN:
Ingo Molnar04289bb2008-12-11 08:38:42 +01004838 perf_counter_exit_cpu(cpu);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004839 break;
4840
4841 default:
4842 break;
4843 }
4844
4845 return NOTIFY_OK;
4846}
4847
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004848/*
4849 * This has to have a higher priority than migration_notifier in sched.c.
4850 */
Thomas Gleixner0793a612008-12-04 20:12:29 +01004851static struct notifier_block __cpuinitdata perf_cpu_nb = {
4852 .notifier_call = perf_cpu_notify,
Paul Mackerrasf38b0822009-06-02 21:05:16 +10004853 .priority = 20,
Thomas Gleixner0793a612008-12-04 20:12:29 +01004854};
4855
Ingo Molnar0d905bc2009-05-04 19:13:30 +02004856void __init perf_counter_init(void)
Thomas Gleixner0793a612008-12-04 20:12:29 +01004857{
4858 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_UP_PREPARE,
4859 (void *)(long)smp_processor_id());
Ingo Molnar28402972009-08-13 10:13:22 +02004860 perf_cpu_notify(&perf_cpu_nb, (unsigned long)CPU_ONLINE,
4861 (void *)(long)smp_processor_id());
Thomas Gleixner0793a612008-12-04 20:12:29 +01004862 register_cpu_notifier(&perf_cpu_nb);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004863}
Thomas Gleixner0793a612008-12-04 20:12:29 +01004864
4865static ssize_t perf_show_reserve_percpu(struct sysdev_class *class, char *buf)
4866{
4867 return sprintf(buf, "%d\n", perf_reserved_percpu);
4868}
4869
4870static ssize_t
4871perf_set_reserve_percpu(struct sysdev_class *class,
4872 const char *buf,
4873 size_t count)
4874{
4875 struct perf_cpu_context *cpuctx;
4876 unsigned long val;
4877 int err, cpu, mpt;
4878
4879 err = strict_strtoul(buf, 10, &val);
4880 if (err)
4881 return err;
4882 if (val > perf_max_counters)
4883 return -EINVAL;
4884
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004885 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004886 perf_reserved_percpu = val;
4887 for_each_online_cpu(cpu) {
4888 cpuctx = &per_cpu(perf_cpu_context, cpu);
4889 spin_lock_irq(&cpuctx->ctx.lock);
4890 mpt = min(perf_max_counters - cpuctx->ctx.nr_counters,
4891 perf_max_counters - perf_reserved_percpu);
4892 cpuctx->max_pertask = mpt;
4893 spin_unlock_irq(&cpuctx->ctx.lock);
4894 }
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004895 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004896
4897 return count;
4898}
4899
4900static ssize_t perf_show_overcommit(struct sysdev_class *class, char *buf)
4901{
4902 return sprintf(buf, "%d\n", perf_overcommit);
4903}
4904
4905static ssize_t
4906perf_set_overcommit(struct sysdev_class *class, const char *buf, size_t count)
4907{
4908 unsigned long val;
4909 int err;
4910
4911 err = strict_strtoul(buf, 10, &val);
4912 if (err)
4913 return err;
4914 if (val > 1)
4915 return -EINVAL;
4916
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004917 spin_lock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004918 perf_overcommit = val;
Ingo Molnar1dce8d92009-05-04 19:23:18 +02004919 spin_unlock(&perf_resource_lock);
Thomas Gleixner0793a612008-12-04 20:12:29 +01004920
4921 return count;
4922}
4923
4924static SYSDEV_CLASS_ATTR(
4925 reserve_percpu,
4926 0644,
4927 perf_show_reserve_percpu,
4928 perf_set_reserve_percpu
4929 );
4930
4931static SYSDEV_CLASS_ATTR(
4932 overcommit,
4933 0644,
4934 perf_show_overcommit,
4935 perf_set_overcommit
4936 );
4937
4938static struct attribute *perfclass_attrs[] = {
4939 &attr_reserve_percpu.attr,
4940 &attr_overcommit.attr,
4941 NULL
4942};
4943
4944static struct attribute_group perfclass_attr_group = {
4945 .attrs = perfclass_attrs,
4946 .name = "perf_counters",
4947};
4948
4949static int __init perf_counter_sysfs_init(void)
4950{
4951 return sysfs_create_group(&cpu_sysdev_class.kset.kobj,
4952 &perfclass_attr_group);
4953}
4954device_initcall(perf_counter_sysfs_init);