blob: f928878a1c17c173334b80e0cca4f38ddaefc08a [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
Matt Fleming84c79912010-10-03 21:41:13 +010066extern __weak const char *perf_pmu_name(void)
67{
68 return "pmu";
69}
70
Peter Zijlstra33696fc2010-06-14 08:49:00 +020071void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020072{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020073 int *count = this_cpu_ptr(pmu->pmu_disable_count);
74 if (!(*count)++)
75 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020076}
77
Peter Zijlstra33696fc2010-06-14 08:49:00 +020078void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020079{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020080 int *count = this_cpu_ptr(pmu->pmu_disable_count);
81 if (!--(*count))
82 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020083}
84
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020085static DEFINE_PER_CPU(struct list_head, rotation_list);
86
87/*
88 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
89 * because they're strictly cpu affine and rotate_start is called with IRQs
90 * disabled, while rotate_context is called from IRQ context.
91 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +020092static void perf_pmu_rotate_start(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 Zijlstrae9d2b062010-09-17 11:28:50 +020095 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020096
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020097 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020098
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020099 if (list_empty(&cpuctx->rotation_list))
100 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200101}
102
103static void get_ctx(struct perf_event_context *ctx)
104{
105 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
106}
107
108static void free_ctx(struct rcu_head *head)
109{
110 struct perf_event_context *ctx;
111
112 ctx = container_of(head, struct perf_event_context, rcu_head);
113 kfree(ctx);
114}
115
116static void put_ctx(struct perf_event_context *ctx)
117{
118 if (atomic_dec_and_test(&ctx->refcount)) {
119 if (ctx->parent_ctx)
120 put_ctx(ctx->parent_ctx);
121 if (ctx->task)
122 put_task_struct(ctx->task);
123 call_rcu(&ctx->rcu_head, free_ctx);
124 }
125}
126
127static void unclone_ctx(struct perf_event_context *ctx)
128{
129 if (ctx->parent_ctx) {
130 put_ctx(ctx->parent_ctx);
131 ctx->parent_ctx = NULL;
132 }
133}
134
135/*
136 * If we inherit events we want to return the parent event id
137 * to userspace.
138 */
139static u64 primary_event_id(struct perf_event *event)
140{
141 u64 id = event->id;
142
143 if (event->parent)
144 id = event->parent->id;
145
146 return id;
147}
148
149/*
150 * Get the perf_event_context for a task and lock it.
151 * This has to cope with with the fact that until it is locked,
152 * the context could get moved to another task.
153 */
154static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200155perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200156{
157 struct perf_event_context *ctx;
158
159 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200160retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200161 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200162 if (ctx) {
163 /*
164 * If this context is a clone of another, it might
165 * get swapped for another underneath us by
166 * perf_event_task_sched_out, though the
167 * rcu_read_lock() protects us from any context
168 * getting freed. Lock the context and check if it
169 * got swapped before we could get the lock, and retry
170 * if so. If we locked the right context, then it
171 * can't get swapped on us any more.
172 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100173 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200174 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100175 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200176 goto retry;
177 }
178
179 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100180 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200181 ctx = NULL;
182 }
183 }
184 rcu_read_unlock();
185 return ctx;
186}
187
188/*
189 * Get the context for a task and increment its pin_count so it
190 * can't get swapped to another task. This also increments its
191 * reference count so that the context can't get freed.
192 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200193static struct perf_event_context *
194perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200195{
196 struct perf_event_context *ctx;
197 unsigned long flags;
198
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200199 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200200 if (ctx) {
201 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100202 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200203 }
204 return ctx;
205}
206
207static void perf_unpin_context(struct perf_event_context *ctx)
208{
209 unsigned long flags;
210
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100211 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200212 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100213 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200214 put_ctx(ctx);
215}
216
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100217static inline u64 perf_clock(void)
218{
Peter Zijlstrac6763292010-05-25 10:48:51 +0200219 return local_clock();
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100220}
221
222/*
223 * Update the record of the current time in a context.
224 */
225static void update_context_time(struct perf_event_context *ctx)
226{
227 u64 now = perf_clock();
228
229 ctx->time += now - ctx->timestamp;
230 ctx->timestamp = now;
231}
232
233/*
234 * Update the total_time_enabled and total_time_running fields for a event.
235 */
236static void update_event_times(struct perf_event *event)
237{
238 struct perf_event_context *ctx = event->ctx;
239 u64 run_end;
240
241 if (event->state < PERF_EVENT_STATE_INACTIVE ||
242 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
243 return;
244
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100245 if (ctx->is_active)
246 run_end = ctx->time;
247 else
248 run_end = event->tstamp_stopped;
249
250 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100251
252 if (event->state == PERF_EVENT_STATE_INACTIVE)
253 run_end = event->tstamp_stopped;
254 else
255 run_end = ctx->time;
256
257 event->total_time_running = run_end - event->tstamp_running;
258}
259
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200260/*
261 * Update total_time_enabled and total_time_running for all events in a group.
262 */
263static void update_group_times(struct perf_event *leader)
264{
265 struct perf_event *event;
266
267 update_event_times(leader);
268 list_for_each_entry(event, &leader->sibling_list, group_entry)
269 update_event_times(event);
270}
271
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100272static struct list_head *
273ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
274{
275 if (event->attr.pinned)
276 return &ctx->pinned_groups;
277 else
278 return &ctx->flexible_groups;
279}
280
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200281/*
282 * Add a event from the lists for its context.
283 * Must be called with ctx->mutex and ctx->lock held.
284 */
285static void
286list_add_event(struct perf_event *event, struct perf_event_context *ctx)
287{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200288 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
289 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200290
291 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200292 * If we're a stand alone event or group leader, we go to the context
293 * list, group events are kept attached to the group so that
294 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200295 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200296 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100297 struct list_head *list;
298
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100299 if (is_software_event(event))
300 event->group_flags |= PERF_GROUP_SOFTWARE;
301
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100302 list = ctx_group_list(event, ctx);
303 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200304 }
305
306 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200307 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200308 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200309 ctx->nr_events++;
310 if (event->attr.inherit_stat)
311 ctx->nr_stat++;
312}
313
Peter Zijlstra8a495422010-05-27 15:47:49 +0200314static void perf_group_attach(struct perf_event *event)
315{
316 struct perf_event *group_leader = event->group_leader;
317
Peter Zijlstra74c33372010-10-15 11:40:29 +0200318 /*
319 * We can have double attach due to group movement in perf_event_open.
320 */
321 if (event->attach_state & PERF_ATTACH_GROUP)
322 return;
323
Peter Zijlstra8a495422010-05-27 15:47:49 +0200324 event->attach_state |= PERF_ATTACH_GROUP;
325
326 if (group_leader == event)
327 return;
328
329 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
330 !is_software_event(event))
331 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
332
333 list_add_tail(&event->group_entry, &group_leader->sibling_list);
334 group_leader->nr_siblings++;
335}
336
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200337/*
338 * Remove a event from the lists for its context.
339 * Must be called with ctx->mutex and ctx->lock held.
340 */
341static void
342list_del_event(struct perf_event *event, struct perf_event_context *ctx)
343{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200344 /*
345 * We can have double detach due to exit/hot-unplug + close.
346 */
347 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200348 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200349
350 event->attach_state &= ~PERF_ATTACH_CONTEXT;
351
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200352 ctx->nr_events--;
353 if (event->attr.inherit_stat)
354 ctx->nr_stat--;
355
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200356 list_del_rcu(&event->event_entry);
357
Peter Zijlstra8a495422010-05-27 15:47:49 +0200358 if (event->group_leader == event)
359 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200360
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200361 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -0800362
363 /*
364 * If event was in error state, then keep it
365 * that way, otherwise bogus counts will be
366 * returned on read(). The only way to get out
367 * of error state is by explicit re-enabling
368 * of the event
369 */
370 if (event->state > PERF_EVENT_STATE_OFF)
371 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +0200372}
373
Peter Zijlstra8a495422010-05-27 15:47:49 +0200374static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +0200375{
376 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200377 struct list_head *list = NULL;
378
379 /*
380 * We can have double detach due to exit/hot-unplug + close.
381 */
382 if (!(event->attach_state & PERF_ATTACH_GROUP))
383 return;
384
385 event->attach_state &= ~PERF_ATTACH_GROUP;
386
387 /*
388 * If this is a sibling, remove it from its group.
389 */
390 if (event->group_leader != event) {
391 list_del_init(&event->group_entry);
392 event->group_leader->nr_siblings--;
393 return;
394 }
395
396 if (!list_empty(&event->group_entry))
397 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +0100398
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200399 /*
400 * If this was a group event with sibling events then
401 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +0200402 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200403 */
404 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +0200405 if (list)
406 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200407 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100408
409 /* Inherit group flags from the previous leader */
410 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200411 }
412}
413
Stephane Eranianfa66f072010-08-26 16:40:01 +0200414static inline int
415event_filter_match(struct perf_event *event)
416{
417 return event->cpu == -1 || event->cpu == smp_processor_id();
418}
419
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200420static int
421__event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200422 struct perf_cpu_context *cpuctx,
423 struct perf_event_context *ctx)
424{
Stephane Eranianfa66f072010-08-26 16:40:01 +0200425 u64 delta;
426 /*
427 * An event which could not be activated because of
428 * filter mismatch still needs to have its timings
429 * maintained, otherwise bogus information is return
430 * via read() for time_enabled, time_running:
431 */
432 if (event->state == PERF_EVENT_STATE_INACTIVE
433 && !event_filter_match(event)) {
434 delta = ctx->time - event->tstamp_stopped;
435 event->tstamp_running += delta;
436 event->tstamp_stopped = ctx->time;
437 }
438
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200439 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200440 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200441
442 event->state = PERF_EVENT_STATE_INACTIVE;
443 if (event->pending_disable) {
444 event->pending_disable = 0;
445 event->state = PERF_EVENT_STATE_OFF;
446 }
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200447 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200448 event->oncpu = -1;
449
450 if (!is_software_event(event))
451 cpuctx->active_oncpu--;
452 ctx->nr_active--;
453 if (event->attr.exclusive || !cpuctx->active_oncpu)
454 cpuctx->exclusive = 0;
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200455 return 1;
456}
457
458static void
459event_sched_out(struct perf_event *event,
460 struct perf_cpu_context *cpuctx,
461 struct perf_event_context *ctx)
462{
463 int ret;
464
465 ret = __event_sched_out(event, cpuctx, ctx);
466 if (ret)
467 event->tstamp_stopped = ctx->time;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200468}
469
470static void
471group_sched_out(struct perf_event *group_event,
472 struct perf_cpu_context *cpuctx,
473 struct perf_event_context *ctx)
474{
475 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +0200476 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200477
478 event_sched_out(group_event, cpuctx, ctx);
479
480 /*
481 * Schedule out siblings (if any):
482 */
483 list_for_each_entry(event, &group_event->sibling_list, group_entry)
484 event_sched_out(event, cpuctx, ctx);
485
Stephane Eranianfa66f072010-08-26 16:40:01 +0200486 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200487 cpuctx->exclusive = 0;
488}
489
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200490static inline struct perf_cpu_context *
491__get_cpu_context(struct perf_event_context *ctx)
492{
493 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
494}
495
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200496/*
497 * Cross CPU call to remove a performance event
498 *
499 * We disable the event on the hardware level first. After that we
500 * remove it from the context list.
501 */
502static void __perf_event_remove_from_context(void *info)
503{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200504 struct perf_event *event = info;
505 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200506 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200507
508 /*
509 * If this is a task context, we need to check whether it is
510 * the current task context of this cpu. If not it has been
511 * scheduled out before the smp call arrived.
512 */
513 if (ctx->task && cpuctx->task_ctx != ctx)
514 return;
515
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100516 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200517
518 event_sched_out(event, cpuctx, ctx);
519
520 list_del_event(event, ctx);
521
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100522 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200523}
524
525
526/*
527 * Remove the event from a task's (or a CPU's) list of events.
528 *
529 * Must be called with ctx->mutex held.
530 *
531 * CPU events are removed with a smp call. For task events we only
532 * call when the task is on a CPU.
533 *
534 * If event->ctx is a cloned context, callers must make sure that
535 * every task struct that event->ctx->task could possibly point to
536 * remains valid. This is OK when called from perf_release since
537 * that only calls us on the top-level context, which can't be a clone.
538 * When called from perf_event_exit_task, it's OK because the
539 * context has been detached from its task.
540 */
541static void perf_event_remove_from_context(struct perf_event *event)
542{
543 struct perf_event_context *ctx = event->ctx;
544 struct task_struct *task = ctx->task;
545
546 if (!task) {
547 /*
548 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200549 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200550 */
551 smp_call_function_single(event->cpu,
552 __perf_event_remove_from_context,
553 event, 1);
554 return;
555 }
556
557retry:
558 task_oncpu_function_call(task, __perf_event_remove_from_context,
559 event);
560
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100561 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200562 /*
563 * If the context is active we need to retry the smp call.
564 */
565 if (ctx->nr_active && !list_empty(&event->group_entry)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100566 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200567 goto retry;
568 }
569
570 /*
571 * The lock prevents that this context is scheduled in so we
572 * can remove the event safely, if the call above did not
573 * succeed.
574 */
Peter Zijlstra6c2bfcb2009-11-23 11:37:24 +0100575 if (!list_empty(&event->group_entry))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200576 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100577 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200578}
579
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200580/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200581 * Cross CPU call to disable a performance event
582 */
583static void __perf_event_disable(void *info)
584{
585 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200586 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200587 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200588
589 /*
590 * If this is a per-task event, need to check whether this
591 * event's task is the current task on this cpu.
592 */
593 if (ctx->task && cpuctx->task_ctx != ctx)
594 return;
595
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100596 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200597
598 /*
599 * If the event is on, turn it off.
600 * If it is in error state, leave it in error state.
601 */
602 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
603 update_context_time(ctx);
604 update_group_times(event);
605 if (event == event->group_leader)
606 group_sched_out(event, cpuctx, ctx);
607 else
608 event_sched_out(event, cpuctx, ctx);
609 event->state = PERF_EVENT_STATE_OFF;
610 }
611
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100612 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200613}
614
615/*
616 * Disable a event.
617 *
618 * If event->ctx is a cloned context, callers must make sure that
619 * every task struct that event->ctx->task could possibly point to
620 * remains valid. This condition is satisifed when called through
621 * perf_event_for_each_child or perf_event_for_each because they
622 * hold the top-level event's child_mutex, so any descendant that
623 * goes to exit will block in sync_child_event.
624 * When called from perf_pending_event it's OK because event->ctx
625 * is the current context on this CPU and preemption is disabled,
626 * hence we can't get into perf_event_task_sched_out for this context.
627 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +0100628void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200629{
630 struct perf_event_context *ctx = event->ctx;
631 struct task_struct *task = ctx->task;
632
633 if (!task) {
634 /*
635 * Disable the event on the cpu that it's on
636 */
637 smp_call_function_single(event->cpu, __perf_event_disable,
638 event, 1);
639 return;
640 }
641
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200642retry:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200643 task_oncpu_function_call(task, __perf_event_disable, event);
644
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100645 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200646 /*
647 * If the event is still active, we need to retry the cross-call.
648 */
649 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100650 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200651 goto retry;
652 }
653
654 /*
655 * Since we have the lock this context can't be scheduled
656 * in, so we can change the state safely.
657 */
658 if (event->state == PERF_EVENT_STATE_INACTIVE) {
659 update_group_times(event);
660 event->state = PERF_EVENT_STATE_OFF;
661 }
662
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100663 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200664}
665
666static int
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200667__event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200668 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100669 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200670{
671 if (event->state <= PERF_EVENT_STATE_OFF)
672 return 0;
673
674 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +0100675 event->oncpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200676 /*
677 * The new state must be visible before we turn it on in the hardware:
678 */
679 smp_wmb();
680
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200681 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200682 event->state = PERF_EVENT_STATE_INACTIVE;
683 event->oncpu = -1;
684 return -EAGAIN;
685 }
686
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200687 if (!is_software_event(event))
688 cpuctx->active_oncpu++;
689 ctx->nr_active++;
690
691 if (event->attr.exclusive)
692 cpuctx->exclusive = 1;
693
694 return 0;
695}
696
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200697static inline int
698event_sched_in(struct perf_event *event,
699 struct perf_cpu_context *cpuctx,
700 struct perf_event_context *ctx)
701{
702 int ret = __event_sched_in(event, cpuctx, ctx);
703 if (ret)
704 return ret;
705 event->tstamp_running += ctx->time - event->tstamp_stopped;
706 return 0;
707}
708
709static void
710group_commit_event_sched_in(struct perf_event *group_event,
711 struct perf_cpu_context *cpuctx,
712 struct perf_event_context *ctx)
713{
714 struct perf_event *event;
715 u64 now = ctx->time;
716
717 group_event->tstamp_running += now - group_event->tstamp_stopped;
718 /*
719 * Schedule in siblings as one group (if any):
720 */
721 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
722 event->tstamp_running += now - event->tstamp_stopped;
723 }
724}
725
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200726static int
727group_sched_in(struct perf_event *group_event,
728 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100729 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200730{
Lin Ming6bde9b62010-04-23 13:56:00 +0800731 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200732 struct pmu *pmu = group_event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200733
734 if (group_event->state == PERF_EVENT_STATE_OFF)
735 return 0;
736
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200737 pmu->start_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200738
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200739 /*
740 * use __event_sched_in() to delay updating tstamp_running
741 * until the transaction is committed. In case of failure
742 * we will keep an unmodified tstamp_running which is a
743 * requirement to get correct timing information
744 */
745 if (__event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200746 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200747 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +0200748 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200749
750 /*
751 * Schedule in siblings as one group (if any):
752 */
753 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200754 if (__event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200755 partial_group = event;
756 goto group_error;
757 }
758 }
759
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200760 if (!pmu->commit_txn(pmu)) {
761 /* commit tstamp_running */
762 group_commit_event_sched_in(group_event, cpuctx, ctx);
Paul Mackerras6e851582010-05-08 20:58:00 +1000763 return 0;
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200764 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200765group_error:
766 /*
767 * Groups can be scheduled in as one unit only, so undo any
768 * partial group before returning:
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200769 *
770 * use __event_sched_out() to avoid updating tstamp_stopped
771 * because the event never actually ran
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200772 */
773 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
774 if (event == partial_group)
775 break;
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200776 __event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200777 }
Stephane Eranian8e5fc1a2010-10-15 16:54:01 +0200778 __event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200779
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200780 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +0200781
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200782 return -EAGAIN;
783}
784
785/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200786 * Work out whether we can put this event group on the CPU now.
787 */
788static int group_can_go_on(struct perf_event *event,
789 struct perf_cpu_context *cpuctx,
790 int can_add_hw)
791{
792 /*
793 * Groups consisting entirely of software events can always go on.
794 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100795 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200796 return 1;
797 /*
798 * If an exclusive group is already on, no other hardware
799 * events can go on.
800 */
801 if (cpuctx->exclusive)
802 return 0;
803 /*
804 * If this group is exclusive and there are already
805 * events on the CPU, it can't go on.
806 */
807 if (event->attr.exclusive && cpuctx->active_oncpu)
808 return 0;
809 /*
810 * Otherwise, try to add it if all previous groups were able
811 * to go on.
812 */
813 return can_add_hw;
814}
815
816static void add_event_to_ctx(struct perf_event *event,
817 struct perf_event_context *ctx)
818{
819 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200820 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200821 event->tstamp_enabled = ctx->time;
822 event->tstamp_running = ctx->time;
823 event->tstamp_stopped = ctx->time;
824}
825
826/*
827 * Cross CPU call to install and enable a performance event
828 *
829 * Must be called with ctx->mutex held
830 */
831static void __perf_install_in_context(void *info)
832{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200833 struct perf_event *event = info;
834 struct perf_event_context *ctx = event->ctx;
835 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200836 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200837 int err;
838
839 /*
840 * If this is a task context, we need to check whether it is
841 * the current task context of this cpu. If not it has been
842 * scheduled out before the smp call arrived.
843 * Or possibly this is the right context but it isn't
844 * on this cpu because it had no events.
845 */
846 if (ctx->task && cpuctx->task_ctx != ctx) {
847 if (cpuctx->task_ctx || ctx->task != current)
848 return;
849 cpuctx->task_ctx = ctx;
850 }
851
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100852 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200853 ctx->is_active = 1;
854 update_context_time(ctx);
855
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200856 add_event_to_ctx(event, ctx);
857
Peter Zijlstraf4c41762009-12-16 17:55:54 +0100858 if (event->cpu != -1 && event->cpu != smp_processor_id())
859 goto unlock;
860
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200861 /*
862 * Don't put the event on if it is disabled or if
863 * it is in a group and the group isn't on.
864 */
865 if (event->state != PERF_EVENT_STATE_INACTIVE ||
866 (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE))
867 goto unlock;
868
869 /*
870 * An exclusive event can't go on if there are already active
871 * hardware events, and no hardware event can go on if there
872 * is already an exclusive event on.
873 */
874 if (!group_can_go_on(event, cpuctx, 1))
875 err = -EEXIST;
876 else
Peter Zijlstra6e377382010-02-11 13:21:58 +0100877 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200878
879 if (err) {
880 /*
881 * This event couldn't go on. If it is in a group
882 * then we have to pull the whole group off.
883 * If the event group is pinned then put it in error state.
884 */
885 if (leader != event)
886 group_sched_out(leader, cpuctx, ctx);
887 if (leader->attr.pinned) {
888 update_group_times(leader);
889 leader->state = PERF_EVENT_STATE_ERROR;
890 }
891 }
892
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200893unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100894 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200895}
896
897/*
898 * Attach a performance event to a context
899 *
900 * First we add the event to the list with the hardware enable bit
901 * in event->hw_config cleared.
902 *
903 * If the event is attached to a task which is on a CPU we use a smp
904 * call to enable it in the task context. The task might have been
905 * scheduled away, but we check this in the smp call again.
906 *
907 * Must be called with ctx->mutex held.
908 */
909static void
910perf_install_in_context(struct perf_event_context *ctx,
911 struct perf_event *event,
912 int cpu)
913{
914 struct task_struct *task = ctx->task;
915
Peter Zijlstrac3f00c72010-08-18 14:37:15 +0200916 event->ctx = ctx;
917
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200918 if (!task) {
919 /*
920 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200921 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200922 */
923 smp_call_function_single(cpu, __perf_install_in_context,
924 event, 1);
925 return;
926 }
927
928retry:
929 task_oncpu_function_call(task, __perf_install_in_context,
930 event);
931
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100932 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200933 /*
934 * we need to retry the smp call.
935 */
936 if (ctx->is_active && list_empty(&event->group_entry)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100937 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200938 goto retry;
939 }
940
941 /*
942 * The lock prevents that this context is scheduled in so we
943 * can add the event safely, if it the call above did not
944 * succeed.
945 */
946 if (list_empty(&event->group_entry))
947 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100948 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200949}
950
951/*
952 * Put a event into inactive state and update time fields.
953 * Enabling the leader of a group effectively enables all
954 * the group members that aren't explicitly disabled, so we
955 * have to update their ->tstamp_enabled also.
956 * Note: this works for group members as well as group leaders
957 * since the non-leader members' sibling_lists will be empty.
958 */
959static void __perf_event_mark_enabled(struct perf_event *event,
960 struct perf_event_context *ctx)
961{
962 struct perf_event *sub;
963
964 event->state = PERF_EVENT_STATE_INACTIVE;
965 event->tstamp_enabled = ctx->time - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200966 list_for_each_entry(sub, &event->sibling_list, group_entry) {
967 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200968 sub->tstamp_enabled =
969 ctx->time - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200970 }
971 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200972}
973
974/*
975 * Cross CPU call to enable a performance event
976 */
977static void __perf_event_enable(void *info)
978{
979 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200980 struct perf_event_context *ctx = event->ctx;
981 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200982 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200983 int err;
984
985 /*
986 * If this is a per-task event, need to check whether this
987 * event's task is the current task on this cpu.
988 */
989 if (ctx->task && cpuctx->task_ctx != ctx) {
990 if (cpuctx->task_ctx || ctx->task != current)
991 return;
992 cpuctx->task_ctx = ctx;
993 }
994
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100995 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200996 ctx->is_active = 1;
997 update_context_time(ctx);
998
999 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1000 goto unlock;
1001 __perf_event_mark_enabled(event, ctx);
1002
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001003 if (event->cpu != -1 && event->cpu != smp_processor_id())
1004 goto unlock;
1005
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001006 /*
1007 * If the event is in a group and isn't the group leader,
1008 * then don't put it on unless the group is on.
1009 */
1010 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1011 goto unlock;
1012
1013 if (!group_can_go_on(event, cpuctx, 1)) {
1014 err = -EEXIST;
1015 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001016 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001017 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001018 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001019 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001020 }
1021
1022 if (err) {
1023 /*
1024 * If this event can't go on and it's part of a
1025 * group, then the whole group has to come off.
1026 */
1027 if (leader != event)
1028 group_sched_out(leader, cpuctx, ctx);
1029 if (leader->attr.pinned) {
1030 update_group_times(leader);
1031 leader->state = PERF_EVENT_STATE_ERROR;
1032 }
1033 }
1034
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001035unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001036 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001037}
1038
1039/*
1040 * Enable a event.
1041 *
1042 * If event->ctx is a cloned context, callers must make sure that
1043 * every task struct that event->ctx->task could possibly point to
1044 * remains valid. This condition is satisfied when called through
1045 * perf_event_for_each_child or perf_event_for_each as described
1046 * for perf_event_disable.
1047 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001048void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001049{
1050 struct perf_event_context *ctx = event->ctx;
1051 struct task_struct *task = ctx->task;
1052
1053 if (!task) {
1054 /*
1055 * Enable the event on the cpu that it's on
1056 */
1057 smp_call_function_single(event->cpu, __perf_event_enable,
1058 event, 1);
1059 return;
1060 }
1061
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001062 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001063 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1064 goto out;
1065
1066 /*
1067 * If the event is in error state, clear that first.
1068 * That way, if we see the event in error state below, we
1069 * know that it has gone back into error state, as distinct
1070 * from the task having been scheduled away before the
1071 * cross-call arrived.
1072 */
1073 if (event->state == PERF_EVENT_STATE_ERROR)
1074 event->state = PERF_EVENT_STATE_OFF;
1075
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001076retry:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001077 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001078 task_oncpu_function_call(task, __perf_event_enable, event);
1079
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001080 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001081
1082 /*
1083 * If the context is active and the event is still off,
1084 * we need to retry the cross-call.
1085 */
1086 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF)
1087 goto retry;
1088
1089 /*
1090 * Since we have the lock this context can't be scheduled
1091 * in, so we can change the state safely.
1092 */
1093 if (event->state == PERF_EVENT_STATE_OFF)
1094 __perf_event_mark_enabled(event, ctx);
1095
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001096out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001097 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001098}
1099
1100static int perf_event_refresh(struct perf_event *event, int refresh)
1101{
1102 /*
1103 * not supported on inherited events
1104 */
1105 if (event->attr.inherit)
1106 return -EINVAL;
1107
1108 atomic_add(refresh, &event->event_limit);
1109 perf_event_enable(event);
1110
1111 return 0;
1112}
1113
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001114enum event_type_t {
1115 EVENT_FLEXIBLE = 0x1,
1116 EVENT_PINNED = 0x2,
1117 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
1118};
1119
1120static void ctx_sched_out(struct perf_event_context *ctx,
1121 struct perf_cpu_context *cpuctx,
1122 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001123{
1124 struct perf_event *event;
1125
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001126 raw_spin_lock(&ctx->lock);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001127 perf_pmu_disable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001128 ctx->is_active = 0;
1129 if (likely(!ctx->nr_events))
1130 goto out;
1131 update_context_time(ctx);
1132
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001133 if (!ctx->nr_active)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001134 goto out;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001135
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001136 if (event_type & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001137 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1138 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001139 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001140
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001141 if (event_type & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001142 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001143 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001144 }
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001145out:
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001146 perf_pmu_enable(ctx->pmu);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001147 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001148}
1149
1150/*
1151 * Test whether two contexts are equivalent, i.e. whether they
1152 * have both been cloned from the same version of the same context
1153 * and they both have the same number of enabled events.
1154 * If the number of enabled events is the same, then the set
1155 * of enabled events should be the same, because these are both
1156 * inherited contexts, therefore we can't access individual events
1157 * in them directly with an fd; we can only enable/disable all
1158 * events via prctl, or enable/disable all events in a family
1159 * via ioctl, which will have the same effect on both contexts.
1160 */
1161static int context_equiv(struct perf_event_context *ctx1,
1162 struct perf_event_context *ctx2)
1163{
1164 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1165 && ctx1->parent_gen == ctx2->parent_gen
1166 && !ctx1->pin_count && !ctx2->pin_count;
1167}
1168
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001169static void __perf_event_sync_stat(struct perf_event *event,
1170 struct perf_event *next_event)
1171{
1172 u64 value;
1173
1174 if (!event->attr.inherit_stat)
1175 return;
1176
1177 /*
1178 * Update the event value, we cannot use perf_event_read()
1179 * because we're in the middle of a context switch and have IRQs
1180 * disabled, which upsets smp_call_function_single(), however
1181 * we know the event must be on the current CPU, therefore we
1182 * don't need to use it.
1183 */
1184 switch (event->state) {
1185 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001186 event->pmu->read(event);
1187 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001188
1189 case PERF_EVENT_STATE_INACTIVE:
1190 update_event_times(event);
1191 break;
1192
1193 default:
1194 break;
1195 }
1196
1197 /*
1198 * In order to keep per-task stats reliable we need to flip the event
1199 * values when we flip the contexts.
1200 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001201 value = local64_read(&next_event->count);
1202 value = local64_xchg(&event->count, value);
1203 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001204
1205 swap(event->total_time_enabled, next_event->total_time_enabled);
1206 swap(event->total_time_running, next_event->total_time_running);
1207
1208 /*
1209 * Since we swizzled the values, update the user visible data too.
1210 */
1211 perf_event_update_userpage(event);
1212 perf_event_update_userpage(next_event);
1213}
1214
1215#define list_next_entry(pos, member) \
1216 list_entry(pos->member.next, typeof(*pos), member)
1217
1218static void perf_event_sync_stat(struct perf_event_context *ctx,
1219 struct perf_event_context *next_ctx)
1220{
1221 struct perf_event *event, *next_event;
1222
1223 if (!ctx->nr_stat)
1224 return;
1225
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001226 update_context_time(ctx);
1227
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001228 event = list_first_entry(&ctx->event_list,
1229 struct perf_event, event_entry);
1230
1231 next_event = list_first_entry(&next_ctx->event_list,
1232 struct perf_event, event_entry);
1233
1234 while (&event->event_entry != &ctx->event_list &&
1235 &next_event->event_entry != &next_ctx->event_list) {
1236
1237 __perf_event_sync_stat(event, next_event);
1238
1239 event = list_next_entry(event, event_entry);
1240 next_event = list_next_entry(next_event, event_entry);
1241 }
1242}
1243
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001244void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1245 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001246{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001247 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001248 struct perf_event_context *next_ctx;
1249 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001250 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001251 int do_switch = 1;
1252
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001253 if (likely(!ctx))
1254 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001255
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001256 cpuctx = __get_cpu_context(ctx);
1257 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001258 return;
1259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001260 rcu_read_lock();
1261 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001262 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001263 if (parent && next_ctx &&
1264 rcu_dereference(next_ctx->parent_ctx) == parent) {
1265 /*
1266 * Looks like the two contexts are clones, so we might be
1267 * able to optimize the context switch. We lock both
1268 * contexts and check that they are clones under the
1269 * lock (including re-checking that neither has been
1270 * uncloned in the meantime). It doesn't matter which
1271 * order we take the locks because no other cpu could
1272 * be trying to lock both of these tasks.
1273 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001274 raw_spin_lock(&ctx->lock);
1275 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001276 if (context_equiv(ctx, next_ctx)) {
1277 /*
1278 * XXX do we need a memory barrier of sorts
1279 * wrt to rcu_dereference() of perf_event_ctxp
1280 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001281 task->perf_event_ctxp[ctxn] = next_ctx;
1282 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001283 ctx->task = next;
1284 next_ctx->task = task;
1285 do_switch = 0;
1286
1287 perf_event_sync_stat(ctx, next_ctx);
1288 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001289 raw_spin_unlock(&next_ctx->lock);
1290 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001291 }
1292 rcu_read_unlock();
1293
1294 if (do_switch) {
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001295 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296 cpuctx->task_ctx = NULL;
1297 }
1298}
1299
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001300#define for_each_task_context_nr(ctxn) \
1301 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
1302
1303/*
1304 * Called from scheduler to remove the events of the current task,
1305 * with interrupts disabled.
1306 *
1307 * We stop each event and update the event value in event->count.
1308 *
1309 * This does not protect us against NMI, but disable()
1310 * sets the disabled bit in the control field of event _before_
1311 * accessing the event control register. If a NMI hits, then it will
1312 * not restart the event.
1313 */
1314void perf_event_task_sched_out(struct task_struct *task,
1315 struct task_struct *next)
1316{
1317 int ctxn;
1318
1319 perf_sw_event(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 1, NULL, 0);
1320
1321 for_each_task_context_nr(ctxn)
1322 perf_event_context_sched_out(task, ctxn, next);
1323}
1324
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001325static void task_ctx_sched_out(struct perf_event_context *ctx,
1326 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001327{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001328 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329
1330 if (!cpuctx->task_ctx)
1331 return;
1332
1333 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1334 return;
1335
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001336 ctx_sched_out(ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001337 cpuctx->task_ctx = NULL;
1338}
1339
1340/*
1341 * Called with IRQs disabled
1342 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001343static void __perf_event_task_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001344{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001345 task_ctx_sched_out(ctx, EVENT_ALL);
1346}
1347
1348/*
1349 * Called with IRQs disabled
1350 */
1351static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
1352 enum event_type_t event_type)
1353{
1354 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001355}
1356
1357static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001358ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001359 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360{
1361 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001362
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001363 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1364 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001365 continue;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001366 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001367 continue;
1368
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001369 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01001370 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001371
1372 /*
1373 * If this pinned group hasn't been scheduled,
1374 * put it in error state.
1375 */
1376 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1377 update_group_times(event);
1378 event->state = PERF_EVENT_STATE_ERROR;
1379 }
1380 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001381}
1382
1383static void
1384ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001385 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001386{
1387 struct perf_event *event;
1388 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001389
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001390 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1391 /* Ignore events in OFF or ERROR state */
1392 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001393 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001394 /*
1395 * Listen to the 'cpu' scheduling filter constraint
1396 * of events:
1397 */
Peter Zijlstra6e377382010-02-11 13:21:58 +01001398 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001399 continue;
1400
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001401 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01001402 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001403 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001404 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001406}
1407
1408static void
1409ctx_sched_in(struct perf_event_context *ctx,
1410 struct perf_cpu_context *cpuctx,
1411 enum event_type_t event_type)
1412{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001413 raw_spin_lock(&ctx->lock);
1414 ctx->is_active = 1;
1415 if (likely(!ctx->nr_events))
1416 goto out;
1417
1418 ctx->timestamp = perf_clock();
1419
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001420 /*
1421 * First go through the list and put on any pinned groups
1422 * in order to give them the best chance of going on.
1423 */
1424 if (event_type & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001425 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001426
1427 /* Then walk through the lower prio flexible groups */
1428 if (event_type & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001429 ctx_flexible_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001430
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001431out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001432 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001433}
1434
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001435static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
1436 enum event_type_t event_type)
1437{
1438 struct perf_event_context *ctx = &cpuctx->ctx;
1439
1440 ctx_sched_in(ctx, cpuctx, event_type);
1441}
1442
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001443static void task_ctx_sched_in(struct perf_event_context *ctx,
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001444 enum event_type_t event_type)
1445{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001446 struct perf_cpu_context *cpuctx;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001447
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001448 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001449 if (cpuctx->task_ctx == ctx)
1450 return;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001451
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001452 ctx_sched_in(ctx, cpuctx, event_type);
1453 cpuctx->task_ctx = ctx;
1454}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001455
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001456void perf_event_context_sched_in(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001458 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001459
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001460 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001461 if (cpuctx->task_ctx == ctx)
1462 return;
1463
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001464 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001465 /*
1466 * We want to keep the following priority order:
1467 * cpu pinned (that don't need to move), task pinned,
1468 * cpu flexible, task flexible.
1469 */
1470 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
1471
1472 ctx_sched_in(ctx, cpuctx, EVENT_PINNED);
1473 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
1474 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE);
1475
1476 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08001477
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001478 /*
1479 * Since these rotations are per-cpu, we need to ensure the
1480 * cpu-context we got scheduled on is actually rotating.
1481 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001482 perf_pmu_rotate_start(ctx->pmu);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001483 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001484}
1485
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001486/*
1487 * Called from scheduler to add the events of the current task
1488 * with interrupts disabled.
1489 *
1490 * We restore the event value and then enable it.
1491 *
1492 * This does not protect us against NMI, but enable()
1493 * sets the enabled bit in the control field of event _before_
1494 * accessing the event control register. If a NMI hits, then it will
1495 * keep the event running.
1496 */
1497void perf_event_task_sched_in(struct task_struct *task)
1498{
1499 struct perf_event_context *ctx;
1500 int ctxn;
1501
1502 for_each_task_context_nr(ctxn) {
1503 ctx = task->perf_event_ctxp[ctxn];
1504 if (likely(!ctx))
1505 continue;
1506
1507 perf_event_context_sched_in(ctx);
1508 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509}
1510
1511#define MAX_INTERRUPTS (~0ULL)
1512
1513static void perf_log_throttle(struct perf_event *event, int enable);
1514
Peter Zijlstraabd50712010-01-26 18:50:16 +01001515static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
1516{
1517 u64 frequency = event->attr.sample_freq;
1518 u64 sec = NSEC_PER_SEC;
1519 u64 divisor, dividend;
1520
1521 int count_fls, nsec_fls, frequency_fls, sec_fls;
1522
1523 count_fls = fls64(count);
1524 nsec_fls = fls64(nsec);
1525 frequency_fls = fls64(frequency);
1526 sec_fls = 30;
1527
1528 /*
1529 * We got @count in @nsec, with a target of sample_freq HZ
1530 * the target period becomes:
1531 *
1532 * @count * 10^9
1533 * period = -------------------
1534 * @nsec * sample_freq
1535 *
1536 */
1537
1538 /*
1539 * Reduce accuracy by one bit such that @a and @b converge
1540 * to a similar magnitude.
1541 */
1542#define REDUCE_FLS(a, b) \
1543do { \
1544 if (a##_fls > b##_fls) { \
1545 a >>= 1; \
1546 a##_fls--; \
1547 } else { \
1548 b >>= 1; \
1549 b##_fls--; \
1550 } \
1551} while (0)
1552
1553 /*
1554 * Reduce accuracy until either term fits in a u64, then proceed with
1555 * the other, so that finally we can do a u64/u64 division.
1556 */
1557 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
1558 REDUCE_FLS(nsec, frequency);
1559 REDUCE_FLS(sec, count);
1560 }
1561
1562 if (count_fls + sec_fls > 64) {
1563 divisor = nsec * frequency;
1564
1565 while (count_fls + sec_fls > 64) {
1566 REDUCE_FLS(count, sec);
1567 divisor >>= 1;
1568 }
1569
1570 dividend = count * sec;
1571 } else {
1572 dividend = count * sec;
1573
1574 while (nsec_fls + frequency_fls > 64) {
1575 REDUCE_FLS(nsec, frequency);
1576 dividend >>= 1;
1577 }
1578
1579 divisor = nsec * frequency;
1580 }
1581
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02001582 if (!divisor)
1583 return dividend;
1584
Peter Zijlstraabd50712010-01-26 18:50:16 +01001585 return div64_u64(dividend, divisor);
1586}
1587
1588static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001589{
1590 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02001591 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001592 s64 delta;
1593
Peter Zijlstraabd50712010-01-26 18:50:16 +01001594 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001595
1596 delta = (s64)(period - hwc->sample_period);
1597 delta = (delta + 7) / 8; /* low pass filter */
1598
1599 sample_period = hwc->sample_period + delta;
1600
1601 if (!sample_period)
1602 sample_period = 1;
1603
1604 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001605
Peter Zijlstrae7850592010-05-21 14:43:08 +02001606 if (local64_read(&hwc->period_left) > 8*sample_period) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001607 event->pmu->stop(event, PERF_EF_UPDATE);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001608 local64_set(&hwc->period_left, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001609 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001610 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001611}
1612
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001613static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001614{
1615 struct perf_event *event;
1616 struct hw_perf_event *hwc;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001617 u64 interrupts, now;
1618 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001619
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001620 raw_spin_lock(&ctx->lock);
Paul Mackerras03541f82009-10-14 16:58:03 +11001621 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001622 if (event->state != PERF_EVENT_STATE_ACTIVE)
1623 continue;
1624
Peter Zijlstra5d27c232009-12-17 13:16:32 +01001625 if (event->cpu != -1 && event->cpu != smp_processor_id())
1626 continue;
1627
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001628 hwc = &event->hw;
1629
1630 interrupts = hwc->interrupts;
1631 hwc->interrupts = 0;
1632
1633 /*
1634 * unthrottle events on the tick
1635 */
1636 if (interrupts == MAX_INTERRUPTS) {
1637 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001638 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001639 }
1640
1641 if (!event->attr.freq || !event->attr.sample_freq)
1642 continue;
1643
Peter Zijlstraabd50712010-01-26 18:50:16 +01001644 event->pmu->read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001645 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001646 delta = now - hwc->freq_count_stamp;
1647 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001648
Peter Zijlstraabd50712010-01-26 18:50:16 +01001649 if (delta > 0)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001650 perf_adjust_period(event, period, delta);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001651 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001652 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001653}
1654
1655/*
1656 * Round-robin a context's events:
1657 */
1658static void rotate_ctx(struct perf_event_context *ctx)
1659{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001660 raw_spin_lock(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001661
Frederic Weisbeckere2864172010-01-09 21:05:28 +01001662 /* Rotate the first entry last of non-pinned groups */
Frederic Weisbeckere2864172010-01-09 21:05:28 +01001663 list_rotate_left(&ctx->flexible_groups);
1664
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001665 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001666}
1667
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001668/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001669 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
1670 * because they're strictly cpu affine and rotate_start is called with IRQs
1671 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001672 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001673static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001674{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001675 u64 interval = (u64)cpuctx->jiffies_interval * TICK_NSEC;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001676 struct perf_event_context *ctx = NULL;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001677 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001678
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001679 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001680 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001681 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
1682 rotate = 1;
1683 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001684
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001685 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001686 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001687 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001688 if (ctx->nr_events != ctx->nr_active)
1689 rotate = 1;
1690 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001691
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001692 perf_pmu_disable(cpuctx->ctx.pmu);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001693 perf_ctx_adjust_freq(&cpuctx->ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001694 if (ctx)
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001695 perf_ctx_adjust_freq(ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001696
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001697 if (!rotate)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001698 goto done;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001699
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001700 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001701 if (ctx)
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001702 task_ctx_sched_out(ctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001703
1704 rotate_ctx(&cpuctx->ctx);
1705 if (ctx)
1706 rotate_ctx(ctx);
1707
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001708 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001709 if (ctx)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001710 task_ctx_sched_in(ctx, EVENT_FLEXIBLE);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001711
1712done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001713 if (remove)
1714 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001715
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001716 perf_pmu_enable(cpuctx->ctx.pmu);
1717}
1718
1719void perf_event_task_tick(void)
1720{
1721 struct list_head *head = &__get_cpu_var(rotation_list);
1722 struct perf_cpu_context *cpuctx, *tmp;
1723
1724 WARN_ON(!irqs_disabled());
1725
1726 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
1727 if (cpuctx->jiffies_interval == 1 ||
1728 !(jiffies % cpuctx->jiffies_interval))
1729 perf_rotate_context(cpuctx);
1730 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001731}
1732
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001733static int event_enable_on_exec(struct perf_event *event,
1734 struct perf_event_context *ctx)
1735{
1736 if (!event->attr.enable_on_exec)
1737 return 0;
1738
1739 event->attr.enable_on_exec = 0;
1740 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1741 return 0;
1742
1743 __perf_event_mark_enabled(event, ctx);
1744
1745 return 1;
1746}
1747
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001748/*
1749 * Enable all of a task's events that have been marked enable-on-exec.
1750 * This expects task == current.
1751 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001752static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001753{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754 struct perf_event *event;
1755 unsigned long flags;
1756 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001757 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001758
1759 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001760 if (!ctx || !ctx->nr_events)
1761 goto out;
1762
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001763 task_ctx_sched_out(ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001764
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001765 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001766
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001767 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1768 ret = event_enable_on_exec(event, ctx);
1769 if (ret)
1770 enabled = 1;
1771 }
1772
1773 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1774 ret = event_enable_on_exec(event, ctx);
1775 if (ret)
1776 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001777 }
1778
1779 /*
1780 * Unclone this context if we enabled any event.
1781 */
1782 if (enabled)
1783 unclone_ctx(ctx);
1784
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001785 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001786
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001787 perf_event_context_sched_in(ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001788out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001789 local_irq_restore(flags);
1790}
1791
1792/*
1793 * Cross CPU call to read the hardware event
1794 */
1795static void __perf_event_read(void *info)
1796{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001797 struct perf_event *event = info;
1798 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001799 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800
1801 /*
1802 * If this is a task context, we need to check whether it is
1803 * the current task context of this cpu. If not it has been
1804 * scheduled out before the smp call arrived. In that case
1805 * event->count would have been updated to a recent sample
1806 * when the event was scheduled out.
1807 */
1808 if (ctx->task && cpuctx->task_ctx != ctx)
1809 return;
1810
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001811 raw_spin_lock(&ctx->lock);
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001812 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001813 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001814 raw_spin_unlock(&ctx->lock);
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001815
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001816 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001817}
1818
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001819static inline u64 perf_event_count(struct perf_event *event)
1820{
Peter Zijlstrae7850592010-05-21 14:43:08 +02001821 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001822}
1823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001824static u64 perf_event_read(struct perf_event *event)
1825{
1826 /*
1827 * If event is enabled and currently active on a CPU, update the
1828 * value in the event structure:
1829 */
1830 if (event->state == PERF_EVENT_STATE_ACTIVE) {
1831 smp_call_function_single(event->oncpu,
1832 __perf_event_read, event, 1);
1833 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001834 struct perf_event_context *ctx = event->ctx;
1835 unsigned long flags;
1836
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001837 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02001838 /*
1839 * may read while context is not active
1840 * (e.g., thread is blocked), in that case
1841 * we cannot update context time
1842 */
1843 if (ctx->is_active)
1844 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001845 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001846 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001847 }
1848
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001849 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001850}
1851
1852/*
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001853 * Callchain support
1854 */
1855
1856struct callchain_cpus_entries {
1857 struct rcu_head rcu_head;
1858 struct perf_callchain_entry *cpu_entries[0];
1859};
1860
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001861static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001862static atomic_t nr_callchain_events;
1863static DEFINE_MUTEX(callchain_mutex);
1864struct callchain_cpus_entries *callchain_cpus_entries;
1865
1866
1867__weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
1868 struct pt_regs *regs)
1869{
1870}
1871
1872__weak void perf_callchain_user(struct perf_callchain_entry *entry,
1873 struct pt_regs *regs)
1874{
1875}
1876
1877static void release_callchain_buffers_rcu(struct rcu_head *head)
1878{
1879 struct callchain_cpus_entries *entries;
1880 int cpu;
1881
1882 entries = container_of(head, struct callchain_cpus_entries, rcu_head);
1883
1884 for_each_possible_cpu(cpu)
1885 kfree(entries->cpu_entries[cpu]);
1886
1887 kfree(entries);
1888}
1889
1890static void release_callchain_buffers(void)
1891{
1892 struct callchain_cpus_entries *entries;
1893
1894 entries = callchain_cpus_entries;
1895 rcu_assign_pointer(callchain_cpus_entries, NULL);
1896 call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
1897}
1898
1899static int alloc_callchain_buffers(void)
1900{
1901 int cpu;
1902 int size;
1903 struct callchain_cpus_entries *entries;
1904
1905 /*
1906 * We can't use the percpu allocation API for data that can be
1907 * accessed from NMI. Use a temporary manual per cpu allocation
1908 * until that gets sorted out.
1909 */
1910 size = sizeof(*entries) + sizeof(struct perf_callchain_entry *) *
1911 num_possible_cpus();
1912
1913 entries = kzalloc(size, GFP_KERNEL);
1914 if (!entries)
1915 return -ENOMEM;
1916
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001917 size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001918
1919 for_each_possible_cpu(cpu) {
1920 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
1921 cpu_to_node(cpu));
1922 if (!entries->cpu_entries[cpu])
1923 goto fail;
1924 }
1925
1926 rcu_assign_pointer(callchain_cpus_entries, entries);
1927
1928 return 0;
1929
1930fail:
1931 for_each_possible_cpu(cpu)
1932 kfree(entries->cpu_entries[cpu]);
1933 kfree(entries);
1934
1935 return -ENOMEM;
1936}
1937
1938static int get_callchain_buffers(void)
1939{
1940 int err = 0;
1941 int count;
1942
1943 mutex_lock(&callchain_mutex);
1944
1945 count = atomic_inc_return(&nr_callchain_events);
1946 if (WARN_ON_ONCE(count < 1)) {
1947 err = -EINVAL;
1948 goto exit;
1949 }
1950
1951 if (count > 1) {
1952 /* If the allocation failed, give up */
1953 if (!callchain_cpus_entries)
1954 err = -ENOMEM;
1955 goto exit;
1956 }
1957
1958 err = alloc_callchain_buffers();
1959 if (err)
1960 release_callchain_buffers();
1961exit:
1962 mutex_unlock(&callchain_mutex);
1963
1964 return err;
1965}
1966
1967static void put_callchain_buffers(void)
1968{
1969 if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
1970 release_callchain_buffers();
1971 mutex_unlock(&callchain_mutex);
1972 }
1973}
1974
1975static int get_recursion_context(int *recursion)
1976{
1977 int rctx;
1978
1979 if (in_nmi())
1980 rctx = 3;
1981 else if (in_irq())
1982 rctx = 2;
1983 else if (in_softirq())
1984 rctx = 1;
1985 else
1986 rctx = 0;
1987
1988 if (recursion[rctx])
1989 return -1;
1990
1991 recursion[rctx]++;
1992 barrier();
1993
1994 return rctx;
1995}
1996
1997static inline void put_recursion_context(int *recursion, int rctx)
1998{
1999 barrier();
2000 recursion[rctx]--;
2001}
2002
2003static struct perf_callchain_entry *get_callchain_entry(int *rctx)
2004{
2005 int cpu;
2006 struct callchain_cpus_entries *entries;
2007
2008 *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
2009 if (*rctx == -1)
2010 return NULL;
2011
2012 entries = rcu_dereference(callchain_cpus_entries);
2013 if (!entries)
2014 return NULL;
2015
2016 cpu = smp_processor_id();
2017
2018 return &entries->cpu_entries[cpu][*rctx];
2019}
2020
2021static void
2022put_callchain_entry(int rctx)
2023{
2024 put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
2025}
2026
2027static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
2028{
2029 int rctx;
2030 struct perf_callchain_entry *entry;
2031
2032
2033 entry = get_callchain_entry(&rctx);
2034 if (rctx == -1)
2035 return NULL;
2036
2037 if (!entry)
2038 goto exit_put;
2039
2040 entry->nr = 0;
2041
2042 if (!user_mode(regs)) {
2043 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
2044 perf_callchain_kernel(entry, regs);
2045 if (current->mm)
2046 regs = task_pt_regs(current);
2047 else
2048 regs = NULL;
2049 }
2050
2051 if (regs) {
2052 perf_callchain_store(entry, PERF_CONTEXT_USER);
2053 perf_callchain_user(entry, regs);
2054 }
2055
2056exit_put:
2057 put_callchain_entry(rctx);
2058
2059 return entry;
2060}
2061
2062/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002063 * Initialize the perf_event context in a task_struct:
2064 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002065static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002066{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002067 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002069 INIT_LIST_HEAD(&ctx->pinned_groups);
2070 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002071 INIT_LIST_HEAD(&ctx->event_list);
2072 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002073}
2074
Peter Zijlstraeb184472010-09-07 15:55:13 +02002075static struct perf_event_context *
2076alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002077{
2078 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002079
2080 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2081 if (!ctx)
2082 return NULL;
2083
2084 __perf_event_init_context(ctx);
2085 if (task) {
2086 ctx->task = task;
2087 get_task_struct(task);
2088 }
2089 ctx->pmu = pmu;
2090
2091 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002092}
2093
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002094static struct task_struct *
2095find_lively_task_by_vpid(pid_t vpid)
2096{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002097 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002098 int err;
2099
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002101 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102 task = current;
2103 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002104 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002105 if (task)
2106 get_task_struct(task);
2107 rcu_read_unlock();
2108
2109 if (!task)
2110 return ERR_PTR(-ESRCH);
2111
2112 /*
2113 * Can't attach events to a dying task.
2114 */
2115 err = -ESRCH;
2116 if (task->flags & PF_EXITING)
2117 goto errout;
2118
2119 /* Reuse ptrace permission checks for now. */
2120 err = -EACCES;
2121 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2122 goto errout;
2123
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002124 return task;
2125errout:
2126 put_task_struct(task);
2127 return ERR_PTR(err);
2128
2129}
2130
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002131static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002132find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002133{
2134 struct perf_event_context *ctx;
2135 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002136 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002137 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002138
Matt Helsley38a81da2010-09-13 13:01:20 -07002139 if (!task && cpu != -1) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140 /* Must be root to operate on a CPU event: */
2141 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2142 return ERR_PTR(-EACCES);
2143
2144 if (cpu < 0 || cpu >= nr_cpumask_bits)
2145 return ERR_PTR(-EINVAL);
2146
2147 /*
2148 * We could be clever and allow to attach a event to an
2149 * offline CPU and activate it when the CPU comes up, but
2150 * that's for later.
2151 */
2152 if (!cpu_online(cpu))
2153 return ERR_PTR(-ENODEV);
2154
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002155 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002156 ctx = &cpuctx->ctx;
2157 get_ctx(ctx);
2158
2159 return ctx;
2160 }
2161
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002162 err = -EINVAL;
2163 ctxn = pmu->task_ctx_nr;
2164 if (ctxn < 0)
2165 goto errout;
2166
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002167retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002168 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002169 if (ctx) {
2170 unclone_ctx(ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002171 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002172 }
2173
2174 if (!ctx) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002175 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002176 err = -ENOMEM;
2177 if (!ctx)
2178 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002179
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002180 get_ctx(ctx);
Peter Zijlstraeb184472010-09-07 15:55:13 +02002181
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002182 if (cmpxchg(&task->perf_event_ctxp[ctxn], NULL, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002183 /*
2184 * We raced with some other task; use
2185 * the context they set.
2186 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002187 put_task_struct(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002188 kfree(ctx);
2189 goto retry;
2190 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002191 }
2192
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002193 return ctx;
2194
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002195errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002196 return ERR_PTR(err);
2197}
2198
Li Zefan6fb29152009-10-15 11:21:42 +08002199static void perf_event_free_filter(struct perf_event *event);
2200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002201static void free_event_rcu(struct rcu_head *head)
2202{
2203 struct perf_event *event;
2204
2205 event = container_of(head, struct perf_event, rcu_head);
2206 if (event->ns)
2207 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002208 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002209 kfree(event);
2210}
2211
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002212static void perf_buffer_put(struct perf_buffer *buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002213
2214static void free_event(struct perf_event *event)
2215{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002216 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002217
2218 if (!event->parent) {
2219 atomic_dec(&nr_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002220 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002221 atomic_dec(&nr_mmap_events);
2222 if (event->attr.comm)
2223 atomic_dec(&nr_comm_events);
2224 if (event->attr.task)
2225 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002226 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2227 put_callchain_buffers();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002228 }
2229
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002230 if (event->buffer) {
2231 perf_buffer_put(event->buffer);
2232 event->buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233 }
2234
2235 if (event->destroy)
2236 event->destroy(event);
2237
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002238 if (event->ctx)
2239 put_ctx(event->ctx);
2240
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002241 call_rcu(&event->rcu_head, free_event_rcu);
2242}
2243
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002244int perf_event_release_kernel(struct perf_event *event)
2245{
2246 struct perf_event_context *ctx = event->ctx;
2247
Peter Zijlstra050735b2010-05-11 11:51:53 +02002248 /*
2249 * Remove from the PMU, can't get re-enabled since we got
2250 * here because the last ref went.
2251 */
2252 perf_event_disable(event);
2253
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002254 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002255 /*
2256 * There are two ways this annotation is useful:
2257 *
2258 * 1) there is a lock recursion from perf_event_exit_task
2259 * see the comment there.
2260 *
2261 * 2) there is a lock-inversion with mmap_sem through
2262 * perf_event_read_group(), which takes faults while
2263 * holding ctx->mutex, however this is called after
2264 * the last filedesc died, so there is no possibility
2265 * to trigger the AB-BA case.
2266 */
2267 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002268 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002269 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002270 list_del_event(event, ctx);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002271 raw_spin_unlock_irq(&ctx->lock);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002272 mutex_unlock(&ctx->mutex);
2273
2274 mutex_lock(&event->owner->perf_event_mutex);
2275 list_del_init(&event->owner_entry);
2276 mutex_unlock(&event->owner->perf_event_mutex);
2277 put_task_struct(event->owner);
2278
2279 free_event(event);
2280
2281 return 0;
2282}
2283EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2284
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002285/*
2286 * Called when the last reference to the file is gone.
2287 */
2288static int perf_release(struct inode *inode, struct file *file)
2289{
2290 struct perf_event *event = file->private_data;
2291
2292 file->private_data = NULL;
2293
2294 return perf_event_release_kernel(event);
2295}
2296
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002297static int perf_event_read_size(struct perf_event *event)
2298{
2299 int entry = sizeof(u64); /* value */
2300 int size = 0;
2301 int nr = 1;
2302
2303 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2304 size += sizeof(u64);
2305
2306 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2307 size += sizeof(u64);
2308
2309 if (event->attr.read_format & PERF_FORMAT_ID)
2310 entry += sizeof(u64);
2311
2312 if (event->attr.read_format & PERF_FORMAT_GROUP) {
2313 nr += event->group_leader->nr_siblings;
2314 size += sizeof(u64);
2315 }
2316
2317 size += entry * nr;
2318
2319 return size;
2320}
2321
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002322u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002323{
2324 struct perf_event *child;
2325 u64 total = 0;
2326
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002327 *enabled = 0;
2328 *running = 0;
2329
Peter Zijlstra6f105812009-11-20 22:19:56 +01002330 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002331 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002332 *enabled += event->total_time_enabled +
2333 atomic64_read(&event->child_total_time_enabled);
2334 *running += event->total_time_running +
2335 atomic64_read(&event->child_total_time_running);
2336
2337 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002338 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002339 *enabled += child->total_time_enabled;
2340 *running += child->total_time_running;
2341 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002342 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002343
2344 return total;
2345}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002346EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002347
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002348static int perf_event_read_group(struct perf_event *event,
2349 u64 read_format, char __user *buf)
2350{
2351 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01002352 int n = 0, size = 0, ret = -EFAULT;
2353 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002354 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002355 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002356
Peter Zijlstra6f105812009-11-20 22:19:56 +01002357 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002358 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002359
2360 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002361 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2362 values[n++] = enabled;
2363 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2364 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002365 values[n++] = count;
2366 if (read_format & PERF_FORMAT_ID)
2367 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002368
2369 size = n * sizeof(u64);
2370
2371 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01002372 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002373
Peter Zijlstra6f105812009-11-20 22:19:56 +01002374 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002375
2376 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01002377 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002378
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002379 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01002380 if (read_format & PERF_FORMAT_ID)
2381 values[n++] = primary_event_id(sub);
2382
2383 size = n * sizeof(u64);
2384
Stephane Eranian184d3da2009-11-23 21:40:49 -08002385 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01002386 ret = -EFAULT;
2387 goto unlock;
2388 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01002389
2390 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002391 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002392unlock:
2393 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394
Peter Zijlstraabf48682009-11-20 22:19:49 +01002395 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002396}
2397
2398static int perf_event_read_one(struct perf_event *event,
2399 u64 read_format, char __user *buf)
2400{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002401 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002402 u64 values[4];
2403 int n = 0;
2404
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002405 values[n++] = perf_event_read_value(event, &enabled, &running);
2406 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2407 values[n++] = enabled;
2408 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2409 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410 if (read_format & PERF_FORMAT_ID)
2411 values[n++] = primary_event_id(event);
2412
2413 if (copy_to_user(buf, values, n * sizeof(u64)))
2414 return -EFAULT;
2415
2416 return n * sizeof(u64);
2417}
2418
2419/*
2420 * Read the performance event - simple non blocking version for now
2421 */
2422static ssize_t
2423perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
2424{
2425 u64 read_format = event->attr.read_format;
2426 int ret;
2427
2428 /*
2429 * Return end-of-file for a read on a event that is in
2430 * error state (i.e. because it was pinned but it couldn't be
2431 * scheduled on to the CPU at some point).
2432 */
2433 if (event->state == PERF_EVENT_STATE_ERROR)
2434 return 0;
2435
2436 if (count < perf_event_read_size(event))
2437 return -ENOSPC;
2438
2439 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002440 if (read_format & PERF_FORMAT_GROUP)
2441 ret = perf_event_read_group(event, read_format, buf);
2442 else
2443 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002444
2445 return ret;
2446}
2447
2448static ssize_t
2449perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
2450{
2451 struct perf_event *event = file->private_data;
2452
2453 return perf_read_hw(event, buf, count);
2454}
2455
2456static unsigned int perf_poll(struct file *file, poll_table *wait)
2457{
2458 struct perf_event *event = file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002459 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002460 unsigned int events = POLL_HUP;
2461
2462 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002463 buffer = rcu_dereference(event->buffer);
2464 if (buffer)
2465 events = atomic_xchg(&buffer->poll, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002466 rcu_read_unlock();
2467
2468 poll_wait(file, &event->waitq, wait);
2469
2470 return events;
2471}
2472
2473static void perf_event_reset(struct perf_event *event)
2474{
2475 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002476 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002477 perf_event_update_userpage(event);
2478}
2479
2480/*
2481 * Holding the top-level event's child_mutex means that any
2482 * descendant process that has inherited this event will block
2483 * in sync_child_event if it goes to exit, thus satisfying the
2484 * task existence requirements of perf_event_enable/disable.
2485 */
2486static void perf_event_for_each_child(struct perf_event *event,
2487 void (*func)(struct perf_event *))
2488{
2489 struct perf_event *child;
2490
2491 WARN_ON_ONCE(event->ctx->parent_ctx);
2492 mutex_lock(&event->child_mutex);
2493 func(event);
2494 list_for_each_entry(child, &event->child_list, child_list)
2495 func(child);
2496 mutex_unlock(&event->child_mutex);
2497}
2498
2499static void perf_event_for_each(struct perf_event *event,
2500 void (*func)(struct perf_event *))
2501{
2502 struct perf_event_context *ctx = event->ctx;
2503 struct perf_event *sibling;
2504
2505 WARN_ON_ONCE(ctx->parent_ctx);
2506 mutex_lock(&ctx->mutex);
2507 event = event->group_leader;
2508
2509 perf_event_for_each_child(event, func);
2510 func(event);
2511 list_for_each_entry(sibling, &event->sibling_list, group_entry)
2512 perf_event_for_each_child(event, func);
2513 mutex_unlock(&ctx->mutex);
2514}
2515
2516static int perf_event_period(struct perf_event *event, u64 __user *arg)
2517{
2518 struct perf_event_context *ctx = event->ctx;
2519 unsigned long size;
2520 int ret = 0;
2521 u64 value;
2522
2523 if (!event->attr.sample_period)
2524 return -EINVAL;
2525
2526 size = copy_from_user(&value, arg, sizeof(value));
2527 if (size != sizeof(value))
2528 return -EFAULT;
2529
2530 if (!value)
2531 return -EINVAL;
2532
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002533 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002534 if (event->attr.freq) {
2535 if (value > sysctl_perf_event_sample_rate) {
2536 ret = -EINVAL;
2537 goto unlock;
2538 }
2539
2540 event->attr.sample_freq = value;
2541 } else {
2542 event->attr.sample_period = value;
2543 event->hw.sample_period = value;
2544 }
2545unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002546 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002547
2548 return ret;
2549}
2550
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002551static const struct file_operations perf_fops;
2552
2553static struct perf_event *perf_fget_light(int fd, int *fput_needed)
2554{
2555 struct file *file;
2556
2557 file = fget_light(fd, fput_needed);
2558 if (!file)
2559 return ERR_PTR(-EBADF);
2560
2561 if (file->f_op != &perf_fops) {
2562 fput_light(file, *fput_needed);
2563 *fput_needed = 0;
2564 return ERR_PTR(-EBADF);
2565 }
2566
2567 return file->private_data;
2568}
2569
2570static int perf_event_set_output(struct perf_event *event,
2571 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08002572static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002573
2574static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2575{
2576 struct perf_event *event = file->private_data;
2577 void (*func)(struct perf_event *);
2578 u32 flags = arg;
2579
2580 switch (cmd) {
2581 case PERF_EVENT_IOC_ENABLE:
2582 func = perf_event_enable;
2583 break;
2584 case PERF_EVENT_IOC_DISABLE:
2585 func = perf_event_disable;
2586 break;
2587 case PERF_EVENT_IOC_RESET:
2588 func = perf_event_reset;
2589 break;
2590
2591 case PERF_EVENT_IOC_REFRESH:
2592 return perf_event_refresh(event, arg);
2593
2594 case PERF_EVENT_IOC_PERIOD:
2595 return perf_event_period(event, (u64 __user *)arg);
2596
2597 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002598 {
2599 struct perf_event *output_event = NULL;
2600 int fput_needed = 0;
2601 int ret;
2602
2603 if (arg != -1) {
2604 output_event = perf_fget_light(arg, &fput_needed);
2605 if (IS_ERR(output_event))
2606 return PTR_ERR(output_event);
2607 }
2608
2609 ret = perf_event_set_output(event, output_event);
2610 if (output_event)
2611 fput_light(output_event->filp, fput_needed);
2612
2613 return ret;
2614 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002615
Li Zefan6fb29152009-10-15 11:21:42 +08002616 case PERF_EVENT_IOC_SET_FILTER:
2617 return perf_event_set_filter(event, (void __user *)arg);
2618
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002619 default:
2620 return -ENOTTY;
2621 }
2622
2623 if (flags & PERF_IOC_FLAG_GROUP)
2624 perf_event_for_each(event, func);
2625 else
2626 perf_event_for_each_child(event, func);
2627
2628 return 0;
2629}
2630
2631int perf_event_task_enable(void)
2632{
2633 struct perf_event *event;
2634
2635 mutex_lock(&current->perf_event_mutex);
2636 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2637 perf_event_for_each_child(event, perf_event_enable);
2638 mutex_unlock(&current->perf_event_mutex);
2639
2640 return 0;
2641}
2642
2643int perf_event_task_disable(void)
2644{
2645 struct perf_event *event;
2646
2647 mutex_lock(&current->perf_event_mutex);
2648 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2649 perf_event_for_each_child(event, perf_event_disable);
2650 mutex_unlock(&current->perf_event_mutex);
2651
2652 return 0;
2653}
2654
2655#ifndef PERF_EVENT_INDEX_OFFSET
2656# define PERF_EVENT_INDEX_OFFSET 0
2657#endif
2658
2659static int perf_event_index(struct perf_event *event)
2660{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002661 if (event->hw.state & PERF_HES_STOPPED)
2662 return 0;
2663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002664 if (event->state != PERF_EVENT_STATE_ACTIVE)
2665 return 0;
2666
2667 return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
2668}
2669
2670/*
2671 * Callers need to ensure there can be no nesting of this function, otherwise
2672 * the seqlock logic goes bad. We can not serialize this because the arch
2673 * code calls this from NMI context.
2674 */
2675void perf_event_update_userpage(struct perf_event *event)
2676{
2677 struct perf_event_mmap_page *userpg;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002678 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002679
2680 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002681 buffer = rcu_dereference(event->buffer);
2682 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002683 goto unlock;
2684
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002685 userpg = buffer->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002686
2687 /*
2688 * Disable preemption so as to not let the corresponding user-space
2689 * spin too long if we get preempted.
2690 */
2691 preempt_disable();
2692 ++userpg->lock;
2693 barrier();
2694 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002695 userpg->offset = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002696 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstrae7850592010-05-21 14:43:08 +02002697 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002698
2699 userpg->time_enabled = event->total_time_enabled +
2700 atomic64_read(&event->child_total_time_enabled);
2701
2702 userpg->time_running = event->total_time_running +
2703 atomic64_read(&event->child_total_time_running);
2704
2705 barrier();
2706 ++userpg->lock;
2707 preempt_enable();
2708unlock:
2709 rcu_read_unlock();
2710}
2711
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002712static unsigned long perf_data_size(struct perf_buffer *buffer);
2713
2714static void
2715perf_buffer_init(struct perf_buffer *buffer, long watermark, int flags)
2716{
2717 long max_size = perf_data_size(buffer);
2718
2719 if (watermark)
2720 buffer->watermark = min(max_size, watermark);
2721
2722 if (!buffer->watermark)
2723 buffer->watermark = max_size / 2;
2724
2725 if (flags & PERF_BUFFER_WRITABLE)
2726 buffer->writable = 1;
2727
2728 atomic_set(&buffer->refcount, 1);
2729}
2730
Peter Zijlstra906010b2009-09-21 16:08:49 +02002731#ifndef CONFIG_PERF_USE_VMALLOC
2732
2733/*
2734 * Back perf_mmap() with regular GFP_KERNEL-0 pages.
2735 */
2736
2737static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002738perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002739{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002740 if (pgoff > buffer->nr_pages)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002741 return NULL;
2742
2743 if (pgoff == 0)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002744 return virt_to_page(buffer->user_page);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002745
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002746 return virt_to_page(buffer->data_pages[pgoff - 1]);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002747}
2748
Peter Zijlstraa19d35c2010-05-17 18:48:00 +02002749static void *perf_mmap_alloc_page(int cpu)
2750{
2751 struct page *page;
2752 int node;
2753
2754 node = (cpu == -1) ? cpu : cpu_to_node(cpu);
2755 page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2756 if (!page)
2757 return NULL;
2758
2759 return page_address(page);
2760}
2761
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002762static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002763perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002764{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002765 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002766 unsigned long size;
2767 int i;
2768
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002769 size = sizeof(struct perf_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002770 size += nr_pages * sizeof(void *);
2771
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002772 buffer = kzalloc(size, GFP_KERNEL);
2773 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002774 goto fail;
2775
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002776 buffer->user_page = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002777 if (!buffer->user_page)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002778 goto fail_user_page;
2779
2780 for (i = 0; i < nr_pages; i++) {
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002781 buffer->data_pages[i] = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002782 if (!buffer->data_pages[i])
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002783 goto fail_data_pages;
2784 }
2785
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002786 buffer->nr_pages = nr_pages;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002787
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002788 perf_buffer_init(buffer, watermark, flags);
2789
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002790 return buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002791
2792fail_data_pages:
2793 for (i--; i >= 0; i--)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002794 free_page((unsigned long)buffer->data_pages[i]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002795
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002796 free_page((unsigned long)buffer->user_page);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002797
2798fail_user_page:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002799 kfree(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800
2801fail:
Peter Zijlstra906010b2009-09-21 16:08:49 +02002802 return NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803}
2804
2805static void perf_mmap_free_page(unsigned long addr)
2806{
2807 struct page *page = virt_to_page((void *)addr);
2808
2809 page->mapping = NULL;
2810 __free_page(page);
2811}
2812
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002813static void perf_buffer_free(struct perf_buffer *buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002815 int i;
2816
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002817 perf_mmap_free_page((unsigned long)buffer->user_page);
2818 for (i = 0; i < buffer->nr_pages; i++)
2819 perf_mmap_free_page((unsigned long)buffer->data_pages[i]);
2820 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002821}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002822
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002823static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002824{
2825 return 0;
2826}
2827
Peter Zijlstra906010b2009-09-21 16:08:49 +02002828#else
2829
2830/*
2831 * Back perf_mmap() with vmalloc memory.
2832 *
2833 * Required for architectures that have d-cache aliasing issues.
2834 */
2835
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002836static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002837{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002838 return buffer->page_order;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002839}
2840
Peter Zijlstra906010b2009-09-21 16:08:49 +02002841static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002842perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002843{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002844 if (pgoff > (1UL << page_order(buffer)))
Peter Zijlstra906010b2009-09-21 16:08:49 +02002845 return NULL;
2846
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002847 return vmalloc_to_page((void *)buffer->user_page + pgoff * PAGE_SIZE);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002848}
2849
2850static void perf_mmap_unmark_page(void *addr)
2851{
2852 struct page *page = vmalloc_to_page(addr);
2853
2854 page->mapping = NULL;
2855}
2856
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002857static void perf_buffer_free_work(struct work_struct *work)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002858{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002859 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002860 void *base;
2861 int i, nr;
2862
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002863 buffer = container_of(work, struct perf_buffer, work);
2864 nr = 1 << page_order(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002865
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002866 base = buffer->user_page;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002867 for (i = 0; i < nr + 1; i++)
2868 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
2869
2870 vfree(base);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002871 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002872}
2873
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002874static void perf_buffer_free(struct perf_buffer *buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002875{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002876 schedule_work(&buffer->work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002877}
2878
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002879static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002880perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002881{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002882 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002883 unsigned long size;
2884 void *all_buf;
2885
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002886 size = sizeof(struct perf_buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002887 size += sizeof(void *);
2888
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002889 buffer = kzalloc(size, GFP_KERNEL);
2890 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002891 goto fail;
2892
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002893 INIT_WORK(&buffer->work, perf_buffer_free_work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002894
2895 all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
2896 if (!all_buf)
2897 goto fail_all_buf;
2898
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002899 buffer->user_page = all_buf;
2900 buffer->data_pages[0] = all_buf + PAGE_SIZE;
2901 buffer->page_order = ilog2(nr_pages);
2902 buffer->nr_pages = 1;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002903
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002904 perf_buffer_init(buffer, watermark, flags);
2905
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002906 return buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002907
2908fail_all_buf:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002909 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002910
2911fail:
2912 return NULL;
2913}
2914
2915#endif
2916
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002917static unsigned long perf_data_size(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002918{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002919 return buffer->nr_pages << (PAGE_SHIFT + page_order(buffer));
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002920}
2921
Peter Zijlstra906010b2009-09-21 16:08:49 +02002922static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2923{
2924 struct perf_event *event = vma->vm_file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002925 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002926 int ret = VM_FAULT_SIGBUS;
2927
2928 if (vmf->flags & FAULT_FLAG_MKWRITE) {
2929 if (vmf->pgoff == 0)
2930 ret = 0;
2931 return ret;
2932 }
2933
2934 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002935 buffer = rcu_dereference(event->buffer);
2936 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002937 goto unlock;
2938
2939 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
2940 goto unlock;
2941
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002942 vmf->page = perf_mmap_to_page(buffer, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002943 if (!vmf->page)
2944 goto unlock;
2945
2946 get_page(vmf->page);
2947 vmf->page->mapping = vma->vm_file->f_mapping;
2948 vmf->page->index = vmf->pgoff;
2949
2950 ret = 0;
2951unlock:
2952 rcu_read_unlock();
2953
2954 return ret;
2955}
2956
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002957static void perf_buffer_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002958{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002959 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002960
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002961 buffer = container_of(rcu_head, struct perf_buffer, rcu_head);
2962 perf_buffer_free(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002963}
2964
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002965static struct perf_buffer *perf_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002966{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002967 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002968
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002969 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002970 buffer = rcu_dereference(event->buffer);
2971 if (buffer) {
2972 if (!atomic_inc_not_zero(&buffer->refcount))
2973 buffer = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002974 }
2975 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002976
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002977 return buffer;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002978}
2979
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002980static void perf_buffer_put(struct perf_buffer *buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002981{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002982 if (!atomic_dec_and_test(&buffer->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002983 return;
2984
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002985 call_rcu(&buffer->rcu_head, perf_buffer_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002986}
2987
2988static void perf_mmap_open(struct vm_area_struct *vma)
2989{
2990 struct perf_event *event = vma->vm_file->private_data;
2991
2992 atomic_inc(&event->mmap_count);
2993}
2994
2995static void perf_mmap_close(struct vm_area_struct *vma)
2996{
2997 struct perf_event *event = vma->vm_file->private_data;
2998
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002999 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003000 unsigned long size = perf_data_size(event->buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003001 struct user_struct *user = event->mmap_user;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003002 struct perf_buffer *buffer = event->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003003
Peter Zijlstra906010b2009-09-21 16:08:49 +02003004 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003005 vma->vm_mm->locked_vm -= event->mmap_locked;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003006 rcu_assign_pointer(event->buffer, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003007 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003008
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003009 perf_buffer_put(buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003010 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003011 }
3012}
3013
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003014static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003015 .open = perf_mmap_open,
3016 .close = perf_mmap_close,
3017 .fault = perf_mmap_fault,
3018 .page_mkwrite = perf_mmap_fault,
3019};
3020
3021static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3022{
3023 struct perf_event *event = file->private_data;
3024 unsigned long user_locked, user_lock_limit;
3025 struct user_struct *user = current_user();
3026 unsigned long locked, lock_limit;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003027 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003028 unsigned long vma_size;
3029 unsigned long nr_pages;
3030 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003031 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003032
Peter Zijlstrac7920612010-05-18 10:33:24 +02003033 /*
3034 * Don't allow mmap() of inherited per-task counters. This would
3035 * create a performance issue due to all children writing to the
3036 * same buffer.
3037 */
3038 if (event->cpu == -1 && event->attr.inherit)
3039 return -EINVAL;
3040
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003041 if (!(vma->vm_flags & VM_SHARED))
3042 return -EINVAL;
3043
3044 vma_size = vma->vm_end - vma->vm_start;
3045 nr_pages = (vma_size / PAGE_SIZE) - 1;
3046
3047 /*
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003048 * If we have buffer pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003049 * can do bitmasks instead of modulo.
3050 */
3051 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3052 return -EINVAL;
3053
3054 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3055 return -EINVAL;
3056
3057 if (vma->vm_pgoff != 0)
3058 return -EINVAL;
3059
3060 WARN_ON_ONCE(event->ctx->parent_ctx);
3061 mutex_lock(&event->mmap_mutex);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003062 if (event->buffer) {
3063 if (event->buffer->nr_pages == nr_pages)
3064 atomic_inc(&event->buffer->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003065 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003066 ret = -EINVAL;
3067 goto unlock;
3068 }
3069
3070 user_extra = nr_pages + 1;
3071 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3072
3073 /*
3074 * Increase the limit linearly with more CPUs:
3075 */
3076 user_lock_limit *= num_online_cpus();
3077
3078 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3079
3080 extra = 0;
3081 if (user_locked > user_lock_limit)
3082 extra = user_locked - user_lock_limit;
3083
Jiri Slaby78d7d402010-03-05 13:42:54 -08003084 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003085 lock_limit >>= PAGE_SHIFT;
3086 locked = vma->vm_mm->locked_vm + extra;
3087
3088 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3089 !capable(CAP_IPC_LOCK)) {
3090 ret = -EPERM;
3091 goto unlock;
3092 }
3093
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003094 WARN_ON(event->buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003095
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003096 if (vma->vm_flags & VM_WRITE)
3097 flags |= PERF_BUFFER_WRITABLE;
3098
3099 buffer = perf_buffer_alloc(nr_pages, event->attr.wakeup_watermark,
3100 event->cpu, flags);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003101 if (!buffer) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003102 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003103 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003104 }
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003105 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003106
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003107 atomic_long_add(user_extra, &user->locked_vm);
3108 event->mmap_locked = extra;
3109 event->mmap_user = get_current_user();
3110 vma->vm_mm->locked_vm += event->mmap_locked;
3111
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003112unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003113 if (!ret)
3114 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003115 mutex_unlock(&event->mmap_mutex);
3116
3117 vma->vm_flags |= VM_RESERVED;
3118 vma->vm_ops = &perf_mmap_vmops;
3119
3120 return ret;
3121}
3122
3123static int perf_fasync(int fd, struct file *filp, int on)
3124{
3125 struct inode *inode = filp->f_path.dentry->d_inode;
3126 struct perf_event *event = filp->private_data;
3127 int retval;
3128
3129 mutex_lock(&inode->i_mutex);
3130 retval = fasync_helper(fd, filp, on, &event->fasync);
3131 mutex_unlock(&inode->i_mutex);
3132
3133 if (retval < 0)
3134 return retval;
3135
3136 return 0;
3137}
3138
3139static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003140 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003141 .release = perf_release,
3142 .read = perf_read,
3143 .poll = perf_poll,
3144 .unlocked_ioctl = perf_ioctl,
3145 .compat_ioctl = perf_ioctl,
3146 .mmap = perf_mmap,
3147 .fasync = perf_fasync,
3148};
3149
3150/*
3151 * Perf event wakeup
3152 *
3153 * If there's data, ensure we set the poll() state and publish everything
3154 * to user-space before waking everybody up.
3155 */
3156
3157void perf_event_wakeup(struct perf_event *event)
3158{
3159 wake_up_all(&event->waitq);
3160
3161 if (event->pending_kill) {
3162 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3163 event->pending_kill = 0;
3164 }
3165}
3166
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003167static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003168{
3169 struct perf_event *event = container_of(entry,
3170 struct perf_event, pending);
3171
3172 if (event->pending_disable) {
3173 event->pending_disable = 0;
3174 __perf_event_disable(event);
3175 }
3176
3177 if (event->pending_wakeup) {
3178 event->pending_wakeup = 0;
3179 perf_event_wakeup(event);
3180 }
3181}
3182
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003183/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003184 * We assume there is only KVM supporting the callbacks.
3185 * Later on, we might change it to a list if there is
3186 * another virtualization implementation supporting the callbacks.
3187 */
3188struct perf_guest_info_callbacks *perf_guest_cbs;
3189
3190int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3191{
3192 perf_guest_cbs = cbs;
3193 return 0;
3194}
3195EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3196
3197int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3198{
3199 perf_guest_cbs = NULL;
3200 return 0;
3201}
3202EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3203
3204/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003205 * Output
3206 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003207static bool perf_output_space(struct perf_buffer *buffer, unsigned long tail,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003208 unsigned long offset, unsigned long head)
3209{
3210 unsigned long mask;
3211
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003212 if (!buffer->writable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003213 return true;
3214
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003215 mask = perf_data_size(buffer) - 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216
3217 offset = (offset - tail) & mask;
3218 head = (head - tail) & mask;
3219
3220 if ((int)(head - offset) < 0)
3221 return false;
3222
3223 return true;
3224}
3225
3226static void perf_output_wakeup(struct perf_output_handle *handle)
3227{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003228 atomic_set(&handle->buffer->poll, POLL_IN);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003229
3230 if (handle->nmi) {
3231 handle->event->pending_wakeup = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003232 irq_work_queue(&handle->event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003233 } else
3234 perf_event_wakeup(handle->event);
3235}
3236
3237/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003238 * We need to ensure a later event_id doesn't publish a head when a former
Peter Zijlstraef607772010-05-18 10:50:41 +02003239 * event isn't done writing. However since we need to deal with NMIs we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003240 * cannot fully serialize things.
3241 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003242 * We only publish the head (and generate a wakeup) when the outer-most
Peter Zijlstraef607772010-05-18 10:50:41 +02003243 * event completes.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003244 */
Peter Zijlstraef607772010-05-18 10:50:41 +02003245static void perf_output_get_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003246{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003247 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003248
Peter Zijlstraef607772010-05-18 10:50:41 +02003249 preempt_disable();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003250 local_inc(&buffer->nest);
3251 handle->wakeup = local_read(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003252}
3253
Peter Zijlstraef607772010-05-18 10:50:41 +02003254static void perf_output_put_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003255{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003256 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003257 unsigned long head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003258
3259again:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003260 head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003261
3262 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003263 * IRQ/NMI can happen here, which means we can miss a head update.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003264 */
3265
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003266 if (!local_dec_and_test(&buffer->nest))
Frederic Weisbeckeracd35a42010-05-20 21:28:34 +02003267 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003268
3269 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003270 * Publish the known good head. Rely on the full barrier implied
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003271 * by atomic_dec_and_test() order the buffer->head read and this
Peter Zijlstraef607772010-05-18 10:50:41 +02003272 * write.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003273 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003274 buffer->user_page->data_head = head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003275
Peter Zijlstraef607772010-05-18 10:50:41 +02003276 /*
3277 * Now check if we missed an update, rely on the (compiler)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003278 * barrier in atomic_dec_and_test() to re-read buffer->head.
Peter Zijlstraef607772010-05-18 10:50:41 +02003279 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003280 if (unlikely(head != local_read(&buffer->head))) {
3281 local_inc(&buffer->nest);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003282 goto again;
3283 }
3284
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003285 if (handle->wakeup != local_read(&buffer->wakeup))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003286 perf_output_wakeup(handle);
Peter Zijlstraef607772010-05-18 10:50:41 +02003287
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003288out:
Peter Zijlstraef607772010-05-18 10:50:41 +02003289 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003290}
3291
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003292__always_inline void perf_output_copy(struct perf_output_handle *handle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293 const void *buf, unsigned int len)
3294{
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003295 do {
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003296 unsigned long size = min_t(unsigned long, handle->size, len);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003297
3298 memcpy(handle->addr, buf, size);
3299
3300 len -= size;
3301 handle->addr += size;
Frederic Weisbecker74048f82010-05-27 21:34:58 +02003302 buf += size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003303 handle->size -= size;
3304 if (!handle->size) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003305 struct perf_buffer *buffer = handle->buffer;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003306
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003307 handle->page++;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003308 handle->page &= buffer->nr_pages - 1;
3309 handle->addr = buffer->data_pages[handle->page];
3310 handle->size = PAGE_SIZE << page_order(buffer);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003311 }
3312 } while (len);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003313}
3314
3315int perf_output_begin(struct perf_output_handle *handle,
3316 struct perf_event *event, unsigned int size,
3317 int nmi, int sample)
3318{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003319 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003320 unsigned long tail, offset, head;
3321 int have_lost;
3322 struct {
3323 struct perf_event_header header;
3324 u64 id;
3325 u64 lost;
3326 } lost_event;
3327
3328 rcu_read_lock();
3329 /*
3330 * For inherited events we send all the output towards the parent.
3331 */
3332 if (event->parent)
3333 event = event->parent;
3334
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003335 buffer = rcu_dereference(event->buffer);
3336 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337 goto out;
3338
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003339 handle->buffer = buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003340 handle->event = event;
3341 handle->nmi = nmi;
3342 handle->sample = sample;
3343
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003344 if (!buffer->nr_pages)
Stephane Eranian00d1d0b2010-05-17 12:46:01 +02003345 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003347 have_lost = local_read(&buffer->lost);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003348 if (have_lost)
3349 size += sizeof(lost_event);
3350
Peter Zijlstraef607772010-05-18 10:50:41 +02003351 perf_output_get_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003352
3353 do {
3354 /*
3355 * Userspace could choose to issue a mb() before updating the
3356 * tail pointer. So that all reads will be completed before the
3357 * write is issued.
3358 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003359 tail = ACCESS_ONCE(buffer->user_page->data_tail);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003360 smp_rmb();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003361 offset = head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003362 head += size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003363 if (unlikely(!perf_output_space(buffer, tail, offset, head)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003364 goto fail;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003365 } while (local_cmpxchg(&buffer->head, offset, head) != offset);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003366
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003367 if (head - local_read(&buffer->wakeup) > buffer->watermark)
3368 local_add(buffer->watermark, &buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003369
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003370 handle->page = offset >> (PAGE_SHIFT + page_order(buffer));
3371 handle->page &= buffer->nr_pages - 1;
3372 handle->size = offset & ((PAGE_SIZE << page_order(buffer)) - 1);
3373 handle->addr = buffer->data_pages[handle->page];
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003374 handle->addr += handle->size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003375 handle->size = (PAGE_SIZE << page_order(buffer)) - handle->size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003376
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003377 if (have_lost) {
3378 lost_event.header.type = PERF_RECORD_LOST;
3379 lost_event.header.misc = 0;
3380 lost_event.header.size = sizeof(lost_event);
3381 lost_event.id = event->id;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003382 lost_event.lost = local_xchg(&buffer->lost, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003383
3384 perf_output_put(handle, lost_event);
3385 }
3386
3387 return 0;
3388
3389fail:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003390 local_inc(&buffer->lost);
Peter Zijlstraef607772010-05-18 10:50:41 +02003391 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392out:
3393 rcu_read_unlock();
3394
3395 return -ENOSPC;
3396}
3397
3398void perf_output_end(struct perf_output_handle *handle)
3399{
3400 struct perf_event *event = handle->event;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003401 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003402
3403 int wakeup_events = event->attr.wakeup_events;
3404
3405 if (handle->sample && wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003406 int events = local_inc_return(&buffer->events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 if (events >= wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003408 local_sub(wakeup_events, &buffer->events);
3409 local_inc(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003410 }
3411 }
3412
Peter Zijlstraef607772010-05-18 10:50:41 +02003413 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003414 rcu_read_unlock();
3415}
3416
3417static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
3418{
3419 /*
3420 * only top level events have the pid namespace they were created in
3421 */
3422 if (event->parent)
3423 event = event->parent;
3424
3425 return task_tgid_nr_ns(p, event->ns);
3426}
3427
3428static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
3429{
3430 /*
3431 * only top level events have the pid namespace they were created in
3432 */
3433 if (event->parent)
3434 event = event->parent;
3435
3436 return task_pid_nr_ns(p, event->ns);
3437}
3438
3439static void perf_output_read_one(struct perf_output_handle *handle,
3440 struct perf_event *event)
3441{
3442 u64 read_format = event->attr.read_format;
3443 u64 values[4];
3444 int n = 0;
3445
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003446 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003447 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3448 values[n++] = event->total_time_enabled +
3449 atomic64_read(&event->child_total_time_enabled);
3450 }
3451 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3452 values[n++] = event->total_time_running +
3453 atomic64_read(&event->child_total_time_running);
3454 }
3455 if (read_format & PERF_FORMAT_ID)
3456 values[n++] = primary_event_id(event);
3457
3458 perf_output_copy(handle, values, n * sizeof(u64));
3459}
3460
3461/*
3462 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
3463 */
3464static void perf_output_read_group(struct perf_output_handle *handle,
3465 struct perf_event *event)
3466{
3467 struct perf_event *leader = event->group_leader, *sub;
3468 u64 read_format = event->attr.read_format;
3469 u64 values[5];
3470 int n = 0;
3471
3472 values[n++] = 1 + leader->nr_siblings;
3473
3474 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3475 values[n++] = leader->total_time_enabled;
3476
3477 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3478 values[n++] = leader->total_time_running;
3479
3480 if (leader != event)
3481 leader->pmu->read(leader);
3482
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003483 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003484 if (read_format & PERF_FORMAT_ID)
3485 values[n++] = primary_event_id(leader);
3486
3487 perf_output_copy(handle, values, n * sizeof(u64));
3488
3489 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
3490 n = 0;
3491
3492 if (sub != event)
3493 sub->pmu->read(sub);
3494
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003495 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003496 if (read_format & PERF_FORMAT_ID)
3497 values[n++] = primary_event_id(sub);
3498
3499 perf_output_copy(handle, values, n * sizeof(u64));
3500 }
3501}
3502
3503static void perf_output_read(struct perf_output_handle *handle,
3504 struct perf_event *event)
3505{
3506 if (event->attr.read_format & PERF_FORMAT_GROUP)
3507 perf_output_read_group(handle, event);
3508 else
3509 perf_output_read_one(handle, event);
3510}
3511
3512void perf_output_sample(struct perf_output_handle *handle,
3513 struct perf_event_header *header,
3514 struct perf_sample_data *data,
3515 struct perf_event *event)
3516{
3517 u64 sample_type = data->type;
3518
3519 perf_output_put(handle, *header);
3520
3521 if (sample_type & PERF_SAMPLE_IP)
3522 perf_output_put(handle, data->ip);
3523
3524 if (sample_type & PERF_SAMPLE_TID)
3525 perf_output_put(handle, data->tid_entry);
3526
3527 if (sample_type & PERF_SAMPLE_TIME)
3528 perf_output_put(handle, data->time);
3529
3530 if (sample_type & PERF_SAMPLE_ADDR)
3531 perf_output_put(handle, data->addr);
3532
3533 if (sample_type & PERF_SAMPLE_ID)
3534 perf_output_put(handle, data->id);
3535
3536 if (sample_type & PERF_SAMPLE_STREAM_ID)
3537 perf_output_put(handle, data->stream_id);
3538
3539 if (sample_type & PERF_SAMPLE_CPU)
3540 perf_output_put(handle, data->cpu_entry);
3541
3542 if (sample_type & PERF_SAMPLE_PERIOD)
3543 perf_output_put(handle, data->period);
3544
3545 if (sample_type & PERF_SAMPLE_READ)
3546 perf_output_read(handle, event);
3547
3548 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3549 if (data->callchain) {
3550 int size = 1;
3551
3552 if (data->callchain)
3553 size += data->callchain->nr;
3554
3555 size *= sizeof(u64);
3556
3557 perf_output_copy(handle, data->callchain, size);
3558 } else {
3559 u64 nr = 0;
3560 perf_output_put(handle, nr);
3561 }
3562 }
3563
3564 if (sample_type & PERF_SAMPLE_RAW) {
3565 if (data->raw) {
3566 perf_output_put(handle, data->raw->size);
3567 perf_output_copy(handle, data->raw->data,
3568 data->raw->size);
3569 } else {
3570 struct {
3571 u32 size;
3572 u32 data;
3573 } raw = {
3574 .size = sizeof(u32),
3575 .data = 0,
3576 };
3577 perf_output_put(handle, raw);
3578 }
3579 }
3580}
3581
3582void perf_prepare_sample(struct perf_event_header *header,
3583 struct perf_sample_data *data,
3584 struct perf_event *event,
3585 struct pt_regs *regs)
3586{
3587 u64 sample_type = event->attr.sample_type;
3588
3589 data->type = sample_type;
3590
3591 header->type = PERF_RECORD_SAMPLE;
3592 header->size = sizeof(*header);
3593
3594 header->misc = 0;
3595 header->misc |= perf_misc_flags(regs);
3596
3597 if (sample_type & PERF_SAMPLE_IP) {
3598 data->ip = perf_instruction_pointer(regs);
3599
3600 header->size += sizeof(data->ip);
3601 }
3602
3603 if (sample_type & PERF_SAMPLE_TID) {
3604 /* namespace issues */
3605 data->tid_entry.pid = perf_event_pid(event, current);
3606 data->tid_entry.tid = perf_event_tid(event, current);
3607
3608 header->size += sizeof(data->tid_entry);
3609 }
3610
3611 if (sample_type & PERF_SAMPLE_TIME) {
3612 data->time = perf_clock();
3613
3614 header->size += sizeof(data->time);
3615 }
3616
3617 if (sample_type & PERF_SAMPLE_ADDR)
3618 header->size += sizeof(data->addr);
3619
3620 if (sample_type & PERF_SAMPLE_ID) {
3621 data->id = primary_event_id(event);
3622
3623 header->size += sizeof(data->id);
3624 }
3625
3626 if (sample_type & PERF_SAMPLE_STREAM_ID) {
3627 data->stream_id = event->id;
3628
3629 header->size += sizeof(data->stream_id);
3630 }
3631
3632 if (sample_type & PERF_SAMPLE_CPU) {
3633 data->cpu_entry.cpu = raw_smp_processor_id();
3634 data->cpu_entry.reserved = 0;
3635
3636 header->size += sizeof(data->cpu_entry);
3637 }
3638
3639 if (sample_type & PERF_SAMPLE_PERIOD)
3640 header->size += sizeof(data->period);
3641
3642 if (sample_type & PERF_SAMPLE_READ)
3643 header->size += perf_event_read_size(event);
3644
3645 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3646 int size = 1;
3647
3648 data->callchain = perf_callchain(regs);
3649
3650 if (data->callchain)
3651 size += data->callchain->nr;
3652
3653 header->size += size * sizeof(u64);
3654 }
3655
3656 if (sample_type & PERF_SAMPLE_RAW) {
3657 int size = sizeof(u32);
3658
3659 if (data->raw)
3660 size += data->raw->size;
3661 else
3662 size += sizeof(u32);
3663
3664 WARN_ON_ONCE(size & (sizeof(u64)-1));
3665 header->size += size;
3666 }
3667}
3668
3669static void perf_event_output(struct perf_event *event, int nmi,
3670 struct perf_sample_data *data,
3671 struct pt_regs *regs)
3672{
3673 struct perf_output_handle handle;
3674 struct perf_event_header header;
3675
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003676 /* protect the callchain buffers */
3677 rcu_read_lock();
3678
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003679 perf_prepare_sample(&header, data, event, regs);
3680
3681 if (perf_output_begin(&handle, event, header.size, nmi, 1))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003682 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003683
3684 perf_output_sample(&handle, &header, data, event);
3685
3686 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003687
3688exit:
3689 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003690}
3691
3692/*
3693 * read event_id
3694 */
3695
3696struct perf_read_event {
3697 struct perf_event_header header;
3698
3699 u32 pid;
3700 u32 tid;
3701};
3702
3703static void
3704perf_event_read_event(struct perf_event *event,
3705 struct task_struct *task)
3706{
3707 struct perf_output_handle handle;
3708 struct perf_read_event read_event = {
3709 .header = {
3710 .type = PERF_RECORD_READ,
3711 .misc = 0,
3712 .size = sizeof(read_event) + perf_event_read_size(event),
3713 },
3714 .pid = perf_event_pid(event, task),
3715 .tid = perf_event_tid(event, task),
3716 };
3717 int ret;
3718
3719 ret = perf_output_begin(&handle, event, read_event.header.size, 0, 0);
3720 if (ret)
3721 return;
3722
3723 perf_output_put(&handle, read_event);
3724 perf_output_read(&handle, event);
3725
3726 perf_output_end(&handle);
3727}
3728
3729/*
3730 * task tracking -- fork/exit
3731 *
Eric B Munson3af9e852010-05-18 15:30:49 +01003732 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003733 */
3734
3735struct perf_task_event {
3736 struct task_struct *task;
3737 struct perf_event_context *task_ctx;
3738
3739 struct {
3740 struct perf_event_header header;
3741
3742 u32 pid;
3743 u32 ppid;
3744 u32 tid;
3745 u32 ptid;
3746 u64 time;
3747 } event_id;
3748};
3749
3750static void perf_event_task_output(struct perf_event *event,
3751 struct perf_task_event *task_event)
3752{
3753 struct perf_output_handle handle;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003754 struct task_struct *task = task_event->task;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01003755 int size, ret;
3756
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003757 size = task_event->event_id.header.size;
3758 ret = perf_output_begin(&handle, event, size, 0, 0);
3759
Peter Zijlstraef607772010-05-18 10:50:41 +02003760 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003761 return;
3762
3763 task_event->event_id.pid = perf_event_pid(event, task);
3764 task_event->event_id.ppid = perf_event_pid(event, current);
3765
3766 task_event->event_id.tid = perf_event_tid(event, task);
3767 task_event->event_id.ptid = perf_event_tid(event, current);
3768
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003769 perf_output_put(&handle, task_event->event_id);
3770
3771 perf_output_end(&handle);
3772}
3773
3774static int perf_event_task_match(struct perf_event *event)
3775{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003776 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003777 return 0;
3778
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003779 if (event->cpu != -1 && event->cpu != smp_processor_id())
3780 return 0;
3781
Eric B Munson3af9e852010-05-18 15:30:49 +01003782 if (event->attr.comm || event->attr.mmap ||
3783 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003784 return 1;
3785
3786 return 0;
3787}
3788
3789static void perf_event_task_ctx(struct perf_event_context *ctx,
3790 struct perf_task_event *task_event)
3791{
3792 struct perf_event *event;
3793
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003794 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3795 if (perf_event_task_match(event))
3796 perf_event_task_output(event, task_event);
3797 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003798}
3799
3800static void perf_event_task_event(struct perf_task_event *task_event)
3801{
3802 struct perf_cpu_context *cpuctx;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003803 struct perf_event_context *ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003804 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003805 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003806
Peter Zijlstrad6ff86c2009-11-20 22:19:46 +01003807 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003808 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02003809 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003810 perf_event_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003811
3812 ctx = task_event->task_ctx;
3813 if (!ctx) {
3814 ctxn = pmu->task_ctx_nr;
3815 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02003816 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003817 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
3818 }
3819 if (ctx)
3820 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02003821next:
3822 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003823 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003824 rcu_read_unlock();
3825}
3826
3827static void perf_event_task(struct task_struct *task,
3828 struct perf_event_context *task_ctx,
3829 int new)
3830{
3831 struct perf_task_event task_event;
3832
3833 if (!atomic_read(&nr_comm_events) &&
3834 !atomic_read(&nr_mmap_events) &&
3835 !atomic_read(&nr_task_events))
3836 return;
3837
3838 task_event = (struct perf_task_event){
3839 .task = task,
3840 .task_ctx = task_ctx,
3841 .event_id = {
3842 .header = {
3843 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
3844 .misc = 0,
3845 .size = sizeof(task_event.event_id),
3846 },
3847 /* .pid */
3848 /* .ppid */
3849 /* .tid */
3850 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003851 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003852 },
3853 };
3854
3855 perf_event_task_event(&task_event);
3856}
3857
3858void perf_event_fork(struct task_struct *task)
3859{
3860 perf_event_task(task, NULL, 1);
3861}
3862
3863/*
3864 * comm tracking
3865 */
3866
3867struct perf_comm_event {
3868 struct task_struct *task;
3869 char *comm;
3870 int comm_size;
3871
3872 struct {
3873 struct perf_event_header header;
3874
3875 u32 pid;
3876 u32 tid;
3877 } event_id;
3878};
3879
3880static void perf_event_comm_output(struct perf_event *event,
3881 struct perf_comm_event *comm_event)
3882{
3883 struct perf_output_handle handle;
3884 int size = comm_event->event_id.header.size;
3885 int ret = perf_output_begin(&handle, event, size, 0, 0);
3886
3887 if (ret)
3888 return;
3889
3890 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
3891 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
3892
3893 perf_output_put(&handle, comm_event->event_id);
3894 perf_output_copy(&handle, comm_event->comm,
3895 comm_event->comm_size);
3896 perf_output_end(&handle);
3897}
3898
3899static int perf_event_comm_match(struct perf_event *event)
3900{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003901 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003902 return 0;
3903
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003904 if (event->cpu != -1 && event->cpu != smp_processor_id())
3905 return 0;
3906
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003907 if (event->attr.comm)
3908 return 1;
3909
3910 return 0;
3911}
3912
3913static void perf_event_comm_ctx(struct perf_event_context *ctx,
3914 struct perf_comm_event *comm_event)
3915{
3916 struct perf_event *event;
3917
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003918 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3919 if (perf_event_comm_match(event))
3920 perf_event_comm_output(event, comm_event);
3921 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003922}
3923
3924static void perf_event_comm_event(struct perf_comm_event *comm_event)
3925{
3926 struct perf_cpu_context *cpuctx;
3927 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003928 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003929 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003930 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003931 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003932
3933 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01003934 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003935 size = ALIGN(strlen(comm)+1, sizeof(u64));
3936
3937 comm_event->comm = comm;
3938 comm_event->comm_size = size;
3939
3940 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
3941
Peter Zijlstraf6595f32009-11-20 22:19:47 +01003942 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003943 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02003944 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003945 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003946
3947 ctxn = pmu->task_ctx_nr;
3948 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02003949 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003950
3951 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
3952 if (ctx)
3953 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02003954next:
3955 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003956 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003957 rcu_read_unlock();
3958}
3959
3960void perf_event_comm(struct task_struct *task)
3961{
3962 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003963 struct perf_event_context *ctx;
3964 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003965
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003966 for_each_task_context_nr(ctxn) {
3967 ctx = task->perf_event_ctxp[ctxn];
3968 if (!ctx)
3969 continue;
3970
3971 perf_event_enable_on_exec(ctx);
3972 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003973
3974 if (!atomic_read(&nr_comm_events))
3975 return;
3976
3977 comm_event = (struct perf_comm_event){
3978 .task = task,
3979 /* .comm */
3980 /* .comm_size */
3981 .event_id = {
3982 .header = {
3983 .type = PERF_RECORD_COMM,
3984 .misc = 0,
3985 /* .size */
3986 },
3987 /* .pid */
3988 /* .tid */
3989 },
3990 };
3991
3992 perf_event_comm_event(&comm_event);
3993}
3994
3995/*
3996 * mmap tracking
3997 */
3998
3999struct perf_mmap_event {
4000 struct vm_area_struct *vma;
4001
4002 const char *file_name;
4003 int file_size;
4004
4005 struct {
4006 struct perf_event_header header;
4007
4008 u32 pid;
4009 u32 tid;
4010 u64 start;
4011 u64 len;
4012 u64 pgoff;
4013 } event_id;
4014};
4015
4016static void perf_event_mmap_output(struct perf_event *event,
4017 struct perf_mmap_event *mmap_event)
4018{
4019 struct perf_output_handle handle;
4020 int size = mmap_event->event_id.header.size;
4021 int ret = perf_output_begin(&handle, event, size, 0, 0);
4022
4023 if (ret)
4024 return;
4025
4026 mmap_event->event_id.pid = perf_event_pid(event, current);
4027 mmap_event->event_id.tid = perf_event_tid(event, current);
4028
4029 perf_output_put(&handle, mmap_event->event_id);
4030 perf_output_copy(&handle, mmap_event->file_name,
4031 mmap_event->file_size);
4032 perf_output_end(&handle);
4033}
4034
4035static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01004036 struct perf_mmap_event *mmap_event,
4037 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004038{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004039 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004040 return 0;
4041
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004042 if (event->cpu != -1 && event->cpu != smp_processor_id())
4043 return 0;
4044
Eric B Munson3af9e852010-05-18 15:30:49 +01004045 if ((!executable && event->attr.mmap_data) ||
4046 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004047 return 1;
4048
4049 return 0;
4050}
4051
4052static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01004053 struct perf_mmap_event *mmap_event,
4054 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055{
4056 struct perf_event *event;
4057
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004058 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01004059 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004060 perf_event_mmap_output(event, mmap_event);
4061 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004062}
4063
4064static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4065{
4066 struct perf_cpu_context *cpuctx;
4067 struct perf_event_context *ctx;
4068 struct vm_area_struct *vma = mmap_event->vma;
4069 struct file *file = vma->vm_file;
4070 unsigned int size;
4071 char tmp[16];
4072 char *buf = NULL;
4073 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004074 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004075 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004076
4077 memset(tmp, 0, sizeof(tmp));
4078
4079 if (file) {
4080 /*
4081 * d_path works from the end of the buffer backwards, so we
4082 * need to add enough zero bytes after the string to handle
4083 * the 64bit alignment we do later.
4084 */
4085 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4086 if (!buf) {
4087 name = strncpy(tmp, "//enomem", sizeof(tmp));
4088 goto got_name;
4089 }
4090 name = d_path(&file->f_path, buf, PATH_MAX);
4091 if (IS_ERR(name)) {
4092 name = strncpy(tmp, "//toolong", sizeof(tmp));
4093 goto got_name;
4094 }
4095 } else {
4096 if (arch_vma_name(mmap_event->vma)) {
4097 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4098 sizeof(tmp));
4099 goto got_name;
4100 }
4101
4102 if (!vma->vm_mm) {
4103 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4104 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004105 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4106 vma->vm_end >= vma->vm_mm->brk) {
4107 name = strncpy(tmp, "[heap]", sizeof(tmp));
4108 goto got_name;
4109 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4110 vma->vm_end >= vma->vm_mm->start_stack) {
4111 name = strncpy(tmp, "[stack]", sizeof(tmp));
4112 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004113 }
4114
4115 name = strncpy(tmp, "//anon", sizeof(tmp));
4116 goto got_name;
4117 }
4118
4119got_name:
4120 size = ALIGN(strlen(name)+1, sizeof(u64));
4121
4122 mmap_event->file_name = name;
4123 mmap_event->file_size = size;
4124
4125 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4126
Peter Zijlstraf6d9dd22009-11-20 22:19:48 +01004127 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004128 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004129 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004130 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4131 vma->vm_flags & VM_EXEC);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004132
4133 ctxn = pmu->task_ctx_nr;
4134 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004135 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004136
4137 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4138 if (ctx) {
4139 perf_event_mmap_ctx(ctx, mmap_event,
4140 vma->vm_flags & VM_EXEC);
4141 }
Peter Zijlstra41945f62010-09-16 19:17:24 +02004142next:
4143 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004144 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004145 rcu_read_unlock();
4146
4147 kfree(buf);
4148}
4149
Eric B Munson3af9e852010-05-18 15:30:49 +01004150void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004151{
4152 struct perf_mmap_event mmap_event;
4153
4154 if (!atomic_read(&nr_mmap_events))
4155 return;
4156
4157 mmap_event = (struct perf_mmap_event){
4158 .vma = vma,
4159 /* .file_name */
4160 /* .file_size */
4161 .event_id = {
4162 .header = {
4163 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004164 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004165 /* .size */
4166 },
4167 /* .pid */
4168 /* .tid */
4169 .start = vma->vm_start,
4170 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004171 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004172 },
4173 };
4174
4175 perf_event_mmap_event(&mmap_event);
4176}
4177
4178/*
4179 * IRQ throttle logging
4180 */
4181
4182static void perf_log_throttle(struct perf_event *event, int enable)
4183{
4184 struct perf_output_handle handle;
4185 int ret;
4186
4187 struct {
4188 struct perf_event_header header;
4189 u64 time;
4190 u64 id;
4191 u64 stream_id;
4192 } throttle_event = {
4193 .header = {
4194 .type = PERF_RECORD_THROTTLE,
4195 .misc = 0,
4196 .size = sizeof(throttle_event),
4197 },
4198 .time = perf_clock(),
4199 .id = primary_event_id(event),
4200 .stream_id = event->id,
4201 };
4202
4203 if (enable)
4204 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4205
4206 ret = perf_output_begin(&handle, event, sizeof(throttle_event), 1, 0);
4207 if (ret)
4208 return;
4209
4210 perf_output_put(&handle, throttle_event);
4211 perf_output_end(&handle);
4212}
4213
4214/*
4215 * Generic event overflow handling, sampling.
4216 */
4217
4218static int __perf_event_overflow(struct perf_event *event, int nmi,
4219 int throttle, struct perf_sample_data *data,
4220 struct pt_regs *regs)
4221{
4222 int events = atomic_read(&event->event_limit);
4223 struct hw_perf_event *hwc = &event->hw;
4224 int ret = 0;
4225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004226 if (!throttle) {
4227 hwc->interrupts++;
4228 } else {
4229 if (hwc->interrupts != MAX_INTERRUPTS) {
4230 hwc->interrupts++;
4231 if (HZ * hwc->interrupts >
4232 (u64)sysctl_perf_event_sample_rate) {
4233 hwc->interrupts = MAX_INTERRUPTS;
4234 perf_log_throttle(event, 0);
4235 ret = 1;
4236 }
4237 } else {
4238 /*
4239 * Keep re-disabling events even though on the previous
4240 * pass we disabled it - just in case we raced with a
4241 * sched-in and the event got enabled again:
4242 */
4243 ret = 1;
4244 }
4245 }
4246
4247 if (event->attr.freq) {
4248 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004249 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004250
Peter Zijlstraabd50712010-01-26 18:50:16 +01004251 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004252
Peter Zijlstraabd50712010-01-26 18:50:16 +01004253 if (delta > 0 && delta < 2*TICK_NSEC)
4254 perf_adjust_period(event, delta, hwc->last_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004255 }
4256
4257 /*
4258 * XXX event_limit might not quite work as expected on inherited
4259 * events
4260 */
4261
4262 event->pending_kill = POLL_IN;
4263 if (events && atomic_dec_and_test(&event->event_limit)) {
4264 ret = 1;
4265 event->pending_kill = POLL_HUP;
4266 if (nmi) {
4267 event->pending_disable = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004268 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004269 } else
4270 perf_event_disable(event);
4271 }
4272
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004273 if (event->overflow_handler)
4274 event->overflow_handler(event, nmi, data, regs);
4275 else
4276 perf_event_output(event, nmi, data, regs);
4277
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004278 return ret;
4279}
4280
4281int perf_event_overflow(struct perf_event *event, int nmi,
4282 struct perf_sample_data *data,
4283 struct pt_regs *regs)
4284{
4285 return __perf_event_overflow(event, nmi, 1, data, regs);
4286}
4287
4288/*
4289 * Generic software event infrastructure
4290 */
4291
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004292struct swevent_htable {
4293 struct swevent_hlist *swevent_hlist;
4294 struct mutex hlist_mutex;
4295 int hlist_refcount;
4296
4297 /* Recursion avoidance in each contexts */
4298 int recursion[PERF_NR_CONTEXTS];
4299};
4300
4301static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004303/*
4304 * We directly increment event->count and keep a second value in
4305 * event->hw.period_left to count intervals. This period event
4306 * is kept in the range [-sample_period, 0] so that we can use the
4307 * sign as trigger.
4308 */
4309
4310static u64 perf_swevent_set_period(struct perf_event *event)
4311{
4312 struct hw_perf_event *hwc = &event->hw;
4313 u64 period = hwc->last_period;
4314 u64 nr, offset;
4315 s64 old, val;
4316
4317 hwc->last_period = hwc->sample_period;
4318
4319again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02004320 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004321 if (val < 0)
4322 return 0;
4323
4324 nr = div64_u64(period + val, period);
4325 offset = nr * period;
4326 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02004327 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004328 goto again;
4329
4330 return nr;
4331}
4332
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004333static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004334 int nmi, struct perf_sample_data *data,
4335 struct pt_regs *regs)
4336{
4337 struct hw_perf_event *hwc = &event->hw;
4338 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004339
4340 data->period = event->hw.last_period;
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004341 if (!overflow)
4342 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004343
4344 if (hwc->interrupts == MAX_INTERRUPTS)
4345 return;
4346
4347 for (; overflow; overflow--) {
4348 if (__perf_event_overflow(event, nmi, throttle,
4349 data, regs)) {
4350 /*
4351 * We inhibit the overflow from happening when
4352 * hwc->interrupts == MAX_INTERRUPTS.
4353 */
4354 break;
4355 }
4356 throttle = 1;
4357 }
4358}
4359
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004360static void perf_swevent_event(struct perf_event *event, u64 nr,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004361 int nmi, struct perf_sample_data *data,
4362 struct pt_regs *regs)
4363{
4364 struct hw_perf_event *hwc = &event->hw;
4365
Peter Zijlstrae7850592010-05-21 14:43:08 +02004366 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004367
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004368 if (!regs)
4369 return;
4370
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004371 if (!hwc->sample_period)
4372 return;
4373
4374 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
4375 return perf_swevent_overflow(event, 1, nmi, data, regs);
4376
Peter Zijlstrae7850592010-05-21 14:43:08 +02004377 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004378 return;
4379
4380 perf_swevent_overflow(event, 0, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004381}
4382
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004383static int perf_exclude_event(struct perf_event *event,
4384 struct pt_regs *regs)
4385{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004386 if (event->hw.state & PERF_HES_STOPPED)
4387 return 0;
4388
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004389 if (regs) {
4390 if (event->attr.exclude_user && user_mode(regs))
4391 return 1;
4392
4393 if (event->attr.exclude_kernel && !user_mode(regs))
4394 return 1;
4395 }
4396
4397 return 0;
4398}
4399
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004400static int perf_swevent_match(struct perf_event *event,
4401 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08004402 u32 event_id,
4403 struct perf_sample_data *data,
4404 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004405{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004406 if (event->attr.type != type)
4407 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004408
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004409 if (event->attr.config != event_id)
4410 return 0;
4411
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004412 if (perf_exclude_event(event, regs))
4413 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004414
4415 return 1;
4416}
4417
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004418static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004419{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004420 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004421
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004422 return hash_64(val, SWEVENT_HLIST_BITS);
4423}
4424
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004425static inline struct hlist_head *
4426__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004427{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004428 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004429
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004430 return &hlist->heads[hash];
4431}
4432
4433/* For the read side: events when they trigger */
4434static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004435find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004436{
4437 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004438
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004439 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004440 if (!hlist)
4441 return NULL;
4442
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004443 return __find_swevent_head(hlist, type, event_id);
4444}
4445
4446/* For the event head insertion and removal in the hlist */
4447static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004448find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004449{
4450 struct swevent_hlist *hlist;
4451 u32 event_id = event->attr.config;
4452 u64 type = event->attr.type;
4453
4454 /*
4455 * Event scheduling is always serialized against hlist allocation
4456 * and release. Which makes the protected version suitable here.
4457 * The context lock guarantees that.
4458 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004459 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004460 lockdep_is_held(&event->ctx->lock));
4461 if (!hlist)
4462 return NULL;
4463
4464 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004465}
4466
4467static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
4468 u64 nr, int nmi,
4469 struct perf_sample_data *data,
4470 struct pt_regs *regs)
4471{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004472 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004473 struct perf_event *event;
4474 struct hlist_node *node;
4475 struct hlist_head *head;
4476
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004477 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004478 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004479 if (!head)
4480 goto end;
4481
4482 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08004483 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004484 perf_swevent_event(event, nr, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004485 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004486end:
4487 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004488}
4489
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004490int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004491{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004492 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004493
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004494 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004495}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01004496EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004497
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004498void inline perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004499{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004500 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004501
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004502 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004503}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004504
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004505void __perf_sw_event(u32 event_id, u64 nr, int nmi,
4506 struct pt_regs *regs, u64 addr)
4507{
Ingo Molnara4234bf2009-11-23 10:57:59 +01004508 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004509 int rctx;
4510
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004511 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004512 rctx = perf_swevent_get_recursion_context();
4513 if (rctx < 0)
4514 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004515
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004516 perf_sample_data_init(&data, addr);
Ingo Molnara4234bf2009-11-23 10:57:59 +01004517
4518 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, nmi, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004519
4520 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004521 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004522}
4523
4524static void perf_swevent_read(struct perf_event *event)
4525{
4526}
4527
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004528static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004529{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004530 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004531 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004532 struct hlist_head *head;
4533
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004534 if (hwc->sample_period) {
4535 hwc->last_period = hwc->sample_period;
4536 perf_swevent_set_period(event);
4537 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004538
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004539 hwc->state = !(flags & PERF_EF_START);
4540
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004541 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004542 if (WARN_ON_ONCE(!head))
4543 return -EINVAL;
4544
4545 hlist_add_head_rcu(&event->hlist_entry, head);
4546
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004547 return 0;
4548}
4549
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004550static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004551{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004552 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004553}
4554
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004555static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004556{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004557 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004558}
4559
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004560static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004561{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004562 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004563}
4564
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004565/* Deref the hlist from the update side */
4566static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004567swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004568{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004569 return rcu_dereference_protected(swhash->swevent_hlist,
4570 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004571}
4572
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004573static void swevent_hlist_release_rcu(struct rcu_head *rcu_head)
4574{
4575 struct swevent_hlist *hlist;
4576
4577 hlist = container_of(rcu_head, struct swevent_hlist, rcu_head);
4578 kfree(hlist);
4579}
4580
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004581static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004582{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004583 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004584
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004585 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004586 return;
4587
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004588 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004589 call_rcu(&hlist->rcu_head, swevent_hlist_release_rcu);
4590}
4591
4592static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
4593{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004594 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004595
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004596 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004597
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004598 if (!--swhash->hlist_refcount)
4599 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004600
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004601 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004602}
4603
4604static void swevent_hlist_put(struct perf_event *event)
4605{
4606 int cpu;
4607
4608 if (event->cpu != -1) {
4609 swevent_hlist_put_cpu(event, event->cpu);
4610 return;
4611 }
4612
4613 for_each_possible_cpu(cpu)
4614 swevent_hlist_put_cpu(event, cpu);
4615}
4616
4617static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
4618{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004619 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004620 int err = 0;
4621
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004622 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004623
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004624 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004625 struct swevent_hlist *hlist;
4626
4627 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
4628 if (!hlist) {
4629 err = -ENOMEM;
4630 goto exit;
4631 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004632 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004633 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004634 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004635exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004636 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004637
4638 return err;
4639}
4640
4641static int swevent_hlist_get(struct perf_event *event)
4642{
4643 int err;
4644 int cpu, failed_cpu;
4645
4646 if (event->cpu != -1)
4647 return swevent_hlist_get_cpu(event, event->cpu);
4648
4649 get_online_cpus();
4650 for_each_possible_cpu(cpu) {
4651 err = swevent_hlist_get_cpu(event, cpu);
4652 if (err) {
4653 failed_cpu = cpu;
4654 goto fail;
4655 }
4656 }
4657 put_online_cpus();
4658
4659 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004660fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004661 for_each_possible_cpu(cpu) {
4662 if (cpu == failed_cpu)
4663 break;
4664 swevent_hlist_put_cpu(event, cpu);
4665 }
4666
4667 put_online_cpus();
4668 return err;
4669}
4670
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004671atomic_t perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004672
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004673static void sw_perf_event_destroy(struct perf_event *event)
4674{
4675 u64 event_id = event->attr.config;
4676
4677 WARN_ON(event->parent);
4678
4679 atomic_dec(&perf_swevent_enabled[event_id]);
4680 swevent_hlist_put(event);
4681}
4682
4683static int perf_swevent_init(struct perf_event *event)
4684{
4685 int event_id = event->attr.config;
4686
4687 if (event->attr.type != PERF_TYPE_SOFTWARE)
4688 return -ENOENT;
4689
4690 switch (event_id) {
4691 case PERF_COUNT_SW_CPU_CLOCK:
4692 case PERF_COUNT_SW_TASK_CLOCK:
4693 return -ENOENT;
4694
4695 default:
4696 break;
4697 }
4698
4699 if (event_id > PERF_COUNT_SW_MAX)
4700 return -ENOENT;
4701
4702 if (!event->parent) {
4703 int err;
4704
4705 err = swevent_hlist_get(event);
4706 if (err)
4707 return err;
4708
4709 atomic_inc(&perf_swevent_enabled[event_id]);
4710 event->destroy = sw_perf_event_destroy;
4711 }
4712
4713 return 0;
4714}
4715
4716static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02004717 .task_ctx_nr = perf_sw_context,
4718
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004719 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004720 .add = perf_swevent_add,
4721 .del = perf_swevent_del,
4722 .start = perf_swevent_start,
4723 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004724 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004725};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004726
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004727#ifdef CONFIG_EVENT_TRACING
4728
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004729static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004730 struct perf_sample_data *data)
4731{
4732 void *record = data->raw->data;
4733
4734 if (likely(!event->filter) || filter_match_preds(event->filter, record))
4735 return 1;
4736 return 0;
4737}
4738
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004739static int perf_tp_event_match(struct perf_event *event,
4740 struct perf_sample_data *data,
4741 struct pt_regs *regs)
4742{
Peter Zijlstra580d6072010-05-20 20:54:31 +02004743 /*
4744 * All tracepoints are from kernel-space.
4745 */
4746 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004747 return 0;
4748
4749 if (!perf_tp_filter_match(event, data))
4750 return 0;
4751
4752 return 1;
4753}
4754
4755void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004756 struct pt_regs *regs, struct hlist_head *head, int rctx)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004757{
4758 struct perf_sample_data data;
4759 struct perf_event *event;
4760 struct hlist_node *node;
4761
4762 struct perf_raw_record raw = {
4763 .size = entry_size,
4764 .data = record,
4765 };
4766
4767 perf_sample_data_init(&data, addr);
4768 data.raw = &raw;
4769
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004770 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
4771 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004772 perf_swevent_event(event, count, 1, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004773 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004774
4775 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004776}
4777EXPORT_SYMBOL_GPL(perf_tp_event);
4778
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004779static void tp_perf_event_destroy(struct perf_event *event)
4780{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004781 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004782}
4783
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004784static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004785{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004786 int err;
4787
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004788 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4789 return -ENOENT;
4790
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004791 /*
4792 * Raw tracepoint data is a severe data leak, only allow root to
4793 * have these.
4794 */
4795 if ((event->attr.sample_type & PERF_SAMPLE_RAW) &&
4796 perf_paranoid_tracepoint_raw() &&
4797 !capable(CAP_SYS_ADMIN))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004798 return -EPERM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004799
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004800 err = perf_trace_init(event);
4801 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004802 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004803
4804 event->destroy = tp_perf_event_destroy;
4805
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004806 return 0;
4807}
4808
4809static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02004810 .task_ctx_nr = perf_sw_context,
4811
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004812 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004813 .add = perf_trace_add,
4814 .del = perf_trace_del,
4815 .start = perf_swevent_start,
4816 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004817 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004818};
4819
4820static inline void perf_tp_register(void)
4821{
4822 perf_pmu_register(&perf_tracepoint);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004823}
Li Zefan6fb29152009-10-15 11:21:42 +08004824
4825static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4826{
4827 char *filter_str;
4828 int ret;
4829
4830 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4831 return -EINVAL;
4832
4833 filter_str = strndup_user(arg, PAGE_SIZE);
4834 if (IS_ERR(filter_str))
4835 return PTR_ERR(filter_str);
4836
4837 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
4838
4839 kfree(filter_str);
4840 return ret;
4841}
4842
4843static void perf_event_free_filter(struct perf_event *event)
4844{
4845 ftrace_profile_free_filter(event);
4846}
4847
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004848#else
Li Zefan6fb29152009-10-15 11:21:42 +08004849
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004850static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004851{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004852}
Li Zefan6fb29152009-10-15 11:21:42 +08004853
4854static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4855{
4856 return -ENOENT;
4857}
4858
4859static void perf_event_free_filter(struct perf_event *event)
4860{
4861}
4862
Li Zefan07b139c2009-12-21 14:27:35 +08004863#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004864
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004865#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004866void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004867{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004868 struct perf_sample_data sample;
4869 struct pt_regs *regs = data;
4870
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004871 perf_sample_data_init(&sample, bp->attr.bp_addr);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004872
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004873 if (!bp->hw.state && !perf_exclude_event(bp, regs))
4874 perf_swevent_event(bp, 1, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004875}
4876#endif
4877
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004878/*
4879 * hrtimer based swevent callback
4880 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004882static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004883{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004884 enum hrtimer_restart ret = HRTIMER_RESTART;
4885 struct perf_sample_data data;
4886 struct pt_regs *regs;
4887 struct perf_event *event;
4888 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004889
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004890 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
4891 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004892
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004893 perf_sample_data_init(&data, 0);
4894 data.period = event->hw.last_period;
4895 regs = get_irq_regs();
4896
4897 if (regs && !perf_exclude_event(event, regs)) {
4898 if (!(event->attr.exclude_idle && current->pid == 0))
4899 if (perf_event_overflow(event, 0, &data, regs))
4900 ret = HRTIMER_NORESTART;
4901 }
4902
4903 period = max_t(u64, 10000, event->hw.sample_period);
4904 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
4905
4906 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004907}
4908
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004909static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004910{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004911 struct hw_perf_event *hwc = &event->hw;
4912
4913 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
4914 hwc->hrtimer.function = perf_swevent_hrtimer;
4915 if (hwc->sample_period) {
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004916 s64 period = local64_read(&hwc->period_left);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004917
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004918 if (period) {
4919 if (period < 0)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004920 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004921
4922 local64_set(&hwc->period_left, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004923 } else {
4924 period = max_t(u64, 10000, hwc->sample_period);
4925 }
4926 __hrtimer_start_range_ns(&hwc->hrtimer,
4927 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02004928 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004929 }
4930}
4931
4932static void perf_swevent_cancel_hrtimer(struct perf_event *event)
4933{
4934 struct hw_perf_event *hwc = &event->hw;
4935
4936 if (hwc->sample_period) {
4937 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004938 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004939
4940 hrtimer_cancel(&hwc->hrtimer);
4941 }
4942}
4943
4944/*
4945 * Software event: cpu wall time clock
4946 */
4947
4948static void cpu_clock_event_update(struct perf_event *event)
4949{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004950 s64 prev;
4951 u64 now;
4952
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004953 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004954 prev = local64_xchg(&event->hw.prev_count, now);
4955 local64_add(now - prev, &event->count);
4956}
4957
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004958static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004959{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004960 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004961 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004962}
4963
4964static void cpu_clock_event_stop(struct perf_event *event, int flags)
4965{
4966 perf_swevent_cancel_hrtimer(event);
4967 cpu_clock_event_update(event);
4968}
4969
4970static int cpu_clock_event_add(struct perf_event *event, int flags)
4971{
4972 if (flags & PERF_EF_START)
4973 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004974
4975 return 0;
4976}
4977
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004978static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004979{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004980 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004981}
4982
4983static void cpu_clock_event_read(struct perf_event *event)
4984{
4985 cpu_clock_event_update(event);
4986}
4987
4988static int cpu_clock_event_init(struct perf_event *event)
4989{
4990 if (event->attr.type != PERF_TYPE_SOFTWARE)
4991 return -ENOENT;
4992
4993 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
4994 return -ENOENT;
4995
4996 return 0;
4997}
4998
4999static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005000 .task_ctx_nr = perf_sw_context,
5001
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005002 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005003 .add = cpu_clock_event_add,
5004 .del = cpu_clock_event_del,
5005 .start = cpu_clock_event_start,
5006 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005007 .read = cpu_clock_event_read,
5008};
5009
5010/*
5011 * Software event: task time clock
5012 */
5013
5014static void task_clock_event_update(struct perf_event *event, u64 now)
5015{
5016 u64 prev;
5017 s64 delta;
5018
5019 prev = local64_xchg(&event->hw.prev_count, now);
5020 delta = now - prev;
5021 local64_add(delta, &event->count);
5022}
5023
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005024static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005025{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005026 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005027 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005028}
5029
5030static void task_clock_event_stop(struct perf_event *event, int flags)
5031{
5032 perf_swevent_cancel_hrtimer(event);
5033 task_clock_event_update(event, event->ctx->time);
5034}
5035
5036static int task_clock_event_add(struct perf_event *event, int flags)
5037{
5038 if (flags & PERF_EF_START)
5039 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005040
5041 return 0;
5042}
5043
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005044static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005045{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005046 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005047}
5048
5049static void task_clock_event_read(struct perf_event *event)
5050{
5051 u64 time;
5052
5053 if (!in_nmi()) {
5054 update_context_time(event->ctx);
5055 time = event->ctx->time;
5056 } else {
5057 u64 now = perf_clock();
5058 u64 delta = now - event->ctx->timestamp;
5059 time = event->ctx->time + delta;
5060 }
5061
5062 task_clock_event_update(event, time);
5063}
5064
5065static int task_clock_event_init(struct perf_event *event)
5066{
5067 if (event->attr.type != PERF_TYPE_SOFTWARE)
5068 return -ENOENT;
5069
5070 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5071 return -ENOENT;
5072
5073 return 0;
5074}
5075
5076static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005077 .task_ctx_nr = perf_sw_context,
5078
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005079 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005080 .add = task_clock_event_add,
5081 .del = task_clock_event_del,
5082 .start = task_clock_event_start,
5083 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005084 .read = task_clock_event_read,
5085};
5086
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005087static void perf_pmu_nop_void(struct pmu *pmu)
5088{
5089}
5090
5091static int perf_pmu_nop_int(struct pmu *pmu)
5092{
5093 return 0;
5094}
5095
5096static void perf_pmu_start_txn(struct pmu *pmu)
5097{
5098 perf_pmu_disable(pmu);
5099}
5100
5101static int perf_pmu_commit_txn(struct pmu *pmu)
5102{
5103 perf_pmu_enable(pmu);
5104 return 0;
5105}
5106
5107static void perf_pmu_cancel_txn(struct pmu *pmu)
5108{
5109 perf_pmu_enable(pmu);
5110}
5111
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005112/*
5113 * Ensures all contexts with the same task_ctx_nr have the same
5114 * pmu_cpu_context too.
5115 */
5116static void *find_pmu_context(int ctxn)
5117{
5118 struct pmu *pmu;
5119
5120 if (ctxn < 0)
5121 return NULL;
5122
5123 list_for_each_entry(pmu, &pmus, entry) {
5124 if (pmu->task_ctx_nr == ctxn)
5125 return pmu->pmu_cpu_context;
5126 }
5127
5128 return NULL;
5129}
5130
5131static void free_pmu_context(void * __percpu cpu_context)
5132{
5133 struct pmu *pmu;
5134
5135 mutex_lock(&pmus_lock);
5136 /*
5137 * Like a real lame refcount.
5138 */
5139 list_for_each_entry(pmu, &pmus, entry) {
5140 if (pmu->pmu_cpu_context == cpu_context)
5141 goto out;
5142 }
5143
5144 free_percpu(cpu_context);
5145out:
5146 mutex_unlock(&pmus_lock);
5147}
5148
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005149int perf_pmu_register(struct pmu *pmu)
5150{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005151 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005152
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005153 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005154 ret = -ENOMEM;
5155 pmu->pmu_disable_count = alloc_percpu(int);
5156 if (!pmu->pmu_disable_count)
5157 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005158
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005159 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
5160 if (pmu->pmu_cpu_context)
5161 goto got_cpu_context;
5162
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005163 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5164 if (!pmu->pmu_cpu_context)
5165 goto free_pdc;
5166
5167 for_each_possible_cpu(cpu) {
5168 struct perf_cpu_context *cpuctx;
5169
5170 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02005171 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005172 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005173 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02005174 cpuctx->jiffies_interval = 1;
5175 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005176 }
5177
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005178got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005179 if (!pmu->start_txn) {
5180 if (pmu->pmu_enable) {
5181 /*
5182 * If we have pmu_enable/pmu_disable calls, install
5183 * transaction stubs that use that to try and batch
5184 * hardware accesses.
5185 */
5186 pmu->start_txn = perf_pmu_start_txn;
5187 pmu->commit_txn = perf_pmu_commit_txn;
5188 pmu->cancel_txn = perf_pmu_cancel_txn;
5189 } else {
5190 pmu->start_txn = perf_pmu_nop_void;
5191 pmu->commit_txn = perf_pmu_nop_int;
5192 pmu->cancel_txn = perf_pmu_nop_void;
5193 }
5194 }
5195
5196 if (!pmu->pmu_enable) {
5197 pmu->pmu_enable = perf_pmu_nop_void;
5198 pmu->pmu_disable = perf_pmu_nop_void;
5199 }
5200
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005201 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005202 ret = 0;
5203unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005204 mutex_unlock(&pmus_lock);
5205
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005206 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005207
5208free_pdc:
5209 free_percpu(pmu->pmu_disable_count);
5210 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005211}
5212
5213void perf_pmu_unregister(struct pmu *pmu)
5214{
5215 mutex_lock(&pmus_lock);
5216 list_del_rcu(&pmu->entry);
5217 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005218
5219 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02005220 * We dereference the pmu list under both SRCU and regular RCU, so
5221 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005222 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005223 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02005224 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005225
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005226 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005227 free_pmu_context(pmu->pmu_cpu_context);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005228}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005229
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005230struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005232 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005233 int idx;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005234
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005235 idx = srcu_read_lock(&pmus_srcu);
5236 list_for_each_entry_rcu(pmu, &pmus, entry) {
5237 int ret = pmu->event_init(event);
5238 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005239 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005240
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005241 if (ret != -ENOENT) {
5242 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005243 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005244 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005245 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005246 pmu = ERR_PTR(-ENOENT);
5247unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005248 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005249
5250 return pmu;
5251}
5252
5253/*
5254 * Allocate and initialize a event structure
5255 */
5256static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005257perf_event_alloc(struct perf_event_attr *attr, int cpu,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005258 struct perf_event *group_leader,
5259 struct perf_event *parent_event,
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005260 perf_overflow_handler_t overflow_handler)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005261{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005262 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005263 struct perf_event *event;
5264 struct hw_perf_event *hwc;
5265 long err;
5266
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005267 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268 if (!event)
5269 return ERR_PTR(-ENOMEM);
5270
5271 /*
5272 * Single events are their own group leaders, with an
5273 * empty sibling list:
5274 */
5275 if (!group_leader)
5276 group_leader = event;
5277
5278 mutex_init(&event->child_mutex);
5279 INIT_LIST_HEAD(&event->child_list);
5280
5281 INIT_LIST_HEAD(&event->group_entry);
5282 INIT_LIST_HEAD(&event->event_entry);
5283 INIT_LIST_HEAD(&event->sibling_list);
5284 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005285 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005286
5287 mutex_init(&event->mmap_mutex);
5288
5289 event->cpu = cpu;
5290 event->attr = *attr;
5291 event->group_leader = group_leader;
5292 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005293 event->oncpu = -1;
5294
5295 event->parent = parent_event;
5296
5297 event->ns = get_pid_ns(current->nsproxy->pid_ns);
5298 event->id = atomic64_inc_return(&perf_event_id);
5299
5300 event->state = PERF_EVENT_STATE_INACTIVE;
5301
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005302 if (!overflow_handler && parent_event)
5303 overflow_handler = parent_event->overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005304
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005305 event->overflow_handler = overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005307 if (attr->disabled)
5308 event->state = PERF_EVENT_STATE_OFF;
5309
5310 pmu = NULL;
5311
5312 hwc = &event->hw;
5313 hwc->sample_period = attr->sample_period;
5314 if (attr->freq && attr->sample_freq)
5315 hwc->sample_period = 1;
5316 hwc->last_period = hwc->sample_period;
5317
Peter Zijlstrae7850592010-05-21 14:43:08 +02005318 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005319
5320 /*
5321 * we currently do not support PERF_FORMAT_GROUP on inherited events
5322 */
5323 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
5324 goto done;
5325
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005326 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005327
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005328done:
5329 err = 0;
5330 if (!pmu)
5331 err = -EINVAL;
5332 else if (IS_ERR(pmu))
5333 err = PTR_ERR(pmu);
5334
5335 if (err) {
5336 if (event->ns)
5337 put_pid_ns(event->ns);
5338 kfree(event);
5339 return ERR_PTR(err);
5340 }
5341
5342 event->pmu = pmu;
5343
5344 if (!event->parent) {
5345 atomic_inc(&nr_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01005346 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005347 atomic_inc(&nr_mmap_events);
5348 if (event->attr.comm)
5349 atomic_inc(&nr_comm_events);
5350 if (event->attr.task)
5351 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005352 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
5353 err = get_callchain_buffers();
5354 if (err) {
5355 free_event(event);
5356 return ERR_PTR(err);
5357 }
5358 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005359 }
5360
5361 return event;
5362}
5363
5364static int perf_copy_attr(struct perf_event_attr __user *uattr,
5365 struct perf_event_attr *attr)
5366{
5367 u32 size;
5368 int ret;
5369
5370 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
5371 return -EFAULT;
5372
5373 /*
5374 * zero the full structure, so that a short copy will be nice.
5375 */
5376 memset(attr, 0, sizeof(*attr));
5377
5378 ret = get_user(size, &uattr->size);
5379 if (ret)
5380 return ret;
5381
5382 if (size > PAGE_SIZE) /* silly large */
5383 goto err_size;
5384
5385 if (!size) /* abi compat */
5386 size = PERF_ATTR_SIZE_VER0;
5387
5388 if (size < PERF_ATTR_SIZE_VER0)
5389 goto err_size;
5390
5391 /*
5392 * If we're handed a bigger struct than we know of,
5393 * ensure all the unknown bits are 0 - i.e. new
5394 * user-space does not rely on any kernel feature
5395 * extensions we dont know about yet.
5396 */
5397 if (size > sizeof(*attr)) {
5398 unsigned char __user *addr;
5399 unsigned char __user *end;
5400 unsigned char val;
5401
5402 addr = (void __user *)uattr + sizeof(*attr);
5403 end = (void __user *)uattr + size;
5404
5405 for (; addr < end; addr++) {
5406 ret = get_user(val, addr);
5407 if (ret)
5408 return ret;
5409 if (val)
5410 goto err_size;
5411 }
5412 size = sizeof(*attr);
5413 }
5414
5415 ret = copy_from_user(attr, uattr, size);
5416 if (ret)
5417 return -EFAULT;
5418
5419 /*
5420 * If the type exists, the corresponding creation will verify
5421 * the attr->config.
5422 */
5423 if (attr->type >= PERF_TYPE_MAX)
5424 return -EINVAL;
5425
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05305426 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005427 return -EINVAL;
5428
5429 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
5430 return -EINVAL;
5431
5432 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
5433 return -EINVAL;
5434
5435out:
5436 return ret;
5437
5438err_size:
5439 put_user(sizeof(*attr), &uattr->size);
5440 ret = -E2BIG;
5441 goto out;
5442}
5443
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005444static int
5445perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005446{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005447 struct perf_buffer *buffer = NULL, *old_buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005448 int ret = -EINVAL;
5449
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005450 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005451 goto set;
5452
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005453 /* don't allow circular references */
5454 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005455 goto out;
5456
Peter Zijlstra0f139302010-05-20 14:35:15 +02005457 /*
5458 * Don't allow cross-cpu buffers
5459 */
5460 if (output_event->cpu != event->cpu)
5461 goto out;
5462
5463 /*
5464 * If its not a per-cpu buffer, it must be the same task.
5465 */
5466 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
5467 goto out;
5468
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005469set:
5470 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005471 /* Can't redirect output if we've got an active mmap() */
5472 if (atomic_read(&event->mmap_count))
5473 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005474
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005475 if (output_event) {
5476 /* get the buffer we want to redirect to */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005477 buffer = perf_buffer_get(output_event);
5478 if (!buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005479 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005480 }
5481
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005482 old_buffer = event->buffer;
5483 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005484 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005485unlock:
5486 mutex_unlock(&event->mmap_mutex);
5487
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005488 if (old_buffer)
5489 perf_buffer_put(old_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005490out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005491 return ret;
5492}
5493
5494/**
5495 * sys_perf_event_open - open a performance event, associate it to a task/cpu
5496 *
5497 * @attr_uptr: event_id type attributes for monitoring/sampling
5498 * @pid: target pid
5499 * @cpu: target cpu
5500 * @group_fd: group leader event fd
5501 */
5502SYSCALL_DEFINE5(perf_event_open,
5503 struct perf_event_attr __user *, attr_uptr,
5504 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
5505{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005506 struct perf_event *group_leader = NULL, *output_event = NULL;
5507 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005508 struct perf_event_attr attr;
5509 struct perf_event_context *ctx;
5510 struct file *event_file = NULL;
5511 struct file *group_file = NULL;
Matt Helsley38a81da2010-09-13 13:01:20 -07005512 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005513 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04005514 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005515 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005516 int fput_needed = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005517 int err;
5518
5519 /* for future expandability... */
5520 if (flags & ~(PERF_FLAG_FD_NO_GROUP | PERF_FLAG_FD_OUTPUT))
5521 return -EINVAL;
5522
5523 err = perf_copy_attr(attr_uptr, &attr);
5524 if (err)
5525 return err;
5526
5527 if (!attr.exclude_kernel) {
5528 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
5529 return -EACCES;
5530 }
5531
5532 if (attr.freq) {
5533 if (attr.sample_freq > sysctl_perf_event_sample_rate)
5534 return -EINVAL;
5535 }
5536
Al Viroea635c62010-05-26 17:40:29 -04005537 event_fd = get_unused_fd_flags(O_RDWR);
5538 if (event_fd < 0)
5539 return event_fd;
5540
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005541 if (group_fd != -1) {
5542 group_leader = perf_fget_light(group_fd, &fput_needed);
5543 if (IS_ERR(group_leader)) {
5544 err = PTR_ERR(group_leader);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02005545 goto err_fd;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005546 }
5547 group_file = group_leader->filp;
5548 if (flags & PERF_FLAG_FD_OUTPUT)
5549 output_event = group_leader;
5550 if (flags & PERF_FLAG_FD_NO_GROUP)
5551 group_leader = NULL;
5552 }
5553
Stephane Eraniand14b12d2010-09-17 11:28:47 +02005554 event = perf_event_alloc(&attr, cpu, group_leader, NULL, NULL);
5555 if (IS_ERR(event)) {
5556 err = PTR_ERR(event);
5557 goto err_fd;
5558 }
5559
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005560 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005561 * Special case software events and allow them to be part of
5562 * any hardware group.
5563 */
5564 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005565
5566 if (group_leader &&
5567 (is_software_event(event) != is_software_event(group_leader))) {
5568 if (is_software_event(event)) {
5569 /*
5570 * If event and group_leader are not both a software
5571 * event, and event is, then group leader is not.
5572 *
5573 * Allow the addition of software events to !software
5574 * groups, this is safe because software events never
5575 * fail to schedule.
5576 */
5577 pmu = group_leader->pmu;
5578 } else if (is_software_event(group_leader) &&
5579 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
5580 /*
5581 * In case the group is a pure software group, and we
5582 * try to add a hardware event, move the whole group to
5583 * the hardware context.
5584 */
5585 move_group = 1;
5586 }
5587 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005588
Stephane Eranian540804b2010-10-04 12:00:02 +02005589 if (pid != -1) {
Matt Helsley38a81da2010-09-13 13:01:20 -07005590 task = find_lively_task_by_vpid(pid);
Stephane Eranian540804b2010-10-04 12:00:02 +02005591 if (IS_ERR(task)) {
5592 err = PTR_ERR(task);
5593 goto err_group_fd;
5594 }
5595 }
Matt Helsley38a81da2010-09-13 13:01:20 -07005596
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005597 /*
5598 * Get the target context (task or percpu):
5599 */
Matt Helsley38a81da2010-09-13 13:01:20 -07005600 ctx = find_get_context(pmu, task, cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005601 if (IS_ERR(ctx)) {
5602 err = PTR_ERR(ctx);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02005603 goto err_task;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005604 }
5605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005606 /*
5607 * Look up the group leader (we will attach this event to it):
5608 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005609 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005610 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005611
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005612 /*
5613 * Do not allow a recursive hierarchy (this new sibling
5614 * becoming part of another group-sibling):
5615 */
5616 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005617 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005618 /*
5619 * Do not allow to attach to a group in a different
5620 * task or CPU context:
5621 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005622 if (move_group) {
5623 if (group_leader->ctx->type != ctx->type)
5624 goto err_context;
5625 } else {
5626 if (group_leader->ctx != ctx)
5627 goto err_context;
5628 }
5629
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005630 /*
5631 * Only a group leader can be exclusive or pinned
5632 */
5633 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005634 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005635 }
5636
5637 if (output_event) {
5638 err = perf_event_set_output(event, output_event);
5639 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005640 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005641 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005642
Al Viroea635c62010-05-26 17:40:29 -04005643 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
5644 if (IS_ERR(event_file)) {
5645 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005646 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04005647 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005648
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005649 if (move_group) {
5650 struct perf_event_context *gctx = group_leader->ctx;
5651
5652 mutex_lock(&gctx->mutex);
5653 perf_event_remove_from_context(group_leader);
5654 list_for_each_entry(sibling, &group_leader->sibling_list,
5655 group_entry) {
5656 perf_event_remove_from_context(sibling);
5657 put_ctx(gctx);
5658 }
5659 mutex_unlock(&gctx->mutex);
5660 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005661 }
5662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005663 event->filp = event_file;
5664 WARN_ON_ONCE(ctx->parent_ctx);
5665 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005666
5667 if (move_group) {
5668 perf_install_in_context(ctx, group_leader, cpu);
5669 get_ctx(ctx);
5670 list_for_each_entry(sibling, &group_leader->sibling_list,
5671 group_entry) {
5672 perf_install_in_context(ctx, sibling, cpu);
5673 get_ctx(ctx);
5674 }
5675 }
5676
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005677 perf_install_in_context(ctx, event, cpu);
5678 ++ctx->generation;
5679 mutex_unlock(&ctx->mutex);
5680
5681 event->owner = current;
5682 get_task_struct(current);
5683 mutex_lock(&current->perf_event_mutex);
5684 list_add_tail(&event->owner_entry, &current->perf_event_list);
5685 mutex_unlock(&current->perf_event_mutex);
5686
Peter Zijlstra8a495422010-05-27 15:47:49 +02005687 /*
5688 * Drop the reference on the group_event after placing the
5689 * new event on the sibling_list. This ensures destruction
5690 * of the group leader will find the pointer to itself in
5691 * perf_group_detach().
5692 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005693 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04005694 fd_install(event_fd, event_file);
5695 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005696
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005697err_context:
Al Viroea635c62010-05-26 17:40:29 -04005698 put_ctx(ctx);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02005699err_task:
5700 if (task)
5701 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005702err_group_fd:
5703 fput_light(group_file, fput_needed);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005704 free_event(event);
Al Viroea635c62010-05-26 17:40:29 -04005705err_fd:
5706 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707 return err;
5708}
5709
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005710/**
5711 * perf_event_create_kernel_counter
5712 *
5713 * @attr: attributes of the counter to create
5714 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07005715 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005716 */
5717struct perf_event *
5718perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07005719 struct task_struct *task,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005720 perf_overflow_handler_t overflow_handler)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005721{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005722 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005723 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005724 int err;
5725
5726 /*
5727 * Get the target context (task or percpu):
5728 */
5729
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005730 event = perf_event_alloc(attr, cpu, NULL, NULL, overflow_handler);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005731 if (IS_ERR(event)) {
5732 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005733 goto err;
5734 }
5735
Matt Helsley38a81da2010-09-13 13:01:20 -07005736 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005737 if (IS_ERR(ctx)) {
5738 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005739 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005740 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005741
5742 event->filp = NULL;
5743 WARN_ON_ONCE(ctx->parent_ctx);
5744 mutex_lock(&ctx->mutex);
5745 perf_install_in_context(ctx, event, cpu);
5746 ++ctx->generation;
5747 mutex_unlock(&ctx->mutex);
5748
5749 event->owner = current;
5750 get_task_struct(current);
5751 mutex_lock(&current->perf_event_mutex);
5752 list_add_tail(&event->owner_entry, &current->perf_event_list);
5753 mutex_unlock(&current->perf_event_mutex);
5754
5755 return event;
5756
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005757err_free:
5758 free_event(event);
5759err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005760 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005761}
5762EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
5763
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005764static void sync_child_event(struct perf_event *child_event,
5765 struct task_struct *child)
5766{
5767 struct perf_event *parent_event = child_event->parent;
5768 u64 child_val;
5769
5770 if (child_event->attr.inherit_stat)
5771 perf_event_read_event(child_event, child);
5772
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005773 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005774
5775 /*
5776 * Add back the child's count to the parent's count:
5777 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02005778 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005779 atomic64_add(child_event->total_time_enabled,
5780 &parent_event->child_total_time_enabled);
5781 atomic64_add(child_event->total_time_running,
5782 &parent_event->child_total_time_running);
5783
5784 /*
5785 * Remove this event from the parent's list
5786 */
5787 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
5788 mutex_lock(&parent_event->child_mutex);
5789 list_del_init(&child_event->child_list);
5790 mutex_unlock(&parent_event->child_mutex);
5791
5792 /*
5793 * Release the parent event, if this was the last
5794 * reference to it.
5795 */
5796 fput(parent_event->filp);
5797}
5798
5799static void
5800__perf_event_exit_task(struct perf_event *child_event,
5801 struct perf_event_context *child_ctx,
5802 struct task_struct *child)
5803{
5804 struct perf_event *parent_event;
5805
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005806 perf_event_remove_from_context(child_event);
5807
5808 parent_event = child_event->parent;
5809 /*
5810 * It can happen that parent exits first, and has events
5811 * that are still around due to the child reference. These
5812 * events need to be zapped - but otherwise linger.
5813 */
5814 if (parent_event) {
5815 sync_child_event(child_event, child);
5816 free_event(child_event);
5817 }
5818}
5819
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005820static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005821{
5822 struct perf_event *child_event, *tmp;
5823 struct perf_event_context *child_ctx;
5824 unsigned long flags;
5825
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005826 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005827 perf_event_task(child, NULL, 0);
5828 return;
5829 }
5830
5831 local_irq_save(flags);
5832 /*
5833 * We can't reschedule here because interrupts are disabled,
5834 * and either child is current or it is a task that can't be
5835 * scheduled, so we are now safe from rescheduling changing
5836 * our context.
5837 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005838 child_ctx = child->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005839 __perf_event_task_sched_out(child_ctx);
5840
5841 /*
5842 * Take the context lock here so that if find_get_context is
5843 * reading child->perf_event_ctxp, we wait until it has
5844 * incremented the context's refcount before we do put_ctx below.
5845 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01005846 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005847 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005848 /*
5849 * If this context is a clone; unclone it so it can't get
5850 * swapped to another process while we're removing all
5851 * the events from it.
5852 */
5853 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01005854 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01005855 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005856
5857 /*
5858 * Report the task dead after unscheduling the events so that we
5859 * won't get any samples after PERF_RECORD_EXIT. We can however still
5860 * get a few PERF_RECORD_READ events.
5861 */
5862 perf_event_task(child, child_ctx, 0);
5863
5864 /*
5865 * We can recurse on the same lock type through:
5866 *
5867 * __perf_event_exit_task()
5868 * sync_child_event()
5869 * fput(parent_event->filp)
5870 * perf_release()
5871 * mutex_lock(&ctx->mutex)
5872 *
5873 * But since its the parent context it won't be the same instance.
5874 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02005875 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005876
5877again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005878 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
5879 group_entry)
5880 __perf_event_exit_task(child_event, child_ctx, child);
5881
5882 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005883 group_entry)
5884 __perf_event_exit_task(child_event, child_ctx, child);
5885
5886 /*
5887 * If the last event was a group event, it will have appended all
5888 * its siblings to the list, but we obtained 'tmp' before that which
5889 * will still point to the list head terminating the iteration.
5890 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005891 if (!list_empty(&child_ctx->pinned_groups) ||
5892 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005893 goto again;
5894
5895 mutex_unlock(&child_ctx->mutex);
5896
5897 put_ctx(child_ctx);
5898}
5899
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005900/*
5901 * When a child task exits, feed back event values to parent events.
5902 */
5903void perf_event_exit_task(struct task_struct *child)
5904{
5905 int ctxn;
5906
5907 for_each_task_context_nr(ctxn)
5908 perf_event_exit_task_context(child, ctxn);
5909}
5910
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005911static void perf_free_event(struct perf_event *event,
5912 struct perf_event_context *ctx)
5913{
5914 struct perf_event *parent = event->parent;
5915
5916 if (WARN_ON_ONCE(!parent))
5917 return;
5918
5919 mutex_lock(&parent->child_mutex);
5920 list_del_init(&event->child_list);
5921 mutex_unlock(&parent->child_mutex);
5922
5923 fput(parent->filp);
5924
Peter Zijlstra8a495422010-05-27 15:47:49 +02005925 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005926 list_del_event(event, ctx);
5927 free_event(event);
5928}
5929
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005930/*
5931 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005932 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005933 */
5934void perf_event_free_task(struct task_struct *task)
5935{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005936 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005938 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005939
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005940 for_each_task_context_nr(ctxn) {
5941 ctx = task->perf_event_ctxp[ctxn];
5942 if (!ctx)
5943 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005944
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005945 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005946again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005947 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
5948 group_entry)
5949 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005951 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
5952 group_entry)
5953 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005954
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005955 if (!list_empty(&ctx->pinned_groups) ||
5956 !list_empty(&ctx->flexible_groups))
5957 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005958
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005959 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005960
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005961 put_ctx(ctx);
5962 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005963}
5964
Peter Zijlstra4e231c72010-09-09 21:01:59 +02005965void perf_event_delayed_put(struct task_struct *task)
5966{
5967 int ctxn;
5968
5969 for_each_task_context_nr(ctxn)
5970 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
5971}
5972
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02005973/*
5974 * inherit a event from parent task to child task:
5975 */
5976static struct perf_event *
5977inherit_event(struct perf_event *parent_event,
5978 struct task_struct *parent,
5979 struct perf_event_context *parent_ctx,
5980 struct task_struct *child,
5981 struct perf_event *group_leader,
5982 struct perf_event_context *child_ctx)
5983{
5984 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02005985 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02005986
5987 /*
5988 * Instead of creating recursive hierarchies of events,
5989 * we link inherited events back to the original parent,
5990 * which has a filp for sure, which we use as the reference
5991 * count:
5992 */
5993 if (parent_event->parent)
5994 parent_event = parent_event->parent;
5995
5996 child_event = perf_event_alloc(&parent_event->attr,
5997 parent_event->cpu,
5998 group_leader, parent_event,
5999 NULL);
6000 if (IS_ERR(child_event))
6001 return child_event;
6002 get_ctx(child_ctx);
6003
6004 /*
6005 * Make the child state follow the state of the parent event,
6006 * not its attr.disabled bit. We hold the parent's mutex,
6007 * so we won't race with perf_event_{en, dis}able_family.
6008 */
6009 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
6010 child_event->state = PERF_EVENT_STATE_INACTIVE;
6011 else
6012 child_event->state = PERF_EVENT_STATE_OFF;
6013
6014 if (parent_event->attr.freq) {
6015 u64 sample_period = parent_event->hw.sample_period;
6016 struct hw_perf_event *hwc = &child_event->hw;
6017
6018 hwc->sample_period = sample_period;
6019 hwc->last_period = sample_period;
6020
6021 local64_set(&hwc->period_left, sample_period);
6022 }
6023
6024 child_event->ctx = child_ctx;
6025 child_event->overflow_handler = parent_event->overflow_handler;
6026
6027 /*
6028 * Link it up in the child's context:
6029 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02006030 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006031 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02006032 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006033
6034 /*
6035 * Get a reference to the parent filp - we will fput it
6036 * when the child event exits. This is safe to do because
6037 * we are in the parent and we know that the filp still
6038 * exists and has a nonzero count:
6039 */
6040 atomic_long_inc(&parent_event->filp->f_count);
6041
6042 /*
6043 * Link this into the parent event's child list
6044 */
6045 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6046 mutex_lock(&parent_event->child_mutex);
6047 list_add_tail(&child_event->child_list, &parent_event->child_list);
6048 mutex_unlock(&parent_event->child_mutex);
6049
6050 return child_event;
6051}
6052
6053static int inherit_group(struct perf_event *parent_event,
6054 struct task_struct *parent,
6055 struct perf_event_context *parent_ctx,
6056 struct task_struct *child,
6057 struct perf_event_context *child_ctx)
6058{
6059 struct perf_event *leader;
6060 struct perf_event *sub;
6061 struct perf_event *child_ctr;
6062
6063 leader = inherit_event(parent_event, parent, parent_ctx,
6064 child, NULL, child_ctx);
6065 if (IS_ERR(leader))
6066 return PTR_ERR(leader);
6067 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
6068 child_ctr = inherit_event(sub, parent, parent_ctx,
6069 child, leader, child_ctx);
6070 if (IS_ERR(child_ctr))
6071 return PTR_ERR(child_ctr);
6072 }
6073 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006074}
6075
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006076static int
6077inherit_task_group(struct perf_event *event, struct task_struct *parent,
6078 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006079 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006080 int *inherited_all)
6081{
6082 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006083 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006084
6085 if (!event->attr.inherit) {
6086 *inherited_all = 0;
6087 return 0;
6088 }
6089
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006090 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006091 if (!child_ctx) {
6092 /*
6093 * This is executed from the parent task context, so
6094 * inherit events that have been marked for cloning.
6095 * First allocate and initialize a context for the
6096 * child.
6097 */
6098
Peter Zijlstraeb184472010-09-07 15:55:13 +02006099 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006100 if (!child_ctx)
6101 return -ENOMEM;
6102
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006103 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006104 }
6105
6106 ret = inherit_group(event, parent, parent_ctx,
6107 child, child_ctx);
6108
6109 if (ret)
6110 *inherited_all = 0;
6111
6112 return ret;
6113}
6114
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006115/*
6116 * Initialize the perf_event context in task_struct
6117 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006118int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006119{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006120 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006121 struct perf_event_context *cloned_ctx;
6122 struct perf_event *event;
6123 struct task_struct *parent = current;
6124 int inherited_all = 1;
6125 int ret = 0;
6126
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006127 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006128
6129 mutex_init(&child->perf_event_mutex);
6130 INIT_LIST_HEAD(&child->perf_event_list);
6131
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006132 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006133 return 0;
6134
6135 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006136 * If the parent's context is a clone, pin it so it won't get
6137 * swapped under us.
6138 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006139 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006140
6141 /*
6142 * No need to check if parent_ctx != NULL here; since we saw
6143 * it non-NULL earlier, the only reason for it to become NULL
6144 * is if we exit, and since we're currently in the middle of
6145 * a fork we can't be exiting at the same time.
6146 */
6147
6148 /*
6149 * Lock the parent list. No need to lock the child - not PID
6150 * hashed yet and not running, so nobody can access it.
6151 */
6152 mutex_lock(&parent_ctx->mutex);
6153
6154 /*
6155 * We dont have to disable NMIs - we are only looking at
6156 * the list, not manipulating it:
6157 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006158 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006159 ret = inherit_task_group(event, parent, parent_ctx,
6160 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006161 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006162 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006163 }
6164
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006165 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006166 ret = inherit_task_group(event, parent, parent_ctx,
6167 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006168 if (ret)
6169 break;
6170 }
6171
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006172 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006173
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01006174 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006175 /*
6176 * Mark the child context as a clone of the parent
6177 * context, or of whatever the parent is a clone of.
6178 * Note that if the parent is a clone, it could get
6179 * uncloned at any point, but that doesn't matter
6180 * because the list of events and the generation
6181 * count can't have changed since we took the mutex.
6182 */
6183 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
6184 if (cloned_ctx) {
6185 child_ctx->parent_ctx = cloned_ctx;
6186 child_ctx->parent_gen = parent_ctx->parent_gen;
6187 } else {
6188 child_ctx->parent_ctx = parent_ctx;
6189 child_ctx->parent_gen = parent_ctx->generation;
6190 }
6191 get_ctx(child_ctx->parent_ctx);
6192 }
6193
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006194 mutex_unlock(&parent_ctx->mutex);
6195
6196 perf_unpin_context(parent_ctx);
6197
6198 return ret;
6199}
6200
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006201/*
6202 * Initialize the perf_event context in task_struct
6203 */
6204int perf_event_init_task(struct task_struct *child)
6205{
6206 int ctxn, ret;
6207
6208 for_each_task_context_nr(ctxn) {
6209 ret = perf_event_init_context(child, ctxn);
6210 if (ret)
6211 return ret;
6212 }
6213
6214 return 0;
6215}
6216
Paul Mackerras220b1402010-03-10 20:45:52 +11006217static void __init perf_event_init_all_cpus(void)
6218{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006219 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11006220 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11006221
6222 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006223 swhash = &per_cpu(swevent_htable, cpu);
6224 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006225 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11006226 }
6227}
6228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006229static void __cpuinit perf_event_init_cpu(int cpu)
6230{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006231 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006232
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006233 mutex_lock(&swhash->hlist_mutex);
6234 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006235 struct swevent_hlist *hlist;
6236
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006237 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
6238 WARN_ON(!hlist);
6239 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006240 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006241 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006242}
6243
6244#ifdef CONFIG_HOTPLUG_CPU
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006245static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006246{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006247 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
6248
6249 WARN_ON(!irqs_disabled());
6250
6251 list_del_init(&cpuctx->rotation_list);
6252}
6253
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006254static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006255{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006256 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006257 struct perf_event *event, *tmp;
6258
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006259 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006260
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006261 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
6262 __perf_event_remove_from_context(event);
6263 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006264 __perf_event_remove_from_context(event);
6265}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006266
6267static void perf_event_exit_cpu_context(int cpu)
6268{
6269 struct perf_event_context *ctx;
6270 struct pmu *pmu;
6271 int idx;
6272
6273 idx = srcu_read_lock(&pmus_srcu);
6274 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02006275 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006276
6277 mutex_lock(&ctx->mutex);
6278 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
6279 mutex_unlock(&ctx->mutex);
6280 }
6281 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006282}
6283
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006284static void perf_event_exit_cpu(int cpu)
6285{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006286 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006287
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006288 mutex_lock(&swhash->hlist_mutex);
6289 swevent_hlist_release(swhash);
6290 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006291
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006292 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006293}
6294#else
6295static inline void perf_event_exit_cpu(int cpu) { }
6296#endif
6297
6298static int __cpuinit
6299perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
6300{
6301 unsigned int cpu = (long)hcpu;
6302
Peter Zijlstra5e116372010-06-11 13:35:08 +02006303 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006304
6305 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02006306 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006307 perf_event_init_cpu(cpu);
6308 break;
6309
Peter Zijlstra5e116372010-06-11 13:35:08 +02006310 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006311 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006312 perf_event_exit_cpu(cpu);
6313 break;
6314
6315 default:
6316 break;
6317 }
6318
6319 return NOTIFY_OK;
6320}
6321
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006322void __init perf_event_init(void)
6323{
Paul Mackerras220b1402010-03-10 20:45:52 +11006324 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006325 init_srcu_struct(&pmus_srcu);
6326 perf_pmu_register(&perf_swevent);
6327 perf_pmu_register(&perf_cpu_clock);
6328 perf_pmu_register(&perf_task_clock);
6329 perf_tp_register();
6330 perf_cpu_notifier(perf_cpu_notify);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006331}