blob: 8ca6e690ffe3255ee1084104e6730c818dcfb921 [file] [log] [blame]
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001/*
Ingo Molnar57c0c152009-09-21 12:20:38 +02002 * Performance events core code:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003 *
4 * 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>
7 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
8 *
Ingo Molnar57c0c152009-09-21 12:20:38 +02009 * For licensing details see kernel-base/COPYING
Ingo Molnarcdd6c482009-09-21 12:02:48 +020010 */
11
12#include <linux/fs.h>
13#include <linux/mm.h>
14#include <linux/cpu.h>
15#include <linux/smp.h>
16#include <linux/file.h>
17#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020019#include <linux/hash.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020020#include <linux/sysfs.h>
21#include <linux/dcache.h>
22#include <linux/percpu.h>
23#include <linux/ptrace.h>
24#include <linux/vmstat.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020025#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020026#include <linux/hardirq.h>
27#include <linux/rculist.h>
28#include <linux/uaccess.h>
29#include <linux/syscalls.h>
30#include <linux/anon_inodes.h>
31#include <linux/kernel_stat.h>
32#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080033#include <linux/ftrace_event.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020034
35#include <asm/irq_regs.h>
36
Ingo Molnarcdd6c482009-09-21 12:02:48 +020037static atomic_t nr_events __read_mostly;
38static atomic_t nr_mmap_events __read_mostly;
39static atomic_t nr_comm_events __read_mostly;
40static atomic_t nr_task_events __read_mostly;
41
Peter Zijlstra108b02c2010-09-06 14:32:03 +020042static LIST_HEAD(pmus);
43static DEFINE_MUTEX(pmus_lock);
44static struct srcu_struct pmus_srcu;
45
Ingo Molnarcdd6c482009-09-21 12:02:48 +020046/*
47 * perf event paranoia level:
48 * -1 - not paranoid at all
49 * 0 - disallow raw tracepoint access for unpriv
50 * 1 - disallow cpu events for unpriv
51 * 2 - disallow kernel profiling for unpriv
52 */
53int sysctl_perf_event_paranoid __read_mostly = 1;
54
Ingo Molnarcdd6c482009-09-21 12:02:48 +020055int sysctl_perf_event_mlock __read_mostly = 512; /* 'free' kb per user */
56
57/*
58 * max perf event sample rate
59 */
60int sysctl_perf_event_sample_rate __read_mostly = 100000;
61
62static atomic64_t perf_event_id;
63
Ingo Molnarcdd6c482009-09-21 12:02:48 +020064void __weak perf_event_print_debug(void) { }
65
Peter Zijlstra33696fc2010-06-14 08:49:00 +020066void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020067{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020068 int *count = this_cpu_ptr(pmu->pmu_disable_count);
69 if (!(*count)++)
70 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020071}
72
Peter Zijlstra33696fc2010-06-14 08:49:00 +020073void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020074{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020075 int *count = this_cpu_ptr(pmu->pmu_disable_count);
76 if (!--(*count))
77 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020078}
79
Peter Zijlstra108b02c2010-09-06 14:32:03 +020080static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020081{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020082 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020083
84 if (hrtimer_active(&cpuctx->timer))
85 return;
86
87 __hrtimer_start_range_ns(&cpuctx->timer,
88 ns_to_ktime(cpuctx->timer_interval), 0,
89 HRTIMER_MODE_REL_PINNED, 0);
90}
91
Peter Zijlstra108b02c2010-09-06 14:32:03 +020092static void perf_pmu_rotate_stop(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020093{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020094 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020095
96 hrtimer_cancel(&cpuctx->timer);
97}
98
Ingo Molnarcdd6c482009-09-21 12:02:48 +020099static void get_ctx(struct perf_event_context *ctx)
100{
101 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
102}
103
104static void free_ctx(struct rcu_head *head)
105{
106 struct perf_event_context *ctx;
107
108 ctx = container_of(head, struct perf_event_context, rcu_head);
109 kfree(ctx);
110}
111
112static void put_ctx(struct perf_event_context *ctx)
113{
114 if (atomic_dec_and_test(&ctx->refcount)) {
115 if (ctx->parent_ctx)
116 put_ctx(ctx->parent_ctx);
117 if (ctx->task)
118 put_task_struct(ctx->task);
119 call_rcu(&ctx->rcu_head, free_ctx);
120 }
121}
122
123static void unclone_ctx(struct perf_event_context *ctx)
124{
125 if (ctx->parent_ctx) {
126 put_ctx(ctx->parent_ctx);
127 ctx->parent_ctx = NULL;
128 }
129}
130
131/*
132 * If we inherit events we want to return the parent event id
133 * to userspace.
134 */
135static u64 primary_event_id(struct perf_event *event)
136{
137 u64 id = event->id;
138
139 if (event->parent)
140 id = event->parent->id;
141
142 return id;
143}
144
145/*
146 * Get the perf_event_context for a task and lock it.
147 * This has to cope with with the fact that until it is locked,
148 * the context could get moved to another task.
149 */
150static struct perf_event_context *
151perf_lock_task_context(struct task_struct *task, unsigned long *flags)
152{
153 struct perf_event_context *ctx;
154
155 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200156retry:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200157 ctx = rcu_dereference(task->perf_event_ctxp);
158 if (ctx) {
159 /*
160 * If this context is a clone of another, it might
161 * get swapped for another underneath us by
162 * perf_event_task_sched_out, though the
163 * rcu_read_lock() protects us from any context
164 * getting freed. Lock the context and check if it
165 * got swapped before we could get the lock, and retry
166 * if so. If we locked the right context, then it
167 * can't get swapped on us any more.
168 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100169 raw_spin_lock_irqsave(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200170 if (ctx != rcu_dereference(task->perf_event_ctxp)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100171 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200172 goto retry;
173 }
174
175 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100176 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200177 ctx = NULL;
178 }
179 }
180 rcu_read_unlock();
181 return ctx;
182}
183
184/*
185 * Get the context for a task and increment its pin_count so it
186 * can't get swapped to another task. This also increments its
187 * reference count so that the context can't get freed.
188 */
189static struct perf_event_context *perf_pin_task_context(struct task_struct *task)
190{
191 struct perf_event_context *ctx;
192 unsigned long flags;
193
194 ctx = perf_lock_task_context(task, &flags);
195 if (ctx) {
196 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100197 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200198 }
199 return ctx;
200}
201
202static void perf_unpin_context(struct perf_event_context *ctx)
203{
204 unsigned long flags;
205
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100206 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200207 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100208 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200209 put_ctx(ctx);
210}
211
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100212static inline u64 perf_clock(void)
213{
Peter Zijlstrac6763292010-05-25 10:48:51 +0200214 return local_clock();
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100215}
216
217/*
218 * Update the record of the current time in a context.
219 */
220static void update_context_time(struct perf_event_context *ctx)
221{
222 u64 now = perf_clock();
223
224 ctx->time += now - ctx->timestamp;
225 ctx->timestamp = now;
226}
227
228/*
229 * Update the total_time_enabled and total_time_running fields for a event.
230 */
231static void update_event_times(struct perf_event *event)
232{
233 struct perf_event_context *ctx = event->ctx;
234 u64 run_end;
235
236 if (event->state < PERF_EVENT_STATE_INACTIVE ||
237 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
238 return;
239
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100240 if (ctx->is_active)
241 run_end = ctx->time;
242 else
243 run_end = event->tstamp_stopped;
244
245 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100246
247 if (event->state == PERF_EVENT_STATE_INACTIVE)
248 run_end = event->tstamp_stopped;
249 else
250 run_end = ctx->time;
251
252 event->total_time_running = run_end - event->tstamp_running;
253}
254
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200255/*
256 * Update total_time_enabled and total_time_running for all events in a group.
257 */
258static void update_group_times(struct perf_event *leader)
259{
260 struct perf_event *event;
261
262 update_event_times(leader);
263 list_for_each_entry(event, &leader->sibling_list, group_entry)
264 update_event_times(event);
265}
266
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100267static struct list_head *
268ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
269{
270 if (event->attr.pinned)
271 return &ctx->pinned_groups;
272 else
273 return &ctx->flexible_groups;
274}
275
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200276/*
277 * Add a event from the lists for its context.
278 * Must be called with ctx->mutex and ctx->lock held.
279 */
280static void
281list_add_event(struct perf_event *event, struct perf_event_context *ctx)
282{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200283 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
284 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200285
286 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200287 * If we're a stand alone event or group leader, we go to the context
288 * list, group events are kept attached to the group so that
289 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200290 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200291 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100292 struct list_head *list;
293
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100294 if (is_software_event(event))
295 event->group_flags |= PERF_GROUP_SOFTWARE;
296
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100297 list = ctx_group_list(event, ctx);
298 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200299 }
300
301 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200302 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200303 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200304 ctx->nr_events++;
305 if (event->attr.inherit_stat)
306 ctx->nr_stat++;
307}
308
Peter Zijlstra8a495422010-05-27 15:47:49 +0200309static void perf_group_attach(struct perf_event *event)
310{
311 struct perf_event *group_leader = event->group_leader;
312
313 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_GROUP);
314 event->attach_state |= PERF_ATTACH_GROUP;
315
316 if (group_leader == event)
317 return;
318
319 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
320 !is_software_event(event))
321 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
322
323 list_add_tail(&event->group_entry, &group_leader->sibling_list);
324 group_leader->nr_siblings++;
325}
326
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200327/*
328 * Remove a event from the lists for its context.
329 * Must be called with ctx->mutex and ctx->lock held.
330 */
331static void
332list_del_event(struct perf_event *event, struct perf_event_context *ctx)
333{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200334 /*
335 * We can have double detach due to exit/hot-unplug + close.
336 */
337 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200338 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200339
340 event->attach_state &= ~PERF_ATTACH_CONTEXT;
341
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200342 ctx->nr_events--;
343 if (event->attr.inherit_stat)
344 ctx->nr_stat--;
345
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200346 list_del_rcu(&event->event_entry);
347
Peter Zijlstra8a495422010-05-27 15:47:49 +0200348 if (event->group_leader == event)
349 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200350
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200351 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -0800352
353 /*
354 * If event was in error state, then keep it
355 * that way, otherwise bogus counts will be
356 * returned on read(). The only way to get out
357 * of error state is by explicit re-enabling
358 * of the event
359 */
360 if (event->state > PERF_EVENT_STATE_OFF)
361 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +0200362}
363
Peter Zijlstra8a495422010-05-27 15:47:49 +0200364static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +0200365{
366 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200367 struct list_head *list = NULL;
368
369 /*
370 * We can have double detach due to exit/hot-unplug + close.
371 */
372 if (!(event->attach_state & PERF_ATTACH_GROUP))
373 return;
374
375 event->attach_state &= ~PERF_ATTACH_GROUP;
376
377 /*
378 * If this is a sibling, remove it from its group.
379 */
380 if (event->group_leader != event) {
381 list_del_init(&event->group_entry);
382 event->group_leader->nr_siblings--;
383 return;
384 }
385
386 if (!list_empty(&event->group_entry))
387 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +0100388
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200389 /*
390 * If this was a group event with sibling events then
391 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +0200392 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200393 */
394 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +0200395 if (list)
396 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200397 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100398
399 /* Inherit group flags from the previous leader */
400 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200401 }
402}
403
Stephane Eranianfa66f072010-08-26 16:40:01 +0200404static inline int
405event_filter_match(struct perf_event *event)
406{
407 return event->cpu == -1 || event->cpu == smp_processor_id();
408}
409
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200410static void
411event_sched_out(struct perf_event *event,
412 struct perf_cpu_context *cpuctx,
413 struct perf_event_context *ctx)
414{
Stephane Eranianfa66f072010-08-26 16:40:01 +0200415 u64 delta;
416 /*
417 * An event which could not be activated because of
418 * filter mismatch still needs to have its timings
419 * maintained, otherwise bogus information is return
420 * via read() for time_enabled, time_running:
421 */
422 if (event->state == PERF_EVENT_STATE_INACTIVE
423 && !event_filter_match(event)) {
424 delta = ctx->time - event->tstamp_stopped;
425 event->tstamp_running += delta;
426 event->tstamp_stopped = ctx->time;
427 }
428
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200429 if (event->state != PERF_EVENT_STATE_ACTIVE)
430 return;
431
432 event->state = PERF_EVENT_STATE_INACTIVE;
433 if (event->pending_disable) {
434 event->pending_disable = 0;
435 event->state = PERF_EVENT_STATE_OFF;
436 }
437 event->tstamp_stopped = ctx->time;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200438 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200439 event->oncpu = -1;
440
441 if (!is_software_event(event))
442 cpuctx->active_oncpu--;
443 ctx->nr_active--;
444 if (event->attr.exclusive || !cpuctx->active_oncpu)
445 cpuctx->exclusive = 0;
446}
447
448static void
449group_sched_out(struct perf_event *group_event,
450 struct perf_cpu_context *cpuctx,
451 struct perf_event_context *ctx)
452{
453 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +0200454 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200455
456 event_sched_out(group_event, cpuctx, ctx);
457
458 /*
459 * Schedule out siblings (if any):
460 */
461 list_for_each_entry(event, &group_event->sibling_list, group_entry)
462 event_sched_out(event, cpuctx, ctx);
463
Stephane Eranianfa66f072010-08-26 16:40:01 +0200464 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200465 cpuctx->exclusive = 0;
466}
467
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200468static inline struct perf_cpu_context *
469__get_cpu_context(struct perf_event_context *ctx)
470{
471 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
472}
473
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200474/*
475 * Cross CPU call to remove a performance event
476 *
477 * We disable the event on the hardware level first. After that we
478 * remove it from the context list.
479 */
480static void __perf_event_remove_from_context(void *info)
481{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200482 struct perf_event *event = info;
483 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200484 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200485
486 /*
487 * If this is a task context, we need to check whether it is
488 * the current task context of this cpu. If not it has been
489 * scheduled out before the smp call arrived.
490 */
491 if (ctx->task && cpuctx->task_ctx != ctx)
492 return;
493
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100494 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200495
496 event_sched_out(event, cpuctx, ctx);
497
498 list_del_event(event, ctx);
499
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100500 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200501}
502
503
504/*
505 * Remove the event from a task's (or a CPU's) list of events.
506 *
507 * Must be called with ctx->mutex held.
508 *
509 * CPU events are removed with a smp call. For task events we only
510 * call when the task is on a CPU.
511 *
512 * If event->ctx is a cloned context, callers must make sure that
513 * every task struct that event->ctx->task could possibly point to
514 * remains valid. This is OK when called from perf_release since
515 * that only calls us on the top-level context, which can't be a clone.
516 * When called from perf_event_exit_task, it's OK because the
517 * context has been detached from its task.
518 */
519static void perf_event_remove_from_context(struct perf_event *event)
520{
521 struct perf_event_context *ctx = event->ctx;
522 struct task_struct *task = ctx->task;
523
524 if (!task) {
525 /*
526 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200527 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200528 */
529 smp_call_function_single(event->cpu,
530 __perf_event_remove_from_context,
531 event, 1);
532 return;
533 }
534
535retry:
536 task_oncpu_function_call(task, __perf_event_remove_from_context,
537 event);
538
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100539 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200540 /*
541 * If the context is active we need to retry the smp call.
542 */
543 if (ctx->nr_active && !list_empty(&event->group_entry)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100544 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200545 goto retry;
546 }
547
548 /*
549 * The lock prevents that this context is scheduled in so we
550 * can remove the event safely, if the call above did not
551 * succeed.
552 */
Peter Zijlstra6c2bfcb2009-11-23 11:37:24 +0100553 if (!list_empty(&event->group_entry))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200554 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100555 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200556}
557
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200558/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200559 * Cross CPU call to disable a performance event
560 */
561static void __perf_event_disable(void *info)
562{
563 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200564 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200565 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200566
567 /*
568 * If this is a per-task event, need to check whether this
569 * event's task is the current task on this cpu.
570 */
571 if (ctx->task && cpuctx->task_ctx != ctx)
572 return;
573
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100574 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200575
576 /*
577 * If the event is on, turn it off.
578 * If it is in error state, leave it in error state.
579 */
580 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
581 update_context_time(ctx);
582 update_group_times(event);
583 if (event == event->group_leader)
584 group_sched_out(event, cpuctx, ctx);
585 else
586 event_sched_out(event, cpuctx, ctx);
587 event->state = PERF_EVENT_STATE_OFF;
588 }
589
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100590 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200591}
592
593/*
594 * Disable a event.
595 *
596 * If event->ctx is a cloned context, callers must make sure that
597 * every task struct that event->ctx->task could possibly point to
598 * remains valid. This condition is satisifed when called through
599 * perf_event_for_each_child or perf_event_for_each because they
600 * hold the top-level event's child_mutex, so any descendant that
601 * goes to exit will block in sync_child_event.
602 * When called from perf_pending_event it's OK because event->ctx
603 * is the current context on this CPU and preemption is disabled,
604 * hence we can't get into perf_event_task_sched_out for this context.
605 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +0100606void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200607{
608 struct perf_event_context *ctx = event->ctx;
609 struct task_struct *task = ctx->task;
610
611 if (!task) {
612 /*
613 * Disable the event on the cpu that it's on
614 */
615 smp_call_function_single(event->cpu, __perf_event_disable,
616 event, 1);
617 return;
618 }
619
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200620retry:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200621 task_oncpu_function_call(task, __perf_event_disable, event);
622
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100623 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200624 /*
625 * If the event is still active, we need to retry the cross-call.
626 */
627 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100628 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200629 goto retry;
630 }
631
632 /*
633 * Since we have the lock this context can't be scheduled
634 * in, so we can change the state safely.
635 */
636 if (event->state == PERF_EVENT_STATE_INACTIVE) {
637 update_group_times(event);
638 event->state = PERF_EVENT_STATE_OFF;
639 }
640
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100641 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200642}
643
644static int
645event_sched_in(struct perf_event *event,
646 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100647 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200648{
649 if (event->state <= PERF_EVENT_STATE_OFF)
650 return 0;
651
652 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +0100653 event->oncpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200654 /*
655 * The new state must be visible before we turn it on in the hardware:
656 */
657 smp_wmb();
658
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200659 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200660 event->state = PERF_EVENT_STATE_INACTIVE;
661 event->oncpu = -1;
662 return -EAGAIN;
663 }
664
665 event->tstamp_running += ctx->time - event->tstamp_stopped;
666
667 if (!is_software_event(event))
668 cpuctx->active_oncpu++;
669 ctx->nr_active++;
670
671 if (event->attr.exclusive)
672 cpuctx->exclusive = 1;
673
674 return 0;
675}
676
677static int
678group_sched_in(struct perf_event *group_event,
679 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100680 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200681{
Lin Ming6bde9b62010-04-23 13:56:00 +0800682 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200683 struct pmu *pmu = group_event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200684
685 if (group_event->state == PERF_EVENT_STATE_OFF)
686 return 0;
687
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200688 pmu->start_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200689
Stephane Eranian90151c352010-05-25 16:23:10 +0200690 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200691 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200692 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +0200693 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200694
695 /*
696 * Schedule in siblings as one group (if any):
697 */
698 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Peter Zijlstra6e377382010-02-11 13:21:58 +0100699 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200700 partial_group = event;
701 goto group_error;
702 }
703 }
704
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200705 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +1000706 return 0;
Lin Ming6bde9b62010-04-23 13:56:00 +0800707
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200708group_error:
709 /*
710 * Groups can be scheduled in as one unit only, so undo any
711 * partial group before returning:
712 */
713 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
714 if (event == partial_group)
715 break;
716 event_sched_out(event, cpuctx, ctx);
717 }
718 event_sched_out(group_event, cpuctx, ctx);
719
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200720 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +0200721
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200722 return -EAGAIN;
723}
724
725/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200726 * Work out whether we can put this event group on the CPU now.
727 */
728static int group_can_go_on(struct perf_event *event,
729 struct perf_cpu_context *cpuctx,
730 int can_add_hw)
731{
732 /*
733 * Groups consisting entirely of software events can always go on.
734 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100735 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200736 return 1;
737 /*
738 * If an exclusive group is already on, no other hardware
739 * events can go on.
740 */
741 if (cpuctx->exclusive)
742 return 0;
743 /*
744 * If this group is exclusive and there are already
745 * events on the CPU, it can't go on.
746 */
747 if (event->attr.exclusive && cpuctx->active_oncpu)
748 return 0;
749 /*
750 * Otherwise, try to add it if all previous groups were able
751 * to go on.
752 */
753 return can_add_hw;
754}
755
756static void add_event_to_ctx(struct perf_event *event,
757 struct perf_event_context *ctx)
758{
759 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200760 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200761 event->tstamp_enabled = ctx->time;
762 event->tstamp_running = ctx->time;
763 event->tstamp_stopped = ctx->time;
764}
765
766/*
767 * Cross CPU call to install and enable a performance event
768 *
769 * Must be called with ctx->mutex held
770 */
771static void __perf_install_in_context(void *info)
772{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200773 struct perf_event *event = info;
774 struct perf_event_context *ctx = event->ctx;
775 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200776 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200777 int err;
778
779 /*
780 * If this is a task context, we need to check whether it is
781 * the current task context of this cpu. If not it has been
782 * scheduled out before the smp call arrived.
783 * Or possibly this is the right context but it isn't
784 * on this cpu because it had no events.
785 */
786 if (ctx->task && cpuctx->task_ctx != ctx) {
787 if (cpuctx->task_ctx || ctx->task != current)
788 return;
789 cpuctx->task_ctx = ctx;
790 }
791
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100792 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200793 ctx->is_active = 1;
794 update_context_time(ctx);
795
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200796 add_event_to_ctx(event, ctx);
797
Peter Zijlstraf4c41762009-12-16 17:55:54 +0100798 if (event->cpu != -1 && event->cpu != smp_processor_id())
799 goto unlock;
800
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200801 /*
802 * Don't put the event on if it is disabled or if
803 * it is in a group and the group isn't on.
804 */
805 if (event->state != PERF_EVENT_STATE_INACTIVE ||
806 (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE))
807 goto unlock;
808
809 /*
810 * An exclusive event can't go on if there are already active
811 * hardware events, and no hardware event can go on if there
812 * is already an exclusive event on.
813 */
814 if (!group_can_go_on(event, cpuctx, 1))
815 err = -EEXIST;
816 else
Peter Zijlstra6e377382010-02-11 13:21:58 +0100817 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200818
819 if (err) {
820 /*
821 * This event couldn't go on. If it is in a group
822 * then we have to pull the whole group off.
823 * If the event group is pinned then put it in error state.
824 */
825 if (leader != event)
826 group_sched_out(leader, cpuctx, ctx);
827 if (leader->attr.pinned) {
828 update_group_times(leader);
829 leader->state = PERF_EVENT_STATE_ERROR;
830 }
831 }
832
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200833unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100834 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200835}
836
837/*
838 * Attach a performance event to a context
839 *
840 * First we add the event to the list with the hardware enable bit
841 * in event->hw_config cleared.
842 *
843 * If the event is attached to a task which is on a CPU we use a smp
844 * call to enable it in the task context. The task might have been
845 * scheduled away, but we check this in the smp call again.
846 *
847 * Must be called with ctx->mutex held.
848 */
849static void
850perf_install_in_context(struct perf_event_context *ctx,
851 struct perf_event *event,
852 int cpu)
853{
854 struct task_struct *task = ctx->task;
855
Peter Zijlstrac3f00c72010-08-18 14:37:15 +0200856 event->ctx = ctx;
857
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200858 if (!task) {
859 /*
860 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200861 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200862 */
863 smp_call_function_single(cpu, __perf_install_in_context,
864 event, 1);
865 return;
866 }
867
868retry:
869 task_oncpu_function_call(task, __perf_install_in_context,
870 event);
871
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100872 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200873 /*
874 * we need to retry the smp call.
875 */
876 if (ctx->is_active && list_empty(&event->group_entry)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100877 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200878 goto retry;
879 }
880
881 /*
882 * The lock prevents that this context is scheduled in so we
883 * can add the event safely, if it the call above did not
884 * succeed.
885 */
886 if (list_empty(&event->group_entry))
887 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100888 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200889}
890
891/*
892 * Put a event into inactive state and update time fields.
893 * Enabling the leader of a group effectively enables all
894 * the group members that aren't explicitly disabled, so we
895 * have to update their ->tstamp_enabled also.
896 * Note: this works for group members as well as group leaders
897 * since the non-leader members' sibling_lists will be empty.
898 */
899static void __perf_event_mark_enabled(struct perf_event *event,
900 struct perf_event_context *ctx)
901{
902 struct perf_event *sub;
903
904 event->state = PERF_EVENT_STATE_INACTIVE;
905 event->tstamp_enabled = ctx->time - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200906 list_for_each_entry(sub, &event->sibling_list, group_entry) {
907 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200908 sub->tstamp_enabled =
909 ctx->time - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200910 }
911 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200912}
913
914/*
915 * Cross CPU call to enable a performance event
916 */
917static void __perf_event_enable(void *info)
918{
919 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200920 struct perf_event_context *ctx = event->ctx;
921 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200922 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200923 int err;
924
925 /*
926 * If this is a per-task event, need to check whether this
927 * event's task is the current task on this cpu.
928 */
929 if (ctx->task && cpuctx->task_ctx != ctx) {
930 if (cpuctx->task_ctx || ctx->task != current)
931 return;
932 cpuctx->task_ctx = ctx;
933 }
934
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100935 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200936 ctx->is_active = 1;
937 update_context_time(ctx);
938
939 if (event->state >= PERF_EVENT_STATE_INACTIVE)
940 goto unlock;
941 __perf_event_mark_enabled(event, ctx);
942
Peter Zijlstraf4c41762009-12-16 17:55:54 +0100943 if (event->cpu != -1 && event->cpu != smp_processor_id())
944 goto unlock;
945
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200946 /*
947 * If the event is in a group and isn't the group leader,
948 * then don't put it on unless the group is on.
949 */
950 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
951 goto unlock;
952
953 if (!group_can_go_on(event, cpuctx, 1)) {
954 err = -EEXIST;
955 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200956 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +0100957 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200958 else
Peter Zijlstra6e377382010-02-11 13:21:58 +0100959 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200960 }
961
962 if (err) {
963 /*
964 * If this event can't go on and it's part of a
965 * group, then the whole group has to come off.
966 */
967 if (leader != event)
968 group_sched_out(leader, cpuctx, ctx);
969 if (leader->attr.pinned) {
970 update_group_times(leader);
971 leader->state = PERF_EVENT_STATE_ERROR;
972 }
973 }
974
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200975unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100976 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200977}
978
979/*
980 * Enable a event.
981 *
982 * If event->ctx is a cloned context, callers must make sure that
983 * every task struct that event->ctx->task could possibly point to
984 * remains valid. This condition is satisfied when called through
985 * perf_event_for_each_child or perf_event_for_each as described
986 * for perf_event_disable.
987 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +0100988void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200989{
990 struct perf_event_context *ctx = event->ctx;
991 struct task_struct *task = ctx->task;
992
993 if (!task) {
994 /*
995 * Enable the event on the cpu that it's on
996 */
997 smp_call_function_single(event->cpu, __perf_event_enable,
998 event, 1);
999 return;
1000 }
1001
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001002 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001003 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1004 goto out;
1005
1006 /*
1007 * If the event is in error state, clear that first.
1008 * That way, if we see the event in error state below, we
1009 * know that it has gone back into error state, as distinct
1010 * from the task having been scheduled away before the
1011 * cross-call arrived.
1012 */
1013 if (event->state == PERF_EVENT_STATE_ERROR)
1014 event->state = PERF_EVENT_STATE_OFF;
1015
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001016retry:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001017 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001018 task_oncpu_function_call(task, __perf_event_enable, event);
1019
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001020 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001021
1022 /*
1023 * If the context is active and the event is still off,
1024 * we need to retry the cross-call.
1025 */
1026 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF)
1027 goto retry;
1028
1029 /*
1030 * Since we have the lock this context can't be scheduled
1031 * in, so we can change the state safely.
1032 */
1033 if (event->state == PERF_EVENT_STATE_OFF)
1034 __perf_event_mark_enabled(event, ctx);
1035
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001036out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001037 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001038}
1039
1040static int perf_event_refresh(struct perf_event *event, int refresh)
1041{
1042 /*
1043 * not supported on inherited events
1044 */
1045 if (event->attr.inherit)
1046 return -EINVAL;
1047
1048 atomic_add(refresh, &event->event_limit);
1049 perf_event_enable(event);
1050
1051 return 0;
1052}
1053
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001054enum event_type_t {
1055 EVENT_FLEXIBLE = 0x1,
1056 EVENT_PINNED = 0x2,
1057 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
1058};
1059
1060static void ctx_sched_out(struct perf_event_context *ctx,
1061 struct perf_cpu_context *cpuctx,
1062 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001063{
1064 struct perf_event *event;
1065
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001066 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001067 ctx->is_active = 0;
1068 if (likely(!ctx->nr_events))
1069 goto out;
1070 update_context_time(ctx);
1071
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001072 if (!ctx->nr_active)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001073 goto out;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001074
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001075 if (event_type & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001076 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1077 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001078 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001079
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001080 if (event_type & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001081 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001082 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001083 }
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001084out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001085 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001086}
1087
1088/*
1089 * Test whether two contexts are equivalent, i.e. whether they
1090 * have both been cloned from the same version of the same context
1091 * and they both have the same number of enabled events.
1092 * If the number of enabled events is the same, then the set
1093 * of enabled events should be the same, because these are both
1094 * inherited contexts, therefore we can't access individual events
1095 * in them directly with an fd; we can only enable/disable all
1096 * events via prctl, or enable/disable all events in a family
1097 * via ioctl, which will have the same effect on both contexts.
1098 */
1099static int context_equiv(struct perf_event_context *ctx1,
1100 struct perf_event_context *ctx2)
1101{
1102 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1103 && ctx1->parent_gen == ctx2->parent_gen
1104 && !ctx1->pin_count && !ctx2->pin_count;
1105}
1106
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001107static void __perf_event_sync_stat(struct perf_event *event,
1108 struct perf_event *next_event)
1109{
1110 u64 value;
1111
1112 if (!event->attr.inherit_stat)
1113 return;
1114
1115 /*
1116 * Update the event value, we cannot use perf_event_read()
1117 * because we're in the middle of a context switch and have IRQs
1118 * disabled, which upsets smp_call_function_single(), however
1119 * we know the event must be on the current CPU, therefore we
1120 * don't need to use it.
1121 */
1122 switch (event->state) {
1123 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001124 event->pmu->read(event);
1125 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001126
1127 case PERF_EVENT_STATE_INACTIVE:
1128 update_event_times(event);
1129 break;
1130
1131 default:
1132 break;
1133 }
1134
1135 /*
1136 * In order to keep per-task stats reliable we need to flip the event
1137 * values when we flip the contexts.
1138 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001139 value = local64_read(&next_event->count);
1140 value = local64_xchg(&event->count, value);
1141 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001142
1143 swap(event->total_time_enabled, next_event->total_time_enabled);
1144 swap(event->total_time_running, next_event->total_time_running);
1145
1146 /*
1147 * Since we swizzled the values, update the user visible data too.
1148 */
1149 perf_event_update_userpage(event);
1150 perf_event_update_userpage(next_event);
1151}
1152
1153#define list_next_entry(pos, member) \
1154 list_entry(pos->member.next, typeof(*pos), member)
1155
1156static void perf_event_sync_stat(struct perf_event_context *ctx,
1157 struct perf_event_context *next_ctx)
1158{
1159 struct perf_event *event, *next_event;
1160
1161 if (!ctx->nr_stat)
1162 return;
1163
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001164 update_context_time(ctx);
1165
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001166 event = list_first_entry(&ctx->event_list,
1167 struct perf_event, event_entry);
1168
1169 next_event = list_first_entry(&next_ctx->event_list,
1170 struct perf_event, event_entry);
1171
1172 while (&event->event_entry != &ctx->event_list &&
1173 &next_event->event_entry != &next_ctx->event_list) {
1174
1175 __perf_event_sync_stat(event, next_event);
1176
1177 event = list_next_entry(event, event_entry);
1178 next_event = list_next_entry(next_event, event_entry);
1179 }
1180}
1181
1182/*
1183 * Called from scheduler to remove the events of the current task,
1184 * with interrupts disabled.
1185 *
1186 * We stop each event and update the event value in event->count.
1187 *
1188 * This does not protect us against NMI, but disable()
1189 * sets the disabled bit in the control field of event _before_
1190 * accessing the event control register. If a NMI hits, then it will
1191 * not restart the event.
1192 */
1193void perf_event_task_sched_out(struct task_struct *task,
Peter Zijlstra49f47432009-12-27 11:51:52 +01001194 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001195{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001196 struct perf_event_context *ctx = task->perf_event_ctxp;
1197 struct perf_event_context *next_ctx;
1198 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001199 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001200 int do_switch = 1;
1201
Frederic Weisbeckere49a5bd2010-03-22 19:40:03 +01001202 perf_sw_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 1, NULL, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001203
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001204 if (likely(!ctx))
1205 return;
1206
1207 cpuctx = __get_cpu_context(ctx);
1208 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001209 return;
1210
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001211 rcu_read_lock();
1212 parent = rcu_dereference(ctx->parent_ctx);
1213 next_ctx = next->perf_event_ctxp;
1214 if (parent && next_ctx &&
1215 rcu_dereference(next_ctx->parent_ctx) == parent) {
1216 /*
1217 * Looks like the two contexts are clones, so we might be
1218 * able to optimize the context switch. We lock both
1219 * contexts and check that they are clones under the
1220 * lock (including re-checking that neither has been
1221 * uncloned in the meantime). It doesn't matter which
1222 * order we take the locks because no other cpu could
1223 * be trying to lock both of these tasks.
1224 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001225 raw_spin_lock(&ctx->lock);
1226 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001227 if (context_equiv(ctx, next_ctx)) {
1228 /*
1229 * XXX do we need a memory barrier of sorts
1230 * wrt to rcu_dereference() of perf_event_ctxp
1231 */
1232 task->perf_event_ctxp = next_ctx;
1233 next->perf_event_ctxp = ctx;
1234 ctx->task = next;
1235 next_ctx->task = task;
1236 do_switch = 0;
1237
1238 perf_event_sync_stat(ctx, next_ctx);
1239 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001240 raw_spin_unlock(&next_ctx->lock);
1241 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001242 }
1243 rcu_read_unlock();
1244
1245 if (do_switch) {
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001246 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001247 cpuctx->task_ctx = NULL;
1248 }
1249}
1250
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001251static void task_ctx_sched_out(struct perf_event_context *ctx,
1252 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001253{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001254 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001255
1256 if (!cpuctx->task_ctx)
1257 return;
1258
1259 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1260 return;
1261
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001262 ctx_sched_out(ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001263 cpuctx->task_ctx = NULL;
1264}
1265
1266/*
1267 * Called with IRQs disabled
1268 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001269static void __perf_event_task_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001270{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001271 task_ctx_sched_out(ctx, EVENT_ALL);
1272}
1273
1274/*
1275 * Called with IRQs disabled
1276 */
1277static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
1278 enum event_type_t event_type)
1279{
1280 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001281}
1282
1283static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001284ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001285 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001286{
1287 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001288
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001289 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1290 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001291 continue;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001292 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001293 continue;
1294
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001295 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01001296 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001297
1298 /*
1299 * If this pinned group hasn't been scheduled,
1300 * put it in error state.
1301 */
1302 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1303 update_group_times(event);
1304 event->state = PERF_EVENT_STATE_ERROR;
1305 }
1306 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001307}
1308
1309static void
1310ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001311 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001312{
1313 struct perf_event *event;
1314 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001315
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001316 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1317 /* Ignore events in OFF or ERROR state */
1318 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001319 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001320 /*
1321 * Listen to the 'cpu' scheduling filter constraint
1322 * of events:
1323 */
Peter Zijlstra6e377382010-02-11 13:21:58 +01001324 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001325 continue;
1326
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001327 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01001328 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001330 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001331 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001332}
1333
1334static void
1335ctx_sched_in(struct perf_event_context *ctx,
1336 struct perf_cpu_context *cpuctx,
1337 enum event_type_t event_type)
1338{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001339 raw_spin_lock(&ctx->lock);
1340 ctx->is_active = 1;
1341 if (likely(!ctx->nr_events))
1342 goto out;
1343
1344 ctx->timestamp = perf_clock();
1345
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001346 /*
1347 * First go through the list and put on any pinned groups
1348 * in order to give them the best chance of going on.
1349 */
1350 if (event_type & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001351 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001352
1353 /* Then walk through the lower prio flexible groups */
1354 if (event_type & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001355 ctx_flexible_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001356
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001357out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001358 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359}
1360
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001361static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
1362 enum event_type_t event_type)
1363{
1364 struct perf_event_context *ctx = &cpuctx->ctx;
1365
1366 ctx_sched_in(ctx, cpuctx, event_type);
1367}
1368
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001369static void task_ctx_sched_in(struct task_struct *task,
1370 enum event_type_t event_type)
1371{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001372 struct perf_event_context *ctx = task->perf_event_ctxp;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001373 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001374
1375 if (likely(!ctx))
1376 return;
1377 if (cpuctx->task_ctx == ctx)
1378 return;
1379 ctx_sched_in(ctx, cpuctx, event_type);
1380 cpuctx->task_ctx = ctx;
1381}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001382/*
1383 * Called from scheduler to add the events of the current task
1384 * with interrupts disabled.
1385 *
1386 * We restore the event value and then enable it.
1387 *
1388 * This does not protect us against NMI, but enable()
1389 * sets the enabled bit in the control field of event _before_
1390 * accessing the event control register. If a NMI hits, then it will
1391 * keep the event running.
1392 */
Peter Zijlstra49f47432009-12-27 11:51:52 +01001393void perf_event_task_sched_in(struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001394{
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001395 struct perf_event_context *ctx = task->perf_event_ctxp;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001396 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001397
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001398 if (likely(!ctx))
1399 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001400
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001401 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001402 if (cpuctx->task_ctx == ctx)
1403 return;
1404
1405 /*
1406 * We want to keep the following priority order:
1407 * cpu pinned (that don't need to move), task pinned,
1408 * cpu flexible, task flexible.
1409 */
1410 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
1411
1412 ctx_sched_in(ctx, cpuctx, EVENT_PINNED);
1413 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
1414 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE);
1415
1416 cpuctx->task_ctx = ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001417
1418 /*
1419 * Since these rotations are per-cpu, we need to ensure the
1420 * cpu-context we got scheduled on is actually rotating.
1421 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001422 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423}
1424
1425#define MAX_INTERRUPTS (~0ULL)
1426
1427static void perf_log_throttle(struct perf_event *event, int enable);
1428
Peter Zijlstraabd50712010-01-26 18:50:16 +01001429static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
1430{
1431 u64 frequency = event->attr.sample_freq;
1432 u64 sec = NSEC_PER_SEC;
1433 u64 divisor, dividend;
1434
1435 int count_fls, nsec_fls, frequency_fls, sec_fls;
1436
1437 count_fls = fls64(count);
1438 nsec_fls = fls64(nsec);
1439 frequency_fls = fls64(frequency);
1440 sec_fls = 30;
1441
1442 /*
1443 * We got @count in @nsec, with a target of sample_freq HZ
1444 * the target period becomes:
1445 *
1446 * @count * 10^9
1447 * period = -------------------
1448 * @nsec * sample_freq
1449 *
1450 */
1451
1452 /*
1453 * Reduce accuracy by one bit such that @a and @b converge
1454 * to a similar magnitude.
1455 */
1456#define REDUCE_FLS(a, b) \
1457do { \
1458 if (a##_fls > b##_fls) { \
1459 a >>= 1; \
1460 a##_fls--; \
1461 } else { \
1462 b >>= 1; \
1463 b##_fls--; \
1464 } \
1465} while (0)
1466
1467 /*
1468 * Reduce accuracy until either term fits in a u64, then proceed with
1469 * the other, so that finally we can do a u64/u64 division.
1470 */
1471 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
1472 REDUCE_FLS(nsec, frequency);
1473 REDUCE_FLS(sec, count);
1474 }
1475
1476 if (count_fls + sec_fls > 64) {
1477 divisor = nsec * frequency;
1478
1479 while (count_fls + sec_fls > 64) {
1480 REDUCE_FLS(count, sec);
1481 divisor >>= 1;
1482 }
1483
1484 dividend = count * sec;
1485 } else {
1486 dividend = count * sec;
1487
1488 while (nsec_fls + frequency_fls > 64) {
1489 REDUCE_FLS(nsec, frequency);
1490 dividend >>= 1;
1491 }
1492
1493 divisor = nsec * frequency;
1494 }
1495
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02001496 if (!divisor)
1497 return dividend;
1498
Peter Zijlstraabd50712010-01-26 18:50:16 +01001499 return div64_u64(dividend, divisor);
1500}
1501
1502static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503{
1504 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02001505 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506 s64 delta;
1507
Peter Zijlstraabd50712010-01-26 18:50:16 +01001508 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509
1510 delta = (s64)(period - hwc->sample_period);
1511 delta = (delta + 7) / 8; /* low pass filter */
1512
1513 sample_period = hwc->sample_period + delta;
1514
1515 if (!sample_period)
1516 sample_period = 1;
1517
1518 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001519
Peter Zijlstrae7850592010-05-21 14:43:08 +02001520 if (local64_read(&hwc->period_left) > 8*sample_period) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001521 event->pmu->stop(event, PERF_EF_UPDATE);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001522 local64_set(&hwc->period_left, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001523 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001524 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001525}
1526
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001527static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001528{
1529 struct perf_event *event;
1530 struct hw_perf_event *hwc;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001531 u64 interrupts, now;
1532 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001533
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001534 raw_spin_lock(&ctx->lock);
Paul Mackerras03541f82009-10-14 16:58:03 +11001535 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001536 if (event->state != PERF_EVENT_STATE_ACTIVE)
1537 continue;
1538
Peter Zijlstra5d27c232009-12-17 13:16:32 +01001539 if (event->cpu != -1 && event->cpu != smp_processor_id())
1540 continue;
1541
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001542 hwc = &event->hw;
1543
1544 interrupts = hwc->interrupts;
1545 hwc->interrupts = 0;
1546
1547 /*
1548 * unthrottle events on the tick
1549 */
1550 if (interrupts == MAX_INTERRUPTS) {
1551 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001552 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001553 }
1554
1555 if (!event->attr.freq || !event->attr.sample_freq)
1556 continue;
1557
Peter Zijlstraabd50712010-01-26 18:50:16 +01001558 event->pmu->read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001559 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001560 delta = now - hwc->freq_count_stamp;
1561 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001562
Peter Zijlstraabd50712010-01-26 18:50:16 +01001563 if (delta > 0)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001564 perf_adjust_period(event, period, delta);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001565 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001566 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001567}
1568
1569/*
1570 * Round-robin a context's events:
1571 */
1572static void rotate_ctx(struct perf_event_context *ctx)
1573{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001574 raw_spin_lock(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001575
Frederic Weisbeckere2864172010-01-09 21:05:28 +01001576 /* Rotate the first entry last of non-pinned groups */
Frederic Weisbeckere2864172010-01-09 21:05:28 +01001577 list_rotate_left(&ctx->flexible_groups);
1578
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001579 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001580}
1581
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001582/*
1583 * Cannot race with ->pmu_rotate_start() because this is ran from hardirq
1584 * context, and ->pmu_rotate_start() is called with irqs disabled (both are
1585 * cpu affine, so there are no SMP races).
1586 */
1587static enum hrtimer_restart perf_event_context_tick(struct hrtimer *timer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001588{
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001589 enum hrtimer_restart restart = HRTIMER_NORESTART;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001590 struct perf_cpu_context *cpuctx;
1591 struct perf_event_context *ctx;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001592 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001593
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001594 cpuctx = container_of(timer, struct perf_cpu_context, timer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001595
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001596 if (cpuctx->ctx.nr_events) {
1597 restart = HRTIMER_RESTART;
1598 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
1599 rotate = 1;
1600 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001601
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001602 ctx = current->perf_event_ctxp;
1603 if (ctx && ctx->nr_events) {
1604 restart = HRTIMER_RESTART;
1605 if (ctx->nr_events != ctx->nr_active)
1606 rotate = 1;
1607 }
Peter Zijlstra9717e6c2010-01-28 13:57:44 +01001608
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001609 perf_ctx_adjust_freq(&cpuctx->ctx, cpuctx->timer_interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001610 if (ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001611 perf_ctx_adjust_freq(ctx, cpuctx->timer_interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001612
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001613 if (!rotate)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001614 goto done;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001615
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001616 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001617 if (ctx)
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001618 task_ctx_sched_out(ctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001619
1620 rotate_ctx(&cpuctx->ctx);
1621 if (ctx)
1622 rotate_ctx(ctx);
1623
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001624 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001625 if (ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001626 task_ctx_sched_in(current, EVENT_FLEXIBLE);
1627
1628done:
1629 hrtimer_forward_now(timer, ns_to_ktime(cpuctx->timer_interval));
1630
1631 return restart;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001632}
1633
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001634static int event_enable_on_exec(struct perf_event *event,
1635 struct perf_event_context *ctx)
1636{
1637 if (!event->attr.enable_on_exec)
1638 return 0;
1639
1640 event->attr.enable_on_exec = 0;
1641 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1642 return 0;
1643
1644 __perf_event_mark_enabled(event, ctx);
1645
1646 return 1;
1647}
1648
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001649/*
1650 * Enable all of a task's events that have been marked enable-on-exec.
1651 * This expects task == current.
1652 */
1653static void perf_event_enable_on_exec(struct task_struct *task)
1654{
1655 struct perf_event_context *ctx;
1656 struct perf_event *event;
1657 unsigned long flags;
1658 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001659 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001660
1661 local_irq_save(flags);
1662 ctx = task->perf_event_ctxp;
1663 if (!ctx || !ctx->nr_events)
1664 goto out;
1665
1666 __perf_event_task_sched_out(ctx);
1667
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001668 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001669
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001670 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1671 ret = event_enable_on_exec(event, ctx);
1672 if (ret)
1673 enabled = 1;
1674 }
1675
1676 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1677 ret = event_enable_on_exec(event, ctx);
1678 if (ret)
1679 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 }
1681
1682 /*
1683 * Unclone this context if we enabled any event.
1684 */
1685 if (enabled)
1686 unclone_ctx(ctx);
1687
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001688 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689
Peter Zijlstra49f47432009-12-27 11:51:52 +01001690 perf_event_task_sched_in(task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001691out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001692 local_irq_restore(flags);
1693}
1694
1695/*
1696 * Cross CPU call to read the hardware event
1697 */
1698static void __perf_event_read(void *info)
1699{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001700 struct perf_event *event = info;
1701 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001702 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001703
1704 /*
1705 * If this is a task context, we need to check whether it is
1706 * the current task context of this cpu. If not it has been
1707 * scheduled out before the smp call arrived. In that case
1708 * event->count would have been updated to a recent sample
1709 * when the event was scheduled out.
1710 */
1711 if (ctx->task && cpuctx->task_ctx != ctx)
1712 return;
1713
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001714 raw_spin_lock(&ctx->lock);
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001715 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001716 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001717 raw_spin_unlock(&ctx->lock);
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001718
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001719 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720}
1721
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001722static inline u64 perf_event_count(struct perf_event *event)
1723{
Peter Zijlstrae7850592010-05-21 14:43:08 +02001724 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001725}
1726
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001727static u64 perf_event_read(struct perf_event *event)
1728{
1729 /*
1730 * If event is enabled and currently active on a CPU, update the
1731 * value in the event structure:
1732 */
1733 if (event->state == PERF_EVENT_STATE_ACTIVE) {
1734 smp_call_function_single(event->oncpu,
1735 __perf_event_read, event, 1);
1736 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001737 struct perf_event_context *ctx = event->ctx;
1738 unsigned long flags;
1739
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001740 raw_spin_lock_irqsave(&ctx->lock, flags);
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001741 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001742 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001743 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001744 }
1745
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001746 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001747}
1748
1749/*
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001750 * Callchain support
1751 */
1752
1753struct callchain_cpus_entries {
1754 struct rcu_head rcu_head;
1755 struct perf_callchain_entry *cpu_entries[0];
1756};
1757
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001758static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001759static atomic_t nr_callchain_events;
1760static DEFINE_MUTEX(callchain_mutex);
1761struct callchain_cpus_entries *callchain_cpus_entries;
1762
1763
1764__weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
1765 struct pt_regs *regs)
1766{
1767}
1768
1769__weak void perf_callchain_user(struct perf_callchain_entry *entry,
1770 struct pt_regs *regs)
1771{
1772}
1773
1774static void release_callchain_buffers_rcu(struct rcu_head *head)
1775{
1776 struct callchain_cpus_entries *entries;
1777 int cpu;
1778
1779 entries = container_of(head, struct callchain_cpus_entries, rcu_head);
1780
1781 for_each_possible_cpu(cpu)
1782 kfree(entries->cpu_entries[cpu]);
1783
1784 kfree(entries);
1785}
1786
1787static void release_callchain_buffers(void)
1788{
1789 struct callchain_cpus_entries *entries;
1790
1791 entries = callchain_cpus_entries;
1792 rcu_assign_pointer(callchain_cpus_entries, NULL);
1793 call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
1794}
1795
1796static int alloc_callchain_buffers(void)
1797{
1798 int cpu;
1799 int size;
1800 struct callchain_cpus_entries *entries;
1801
1802 /*
1803 * We can't use the percpu allocation API for data that can be
1804 * accessed from NMI. Use a temporary manual per cpu allocation
1805 * until that gets sorted out.
1806 */
1807 size = sizeof(*entries) + sizeof(struct perf_callchain_entry *) *
1808 num_possible_cpus();
1809
1810 entries = kzalloc(size, GFP_KERNEL);
1811 if (!entries)
1812 return -ENOMEM;
1813
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001814 size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001815
1816 for_each_possible_cpu(cpu) {
1817 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
1818 cpu_to_node(cpu));
1819 if (!entries->cpu_entries[cpu])
1820 goto fail;
1821 }
1822
1823 rcu_assign_pointer(callchain_cpus_entries, entries);
1824
1825 return 0;
1826
1827fail:
1828 for_each_possible_cpu(cpu)
1829 kfree(entries->cpu_entries[cpu]);
1830 kfree(entries);
1831
1832 return -ENOMEM;
1833}
1834
1835static int get_callchain_buffers(void)
1836{
1837 int err = 0;
1838 int count;
1839
1840 mutex_lock(&callchain_mutex);
1841
1842 count = atomic_inc_return(&nr_callchain_events);
1843 if (WARN_ON_ONCE(count < 1)) {
1844 err = -EINVAL;
1845 goto exit;
1846 }
1847
1848 if (count > 1) {
1849 /* If the allocation failed, give up */
1850 if (!callchain_cpus_entries)
1851 err = -ENOMEM;
1852 goto exit;
1853 }
1854
1855 err = alloc_callchain_buffers();
1856 if (err)
1857 release_callchain_buffers();
1858exit:
1859 mutex_unlock(&callchain_mutex);
1860
1861 return err;
1862}
1863
1864static void put_callchain_buffers(void)
1865{
1866 if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
1867 release_callchain_buffers();
1868 mutex_unlock(&callchain_mutex);
1869 }
1870}
1871
1872static int get_recursion_context(int *recursion)
1873{
1874 int rctx;
1875
1876 if (in_nmi())
1877 rctx = 3;
1878 else if (in_irq())
1879 rctx = 2;
1880 else if (in_softirq())
1881 rctx = 1;
1882 else
1883 rctx = 0;
1884
1885 if (recursion[rctx])
1886 return -1;
1887
1888 recursion[rctx]++;
1889 barrier();
1890
1891 return rctx;
1892}
1893
1894static inline void put_recursion_context(int *recursion, int rctx)
1895{
1896 barrier();
1897 recursion[rctx]--;
1898}
1899
1900static struct perf_callchain_entry *get_callchain_entry(int *rctx)
1901{
1902 int cpu;
1903 struct callchain_cpus_entries *entries;
1904
1905 *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
1906 if (*rctx == -1)
1907 return NULL;
1908
1909 entries = rcu_dereference(callchain_cpus_entries);
1910 if (!entries)
1911 return NULL;
1912
1913 cpu = smp_processor_id();
1914
1915 return &entries->cpu_entries[cpu][*rctx];
1916}
1917
1918static void
1919put_callchain_entry(int rctx)
1920{
1921 put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
1922}
1923
1924static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
1925{
1926 int rctx;
1927 struct perf_callchain_entry *entry;
1928
1929
1930 entry = get_callchain_entry(&rctx);
1931 if (rctx == -1)
1932 return NULL;
1933
1934 if (!entry)
1935 goto exit_put;
1936
1937 entry->nr = 0;
1938
1939 if (!user_mode(regs)) {
1940 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
1941 perf_callchain_kernel(entry, regs);
1942 if (current->mm)
1943 regs = task_pt_regs(current);
1944 else
1945 regs = NULL;
1946 }
1947
1948 if (regs) {
1949 perf_callchain_store(entry, PERF_CONTEXT_USER);
1950 perf_callchain_user(entry, regs);
1951 }
1952
1953exit_put:
1954 put_callchain_entry(rctx);
1955
1956 return entry;
1957}
1958
1959/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001960 * Initialize the perf_event context in a task_struct:
1961 */
1962static void
1963__perf_event_init_context(struct perf_event_context *ctx,
1964 struct task_struct *task)
1965{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001966 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001967 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001968 INIT_LIST_HEAD(&ctx->pinned_groups);
1969 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001970 INIT_LIST_HEAD(&ctx->event_list);
1971 atomic_set(&ctx->refcount, 1);
1972 ctx->task = task;
1973}
1974
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001975static struct perf_event_context *
1976find_get_context(struct pmu *pmu, pid_t pid, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001977{
1978 struct perf_event_context *ctx;
1979 struct perf_cpu_context *cpuctx;
1980 struct task_struct *task;
1981 unsigned long flags;
1982 int err;
1983
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001984 if (pid == -1 && cpu != -1) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001985 /* Must be root to operate on a CPU event: */
1986 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
1987 return ERR_PTR(-EACCES);
1988
Paul Mackerras0f624e72009-12-15 19:40:32 +11001989 if (cpu < 0 || cpu >= nr_cpumask_bits)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990 return ERR_PTR(-EINVAL);
1991
1992 /*
1993 * We could be clever and allow to attach a event to an
1994 * offline CPU and activate it when the CPU comes up, but
1995 * that's for later.
1996 */
Rusty Russellf6325e32009-12-17 11:43:08 -06001997 if (!cpu_online(cpu))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001998 return ERR_PTR(-ENODEV);
1999
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002000 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002001 ctx = &cpuctx->ctx;
2002 get_ctx(ctx);
2003
2004 return ctx;
2005 }
2006
2007 rcu_read_lock();
2008 if (!pid)
2009 task = current;
2010 else
2011 task = find_task_by_vpid(pid);
2012 if (task)
2013 get_task_struct(task);
2014 rcu_read_unlock();
2015
2016 if (!task)
2017 return ERR_PTR(-ESRCH);
2018
2019 /*
2020 * Can't attach events to a dying task.
2021 */
2022 err = -ESRCH;
2023 if (task->flags & PF_EXITING)
2024 goto errout;
2025
2026 /* Reuse ptrace permission checks for now. */
2027 err = -EACCES;
2028 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2029 goto errout;
2030
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002031retry:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002032 ctx = perf_lock_task_context(task, &flags);
2033 if (ctx) {
2034 unclone_ctx(ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002035 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002036 }
2037
2038 if (!ctx) {
Xiao Guangrongaa5452d2009-12-09 11:28:13 +08002039 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002040 err = -ENOMEM;
2041 if (!ctx)
2042 goto errout;
2043 __perf_event_init_context(ctx, task);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002044 ctx->pmu = pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002045 get_ctx(ctx);
2046 if (cmpxchg(&task->perf_event_ctxp, NULL, ctx)) {
2047 /*
2048 * We raced with some other task; use
2049 * the context they set.
2050 */
2051 kfree(ctx);
2052 goto retry;
2053 }
2054 get_task_struct(task);
2055 }
2056
2057 put_task_struct(task);
2058 return ctx;
2059
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002060errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002061 put_task_struct(task);
2062 return ERR_PTR(err);
2063}
2064
Li Zefan6fb29152009-10-15 11:21:42 +08002065static void perf_event_free_filter(struct perf_event *event);
2066
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002067static void free_event_rcu(struct rcu_head *head)
2068{
2069 struct perf_event *event;
2070
2071 event = container_of(head, struct perf_event, rcu_head);
2072 if (event->ns)
2073 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002074 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002075 kfree(event);
2076}
2077
2078static void perf_pending_sync(struct perf_event *event);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002079static void perf_buffer_put(struct perf_buffer *buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002080
2081static void free_event(struct perf_event *event)
2082{
2083 perf_pending_sync(event);
2084
2085 if (!event->parent) {
2086 atomic_dec(&nr_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002087 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088 atomic_dec(&nr_mmap_events);
2089 if (event->attr.comm)
2090 atomic_dec(&nr_comm_events);
2091 if (event->attr.task)
2092 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002093 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2094 put_callchain_buffers();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002095 }
2096
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002097 if (event->buffer) {
2098 perf_buffer_put(event->buffer);
2099 event->buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100 }
2101
2102 if (event->destroy)
2103 event->destroy(event);
2104
2105 put_ctx(event->ctx);
2106 call_rcu(&event->rcu_head, free_event_rcu);
2107}
2108
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002109int perf_event_release_kernel(struct perf_event *event)
2110{
2111 struct perf_event_context *ctx = event->ctx;
2112
Peter Zijlstra050735b2010-05-11 11:51:53 +02002113 /*
2114 * Remove from the PMU, can't get re-enabled since we got
2115 * here because the last ref went.
2116 */
2117 perf_event_disable(event);
2118
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002119 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002120 /*
2121 * There are two ways this annotation is useful:
2122 *
2123 * 1) there is a lock recursion from perf_event_exit_task
2124 * see the comment there.
2125 *
2126 * 2) there is a lock-inversion with mmap_sem through
2127 * perf_event_read_group(), which takes faults while
2128 * holding ctx->mutex, however this is called after
2129 * the last filedesc died, so there is no possibility
2130 * to trigger the AB-BA case.
2131 */
2132 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002133 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002134 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002135 list_del_event(event, ctx);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002136 raw_spin_unlock_irq(&ctx->lock);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002137 mutex_unlock(&ctx->mutex);
2138
2139 mutex_lock(&event->owner->perf_event_mutex);
2140 list_del_init(&event->owner_entry);
2141 mutex_unlock(&event->owner->perf_event_mutex);
2142 put_task_struct(event->owner);
2143
2144 free_event(event);
2145
2146 return 0;
2147}
2148EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2149
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002150/*
2151 * Called when the last reference to the file is gone.
2152 */
2153static int perf_release(struct inode *inode, struct file *file)
2154{
2155 struct perf_event *event = file->private_data;
2156
2157 file->private_data = NULL;
2158
2159 return perf_event_release_kernel(event);
2160}
2161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002162static int perf_event_read_size(struct perf_event *event)
2163{
2164 int entry = sizeof(u64); /* value */
2165 int size = 0;
2166 int nr = 1;
2167
2168 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2169 size += sizeof(u64);
2170
2171 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2172 size += sizeof(u64);
2173
2174 if (event->attr.read_format & PERF_FORMAT_ID)
2175 entry += sizeof(u64);
2176
2177 if (event->attr.read_format & PERF_FORMAT_GROUP) {
2178 nr += event->group_leader->nr_siblings;
2179 size += sizeof(u64);
2180 }
2181
2182 size += entry * nr;
2183
2184 return size;
2185}
2186
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002187u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002188{
2189 struct perf_event *child;
2190 u64 total = 0;
2191
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002192 *enabled = 0;
2193 *running = 0;
2194
Peter Zijlstra6f105812009-11-20 22:19:56 +01002195 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002196 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002197 *enabled += event->total_time_enabled +
2198 atomic64_read(&event->child_total_time_enabled);
2199 *running += event->total_time_running +
2200 atomic64_read(&event->child_total_time_running);
2201
2202 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002203 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002204 *enabled += child->total_time_enabled;
2205 *running += child->total_time_running;
2206 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002207 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002208
2209 return total;
2210}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002211EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002212
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002213static int perf_event_read_group(struct perf_event *event,
2214 u64 read_format, char __user *buf)
2215{
2216 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01002217 int n = 0, size = 0, ret = -EFAULT;
2218 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002219 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002220 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002221
Peter Zijlstra6f105812009-11-20 22:19:56 +01002222 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002223 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002224
2225 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002226 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2227 values[n++] = enabled;
2228 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2229 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002230 values[n++] = count;
2231 if (read_format & PERF_FORMAT_ID)
2232 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233
2234 size = n * sizeof(u64);
2235
2236 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01002237 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238
Peter Zijlstra6f105812009-11-20 22:19:56 +01002239 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002240
2241 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01002242 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002243
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002244 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01002245 if (read_format & PERF_FORMAT_ID)
2246 values[n++] = primary_event_id(sub);
2247
2248 size = n * sizeof(u64);
2249
Stephane Eranian184d3da2009-11-23 21:40:49 -08002250 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01002251 ret = -EFAULT;
2252 goto unlock;
2253 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01002254
2255 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002256 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002257unlock:
2258 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002259
Peter Zijlstraabf48682009-11-20 22:19:49 +01002260 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002261}
2262
2263static int perf_event_read_one(struct perf_event *event,
2264 u64 read_format, char __user *buf)
2265{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002266 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002267 u64 values[4];
2268 int n = 0;
2269
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002270 values[n++] = perf_event_read_value(event, &enabled, &running);
2271 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2272 values[n++] = enabled;
2273 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2274 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002275 if (read_format & PERF_FORMAT_ID)
2276 values[n++] = primary_event_id(event);
2277
2278 if (copy_to_user(buf, values, n * sizeof(u64)))
2279 return -EFAULT;
2280
2281 return n * sizeof(u64);
2282}
2283
2284/*
2285 * Read the performance event - simple non blocking version for now
2286 */
2287static ssize_t
2288perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
2289{
2290 u64 read_format = event->attr.read_format;
2291 int ret;
2292
2293 /*
2294 * Return end-of-file for a read on a event that is in
2295 * error state (i.e. because it was pinned but it couldn't be
2296 * scheduled on to the CPU at some point).
2297 */
2298 if (event->state == PERF_EVENT_STATE_ERROR)
2299 return 0;
2300
2301 if (count < perf_event_read_size(event))
2302 return -ENOSPC;
2303
2304 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002305 if (read_format & PERF_FORMAT_GROUP)
2306 ret = perf_event_read_group(event, read_format, buf);
2307 else
2308 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002309
2310 return ret;
2311}
2312
2313static ssize_t
2314perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
2315{
2316 struct perf_event *event = file->private_data;
2317
2318 return perf_read_hw(event, buf, count);
2319}
2320
2321static unsigned int perf_poll(struct file *file, poll_table *wait)
2322{
2323 struct perf_event *event = file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002324 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002325 unsigned int events = POLL_HUP;
2326
2327 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002328 buffer = rcu_dereference(event->buffer);
2329 if (buffer)
2330 events = atomic_xchg(&buffer->poll, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002331 rcu_read_unlock();
2332
2333 poll_wait(file, &event->waitq, wait);
2334
2335 return events;
2336}
2337
2338static void perf_event_reset(struct perf_event *event)
2339{
2340 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002341 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002342 perf_event_update_userpage(event);
2343}
2344
2345/*
2346 * Holding the top-level event's child_mutex means that any
2347 * descendant process that has inherited this event will block
2348 * in sync_child_event if it goes to exit, thus satisfying the
2349 * task existence requirements of perf_event_enable/disable.
2350 */
2351static void perf_event_for_each_child(struct perf_event *event,
2352 void (*func)(struct perf_event *))
2353{
2354 struct perf_event *child;
2355
2356 WARN_ON_ONCE(event->ctx->parent_ctx);
2357 mutex_lock(&event->child_mutex);
2358 func(event);
2359 list_for_each_entry(child, &event->child_list, child_list)
2360 func(child);
2361 mutex_unlock(&event->child_mutex);
2362}
2363
2364static void perf_event_for_each(struct perf_event *event,
2365 void (*func)(struct perf_event *))
2366{
2367 struct perf_event_context *ctx = event->ctx;
2368 struct perf_event *sibling;
2369
2370 WARN_ON_ONCE(ctx->parent_ctx);
2371 mutex_lock(&ctx->mutex);
2372 event = event->group_leader;
2373
2374 perf_event_for_each_child(event, func);
2375 func(event);
2376 list_for_each_entry(sibling, &event->sibling_list, group_entry)
2377 perf_event_for_each_child(event, func);
2378 mutex_unlock(&ctx->mutex);
2379}
2380
2381static int perf_event_period(struct perf_event *event, u64 __user *arg)
2382{
2383 struct perf_event_context *ctx = event->ctx;
2384 unsigned long size;
2385 int ret = 0;
2386 u64 value;
2387
2388 if (!event->attr.sample_period)
2389 return -EINVAL;
2390
2391 size = copy_from_user(&value, arg, sizeof(value));
2392 if (size != sizeof(value))
2393 return -EFAULT;
2394
2395 if (!value)
2396 return -EINVAL;
2397
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002398 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002399 if (event->attr.freq) {
2400 if (value > sysctl_perf_event_sample_rate) {
2401 ret = -EINVAL;
2402 goto unlock;
2403 }
2404
2405 event->attr.sample_freq = value;
2406 } else {
2407 event->attr.sample_period = value;
2408 event->hw.sample_period = value;
2409 }
2410unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002411 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002412
2413 return ret;
2414}
2415
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002416static const struct file_operations perf_fops;
2417
2418static struct perf_event *perf_fget_light(int fd, int *fput_needed)
2419{
2420 struct file *file;
2421
2422 file = fget_light(fd, fput_needed);
2423 if (!file)
2424 return ERR_PTR(-EBADF);
2425
2426 if (file->f_op != &perf_fops) {
2427 fput_light(file, *fput_needed);
2428 *fput_needed = 0;
2429 return ERR_PTR(-EBADF);
2430 }
2431
2432 return file->private_data;
2433}
2434
2435static int perf_event_set_output(struct perf_event *event,
2436 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08002437static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002438
2439static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2440{
2441 struct perf_event *event = file->private_data;
2442 void (*func)(struct perf_event *);
2443 u32 flags = arg;
2444
2445 switch (cmd) {
2446 case PERF_EVENT_IOC_ENABLE:
2447 func = perf_event_enable;
2448 break;
2449 case PERF_EVENT_IOC_DISABLE:
2450 func = perf_event_disable;
2451 break;
2452 case PERF_EVENT_IOC_RESET:
2453 func = perf_event_reset;
2454 break;
2455
2456 case PERF_EVENT_IOC_REFRESH:
2457 return perf_event_refresh(event, arg);
2458
2459 case PERF_EVENT_IOC_PERIOD:
2460 return perf_event_period(event, (u64 __user *)arg);
2461
2462 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002463 {
2464 struct perf_event *output_event = NULL;
2465 int fput_needed = 0;
2466 int ret;
2467
2468 if (arg != -1) {
2469 output_event = perf_fget_light(arg, &fput_needed);
2470 if (IS_ERR(output_event))
2471 return PTR_ERR(output_event);
2472 }
2473
2474 ret = perf_event_set_output(event, output_event);
2475 if (output_event)
2476 fput_light(output_event->filp, fput_needed);
2477
2478 return ret;
2479 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002480
Li Zefan6fb29152009-10-15 11:21:42 +08002481 case PERF_EVENT_IOC_SET_FILTER:
2482 return perf_event_set_filter(event, (void __user *)arg);
2483
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002484 default:
2485 return -ENOTTY;
2486 }
2487
2488 if (flags & PERF_IOC_FLAG_GROUP)
2489 perf_event_for_each(event, func);
2490 else
2491 perf_event_for_each_child(event, func);
2492
2493 return 0;
2494}
2495
2496int perf_event_task_enable(void)
2497{
2498 struct perf_event *event;
2499
2500 mutex_lock(&current->perf_event_mutex);
2501 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2502 perf_event_for_each_child(event, perf_event_enable);
2503 mutex_unlock(&current->perf_event_mutex);
2504
2505 return 0;
2506}
2507
2508int perf_event_task_disable(void)
2509{
2510 struct perf_event *event;
2511
2512 mutex_lock(&current->perf_event_mutex);
2513 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2514 perf_event_for_each_child(event, perf_event_disable);
2515 mutex_unlock(&current->perf_event_mutex);
2516
2517 return 0;
2518}
2519
2520#ifndef PERF_EVENT_INDEX_OFFSET
2521# define PERF_EVENT_INDEX_OFFSET 0
2522#endif
2523
2524static int perf_event_index(struct perf_event *event)
2525{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002526 if (event->hw.state & PERF_HES_STOPPED)
2527 return 0;
2528
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002529 if (event->state != PERF_EVENT_STATE_ACTIVE)
2530 return 0;
2531
2532 return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
2533}
2534
2535/*
2536 * Callers need to ensure there can be no nesting of this function, otherwise
2537 * the seqlock logic goes bad. We can not serialize this because the arch
2538 * code calls this from NMI context.
2539 */
2540void perf_event_update_userpage(struct perf_event *event)
2541{
2542 struct perf_event_mmap_page *userpg;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002543 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002544
2545 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002546 buffer = rcu_dereference(event->buffer);
2547 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002548 goto unlock;
2549
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002550 userpg = buffer->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002551
2552 /*
2553 * Disable preemption so as to not let the corresponding user-space
2554 * spin too long if we get preempted.
2555 */
2556 preempt_disable();
2557 ++userpg->lock;
2558 barrier();
2559 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002560 userpg->offset = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002561 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstrae7850592010-05-21 14:43:08 +02002562 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002563
2564 userpg->time_enabled = event->total_time_enabled +
2565 atomic64_read(&event->child_total_time_enabled);
2566
2567 userpg->time_running = event->total_time_running +
2568 atomic64_read(&event->child_total_time_running);
2569
2570 barrier();
2571 ++userpg->lock;
2572 preempt_enable();
2573unlock:
2574 rcu_read_unlock();
2575}
2576
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002577static unsigned long perf_data_size(struct perf_buffer *buffer);
2578
2579static void
2580perf_buffer_init(struct perf_buffer *buffer, long watermark, int flags)
2581{
2582 long max_size = perf_data_size(buffer);
2583
2584 if (watermark)
2585 buffer->watermark = min(max_size, watermark);
2586
2587 if (!buffer->watermark)
2588 buffer->watermark = max_size / 2;
2589
2590 if (flags & PERF_BUFFER_WRITABLE)
2591 buffer->writable = 1;
2592
2593 atomic_set(&buffer->refcount, 1);
2594}
2595
Peter Zijlstra906010b2009-09-21 16:08:49 +02002596#ifndef CONFIG_PERF_USE_VMALLOC
2597
2598/*
2599 * Back perf_mmap() with regular GFP_KERNEL-0 pages.
2600 */
2601
2602static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002603perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002604{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002605 if (pgoff > buffer->nr_pages)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002606 return NULL;
2607
2608 if (pgoff == 0)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002609 return virt_to_page(buffer->user_page);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002610
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002611 return virt_to_page(buffer->data_pages[pgoff - 1]);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002612}
2613
Peter Zijlstraa19d35c2010-05-17 18:48:00 +02002614static void *perf_mmap_alloc_page(int cpu)
2615{
2616 struct page *page;
2617 int node;
2618
2619 node = (cpu == -1) ? cpu : cpu_to_node(cpu);
2620 page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2621 if (!page)
2622 return NULL;
2623
2624 return page_address(page);
2625}
2626
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002627static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002628perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002629{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002630 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002631 unsigned long size;
2632 int i;
2633
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002634 size = sizeof(struct perf_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002635 size += nr_pages * sizeof(void *);
2636
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002637 buffer = kzalloc(size, GFP_KERNEL);
2638 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002639 goto fail;
2640
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002641 buffer->user_page = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002642 if (!buffer->user_page)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002643 goto fail_user_page;
2644
2645 for (i = 0; i < nr_pages; i++) {
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002646 buffer->data_pages[i] = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002647 if (!buffer->data_pages[i])
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002648 goto fail_data_pages;
2649 }
2650
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002651 buffer->nr_pages = nr_pages;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002652
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002653 perf_buffer_init(buffer, watermark, flags);
2654
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002655 return buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002656
2657fail_data_pages:
2658 for (i--; i >= 0; i--)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002659 free_page((unsigned long)buffer->data_pages[i]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002661 free_page((unsigned long)buffer->user_page);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002662
2663fail_user_page:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002664 kfree(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002665
2666fail:
Peter Zijlstra906010b2009-09-21 16:08:49 +02002667 return NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002668}
2669
2670static void perf_mmap_free_page(unsigned long addr)
2671{
2672 struct page *page = virt_to_page((void *)addr);
2673
2674 page->mapping = NULL;
2675 __free_page(page);
2676}
2677
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002678static void perf_buffer_free(struct perf_buffer *buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002679{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680 int i;
2681
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002682 perf_mmap_free_page((unsigned long)buffer->user_page);
2683 for (i = 0; i < buffer->nr_pages; i++)
2684 perf_mmap_free_page((unsigned long)buffer->data_pages[i]);
2685 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002686}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002687
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002688static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002689{
2690 return 0;
2691}
2692
Peter Zijlstra906010b2009-09-21 16:08:49 +02002693#else
2694
2695/*
2696 * Back perf_mmap() with vmalloc memory.
2697 *
2698 * Required for architectures that have d-cache aliasing issues.
2699 */
2700
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002701static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002702{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002703 return buffer->page_order;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002704}
2705
Peter Zijlstra906010b2009-09-21 16:08:49 +02002706static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002707perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002708{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002709 if (pgoff > (1UL << page_order(buffer)))
Peter Zijlstra906010b2009-09-21 16:08:49 +02002710 return NULL;
2711
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002712 return vmalloc_to_page((void *)buffer->user_page + pgoff * PAGE_SIZE);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002713}
2714
2715static void perf_mmap_unmark_page(void *addr)
2716{
2717 struct page *page = vmalloc_to_page(addr);
2718
2719 page->mapping = NULL;
2720}
2721
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002722static void perf_buffer_free_work(struct work_struct *work)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002723{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002724 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002725 void *base;
2726 int i, nr;
2727
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002728 buffer = container_of(work, struct perf_buffer, work);
2729 nr = 1 << page_order(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002730
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002731 base = buffer->user_page;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002732 for (i = 0; i < nr + 1; i++)
2733 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
2734
2735 vfree(base);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002736 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002737}
2738
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002739static void perf_buffer_free(struct perf_buffer *buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002740{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002741 schedule_work(&buffer->work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002742}
2743
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002744static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002745perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002746{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002747 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002748 unsigned long size;
2749 void *all_buf;
2750
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002751 size = sizeof(struct perf_buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002752 size += sizeof(void *);
2753
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002754 buffer = kzalloc(size, GFP_KERNEL);
2755 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002756 goto fail;
2757
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002758 INIT_WORK(&buffer->work, perf_buffer_free_work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002759
2760 all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
2761 if (!all_buf)
2762 goto fail_all_buf;
2763
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002764 buffer->user_page = all_buf;
2765 buffer->data_pages[0] = all_buf + PAGE_SIZE;
2766 buffer->page_order = ilog2(nr_pages);
2767 buffer->nr_pages = 1;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002768
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002769 perf_buffer_init(buffer, watermark, flags);
2770
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002771 return buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002772
2773fail_all_buf:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002774 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002775
2776fail:
2777 return NULL;
2778}
2779
2780#endif
2781
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002782static unsigned long perf_data_size(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002783{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002784 return buffer->nr_pages << (PAGE_SHIFT + page_order(buffer));
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002785}
2786
Peter Zijlstra906010b2009-09-21 16:08:49 +02002787static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2788{
2789 struct perf_event *event = vma->vm_file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002790 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002791 int ret = VM_FAULT_SIGBUS;
2792
2793 if (vmf->flags & FAULT_FLAG_MKWRITE) {
2794 if (vmf->pgoff == 0)
2795 ret = 0;
2796 return ret;
2797 }
2798
2799 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002800 buffer = rcu_dereference(event->buffer);
2801 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002802 goto unlock;
2803
2804 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
2805 goto unlock;
2806
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002807 vmf->page = perf_mmap_to_page(buffer, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002808 if (!vmf->page)
2809 goto unlock;
2810
2811 get_page(vmf->page);
2812 vmf->page->mapping = vma->vm_file->f_mapping;
2813 vmf->page->index = vmf->pgoff;
2814
2815 ret = 0;
2816unlock:
2817 rcu_read_unlock();
2818
2819 return ret;
2820}
2821
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002822static void perf_buffer_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002823{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002824 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002825
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002826 buffer = container_of(rcu_head, struct perf_buffer, rcu_head);
2827 perf_buffer_free(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002828}
2829
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002830static struct perf_buffer *perf_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002831{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002832 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002833
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002834 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002835 buffer = rcu_dereference(event->buffer);
2836 if (buffer) {
2837 if (!atomic_inc_not_zero(&buffer->refcount))
2838 buffer = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002839 }
2840 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002841
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002842 return buffer;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002843}
2844
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002845static void perf_buffer_put(struct perf_buffer *buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002846{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002847 if (!atomic_dec_and_test(&buffer->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002848 return;
2849
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002850 call_rcu(&buffer->rcu_head, perf_buffer_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002851}
2852
2853static void perf_mmap_open(struct vm_area_struct *vma)
2854{
2855 struct perf_event *event = vma->vm_file->private_data;
2856
2857 atomic_inc(&event->mmap_count);
2858}
2859
2860static void perf_mmap_close(struct vm_area_struct *vma)
2861{
2862 struct perf_event *event = vma->vm_file->private_data;
2863
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002864 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002865 unsigned long size = perf_data_size(event->buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002866 struct user_struct *user = event->mmap_user;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002867 struct perf_buffer *buffer = event->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002868
Peter Zijlstra906010b2009-09-21 16:08:49 +02002869 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002870 vma->vm_mm->locked_vm -= event->mmap_locked;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002871 rcu_assign_pointer(event->buffer, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002872 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002873
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002874 perf_buffer_put(buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002875 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002876 }
2877}
2878
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002879static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002880 .open = perf_mmap_open,
2881 .close = perf_mmap_close,
2882 .fault = perf_mmap_fault,
2883 .page_mkwrite = perf_mmap_fault,
2884};
2885
2886static int perf_mmap(struct file *file, struct vm_area_struct *vma)
2887{
2888 struct perf_event *event = file->private_data;
2889 unsigned long user_locked, user_lock_limit;
2890 struct user_struct *user = current_user();
2891 unsigned long locked, lock_limit;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002892 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002893 unsigned long vma_size;
2894 unsigned long nr_pages;
2895 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002896 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002897
Peter Zijlstrac7920612010-05-18 10:33:24 +02002898 /*
2899 * Don't allow mmap() of inherited per-task counters. This would
2900 * create a performance issue due to all children writing to the
2901 * same buffer.
2902 */
2903 if (event->cpu == -1 && event->attr.inherit)
2904 return -EINVAL;
2905
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002906 if (!(vma->vm_flags & VM_SHARED))
2907 return -EINVAL;
2908
2909 vma_size = vma->vm_end - vma->vm_start;
2910 nr_pages = (vma_size / PAGE_SIZE) - 1;
2911
2912 /*
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002913 * If we have buffer pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002914 * can do bitmasks instead of modulo.
2915 */
2916 if (nr_pages != 0 && !is_power_of_2(nr_pages))
2917 return -EINVAL;
2918
2919 if (vma_size != PAGE_SIZE * (1 + nr_pages))
2920 return -EINVAL;
2921
2922 if (vma->vm_pgoff != 0)
2923 return -EINVAL;
2924
2925 WARN_ON_ONCE(event->ctx->parent_ctx);
2926 mutex_lock(&event->mmap_mutex);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002927 if (event->buffer) {
2928 if (event->buffer->nr_pages == nr_pages)
2929 atomic_inc(&event->buffer->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002930 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002931 ret = -EINVAL;
2932 goto unlock;
2933 }
2934
2935 user_extra = nr_pages + 1;
2936 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
2937
2938 /*
2939 * Increase the limit linearly with more CPUs:
2940 */
2941 user_lock_limit *= num_online_cpus();
2942
2943 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
2944
2945 extra = 0;
2946 if (user_locked > user_lock_limit)
2947 extra = user_locked - user_lock_limit;
2948
Jiri Slaby78d7d402010-03-05 13:42:54 -08002949 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002950 lock_limit >>= PAGE_SHIFT;
2951 locked = vma->vm_mm->locked_vm + extra;
2952
2953 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
2954 !capable(CAP_IPC_LOCK)) {
2955 ret = -EPERM;
2956 goto unlock;
2957 }
2958
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002959 WARN_ON(event->buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002960
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002961 if (vma->vm_flags & VM_WRITE)
2962 flags |= PERF_BUFFER_WRITABLE;
2963
2964 buffer = perf_buffer_alloc(nr_pages, event->attr.wakeup_watermark,
2965 event->cpu, flags);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002966 if (!buffer) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002967 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002968 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002969 }
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002970 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002971
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002972 atomic_long_add(user_extra, &user->locked_vm);
2973 event->mmap_locked = extra;
2974 event->mmap_user = get_current_user();
2975 vma->vm_mm->locked_vm += event->mmap_locked;
2976
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002977unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002978 if (!ret)
2979 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002980 mutex_unlock(&event->mmap_mutex);
2981
2982 vma->vm_flags |= VM_RESERVED;
2983 vma->vm_ops = &perf_mmap_vmops;
2984
2985 return ret;
2986}
2987
2988static int perf_fasync(int fd, struct file *filp, int on)
2989{
2990 struct inode *inode = filp->f_path.dentry->d_inode;
2991 struct perf_event *event = filp->private_data;
2992 int retval;
2993
2994 mutex_lock(&inode->i_mutex);
2995 retval = fasync_helper(fd, filp, on, &event->fasync);
2996 mutex_unlock(&inode->i_mutex);
2997
2998 if (retval < 0)
2999 return retval;
3000
3001 return 0;
3002}
3003
3004static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003005 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003006 .release = perf_release,
3007 .read = perf_read,
3008 .poll = perf_poll,
3009 .unlocked_ioctl = perf_ioctl,
3010 .compat_ioctl = perf_ioctl,
3011 .mmap = perf_mmap,
3012 .fasync = perf_fasync,
3013};
3014
3015/*
3016 * Perf event wakeup
3017 *
3018 * If there's data, ensure we set the poll() state and publish everything
3019 * to user-space before waking everybody up.
3020 */
3021
3022void perf_event_wakeup(struct perf_event *event)
3023{
3024 wake_up_all(&event->waitq);
3025
3026 if (event->pending_kill) {
3027 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3028 event->pending_kill = 0;
3029 }
3030}
3031
3032/*
3033 * Pending wakeups
3034 *
3035 * Handle the case where we need to wakeup up from NMI (or rq->lock) context.
3036 *
3037 * The NMI bit means we cannot possibly take locks. Therefore, maintain a
3038 * single linked list and use cmpxchg() to add entries lockless.
3039 */
3040
3041static void perf_pending_event(struct perf_pending_entry *entry)
3042{
3043 struct perf_event *event = container_of(entry,
3044 struct perf_event, pending);
3045
3046 if (event->pending_disable) {
3047 event->pending_disable = 0;
3048 __perf_event_disable(event);
3049 }
3050
3051 if (event->pending_wakeup) {
3052 event->pending_wakeup = 0;
3053 perf_event_wakeup(event);
3054 }
3055}
3056
3057#define PENDING_TAIL ((struct perf_pending_entry *)-1UL)
3058
3059static DEFINE_PER_CPU(struct perf_pending_entry *, perf_pending_head) = {
3060 PENDING_TAIL,
3061};
3062
3063static void perf_pending_queue(struct perf_pending_entry *entry,
3064 void (*func)(struct perf_pending_entry *))
3065{
3066 struct perf_pending_entry **head;
3067
3068 if (cmpxchg(&entry->next, NULL, PENDING_TAIL) != NULL)
3069 return;
3070
3071 entry->func = func;
3072
3073 head = &get_cpu_var(perf_pending_head);
3074
3075 do {
3076 entry->next = *head;
3077 } while (cmpxchg(head, entry->next, entry) != entry->next);
3078
3079 set_perf_event_pending();
3080
3081 put_cpu_var(perf_pending_head);
3082}
3083
3084static int __perf_pending_run(void)
3085{
3086 struct perf_pending_entry *list;
3087 int nr = 0;
3088
3089 list = xchg(&__get_cpu_var(perf_pending_head), PENDING_TAIL);
3090 while (list != PENDING_TAIL) {
3091 void (*func)(struct perf_pending_entry *);
3092 struct perf_pending_entry *entry = list;
3093
3094 list = list->next;
3095
3096 func = entry->func;
3097 entry->next = NULL;
3098 /*
3099 * Ensure we observe the unqueue before we issue the wakeup,
3100 * so that we won't be waiting forever.
3101 * -- see perf_not_pending().
3102 */
3103 smp_wmb();
3104
3105 func(entry);
3106 nr++;
3107 }
3108
3109 return nr;
3110}
3111
3112static inline int perf_not_pending(struct perf_event *event)
3113{
3114 /*
3115 * If we flush on whatever cpu we run, there is a chance we don't
3116 * need to wait.
3117 */
3118 get_cpu();
3119 __perf_pending_run();
3120 put_cpu();
3121
3122 /*
3123 * Ensure we see the proper queue state before going to sleep
3124 * so that we do not miss the wakeup. -- see perf_pending_handle()
3125 */
3126 smp_rmb();
3127 return event->pending.next == NULL;
3128}
3129
3130static void perf_pending_sync(struct perf_event *event)
3131{
3132 wait_event(event->waitq, perf_not_pending(event));
3133}
3134
3135void perf_event_do_pending(void)
3136{
3137 __perf_pending_run();
3138}
3139
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003140/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003141 * We assume there is only KVM supporting the callbacks.
3142 * Later on, we might change it to a list if there is
3143 * another virtualization implementation supporting the callbacks.
3144 */
3145struct perf_guest_info_callbacks *perf_guest_cbs;
3146
3147int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3148{
3149 perf_guest_cbs = cbs;
3150 return 0;
3151}
3152EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3153
3154int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3155{
3156 perf_guest_cbs = NULL;
3157 return 0;
3158}
3159EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3160
3161/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003162 * Output
3163 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003164static bool perf_output_space(struct perf_buffer *buffer, unsigned long tail,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003165 unsigned long offset, unsigned long head)
3166{
3167 unsigned long mask;
3168
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003169 if (!buffer->writable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003170 return true;
3171
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003172 mask = perf_data_size(buffer) - 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003173
3174 offset = (offset - tail) & mask;
3175 head = (head - tail) & mask;
3176
3177 if ((int)(head - offset) < 0)
3178 return false;
3179
3180 return true;
3181}
3182
3183static void perf_output_wakeup(struct perf_output_handle *handle)
3184{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003185 atomic_set(&handle->buffer->poll, POLL_IN);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003186
3187 if (handle->nmi) {
3188 handle->event->pending_wakeup = 1;
3189 perf_pending_queue(&handle->event->pending,
3190 perf_pending_event);
3191 } else
3192 perf_event_wakeup(handle->event);
3193}
3194
3195/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003196 * We need to ensure a later event_id doesn't publish a head when a former
Peter Zijlstraef607772010-05-18 10:50:41 +02003197 * event isn't done writing. However since we need to deal with NMIs we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003198 * cannot fully serialize things.
3199 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003200 * We only publish the head (and generate a wakeup) when the outer-most
Peter Zijlstraef607772010-05-18 10:50:41 +02003201 * event completes.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003202 */
Peter Zijlstraef607772010-05-18 10:50:41 +02003203static void perf_output_get_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003204{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003205 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003206
Peter Zijlstraef607772010-05-18 10:50:41 +02003207 preempt_disable();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003208 local_inc(&buffer->nest);
3209 handle->wakeup = local_read(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003210}
3211
Peter Zijlstraef607772010-05-18 10:50:41 +02003212static void perf_output_put_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003213{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003214 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003215 unsigned long head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216
3217again:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003218 head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003219
3220 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003221 * IRQ/NMI can happen here, which means we can miss a head update.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003222 */
3223
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003224 if (!local_dec_and_test(&buffer->nest))
Frederic Weisbeckeracd35a42010-05-20 21:28:34 +02003225 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003226
3227 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003228 * Publish the known good head. Rely on the full barrier implied
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003229 * by atomic_dec_and_test() order the buffer->head read and this
Peter Zijlstraef607772010-05-18 10:50:41 +02003230 * write.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003231 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003232 buffer->user_page->data_head = head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003233
Peter Zijlstraef607772010-05-18 10:50:41 +02003234 /*
3235 * Now check if we missed an update, rely on the (compiler)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003236 * barrier in atomic_dec_and_test() to re-read buffer->head.
Peter Zijlstraef607772010-05-18 10:50:41 +02003237 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003238 if (unlikely(head != local_read(&buffer->head))) {
3239 local_inc(&buffer->nest);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003240 goto again;
3241 }
3242
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003243 if (handle->wakeup != local_read(&buffer->wakeup))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003244 perf_output_wakeup(handle);
Peter Zijlstraef607772010-05-18 10:50:41 +02003245
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003246out:
Peter Zijlstraef607772010-05-18 10:50:41 +02003247 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003248}
3249
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003250__always_inline void perf_output_copy(struct perf_output_handle *handle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003251 const void *buf, unsigned int len)
3252{
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003253 do {
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003254 unsigned long size = min_t(unsigned long, handle->size, len);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003255
3256 memcpy(handle->addr, buf, size);
3257
3258 len -= size;
3259 handle->addr += size;
Frederic Weisbecker74048f82010-05-27 21:34:58 +02003260 buf += size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003261 handle->size -= size;
3262 if (!handle->size) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003263 struct perf_buffer *buffer = handle->buffer;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003264
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003265 handle->page++;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003266 handle->page &= buffer->nr_pages - 1;
3267 handle->addr = buffer->data_pages[handle->page];
3268 handle->size = PAGE_SIZE << page_order(buffer);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003269 }
3270 } while (len);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003271}
3272
3273int perf_output_begin(struct perf_output_handle *handle,
3274 struct perf_event *event, unsigned int size,
3275 int nmi, int sample)
3276{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003277 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003278 unsigned long tail, offset, head;
3279 int have_lost;
3280 struct {
3281 struct perf_event_header header;
3282 u64 id;
3283 u64 lost;
3284 } lost_event;
3285
3286 rcu_read_lock();
3287 /*
3288 * For inherited events we send all the output towards the parent.
3289 */
3290 if (event->parent)
3291 event = event->parent;
3292
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003293 buffer = rcu_dereference(event->buffer);
3294 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003295 goto out;
3296
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003297 handle->buffer = buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003298 handle->event = event;
3299 handle->nmi = nmi;
3300 handle->sample = sample;
3301
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003302 if (!buffer->nr_pages)
Stephane Eranian00d1d0b2010-05-17 12:46:01 +02003303 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003304
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003305 have_lost = local_read(&buffer->lost);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306 if (have_lost)
3307 size += sizeof(lost_event);
3308
Peter Zijlstraef607772010-05-18 10:50:41 +02003309 perf_output_get_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310
3311 do {
3312 /*
3313 * Userspace could choose to issue a mb() before updating the
3314 * tail pointer. So that all reads will be completed before the
3315 * write is issued.
3316 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003317 tail = ACCESS_ONCE(buffer->user_page->data_tail);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003318 smp_rmb();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003319 offset = head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003320 head += size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003321 if (unlikely(!perf_output_space(buffer, tail, offset, head)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003322 goto fail;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003323 } while (local_cmpxchg(&buffer->head, offset, head) != offset);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003324
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003325 if (head - local_read(&buffer->wakeup) > buffer->watermark)
3326 local_add(buffer->watermark, &buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003328 handle->page = offset >> (PAGE_SHIFT + page_order(buffer));
3329 handle->page &= buffer->nr_pages - 1;
3330 handle->size = offset & ((PAGE_SIZE << page_order(buffer)) - 1);
3331 handle->addr = buffer->data_pages[handle->page];
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003332 handle->addr += handle->size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003333 handle->size = (PAGE_SIZE << page_order(buffer)) - handle->size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003335 if (have_lost) {
3336 lost_event.header.type = PERF_RECORD_LOST;
3337 lost_event.header.misc = 0;
3338 lost_event.header.size = sizeof(lost_event);
3339 lost_event.id = event->id;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003340 lost_event.lost = local_xchg(&buffer->lost, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003341
3342 perf_output_put(handle, lost_event);
3343 }
3344
3345 return 0;
3346
3347fail:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003348 local_inc(&buffer->lost);
Peter Zijlstraef607772010-05-18 10:50:41 +02003349 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003350out:
3351 rcu_read_unlock();
3352
3353 return -ENOSPC;
3354}
3355
3356void perf_output_end(struct perf_output_handle *handle)
3357{
3358 struct perf_event *event = handle->event;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003359 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003360
3361 int wakeup_events = event->attr.wakeup_events;
3362
3363 if (handle->sample && wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003364 int events = local_inc_return(&buffer->events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365 if (events >= wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003366 local_sub(wakeup_events, &buffer->events);
3367 local_inc(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003368 }
3369 }
3370
Peter Zijlstraef607772010-05-18 10:50:41 +02003371 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003372 rcu_read_unlock();
3373}
3374
3375static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
3376{
3377 /*
3378 * only top level events have the pid namespace they were created in
3379 */
3380 if (event->parent)
3381 event = event->parent;
3382
3383 return task_tgid_nr_ns(p, event->ns);
3384}
3385
3386static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
3387{
3388 /*
3389 * only top level events have the pid namespace they were created in
3390 */
3391 if (event->parent)
3392 event = event->parent;
3393
3394 return task_pid_nr_ns(p, event->ns);
3395}
3396
3397static void perf_output_read_one(struct perf_output_handle *handle,
3398 struct perf_event *event)
3399{
3400 u64 read_format = event->attr.read_format;
3401 u64 values[4];
3402 int n = 0;
3403
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003404 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3406 values[n++] = event->total_time_enabled +
3407 atomic64_read(&event->child_total_time_enabled);
3408 }
3409 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3410 values[n++] = event->total_time_running +
3411 atomic64_read(&event->child_total_time_running);
3412 }
3413 if (read_format & PERF_FORMAT_ID)
3414 values[n++] = primary_event_id(event);
3415
3416 perf_output_copy(handle, values, n * sizeof(u64));
3417}
3418
3419/*
3420 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
3421 */
3422static void perf_output_read_group(struct perf_output_handle *handle,
3423 struct perf_event *event)
3424{
3425 struct perf_event *leader = event->group_leader, *sub;
3426 u64 read_format = event->attr.read_format;
3427 u64 values[5];
3428 int n = 0;
3429
3430 values[n++] = 1 + leader->nr_siblings;
3431
3432 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3433 values[n++] = leader->total_time_enabled;
3434
3435 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3436 values[n++] = leader->total_time_running;
3437
3438 if (leader != event)
3439 leader->pmu->read(leader);
3440
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003441 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003442 if (read_format & PERF_FORMAT_ID)
3443 values[n++] = primary_event_id(leader);
3444
3445 perf_output_copy(handle, values, n * sizeof(u64));
3446
3447 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
3448 n = 0;
3449
3450 if (sub != event)
3451 sub->pmu->read(sub);
3452
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003453 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003454 if (read_format & PERF_FORMAT_ID)
3455 values[n++] = primary_event_id(sub);
3456
3457 perf_output_copy(handle, values, n * sizeof(u64));
3458 }
3459}
3460
3461static void perf_output_read(struct perf_output_handle *handle,
3462 struct perf_event *event)
3463{
3464 if (event->attr.read_format & PERF_FORMAT_GROUP)
3465 perf_output_read_group(handle, event);
3466 else
3467 perf_output_read_one(handle, event);
3468}
3469
3470void perf_output_sample(struct perf_output_handle *handle,
3471 struct perf_event_header *header,
3472 struct perf_sample_data *data,
3473 struct perf_event *event)
3474{
3475 u64 sample_type = data->type;
3476
3477 perf_output_put(handle, *header);
3478
3479 if (sample_type & PERF_SAMPLE_IP)
3480 perf_output_put(handle, data->ip);
3481
3482 if (sample_type & PERF_SAMPLE_TID)
3483 perf_output_put(handle, data->tid_entry);
3484
3485 if (sample_type & PERF_SAMPLE_TIME)
3486 perf_output_put(handle, data->time);
3487
3488 if (sample_type & PERF_SAMPLE_ADDR)
3489 perf_output_put(handle, data->addr);
3490
3491 if (sample_type & PERF_SAMPLE_ID)
3492 perf_output_put(handle, data->id);
3493
3494 if (sample_type & PERF_SAMPLE_STREAM_ID)
3495 perf_output_put(handle, data->stream_id);
3496
3497 if (sample_type & PERF_SAMPLE_CPU)
3498 perf_output_put(handle, data->cpu_entry);
3499
3500 if (sample_type & PERF_SAMPLE_PERIOD)
3501 perf_output_put(handle, data->period);
3502
3503 if (sample_type & PERF_SAMPLE_READ)
3504 perf_output_read(handle, event);
3505
3506 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3507 if (data->callchain) {
3508 int size = 1;
3509
3510 if (data->callchain)
3511 size += data->callchain->nr;
3512
3513 size *= sizeof(u64);
3514
3515 perf_output_copy(handle, data->callchain, size);
3516 } else {
3517 u64 nr = 0;
3518 perf_output_put(handle, nr);
3519 }
3520 }
3521
3522 if (sample_type & PERF_SAMPLE_RAW) {
3523 if (data->raw) {
3524 perf_output_put(handle, data->raw->size);
3525 perf_output_copy(handle, data->raw->data,
3526 data->raw->size);
3527 } else {
3528 struct {
3529 u32 size;
3530 u32 data;
3531 } raw = {
3532 .size = sizeof(u32),
3533 .data = 0,
3534 };
3535 perf_output_put(handle, raw);
3536 }
3537 }
3538}
3539
3540void perf_prepare_sample(struct perf_event_header *header,
3541 struct perf_sample_data *data,
3542 struct perf_event *event,
3543 struct pt_regs *regs)
3544{
3545 u64 sample_type = event->attr.sample_type;
3546
3547 data->type = sample_type;
3548
3549 header->type = PERF_RECORD_SAMPLE;
3550 header->size = sizeof(*header);
3551
3552 header->misc = 0;
3553 header->misc |= perf_misc_flags(regs);
3554
3555 if (sample_type & PERF_SAMPLE_IP) {
3556 data->ip = perf_instruction_pointer(regs);
3557
3558 header->size += sizeof(data->ip);
3559 }
3560
3561 if (sample_type & PERF_SAMPLE_TID) {
3562 /* namespace issues */
3563 data->tid_entry.pid = perf_event_pid(event, current);
3564 data->tid_entry.tid = perf_event_tid(event, current);
3565
3566 header->size += sizeof(data->tid_entry);
3567 }
3568
3569 if (sample_type & PERF_SAMPLE_TIME) {
3570 data->time = perf_clock();
3571
3572 header->size += sizeof(data->time);
3573 }
3574
3575 if (sample_type & PERF_SAMPLE_ADDR)
3576 header->size += sizeof(data->addr);
3577
3578 if (sample_type & PERF_SAMPLE_ID) {
3579 data->id = primary_event_id(event);
3580
3581 header->size += sizeof(data->id);
3582 }
3583
3584 if (sample_type & PERF_SAMPLE_STREAM_ID) {
3585 data->stream_id = event->id;
3586
3587 header->size += sizeof(data->stream_id);
3588 }
3589
3590 if (sample_type & PERF_SAMPLE_CPU) {
3591 data->cpu_entry.cpu = raw_smp_processor_id();
3592 data->cpu_entry.reserved = 0;
3593
3594 header->size += sizeof(data->cpu_entry);
3595 }
3596
3597 if (sample_type & PERF_SAMPLE_PERIOD)
3598 header->size += sizeof(data->period);
3599
3600 if (sample_type & PERF_SAMPLE_READ)
3601 header->size += perf_event_read_size(event);
3602
3603 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3604 int size = 1;
3605
3606 data->callchain = perf_callchain(regs);
3607
3608 if (data->callchain)
3609 size += data->callchain->nr;
3610
3611 header->size += size * sizeof(u64);
3612 }
3613
3614 if (sample_type & PERF_SAMPLE_RAW) {
3615 int size = sizeof(u32);
3616
3617 if (data->raw)
3618 size += data->raw->size;
3619 else
3620 size += sizeof(u32);
3621
3622 WARN_ON_ONCE(size & (sizeof(u64)-1));
3623 header->size += size;
3624 }
3625}
3626
3627static void perf_event_output(struct perf_event *event, int nmi,
3628 struct perf_sample_data *data,
3629 struct pt_regs *regs)
3630{
3631 struct perf_output_handle handle;
3632 struct perf_event_header header;
3633
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003634 /* protect the callchain buffers */
3635 rcu_read_lock();
3636
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003637 perf_prepare_sample(&header, data, event, regs);
3638
3639 if (perf_output_begin(&handle, event, header.size, nmi, 1))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003640 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003641
3642 perf_output_sample(&handle, &header, data, event);
3643
3644 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003645
3646exit:
3647 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003648}
3649
3650/*
3651 * read event_id
3652 */
3653
3654struct perf_read_event {
3655 struct perf_event_header header;
3656
3657 u32 pid;
3658 u32 tid;
3659};
3660
3661static void
3662perf_event_read_event(struct perf_event *event,
3663 struct task_struct *task)
3664{
3665 struct perf_output_handle handle;
3666 struct perf_read_event read_event = {
3667 .header = {
3668 .type = PERF_RECORD_READ,
3669 .misc = 0,
3670 .size = sizeof(read_event) + perf_event_read_size(event),
3671 },
3672 .pid = perf_event_pid(event, task),
3673 .tid = perf_event_tid(event, task),
3674 };
3675 int ret;
3676
3677 ret = perf_output_begin(&handle, event, read_event.header.size, 0, 0);
3678 if (ret)
3679 return;
3680
3681 perf_output_put(&handle, read_event);
3682 perf_output_read(&handle, event);
3683
3684 perf_output_end(&handle);
3685}
3686
3687/*
3688 * task tracking -- fork/exit
3689 *
Eric B Munson3af9e852010-05-18 15:30:49 +01003690 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003691 */
3692
3693struct perf_task_event {
3694 struct task_struct *task;
3695 struct perf_event_context *task_ctx;
3696
3697 struct {
3698 struct perf_event_header header;
3699
3700 u32 pid;
3701 u32 ppid;
3702 u32 tid;
3703 u32 ptid;
3704 u64 time;
3705 } event_id;
3706};
3707
3708static void perf_event_task_output(struct perf_event *event,
3709 struct perf_task_event *task_event)
3710{
3711 struct perf_output_handle handle;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003712 struct task_struct *task = task_event->task;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01003713 int size, ret;
3714
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003715 size = task_event->event_id.header.size;
3716 ret = perf_output_begin(&handle, event, size, 0, 0);
3717
Peter Zijlstraef607772010-05-18 10:50:41 +02003718 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003719 return;
3720
3721 task_event->event_id.pid = perf_event_pid(event, task);
3722 task_event->event_id.ppid = perf_event_pid(event, current);
3723
3724 task_event->event_id.tid = perf_event_tid(event, task);
3725 task_event->event_id.ptid = perf_event_tid(event, current);
3726
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003727 perf_output_put(&handle, task_event->event_id);
3728
3729 perf_output_end(&handle);
3730}
3731
3732static int perf_event_task_match(struct perf_event *event)
3733{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003734 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003735 return 0;
3736
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003737 if (event->cpu != -1 && event->cpu != smp_processor_id())
3738 return 0;
3739
Eric B Munson3af9e852010-05-18 15:30:49 +01003740 if (event->attr.comm || event->attr.mmap ||
3741 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003742 return 1;
3743
3744 return 0;
3745}
3746
3747static void perf_event_task_ctx(struct perf_event_context *ctx,
3748 struct perf_task_event *task_event)
3749{
3750 struct perf_event *event;
3751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003752 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3753 if (perf_event_task_match(event))
3754 perf_event_task_output(event, task_event);
3755 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003756}
3757
3758static void perf_event_task_event(struct perf_task_event *task_event)
3759{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003760 struct perf_event_context *ctx = task_event->task_ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003761 struct perf_cpu_context *cpuctx;
3762 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003763
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003764 rcu_read_lock_sched();
3765 list_for_each_entry_rcu(pmu, &pmus, entry) {
3766 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3767 perf_event_task_ctx(&cpuctx->ctx, task_event);
3768 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003769 if (!ctx)
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003770 ctx = rcu_dereference(current->perf_event_ctxp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003771 if (ctx)
3772 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003773 rcu_read_unlock_sched();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003774}
3775
3776static void perf_event_task(struct task_struct *task,
3777 struct perf_event_context *task_ctx,
3778 int new)
3779{
3780 struct perf_task_event task_event;
3781
3782 if (!atomic_read(&nr_comm_events) &&
3783 !atomic_read(&nr_mmap_events) &&
3784 !atomic_read(&nr_task_events))
3785 return;
3786
3787 task_event = (struct perf_task_event){
3788 .task = task,
3789 .task_ctx = task_ctx,
3790 .event_id = {
3791 .header = {
3792 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
3793 .misc = 0,
3794 .size = sizeof(task_event.event_id),
3795 },
3796 /* .pid */
3797 /* .ppid */
3798 /* .tid */
3799 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003800 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801 },
3802 };
3803
3804 perf_event_task_event(&task_event);
3805}
3806
3807void perf_event_fork(struct task_struct *task)
3808{
3809 perf_event_task(task, NULL, 1);
3810}
3811
3812/*
3813 * comm tracking
3814 */
3815
3816struct perf_comm_event {
3817 struct task_struct *task;
3818 char *comm;
3819 int comm_size;
3820
3821 struct {
3822 struct perf_event_header header;
3823
3824 u32 pid;
3825 u32 tid;
3826 } event_id;
3827};
3828
3829static void perf_event_comm_output(struct perf_event *event,
3830 struct perf_comm_event *comm_event)
3831{
3832 struct perf_output_handle handle;
3833 int size = comm_event->event_id.header.size;
3834 int ret = perf_output_begin(&handle, event, size, 0, 0);
3835
3836 if (ret)
3837 return;
3838
3839 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
3840 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
3841
3842 perf_output_put(&handle, comm_event->event_id);
3843 perf_output_copy(&handle, comm_event->comm,
3844 comm_event->comm_size);
3845 perf_output_end(&handle);
3846}
3847
3848static int perf_event_comm_match(struct perf_event *event)
3849{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003850 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003851 return 0;
3852
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003853 if (event->cpu != -1 && event->cpu != smp_processor_id())
3854 return 0;
3855
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003856 if (event->attr.comm)
3857 return 1;
3858
3859 return 0;
3860}
3861
3862static void perf_event_comm_ctx(struct perf_event_context *ctx,
3863 struct perf_comm_event *comm_event)
3864{
3865 struct perf_event *event;
3866
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003867 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3868 if (perf_event_comm_match(event))
3869 perf_event_comm_output(event, comm_event);
3870 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003871}
3872
3873static void perf_event_comm_event(struct perf_comm_event *comm_event)
3874{
3875 struct perf_cpu_context *cpuctx;
3876 struct perf_event_context *ctx;
3877 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003878 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003879 char comm[TASK_COMM_LEN];
3880
3881 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01003882 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003883 size = ALIGN(strlen(comm)+1, sizeof(u64));
3884
3885 comm_event->comm = comm;
3886 comm_event->comm_size = size;
3887
3888 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
3889
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003890 rcu_read_lock_sched();
3891 list_for_each_entry_rcu(pmu, &pmus, entry) {
3892 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
3893 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
3894 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003895 ctx = rcu_dereference(current->perf_event_ctxp);
3896 if (ctx)
3897 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003898 rcu_read_unlock_sched();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003899}
3900
3901void perf_event_comm(struct task_struct *task)
3902{
3903 struct perf_comm_event comm_event;
3904
3905 if (task->perf_event_ctxp)
3906 perf_event_enable_on_exec(task);
3907
3908 if (!atomic_read(&nr_comm_events))
3909 return;
3910
3911 comm_event = (struct perf_comm_event){
3912 .task = task,
3913 /* .comm */
3914 /* .comm_size */
3915 .event_id = {
3916 .header = {
3917 .type = PERF_RECORD_COMM,
3918 .misc = 0,
3919 /* .size */
3920 },
3921 /* .pid */
3922 /* .tid */
3923 },
3924 };
3925
3926 perf_event_comm_event(&comm_event);
3927}
3928
3929/*
3930 * mmap tracking
3931 */
3932
3933struct perf_mmap_event {
3934 struct vm_area_struct *vma;
3935
3936 const char *file_name;
3937 int file_size;
3938
3939 struct {
3940 struct perf_event_header header;
3941
3942 u32 pid;
3943 u32 tid;
3944 u64 start;
3945 u64 len;
3946 u64 pgoff;
3947 } event_id;
3948};
3949
3950static void perf_event_mmap_output(struct perf_event *event,
3951 struct perf_mmap_event *mmap_event)
3952{
3953 struct perf_output_handle handle;
3954 int size = mmap_event->event_id.header.size;
3955 int ret = perf_output_begin(&handle, event, size, 0, 0);
3956
3957 if (ret)
3958 return;
3959
3960 mmap_event->event_id.pid = perf_event_pid(event, current);
3961 mmap_event->event_id.tid = perf_event_tid(event, current);
3962
3963 perf_output_put(&handle, mmap_event->event_id);
3964 perf_output_copy(&handle, mmap_event->file_name,
3965 mmap_event->file_size);
3966 perf_output_end(&handle);
3967}
3968
3969static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01003970 struct perf_mmap_event *mmap_event,
3971 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003972{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003973 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003974 return 0;
3975
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003976 if (event->cpu != -1 && event->cpu != smp_processor_id())
3977 return 0;
3978
Eric B Munson3af9e852010-05-18 15:30:49 +01003979 if ((!executable && event->attr.mmap_data) ||
3980 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003981 return 1;
3982
3983 return 0;
3984}
3985
3986static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01003987 struct perf_mmap_event *mmap_event,
3988 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003989{
3990 struct perf_event *event;
3991
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003992 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01003993 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003994 perf_event_mmap_output(event, mmap_event);
3995 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003996}
3997
3998static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
3999{
4000 struct perf_cpu_context *cpuctx;
4001 struct perf_event_context *ctx;
4002 struct vm_area_struct *vma = mmap_event->vma;
4003 struct file *file = vma->vm_file;
4004 unsigned int size;
4005 char tmp[16];
4006 char *buf = NULL;
4007 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004008 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004009
4010 memset(tmp, 0, sizeof(tmp));
4011
4012 if (file) {
4013 /*
4014 * d_path works from the end of the buffer backwards, so we
4015 * need to add enough zero bytes after the string to handle
4016 * the 64bit alignment we do later.
4017 */
4018 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4019 if (!buf) {
4020 name = strncpy(tmp, "//enomem", sizeof(tmp));
4021 goto got_name;
4022 }
4023 name = d_path(&file->f_path, buf, PATH_MAX);
4024 if (IS_ERR(name)) {
4025 name = strncpy(tmp, "//toolong", sizeof(tmp));
4026 goto got_name;
4027 }
4028 } else {
4029 if (arch_vma_name(mmap_event->vma)) {
4030 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4031 sizeof(tmp));
4032 goto got_name;
4033 }
4034
4035 if (!vma->vm_mm) {
4036 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4037 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004038 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4039 vma->vm_end >= vma->vm_mm->brk) {
4040 name = strncpy(tmp, "[heap]", sizeof(tmp));
4041 goto got_name;
4042 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4043 vma->vm_end >= vma->vm_mm->start_stack) {
4044 name = strncpy(tmp, "[stack]", sizeof(tmp));
4045 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004046 }
4047
4048 name = strncpy(tmp, "//anon", sizeof(tmp));
4049 goto got_name;
4050 }
4051
4052got_name:
4053 size = ALIGN(strlen(name)+1, sizeof(u64));
4054
4055 mmap_event->file_name = name;
4056 mmap_event->file_size = size;
4057
4058 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4059
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004060 rcu_read_lock_sched();
4061 list_for_each_entry_rcu(pmu, &pmus, entry) {
4062 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
4063 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4064 vma->vm_flags & VM_EXEC);
4065 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004066 ctx = rcu_dereference(current->perf_event_ctxp);
4067 if (ctx)
Eric B Munson3af9e852010-05-18 15:30:49 +01004068 perf_event_mmap_ctx(ctx, mmap_event, vma->vm_flags & VM_EXEC);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004069 rcu_read_unlock_sched();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004070
4071 kfree(buf);
4072}
4073
Eric B Munson3af9e852010-05-18 15:30:49 +01004074void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004075{
4076 struct perf_mmap_event mmap_event;
4077
4078 if (!atomic_read(&nr_mmap_events))
4079 return;
4080
4081 mmap_event = (struct perf_mmap_event){
4082 .vma = vma,
4083 /* .file_name */
4084 /* .file_size */
4085 .event_id = {
4086 .header = {
4087 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004088 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004089 /* .size */
4090 },
4091 /* .pid */
4092 /* .tid */
4093 .start = vma->vm_start,
4094 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004095 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004096 },
4097 };
4098
4099 perf_event_mmap_event(&mmap_event);
4100}
4101
4102/*
4103 * IRQ throttle logging
4104 */
4105
4106static void perf_log_throttle(struct perf_event *event, int enable)
4107{
4108 struct perf_output_handle handle;
4109 int ret;
4110
4111 struct {
4112 struct perf_event_header header;
4113 u64 time;
4114 u64 id;
4115 u64 stream_id;
4116 } throttle_event = {
4117 .header = {
4118 .type = PERF_RECORD_THROTTLE,
4119 .misc = 0,
4120 .size = sizeof(throttle_event),
4121 },
4122 .time = perf_clock(),
4123 .id = primary_event_id(event),
4124 .stream_id = event->id,
4125 };
4126
4127 if (enable)
4128 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4129
4130 ret = perf_output_begin(&handle, event, sizeof(throttle_event), 1, 0);
4131 if (ret)
4132 return;
4133
4134 perf_output_put(&handle, throttle_event);
4135 perf_output_end(&handle);
4136}
4137
4138/*
4139 * Generic event overflow handling, sampling.
4140 */
4141
4142static int __perf_event_overflow(struct perf_event *event, int nmi,
4143 int throttle, struct perf_sample_data *data,
4144 struct pt_regs *regs)
4145{
4146 int events = atomic_read(&event->event_limit);
4147 struct hw_perf_event *hwc = &event->hw;
4148 int ret = 0;
4149
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004150 if (!throttle) {
4151 hwc->interrupts++;
4152 } else {
4153 if (hwc->interrupts != MAX_INTERRUPTS) {
4154 hwc->interrupts++;
4155 if (HZ * hwc->interrupts >
4156 (u64)sysctl_perf_event_sample_rate) {
4157 hwc->interrupts = MAX_INTERRUPTS;
4158 perf_log_throttle(event, 0);
4159 ret = 1;
4160 }
4161 } else {
4162 /*
4163 * Keep re-disabling events even though on the previous
4164 * pass we disabled it - just in case we raced with a
4165 * sched-in and the event got enabled again:
4166 */
4167 ret = 1;
4168 }
4169 }
4170
4171 if (event->attr.freq) {
4172 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004173 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004174
Peter Zijlstraabd50712010-01-26 18:50:16 +01004175 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004176
Peter Zijlstraabd50712010-01-26 18:50:16 +01004177 if (delta > 0 && delta < 2*TICK_NSEC)
4178 perf_adjust_period(event, delta, hwc->last_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004179 }
4180
4181 /*
4182 * XXX event_limit might not quite work as expected on inherited
4183 * events
4184 */
4185
4186 event->pending_kill = POLL_IN;
4187 if (events && atomic_dec_and_test(&event->event_limit)) {
4188 ret = 1;
4189 event->pending_kill = POLL_HUP;
4190 if (nmi) {
4191 event->pending_disable = 1;
4192 perf_pending_queue(&event->pending,
4193 perf_pending_event);
4194 } else
4195 perf_event_disable(event);
4196 }
4197
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004198 if (event->overflow_handler)
4199 event->overflow_handler(event, nmi, data, regs);
4200 else
4201 perf_event_output(event, nmi, data, regs);
4202
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004203 return ret;
4204}
4205
4206int perf_event_overflow(struct perf_event *event, int nmi,
4207 struct perf_sample_data *data,
4208 struct pt_regs *regs)
4209{
4210 return __perf_event_overflow(event, nmi, 1, data, regs);
4211}
4212
4213/*
4214 * Generic software event infrastructure
4215 */
4216
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004217struct swevent_htable {
4218 struct swevent_hlist *swevent_hlist;
4219 struct mutex hlist_mutex;
4220 int hlist_refcount;
4221
4222 /* Recursion avoidance in each contexts */
4223 int recursion[PERF_NR_CONTEXTS];
4224};
4225
4226static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4227
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004228/*
4229 * We directly increment event->count and keep a second value in
4230 * event->hw.period_left to count intervals. This period event
4231 * is kept in the range [-sample_period, 0] so that we can use the
4232 * sign as trigger.
4233 */
4234
4235static u64 perf_swevent_set_period(struct perf_event *event)
4236{
4237 struct hw_perf_event *hwc = &event->hw;
4238 u64 period = hwc->last_period;
4239 u64 nr, offset;
4240 s64 old, val;
4241
4242 hwc->last_period = hwc->sample_period;
4243
4244again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02004245 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004246 if (val < 0)
4247 return 0;
4248
4249 nr = div64_u64(period + val, period);
4250 offset = nr * period;
4251 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02004252 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004253 goto again;
4254
4255 return nr;
4256}
4257
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004258static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004259 int nmi, struct perf_sample_data *data,
4260 struct pt_regs *regs)
4261{
4262 struct hw_perf_event *hwc = &event->hw;
4263 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004264
4265 data->period = event->hw.last_period;
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004266 if (!overflow)
4267 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004268
4269 if (hwc->interrupts == MAX_INTERRUPTS)
4270 return;
4271
4272 for (; overflow; overflow--) {
4273 if (__perf_event_overflow(event, nmi, throttle,
4274 data, regs)) {
4275 /*
4276 * We inhibit the overflow from happening when
4277 * hwc->interrupts == MAX_INTERRUPTS.
4278 */
4279 break;
4280 }
4281 throttle = 1;
4282 }
4283}
4284
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004285static void perf_swevent_event(struct perf_event *event, u64 nr,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004286 int nmi, struct perf_sample_data *data,
4287 struct pt_regs *regs)
4288{
4289 struct hw_perf_event *hwc = &event->hw;
4290
Peter Zijlstrae7850592010-05-21 14:43:08 +02004291 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004292
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004293 if (!regs)
4294 return;
4295
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004296 if (!hwc->sample_period)
4297 return;
4298
4299 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
4300 return perf_swevent_overflow(event, 1, nmi, data, regs);
4301
Peter Zijlstrae7850592010-05-21 14:43:08 +02004302 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004303 return;
4304
4305 perf_swevent_overflow(event, 0, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306}
4307
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004308static int perf_exclude_event(struct perf_event *event,
4309 struct pt_regs *regs)
4310{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004311 if (event->hw.state & PERF_HES_STOPPED)
4312 return 0;
4313
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004314 if (regs) {
4315 if (event->attr.exclude_user && user_mode(regs))
4316 return 1;
4317
4318 if (event->attr.exclude_kernel && !user_mode(regs))
4319 return 1;
4320 }
4321
4322 return 0;
4323}
4324
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004325static int perf_swevent_match(struct perf_event *event,
4326 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08004327 u32 event_id,
4328 struct perf_sample_data *data,
4329 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004330{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004331 if (event->attr.type != type)
4332 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004333
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004334 if (event->attr.config != event_id)
4335 return 0;
4336
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004337 if (perf_exclude_event(event, regs))
4338 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004339
4340 return 1;
4341}
4342
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004343static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004344{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004345 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004346
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004347 return hash_64(val, SWEVENT_HLIST_BITS);
4348}
4349
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004350static inline struct hlist_head *
4351__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004352{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004353 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004354
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004355 return &hlist->heads[hash];
4356}
4357
4358/* For the read side: events when they trigger */
4359static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004360find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004361{
4362 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004363
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004364 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004365 if (!hlist)
4366 return NULL;
4367
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004368 return __find_swevent_head(hlist, type, event_id);
4369}
4370
4371/* For the event head insertion and removal in the hlist */
4372static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004373find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004374{
4375 struct swevent_hlist *hlist;
4376 u32 event_id = event->attr.config;
4377 u64 type = event->attr.type;
4378
4379 /*
4380 * Event scheduling is always serialized against hlist allocation
4381 * and release. Which makes the protected version suitable here.
4382 * The context lock guarantees that.
4383 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004384 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004385 lockdep_is_held(&event->ctx->lock));
4386 if (!hlist)
4387 return NULL;
4388
4389 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004390}
4391
4392static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
4393 u64 nr, int nmi,
4394 struct perf_sample_data *data,
4395 struct pt_regs *regs)
4396{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004397 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004398 struct perf_event *event;
4399 struct hlist_node *node;
4400 struct hlist_head *head;
4401
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004402 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004403 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004404 if (!head)
4405 goto end;
4406
4407 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08004408 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004409 perf_swevent_event(event, nr, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004410 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004411end:
4412 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004413}
4414
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004415int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004416{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004417 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004418
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004419 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004420}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01004421EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004422
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004423void inline perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004424{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004425 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004426
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004427 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004428}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004429
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004430void __perf_sw_event(u32 event_id, u64 nr, int nmi,
4431 struct pt_regs *regs, u64 addr)
4432{
Ingo Molnara4234bf2009-11-23 10:57:59 +01004433 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004434 int rctx;
4435
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004436 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004437 rctx = perf_swevent_get_recursion_context();
4438 if (rctx < 0)
4439 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004440
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004441 perf_sample_data_init(&data, addr);
Ingo Molnara4234bf2009-11-23 10:57:59 +01004442
4443 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, nmi, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004444
4445 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004446 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004447}
4448
4449static void perf_swevent_read(struct perf_event *event)
4450{
4451}
4452
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004453static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004454{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004455 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004456 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004457 struct hlist_head *head;
4458
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004459 if (hwc->sample_period) {
4460 hwc->last_period = hwc->sample_period;
4461 perf_swevent_set_period(event);
4462 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004463
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004464 hwc->state = !(flags & PERF_EF_START);
4465
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004466 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004467 if (WARN_ON_ONCE(!head))
4468 return -EINVAL;
4469
4470 hlist_add_head_rcu(&event->hlist_entry, head);
4471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472 return 0;
4473}
4474
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004475static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004476{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004477 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004478}
4479
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004480static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004481{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004482 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004483}
4484
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004485static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004486{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004487 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004488}
4489
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004490/* Deref the hlist from the update side */
4491static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004492swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004493{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004494 return rcu_dereference_protected(swhash->swevent_hlist,
4495 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004496}
4497
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004498static void swevent_hlist_release_rcu(struct rcu_head *rcu_head)
4499{
4500 struct swevent_hlist *hlist;
4501
4502 hlist = container_of(rcu_head, struct swevent_hlist, rcu_head);
4503 kfree(hlist);
4504}
4505
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004506static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004507{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004508 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004509
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004510 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004511 return;
4512
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004513 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004514 call_rcu(&hlist->rcu_head, swevent_hlist_release_rcu);
4515}
4516
4517static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
4518{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004519 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004520
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004521 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004522
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004523 if (!--swhash->hlist_refcount)
4524 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004525
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004526 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004527}
4528
4529static void swevent_hlist_put(struct perf_event *event)
4530{
4531 int cpu;
4532
4533 if (event->cpu != -1) {
4534 swevent_hlist_put_cpu(event, event->cpu);
4535 return;
4536 }
4537
4538 for_each_possible_cpu(cpu)
4539 swevent_hlist_put_cpu(event, cpu);
4540}
4541
4542static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
4543{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004544 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004545 int err = 0;
4546
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004547 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004548
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004549 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004550 struct swevent_hlist *hlist;
4551
4552 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
4553 if (!hlist) {
4554 err = -ENOMEM;
4555 goto exit;
4556 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004557 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004558 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004559 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004560exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004561 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004562
4563 return err;
4564}
4565
4566static int swevent_hlist_get(struct perf_event *event)
4567{
4568 int err;
4569 int cpu, failed_cpu;
4570
4571 if (event->cpu != -1)
4572 return swevent_hlist_get_cpu(event, event->cpu);
4573
4574 get_online_cpus();
4575 for_each_possible_cpu(cpu) {
4576 err = swevent_hlist_get_cpu(event, cpu);
4577 if (err) {
4578 failed_cpu = cpu;
4579 goto fail;
4580 }
4581 }
4582 put_online_cpus();
4583
4584 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004585fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004586 for_each_possible_cpu(cpu) {
4587 if (cpu == failed_cpu)
4588 break;
4589 swevent_hlist_put_cpu(event, cpu);
4590 }
4591
4592 put_online_cpus();
4593 return err;
4594}
4595
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004596atomic_t perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004597
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004598static void sw_perf_event_destroy(struct perf_event *event)
4599{
4600 u64 event_id = event->attr.config;
4601
4602 WARN_ON(event->parent);
4603
4604 atomic_dec(&perf_swevent_enabled[event_id]);
4605 swevent_hlist_put(event);
4606}
4607
4608static int perf_swevent_init(struct perf_event *event)
4609{
4610 int event_id = event->attr.config;
4611
4612 if (event->attr.type != PERF_TYPE_SOFTWARE)
4613 return -ENOENT;
4614
4615 switch (event_id) {
4616 case PERF_COUNT_SW_CPU_CLOCK:
4617 case PERF_COUNT_SW_TASK_CLOCK:
4618 return -ENOENT;
4619
4620 default:
4621 break;
4622 }
4623
4624 if (event_id > PERF_COUNT_SW_MAX)
4625 return -ENOENT;
4626
4627 if (!event->parent) {
4628 int err;
4629
4630 err = swevent_hlist_get(event);
4631 if (err)
4632 return err;
4633
4634 atomic_inc(&perf_swevent_enabled[event_id]);
4635 event->destroy = sw_perf_event_destroy;
4636 }
4637
4638 return 0;
4639}
4640
4641static struct pmu perf_swevent = {
4642 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004643 .add = perf_swevent_add,
4644 .del = perf_swevent_del,
4645 .start = perf_swevent_start,
4646 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004647 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004648};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004649
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004650#ifdef CONFIG_EVENT_TRACING
4651
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004652static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004653 struct perf_sample_data *data)
4654{
4655 void *record = data->raw->data;
4656
4657 if (likely(!event->filter) || filter_match_preds(event->filter, record))
4658 return 1;
4659 return 0;
4660}
4661
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004662static int perf_tp_event_match(struct perf_event *event,
4663 struct perf_sample_data *data,
4664 struct pt_regs *regs)
4665{
Peter Zijlstra580d6072010-05-20 20:54:31 +02004666 /*
4667 * All tracepoints are from kernel-space.
4668 */
4669 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004670 return 0;
4671
4672 if (!perf_tp_filter_match(event, data))
4673 return 0;
4674
4675 return 1;
4676}
4677
4678void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004679 struct pt_regs *regs, struct hlist_head *head, int rctx)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004680{
4681 struct perf_sample_data data;
4682 struct perf_event *event;
4683 struct hlist_node *node;
4684
4685 struct perf_raw_record raw = {
4686 .size = entry_size,
4687 .data = record,
4688 };
4689
4690 perf_sample_data_init(&data, addr);
4691 data.raw = &raw;
4692
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004693 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
4694 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004695 perf_swevent_event(event, count, 1, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004696 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004697
4698 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004699}
4700EXPORT_SYMBOL_GPL(perf_tp_event);
4701
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004702static void tp_perf_event_destroy(struct perf_event *event)
4703{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004704 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004705}
4706
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004707static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004708{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004709 int err;
4710
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004711 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4712 return -ENOENT;
4713
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004714 /*
4715 * Raw tracepoint data is a severe data leak, only allow root to
4716 * have these.
4717 */
4718 if ((event->attr.sample_type & PERF_SAMPLE_RAW) &&
4719 perf_paranoid_tracepoint_raw() &&
4720 !capable(CAP_SYS_ADMIN))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004721 return -EPERM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004722
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004723 err = perf_trace_init(event);
4724 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004725 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004726
4727 event->destroy = tp_perf_event_destroy;
4728
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004729 return 0;
4730}
4731
4732static struct pmu perf_tracepoint = {
4733 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004734 .add = perf_trace_add,
4735 .del = perf_trace_del,
4736 .start = perf_swevent_start,
4737 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004738 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004739};
4740
4741static inline void perf_tp_register(void)
4742{
4743 perf_pmu_register(&perf_tracepoint);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004744}
Li Zefan6fb29152009-10-15 11:21:42 +08004745
4746static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4747{
4748 char *filter_str;
4749 int ret;
4750
4751 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4752 return -EINVAL;
4753
4754 filter_str = strndup_user(arg, PAGE_SIZE);
4755 if (IS_ERR(filter_str))
4756 return PTR_ERR(filter_str);
4757
4758 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
4759
4760 kfree(filter_str);
4761 return ret;
4762}
4763
4764static void perf_event_free_filter(struct perf_event *event)
4765{
4766 ftrace_profile_free_filter(event);
4767}
4768
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004769#else
Li Zefan6fb29152009-10-15 11:21:42 +08004770
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004771static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004772{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004773}
Li Zefan6fb29152009-10-15 11:21:42 +08004774
4775static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4776{
4777 return -ENOENT;
4778}
4779
4780static void perf_event_free_filter(struct perf_event *event)
4781{
4782}
4783
Li Zefan07b139c2009-12-21 14:27:35 +08004784#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004786#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004787void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004788{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004789 struct perf_sample_data sample;
4790 struct pt_regs *regs = data;
4791
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004792 perf_sample_data_init(&sample, bp->attr.bp_addr);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004793
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004794 if (!bp->hw.state && !perf_exclude_event(bp, regs))
4795 perf_swevent_event(bp, 1, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004796}
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004797#endif
4798
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004799/*
4800 * hrtimer based swevent callback
4801 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004802
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004803static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004804{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004805 enum hrtimer_restart ret = HRTIMER_RESTART;
4806 struct perf_sample_data data;
4807 struct pt_regs *regs;
4808 struct perf_event *event;
4809 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004810
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004811 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
4812 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004813
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004814 perf_sample_data_init(&data, 0);
4815 data.period = event->hw.last_period;
4816 regs = get_irq_regs();
4817
4818 if (regs && !perf_exclude_event(event, regs)) {
4819 if (!(event->attr.exclude_idle && current->pid == 0))
4820 if (perf_event_overflow(event, 0, &data, regs))
4821 ret = HRTIMER_NORESTART;
4822 }
4823
4824 period = max_t(u64, 10000, event->hw.sample_period);
4825 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
4826
4827 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004828}
4829
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004830static void perf_swevent_start_hrtimer(struct perf_event *event)
4831{
4832 struct hw_perf_event *hwc = &event->hw;
4833
4834 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
4835 hwc->hrtimer.function = perf_swevent_hrtimer;
4836 if (hwc->sample_period) {
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004837 s64 period = local64_read(&hwc->period_left);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004838
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004839 if (period) {
4840 if (period < 0)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004841 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004842
4843 local64_set(&hwc->period_left, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004844 } else {
4845 period = max_t(u64, 10000, hwc->sample_period);
4846 }
4847 __hrtimer_start_range_ns(&hwc->hrtimer,
4848 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02004849 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004850 }
4851}
4852
4853static void perf_swevent_cancel_hrtimer(struct perf_event *event)
4854{
4855 struct hw_perf_event *hwc = &event->hw;
4856
4857 if (hwc->sample_period) {
4858 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004859 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004860
4861 hrtimer_cancel(&hwc->hrtimer);
4862 }
4863}
4864
4865/*
4866 * Software event: cpu wall time clock
4867 */
4868
4869static void cpu_clock_event_update(struct perf_event *event)
4870{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004871 s64 prev;
4872 u64 now;
4873
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004874 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004875 prev = local64_xchg(&event->hw.prev_count, now);
4876 local64_add(now - prev, &event->count);
4877}
4878
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004879static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004880{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004881 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004882 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004883}
4884
4885static void cpu_clock_event_stop(struct perf_event *event, int flags)
4886{
4887 perf_swevent_cancel_hrtimer(event);
4888 cpu_clock_event_update(event);
4889}
4890
4891static int cpu_clock_event_add(struct perf_event *event, int flags)
4892{
4893 if (flags & PERF_EF_START)
4894 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004895
4896 return 0;
4897}
4898
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004899static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004900{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004901 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004902}
4903
4904static void cpu_clock_event_read(struct perf_event *event)
4905{
4906 cpu_clock_event_update(event);
4907}
4908
4909static int cpu_clock_event_init(struct perf_event *event)
4910{
4911 if (event->attr.type != PERF_TYPE_SOFTWARE)
4912 return -ENOENT;
4913
4914 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
4915 return -ENOENT;
4916
4917 return 0;
4918}
4919
4920static struct pmu perf_cpu_clock = {
4921 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004922 .add = cpu_clock_event_add,
4923 .del = cpu_clock_event_del,
4924 .start = cpu_clock_event_start,
4925 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004926 .read = cpu_clock_event_read,
4927};
4928
4929/*
4930 * Software event: task time clock
4931 */
4932
4933static void task_clock_event_update(struct perf_event *event, u64 now)
4934{
4935 u64 prev;
4936 s64 delta;
4937
4938 prev = local64_xchg(&event->hw.prev_count, now);
4939 delta = now - prev;
4940 local64_add(delta, &event->count);
4941}
4942
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004943static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004944{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004945 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004946 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004947}
4948
4949static void task_clock_event_stop(struct perf_event *event, int flags)
4950{
4951 perf_swevent_cancel_hrtimer(event);
4952 task_clock_event_update(event, event->ctx->time);
4953}
4954
4955static int task_clock_event_add(struct perf_event *event, int flags)
4956{
4957 if (flags & PERF_EF_START)
4958 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004959
4960 return 0;
4961}
4962
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004963static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004964{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004965 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004966}
4967
4968static void task_clock_event_read(struct perf_event *event)
4969{
4970 u64 time;
4971
4972 if (!in_nmi()) {
4973 update_context_time(event->ctx);
4974 time = event->ctx->time;
4975 } else {
4976 u64 now = perf_clock();
4977 u64 delta = now - event->ctx->timestamp;
4978 time = event->ctx->time + delta;
4979 }
4980
4981 task_clock_event_update(event, time);
4982}
4983
4984static int task_clock_event_init(struct perf_event *event)
4985{
4986 if (event->attr.type != PERF_TYPE_SOFTWARE)
4987 return -ENOENT;
4988
4989 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
4990 return -ENOENT;
4991
4992 return 0;
4993}
4994
4995static struct pmu perf_task_clock = {
4996 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004997 .add = task_clock_event_add,
4998 .del = task_clock_event_del,
4999 .start = task_clock_event_start,
5000 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005001 .read = task_clock_event_read,
5002};
5003
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005004static void perf_pmu_nop_void(struct pmu *pmu)
5005{
5006}
5007
5008static int perf_pmu_nop_int(struct pmu *pmu)
5009{
5010 return 0;
5011}
5012
5013static void perf_pmu_start_txn(struct pmu *pmu)
5014{
5015 perf_pmu_disable(pmu);
5016}
5017
5018static int perf_pmu_commit_txn(struct pmu *pmu)
5019{
5020 perf_pmu_enable(pmu);
5021 return 0;
5022}
5023
5024static void perf_pmu_cancel_txn(struct pmu *pmu)
5025{
5026 perf_pmu_enable(pmu);
5027}
5028
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005029int perf_pmu_register(struct pmu *pmu)
5030{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005031 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005032
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005033 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005034 ret = -ENOMEM;
5035 pmu->pmu_disable_count = alloc_percpu(int);
5036 if (!pmu->pmu_disable_count)
5037 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005038
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005039 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5040 if (!pmu->pmu_cpu_context)
5041 goto free_pdc;
5042
5043 for_each_possible_cpu(cpu) {
5044 struct perf_cpu_context *cpuctx;
5045
5046 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5047 __perf_event_init_context(&cpuctx->ctx, NULL);
5048 cpuctx->ctx.pmu = pmu;
5049 cpuctx->timer_interval = TICK_NSEC;
5050 hrtimer_init(&cpuctx->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5051 cpuctx->timer.function = perf_event_context_tick;
5052 }
5053
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005054 if (!pmu->start_txn) {
5055 if (pmu->pmu_enable) {
5056 /*
5057 * If we have pmu_enable/pmu_disable calls, install
5058 * transaction stubs that use that to try and batch
5059 * hardware accesses.
5060 */
5061 pmu->start_txn = perf_pmu_start_txn;
5062 pmu->commit_txn = perf_pmu_commit_txn;
5063 pmu->cancel_txn = perf_pmu_cancel_txn;
5064 } else {
5065 pmu->start_txn = perf_pmu_nop_void;
5066 pmu->commit_txn = perf_pmu_nop_int;
5067 pmu->cancel_txn = perf_pmu_nop_void;
5068 }
5069 }
5070
5071 if (!pmu->pmu_enable) {
5072 pmu->pmu_enable = perf_pmu_nop_void;
5073 pmu->pmu_disable = perf_pmu_nop_void;
5074 }
5075
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005076 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005077 ret = 0;
5078unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005079 mutex_unlock(&pmus_lock);
5080
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005081 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005082
5083free_pdc:
5084 free_percpu(pmu->pmu_disable_count);
5085 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005086}
5087
5088void perf_pmu_unregister(struct pmu *pmu)
5089{
5090 mutex_lock(&pmus_lock);
5091 list_del_rcu(&pmu->entry);
5092 mutex_unlock(&pmus_lock);
5093
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005094 /*
5095 * We use the pmu list either under SRCU or preempt_disable,
5096 * synchronize_srcu() implies synchronize_sched() so we're good.
5097 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005098 synchronize_srcu(&pmus_srcu);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005099
5100 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005101 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005102}
5103
5104struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005105{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005106 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005107 int idx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005108
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005109 idx = srcu_read_lock(&pmus_srcu);
5110 list_for_each_entry_rcu(pmu, &pmus, entry) {
5111 int ret = pmu->event_init(event);
5112 if (!ret)
5113 break;
5114 if (ret != -ENOENT) {
5115 pmu = ERR_PTR(ret);
5116 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005117 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005118 }
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005119 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005120
5121 return pmu;
5122}
5123
5124/*
5125 * Allocate and initialize a event structure
5126 */
5127static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005128perf_event_alloc(struct perf_event_attr *attr, int cpu,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005129 struct perf_event *group_leader,
5130 struct perf_event *parent_event,
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005131 perf_overflow_handler_t overflow_handler)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005132{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005133 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005134 struct perf_event *event;
5135 struct hw_perf_event *hwc;
5136 long err;
5137
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005138 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005139 if (!event)
5140 return ERR_PTR(-ENOMEM);
5141
5142 /*
5143 * Single events are their own group leaders, with an
5144 * empty sibling list:
5145 */
5146 if (!group_leader)
5147 group_leader = event;
5148
5149 mutex_init(&event->child_mutex);
5150 INIT_LIST_HEAD(&event->child_list);
5151
5152 INIT_LIST_HEAD(&event->group_entry);
5153 INIT_LIST_HEAD(&event->event_entry);
5154 INIT_LIST_HEAD(&event->sibling_list);
5155 init_waitqueue_head(&event->waitq);
5156
5157 mutex_init(&event->mmap_mutex);
5158
5159 event->cpu = cpu;
5160 event->attr = *attr;
5161 event->group_leader = group_leader;
5162 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005163 event->oncpu = -1;
5164
5165 event->parent = parent_event;
5166
5167 event->ns = get_pid_ns(current->nsproxy->pid_ns);
5168 event->id = atomic64_inc_return(&perf_event_id);
5169
5170 event->state = PERF_EVENT_STATE_INACTIVE;
5171
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005172 if (!overflow_handler && parent_event)
5173 overflow_handler = parent_event->overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005174
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005175 event->overflow_handler = overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005176
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005177 if (attr->disabled)
5178 event->state = PERF_EVENT_STATE_OFF;
5179
5180 pmu = NULL;
5181
5182 hwc = &event->hw;
5183 hwc->sample_period = attr->sample_period;
5184 if (attr->freq && attr->sample_freq)
5185 hwc->sample_period = 1;
5186 hwc->last_period = hwc->sample_period;
5187
Peter Zijlstrae7850592010-05-21 14:43:08 +02005188 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005189
5190 /*
5191 * we currently do not support PERF_FORMAT_GROUP on inherited events
5192 */
5193 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
5194 goto done;
5195
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005196 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005197
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005198done:
5199 err = 0;
5200 if (!pmu)
5201 err = -EINVAL;
5202 else if (IS_ERR(pmu))
5203 err = PTR_ERR(pmu);
5204
5205 if (err) {
5206 if (event->ns)
5207 put_pid_ns(event->ns);
5208 kfree(event);
5209 return ERR_PTR(err);
5210 }
5211
5212 event->pmu = pmu;
5213
5214 if (!event->parent) {
5215 atomic_inc(&nr_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01005216 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005217 atomic_inc(&nr_mmap_events);
5218 if (event->attr.comm)
5219 atomic_inc(&nr_comm_events);
5220 if (event->attr.task)
5221 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005222 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
5223 err = get_callchain_buffers();
5224 if (err) {
5225 free_event(event);
5226 return ERR_PTR(err);
5227 }
5228 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005229 }
5230
5231 return event;
5232}
5233
5234static int perf_copy_attr(struct perf_event_attr __user *uattr,
5235 struct perf_event_attr *attr)
5236{
5237 u32 size;
5238 int ret;
5239
5240 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
5241 return -EFAULT;
5242
5243 /*
5244 * zero the full structure, so that a short copy will be nice.
5245 */
5246 memset(attr, 0, sizeof(*attr));
5247
5248 ret = get_user(size, &uattr->size);
5249 if (ret)
5250 return ret;
5251
5252 if (size > PAGE_SIZE) /* silly large */
5253 goto err_size;
5254
5255 if (!size) /* abi compat */
5256 size = PERF_ATTR_SIZE_VER0;
5257
5258 if (size < PERF_ATTR_SIZE_VER0)
5259 goto err_size;
5260
5261 /*
5262 * If we're handed a bigger struct than we know of,
5263 * ensure all the unknown bits are 0 - i.e. new
5264 * user-space does not rely on any kernel feature
5265 * extensions we dont know about yet.
5266 */
5267 if (size > sizeof(*attr)) {
5268 unsigned char __user *addr;
5269 unsigned char __user *end;
5270 unsigned char val;
5271
5272 addr = (void __user *)uattr + sizeof(*attr);
5273 end = (void __user *)uattr + size;
5274
5275 for (; addr < end; addr++) {
5276 ret = get_user(val, addr);
5277 if (ret)
5278 return ret;
5279 if (val)
5280 goto err_size;
5281 }
5282 size = sizeof(*attr);
5283 }
5284
5285 ret = copy_from_user(attr, uattr, size);
5286 if (ret)
5287 return -EFAULT;
5288
5289 /*
5290 * If the type exists, the corresponding creation will verify
5291 * the attr->config.
5292 */
5293 if (attr->type >= PERF_TYPE_MAX)
5294 return -EINVAL;
5295
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05305296 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005297 return -EINVAL;
5298
5299 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
5300 return -EINVAL;
5301
5302 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
5303 return -EINVAL;
5304
5305out:
5306 return ret;
5307
5308err_size:
5309 put_user(sizeof(*attr), &uattr->size);
5310 ret = -E2BIG;
5311 goto out;
5312}
5313
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005314static int
5315perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005316{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005317 struct perf_buffer *buffer = NULL, *old_buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005318 int ret = -EINVAL;
5319
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005320 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005321 goto set;
5322
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005323 /* don't allow circular references */
5324 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005325 goto out;
5326
Peter Zijlstra0f139302010-05-20 14:35:15 +02005327 /*
5328 * Don't allow cross-cpu buffers
5329 */
5330 if (output_event->cpu != event->cpu)
5331 goto out;
5332
5333 /*
5334 * If its not a per-cpu buffer, it must be the same task.
5335 */
5336 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
5337 goto out;
5338
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005339set:
5340 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005341 /* Can't redirect output if we've got an active mmap() */
5342 if (atomic_read(&event->mmap_count))
5343 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005344
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005345 if (output_event) {
5346 /* get the buffer we want to redirect to */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005347 buffer = perf_buffer_get(output_event);
5348 if (!buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005349 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005350 }
5351
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005352 old_buffer = event->buffer;
5353 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005354 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005355unlock:
5356 mutex_unlock(&event->mmap_mutex);
5357
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005358 if (old_buffer)
5359 perf_buffer_put(old_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005360out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005361 return ret;
5362}
5363
5364/**
5365 * sys_perf_event_open - open a performance event, associate it to a task/cpu
5366 *
5367 * @attr_uptr: event_id type attributes for monitoring/sampling
5368 * @pid: target pid
5369 * @cpu: target cpu
5370 * @group_fd: group leader event fd
5371 */
5372SYSCALL_DEFINE5(perf_event_open,
5373 struct perf_event_attr __user *, attr_uptr,
5374 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
5375{
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005376 struct perf_event *event, *group_leader = NULL, *output_event = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005377 struct perf_event_attr attr;
5378 struct perf_event_context *ctx;
5379 struct file *event_file = NULL;
5380 struct file *group_file = NULL;
Al Viroea635c62010-05-26 17:40:29 -04005381 int event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005382 int fput_needed = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005383 int err;
5384
5385 /* for future expandability... */
5386 if (flags & ~(PERF_FLAG_FD_NO_GROUP | PERF_FLAG_FD_OUTPUT))
5387 return -EINVAL;
5388
5389 err = perf_copy_attr(attr_uptr, &attr);
5390 if (err)
5391 return err;
5392
5393 if (!attr.exclude_kernel) {
5394 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
5395 return -EACCES;
5396 }
5397
5398 if (attr.freq) {
5399 if (attr.sample_freq > sysctl_perf_event_sample_rate)
5400 return -EINVAL;
5401 }
5402
Al Viroea635c62010-05-26 17:40:29 -04005403 event_fd = get_unused_fd_flags(O_RDWR);
5404 if (event_fd < 0)
5405 return event_fd;
5406
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005407 event = perf_event_alloc(&attr, cpu, group_leader, NULL, NULL);
5408 if (IS_ERR(event)) {
5409 err = PTR_ERR(event);
5410 goto err_fd;
5411 }
5412
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413 /*
5414 * Get the target context (task or percpu):
5415 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005416 ctx = find_get_context(event->pmu, pid, cpu);
Al Viroea635c62010-05-26 17:40:29 -04005417 if (IS_ERR(ctx)) {
5418 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005419 goto err_alloc;
Al Viroea635c62010-05-26 17:40:29 -04005420 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005421
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005422 if (group_fd != -1) {
5423 group_leader = perf_fget_light(group_fd, &fput_needed);
5424 if (IS_ERR(group_leader)) {
5425 err = PTR_ERR(group_leader);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005426 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005427 }
5428 group_file = group_leader->filp;
5429 if (flags & PERF_FLAG_FD_OUTPUT)
5430 output_event = group_leader;
5431 if (flags & PERF_FLAG_FD_NO_GROUP)
5432 group_leader = NULL;
5433 }
5434
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435 /*
5436 * Look up the group leader (we will attach this event to it):
5437 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005438 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005439 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005440
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005441 /*
5442 * Do not allow a recursive hierarchy (this new sibling
5443 * becoming part of another group-sibling):
5444 */
5445 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005446 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005447 /*
5448 * Do not allow to attach to a group in a different
5449 * task or CPU context:
5450 */
5451 if (group_leader->ctx != ctx)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005452 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005453 /*
5454 * Only a group leader can be exclusive or pinned
5455 */
5456 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005457 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005458 }
5459
5460 if (output_event) {
5461 err = perf_event_set_output(event, output_event);
5462 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005463 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005464 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005465
Al Viroea635c62010-05-26 17:40:29 -04005466 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
5467 if (IS_ERR(event_file)) {
5468 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005469 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04005470 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005472 event->filp = event_file;
5473 WARN_ON_ONCE(ctx->parent_ctx);
5474 mutex_lock(&ctx->mutex);
5475 perf_install_in_context(ctx, event, cpu);
5476 ++ctx->generation;
5477 mutex_unlock(&ctx->mutex);
5478
5479 event->owner = current;
5480 get_task_struct(current);
5481 mutex_lock(&current->perf_event_mutex);
5482 list_add_tail(&event->owner_entry, &current->perf_event_list);
5483 mutex_unlock(&current->perf_event_mutex);
5484
Peter Zijlstra8a495422010-05-27 15:47:49 +02005485 /*
5486 * Drop the reference on the group_event after placing the
5487 * new event on the sibling_list. This ensures destruction
5488 * of the group leader will find the pointer to itself in
5489 * perf_group_detach().
5490 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005491 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04005492 fd_install(event_fd, event_file);
5493 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005494
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005495err_context:
Al Viroea635c62010-05-26 17:40:29 -04005496 fput_light(group_file, fput_needed);
5497 put_ctx(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005498err_alloc:
5499 free_event(event);
Al Viroea635c62010-05-26 17:40:29 -04005500err_fd:
5501 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005502 return err;
5503}
5504
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005505/**
5506 * perf_event_create_kernel_counter
5507 *
5508 * @attr: attributes of the counter to create
5509 * @cpu: cpu in which the counter is bound
5510 * @pid: task to profile
5511 */
5512struct perf_event *
5513perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005514 pid_t pid,
5515 perf_overflow_handler_t overflow_handler)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005516{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005517 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005518 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005519 int err;
5520
5521 /*
5522 * Get the target context (task or percpu):
5523 */
5524
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005525 event = perf_event_alloc(attr, cpu, NULL, NULL, overflow_handler);
5526 if (IS_ERR(event)) {
5527 err = PTR_ERR(event);
5528 goto err;
5529 }
5530
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005531 ctx = find_get_context(event->pmu, pid, cpu);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005532 if (IS_ERR(ctx)) {
5533 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005534 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005535 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005536
5537 event->filp = NULL;
5538 WARN_ON_ONCE(ctx->parent_ctx);
5539 mutex_lock(&ctx->mutex);
5540 perf_install_in_context(ctx, event, cpu);
5541 ++ctx->generation;
5542 mutex_unlock(&ctx->mutex);
5543
5544 event->owner = current;
5545 get_task_struct(current);
5546 mutex_lock(&current->perf_event_mutex);
5547 list_add_tail(&event->owner_entry, &current->perf_event_list);
5548 mutex_unlock(&current->perf_event_mutex);
5549
5550 return event;
5551
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005552err_free:
5553 free_event(event);
5554err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005555 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005556}
5557EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
5558
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005559/*
5560 * inherit a event from parent task to child task:
5561 */
5562static struct perf_event *
5563inherit_event(struct perf_event *parent_event,
5564 struct task_struct *parent,
5565 struct perf_event_context *parent_ctx,
5566 struct task_struct *child,
5567 struct perf_event *group_leader,
5568 struct perf_event_context *child_ctx)
5569{
5570 struct perf_event *child_event;
5571
5572 /*
5573 * Instead of creating recursive hierarchies of events,
5574 * we link inherited events back to the original parent,
5575 * which has a filp for sure, which we use as the reference
5576 * count:
5577 */
5578 if (parent_event->parent)
5579 parent_event = parent_event->parent;
5580
5581 child_event = perf_event_alloc(&parent_event->attr,
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005582 parent_event->cpu,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583 group_leader, parent_event,
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005584 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005585 if (IS_ERR(child_event))
5586 return child_event;
5587 get_ctx(child_ctx);
5588
5589 /*
5590 * Make the child state follow the state of the parent event,
5591 * not its attr.disabled bit. We hold the parent's mutex,
5592 * so we won't race with perf_event_{en, dis}able_family.
5593 */
5594 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
5595 child_event->state = PERF_EVENT_STATE_INACTIVE;
5596 else
5597 child_event->state = PERF_EVENT_STATE_OFF;
5598
Peter Zijlstra75c9f322010-01-29 09:04:26 +01005599 if (parent_event->attr.freq) {
5600 u64 sample_period = parent_event->hw.sample_period;
5601 struct hw_perf_event *hwc = &child_event->hw;
5602
5603 hwc->sample_period = sample_period;
5604 hwc->last_period = sample_period;
5605
Peter Zijlstrae7850592010-05-21 14:43:08 +02005606 local64_set(&hwc->period_left, sample_period);
Peter Zijlstra75c9f322010-01-29 09:04:26 +01005607 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005608
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005609 child_event->ctx = child_ctx;
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005610 child_event->overflow_handler = parent_event->overflow_handler;
5611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005612 /*
5613 * Link it up in the child's context:
5614 */
5615 add_event_to_ctx(child_event, child_ctx);
5616
5617 /*
5618 * Get a reference to the parent filp - we will fput it
5619 * when the child event exits. This is safe to do because
5620 * we are in the parent and we know that the filp still
5621 * exists and has a nonzero count:
5622 */
5623 atomic_long_inc(&parent_event->filp->f_count);
5624
5625 /*
5626 * Link this into the parent event's child list
5627 */
5628 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
5629 mutex_lock(&parent_event->child_mutex);
5630 list_add_tail(&child_event->child_list, &parent_event->child_list);
5631 mutex_unlock(&parent_event->child_mutex);
5632
5633 return child_event;
5634}
5635
5636static int inherit_group(struct perf_event *parent_event,
5637 struct task_struct *parent,
5638 struct perf_event_context *parent_ctx,
5639 struct task_struct *child,
5640 struct perf_event_context *child_ctx)
5641{
5642 struct perf_event *leader;
5643 struct perf_event *sub;
5644 struct perf_event *child_ctr;
5645
5646 leader = inherit_event(parent_event, parent, parent_ctx,
5647 child, NULL, child_ctx);
5648 if (IS_ERR(leader))
5649 return PTR_ERR(leader);
5650 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
5651 child_ctr = inherit_event(sub, parent, parent_ctx,
5652 child, leader, child_ctx);
5653 if (IS_ERR(child_ctr))
5654 return PTR_ERR(child_ctr);
5655 }
5656 return 0;
5657}
5658
5659static void sync_child_event(struct perf_event *child_event,
5660 struct task_struct *child)
5661{
5662 struct perf_event *parent_event = child_event->parent;
5663 u64 child_val;
5664
5665 if (child_event->attr.inherit_stat)
5666 perf_event_read_event(child_event, child);
5667
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005668 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005669
5670 /*
5671 * Add back the child's count to the parent's count:
5672 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02005673 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005674 atomic64_add(child_event->total_time_enabled,
5675 &parent_event->child_total_time_enabled);
5676 atomic64_add(child_event->total_time_running,
5677 &parent_event->child_total_time_running);
5678
5679 /*
5680 * Remove this event from the parent's list
5681 */
5682 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
5683 mutex_lock(&parent_event->child_mutex);
5684 list_del_init(&child_event->child_list);
5685 mutex_unlock(&parent_event->child_mutex);
5686
5687 /*
5688 * Release the parent event, if this was the last
5689 * reference to it.
5690 */
5691 fput(parent_event->filp);
5692}
5693
5694static void
5695__perf_event_exit_task(struct perf_event *child_event,
5696 struct perf_event_context *child_ctx,
5697 struct task_struct *child)
5698{
5699 struct perf_event *parent_event;
5700
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005701 perf_event_remove_from_context(child_event);
5702
5703 parent_event = child_event->parent;
5704 /*
5705 * It can happen that parent exits first, and has events
5706 * that are still around due to the child reference. These
5707 * events need to be zapped - but otherwise linger.
5708 */
5709 if (parent_event) {
5710 sync_child_event(child_event, child);
5711 free_event(child_event);
5712 }
5713}
5714
5715/*
5716 * When a child task exits, feed back event values to parent events.
5717 */
5718void perf_event_exit_task(struct task_struct *child)
5719{
5720 struct perf_event *child_event, *tmp;
5721 struct perf_event_context *child_ctx;
5722 unsigned long flags;
5723
5724 if (likely(!child->perf_event_ctxp)) {
5725 perf_event_task(child, NULL, 0);
5726 return;
5727 }
5728
5729 local_irq_save(flags);
5730 /*
5731 * We can't reschedule here because interrupts are disabled,
5732 * and either child is current or it is a task that can't be
5733 * scheduled, so we are now safe from rescheduling changing
5734 * our context.
5735 */
5736 child_ctx = child->perf_event_ctxp;
5737 __perf_event_task_sched_out(child_ctx);
5738
5739 /*
5740 * Take the context lock here so that if find_get_context is
5741 * reading child->perf_event_ctxp, we wait until it has
5742 * incremented the context's refcount before we do put_ctx below.
5743 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01005744 raw_spin_lock(&child_ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005745 child->perf_event_ctxp = NULL;
5746 /*
5747 * If this context is a clone; unclone it so it can't get
5748 * swapped to another process while we're removing all
5749 * the events from it.
5750 */
5751 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01005752 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01005753 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005754
5755 /*
5756 * Report the task dead after unscheduling the events so that we
5757 * won't get any samples after PERF_RECORD_EXIT. We can however still
5758 * get a few PERF_RECORD_READ events.
5759 */
5760 perf_event_task(child, child_ctx, 0);
5761
5762 /*
5763 * We can recurse on the same lock type through:
5764 *
5765 * __perf_event_exit_task()
5766 * sync_child_event()
5767 * fput(parent_event->filp)
5768 * perf_release()
5769 * mutex_lock(&ctx->mutex)
5770 *
5771 * But since its the parent context it won't be the same instance.
5772 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02005773 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005774
5775again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005776 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
5777 group_entry)
5778 __perf_event_exit_task(child_event, child_ctx, child);
5779
5780 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005781 group_entry)
5782 __perf_event_exit_task(child_event, child_ctx, child);
5783
5784 /*
5785 * If the last event was a group event, it will have appended all
5786 * its siblings to the list, but we obtained 'tmp' before that which
5787 * will still point to the list head terminating the iteration.
5788 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005789 if (!list_empty(&child_ctx->pinned_groups) ||
5790 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791 goto again;
5792
5793 mutex_unlock(&child_ctx->mutex);
5794
5795 put_ctx(child_ctx);
5796}
5797
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005798static void perf_free_event(struct perf_event *event,
5799 struct perf_event_context *ctx)
5800{
5801 struct perf_event *parent = event->parent;
5802
5803 if (WARN_ON_ONCE(!parent))
5804 return;
5805
5806 mutex_lock(&parent->child_mutex);
5807 list_del_init(&event->child_list);
5808 mutex_unlock(&parent->child_mutex);
5809
5810 fput(parent->filp);
5811
Peter Zijlstra8a495422010-05-27 15:47:49 +02005812 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005813 list_del_event(event, ctx);
5814 free_event(event);
5815}
5816
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005817/*
5818 * free an unexposed, unused context as created by inheritance by
5819 * init_task below, used by fork() in case of fail.
5820 */
5821void perf_event_free_task(struct task_struct *task)
5822{
5823 struct perf_event_context *ctx = task->perf_event_ctxp;
5824 struct perf_event *event, *tmp;
5825
5826 if (!ctx)
5827 return;
5828
5829 mutex_lock(&ctx->mutex);
5830again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005831 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
5832 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005833
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005834 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
5835 group_entry)
5836 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005837
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005838 if (!list_empty(&ctx->pinned_groups) ||
5839 !list_empty(&ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005840 goto again;
5841
5842 mutex_unlock(&ctx->mutex);
5843
5844 put_ctx(ctx);
5845}
5846
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005847static int
5848inherit_task_group(struct perf_event *event, struct task_struct *parent,
5849 struct perf_event_context *parent_ctx,
5850 struct task_struct *child,
5851 int *inherited_all)
5852{
5853 int ret;
5854 struct perf_event_context *child_ctx = child->perf_event_ctxp;
5855
5856 if (!event->attr.inherit) {
5857 *inherited_all = 0;
5858 return 0;
5859 }
5860
5861 if (!child_ctx) {
5862 /*
5863 * This is executed from the parent task context, so
5864 * inherit events that have been marked for cloning.
5865 * First allocate and initialize a context for the
5866 * child.
5867 */
5868
5869 child_ctx = kzalloc(sizeof(struct perf_event_context),
5870 GFP_KERNEL);
5871 if (!child_ctx)
5872 return -ENOMEM;
5873
5874 __perf_event_init_context(child_ctx, child);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005875 child_ctx->pmu = event->pmu;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005876 child->perf_event_ctxp = child_ctx;
5877 get_task_struct(child);
5878 }
5879
5880 ret = inherit_group(event, parent, parent_ctx,
5881 child, child_ctx);
5882
5883 if (ret)
5884 *inherited_all = 0;
5885
5886 return ret;
5887}
5888
5889
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005890/*
5891 * Initialize the perf_event context in task_struct
5892 */
5893int perf_event_init_task(struct task_struct *child)
5894{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005895 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005896 struct perf_event_context *cloned_ctx;
5897 struct perf_event *event;
5898 struct task_struct *parent = current;
5899 int inherited_all = 1;
5900 int ret = 0;
5901
5902 child->perf_event_ctxp = NULL;
5903
5904 mutex_init(&child->perf_event_mutex);
5905 INIT_LIST_HEAD(&child->perf_event_list);
5906
5907 if (likely(!parent->perf_event_ctxp))
5908 return 0;
5909
5910 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005911 * If the parent's context is a clone, pin it so it won't get
5912 * swapped under us.
5913 */
5914 parent_ctx = perf_pin_task_context(parent);
5915
5916 /*
5917 * No need to check if parent_ctx != NULL here; since we saw
5918 * it non-NULL earlier, the only reason for it to become NULL
5919 * is if we exit, and since we're currently in the middle of
5920 * a fork we can't be exiting at the same time.
5921 */
5922
5923 /*
5924 * Lock the parent list. No need to lock the child - not PID
5925 * hashed yet and not running, so nobody can access it.
5926 */
5927 mutex_lock(&parent_ctx->mutex);
5928
5929 /*
5930 * We dont have to disable NMIs - we are only looking at
5931 * the list, not manipulating it:
5932 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005933 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
5934 ret = inherit_task_group(event, parent, parent_ctx, child,
5935 &inherited_all);
5936 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005938 }
5939
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005940 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
5941 ret = inherit_task_group(event, parent, parent_ctx, child,
5942 &inherited_all);
5943 if (ret)
5944 break;
5945 }
5946
5947 child_ctx = child->perf_event_ctxp;
5948
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01005949 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950 /*
5951 * Mark the child context as a clone of the parent
5952 * context, or of whatever the parent is a clone of.
5953 * Note that if the parent is a clone, it could get
5954 * uncloned at any point, but that doesn't matter
5955 * because the list of events and the generation
5956 * count can't have changed since we took the mutex.
5957 */
5958 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
5959 if (cloned_ctx) {
5960 child_ctx->parent_ctx = cloned_ctx;
5961 child_ctx->parent_gen = parent_ctx->parent_gen;
5962 } else {
5963 child_ctx->parent_ctx = parent_ctx;
5964 child_ctx->parent_gen = parent_ctx->generation;
5965 }
5966 get_ctx(child_ctx->parent_ctx);
5967 }
5968
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005969 mutex_unlock(&parent_ctx->mutex);
5970
5971 perf_unpin_context(parent_ctx);
5972
5973 return ret;
5974}
5975
Paul Mackerras220b1402010-03-10 20:45:52 +11005976static void __init perf_event_init_all_cpus(void)
5977{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005978 struct swevent_htable *swhash;
5979 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11005980
5981 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005982 swhash = &per_cpu(swevent_htable, cpu);
5983 mutex_init(&swhash->hlist_mutex);
Paul Mackerras220b1402010-03-10 20:45:52 +11005984 }
5985}
5986
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005987static void __cpuinit perf_event_init_cpu(int cpu)
5988{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005989 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005990
5991 mutex_lock(&swhash->hlist_mutex);
5992 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005993 struct swevent_hlist *hlist;
5994
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005995 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
5996 WARN_ON(!hlist);
5997 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005998 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005999 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006000}
6001
6002#ifdef CONFIG_HOTPLUG_CPU
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006003static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006004{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006005 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006006 struct perf_event *event, *tmp;
6007
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006008 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006009
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006010 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
6011 __perf_event_remove_from_context(event);
6012 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006013 __perf_event_remove_from_context(event);
6014}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006015
6016static void perf_event_exit_cpu_context(int cpu)
6017{
6018 struct perf_event_context *ctx;
6019 struct pmu *pmu;
6020 int idx;
6021
6022 idx = srcu_read_lock(&pmus_srcu);
6023 list_for_each_entry_rcu(pmu, &pmus, entry) {
6024 ctx = &this_cpu_ptr(pmu->pmu_cpu_context)->ctx;
6025
6026 mutex_lock(&ctx->mutex);
6027 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
6028 mutex_unlock(&ctx->mutex);
6029 }
6030 srcu_read_unlock(&pmus_srcu, idx);
6031
6032}
6033
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006034static void perf_event_exit_cpu(int cpu)
6035{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006036 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006037
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006038 mutex_lock(&swhash->hlist_mutex);
6039 swevent_hlist_release(swhash);
6040 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006041
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006042 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006043}
6044#else
6045static inline void perf_event_exit_cpu(int cpu) { }
6046#endif
6047
6048static int __cpuinit
6049perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
6050{
6051 unsigned int cpu = (long)hcpu;
6052
Peter Zijlstra5e116372010-06-11 13:35:08 +02006053 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006054
6055 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02006056 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006057 perf_event_init_cpu(cpu);
6058 break;
6059
Peter Zijlstra5e116372010-06-11 13:35:08 +02006060 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006061 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006062 perf_event_exit_cpu(cpu);
6063 break;
6064
6065 default:
6066 break;
6067 }
6068
6069 return NOTIFY_OK;
6070}
6071
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006072void __init perf_event_init(void)
6073{
Paul Mackerras220b1402010-03-10 20:45:52 +11006074 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006075 init_srcu_struct(&pmus_srcu);
6076 perf_pmu_register(&perf_swevent);
6077 perf_pmu_register(&perf_cpu_clock);
6078 perf_pmu_register(&perf_task_clock);
6079 perf_tp_register();
6080 perf_cpu_notifier(perf_cpu_notify);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006081}