blob: aede71245e9f9594a47a4165787f2485ba530f1d [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>
Jason Wessel3c502e72010-11-04 17:33:01 -050034#include <linux/hw_breakpoint.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020035
36#include <asm/irq_regs.h>
37
Peter Zijlstra82cd6de2010-10-14 17:57:23 +020038atomic_t perf_task_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020039static atomic_t nr_mmap_events __read_mostly;
40static atomic_t nr_comm_events __read_mostly;
41static atomic_t nr_task_events __read_mostly;
42
Peter Zijlstra108b02c2010-09-06 14:32:03 +020043static LIST_HEAD(pmus);
44static DEFINE_MUTEX(pmus_lock);
45static struct srcu_struct pmus_srcu;
46
Ingo Molnarcdd6c482009-09-21 12:02:48 +020047/*
48 * perf event paranoia level:
49 * -1 - not paranoid at all
50 * 0 - disallow raw tracepoint access for unpriv
51 * 1 - disallow cpu events for unpriv
52 * 2 - disallow kernel profiling for unpriv
53 */
54int sysctl_perf_event_paranoid __read_mostly = 1;
55
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056int sysctl_perf_event_mlock __read_mostly = 512; /* 'free' kb per user */
57
58/*
59 * max perf event sample rate
60 */
61int sysctl_perf_event_sample_rate __read_mostly = 100000;
62
63static atomic64_t perf_event_id;
64
Ingo Molnarcdd6c482009-09-21 12:02:48 +020065void __weak perf_event_print_debug(void) { }
66
Matt Fleming84c79912010-10-03 21:41:13 +010067extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020068{
Matt Fleming84c79912010-10-03 21:41:13 +010069 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +020070}
71
Peter Zijlstra33696fc2010-06-14 08:49:00 +020072void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020073{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020074 int *count = this_cpu_ptr(pmu->pmu_disable_count);
75 if (!(*count)++)
76 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020077}
78
Peter Zijlstra33696fc2010-06-14 08:49:00 +020079void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +020080{
Peter Zijlstra33696fc2010-06-14 08:49:00 +020081 int *count = this_cpu_ptr(pmu->pmu_disable_count);
82 if (!--(*count))
83 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +020084}
85
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020086static DEFINE_PER_CPU(struct list_head, rotation_list);
87
88/*
89 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
90 * because they're strictly cpu affine and rotate_start is called with IRQs
91 * disabled, while rotate_context is called from IRQ context.
92 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +020093static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020094{
Peter Zijlstra108b02c2010-09-06 14:32:03 +020095 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020096 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020097
Peter Zijlstrae9d2b062010-09-17 11:28:50 +020098 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +020099
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200100 if (list_empty(&cpuctx->rotation_list))
101 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200102}
103
104static void get_ctx(struct perf_event_context *ctx)
105{
106 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
107}
108
109static void free_ctx(struct rcu_head *head)
110{
111 struct perf_event_context *ctx;
112
113 ctx = container_of(head, struct perf_event_context, rcu_head);
114 kfree(ctx);
115}
116
117static void put_ctx(struct perf_event_context *ctx)
118{
119 if (atomic_dec_and_test(&ctx->refcount)) {
120 if (ctx->parent_ctx)
121 put_ctx(ctx->parent_ctx);
122 if (ctx->task)
123 put_task_struct(ctx->task);
124 call_rcu(&ctx->rcu_head, free_ctx);
125 }
126}
127
128static void unclone_ctx(struct perf_event_context *ctx)
129{
130 if (ctx->parent_ctx) {
131 put_ctx(ctx->parent_ctx);
132 ctx->parent_ctx = NULL;
133 }
134}
135
136/*
137 * If we inherit events we want to return the parent event id
138 * to userspace.
139 */
140static u64 primary_event_id(struct perf_event *event)
141{
142 u64 id = event->id;
143
144 if (event->parent)
145 id = event->parent->id;
146
147 return id;
148}
149
150/*
151 * Get the perf_event_context for a task and lock it.
152 * This has to cope with with the fact that until it is locked,
153 * the context could get moved to another task.
154 */
155static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200156perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200157{
158 struct perf_event_context *ctx;
159
160 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200161retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200162 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200163 if (ctx) {
164 /*
165 * If this context is a clone of another, it might
166 * get swapped for another underneath us by
167 * perf_event_task_sched_out, though the
168 * rcu_read_lock() protects us from any context
169 * getting freed. Lock the context and check if it
170 * got swapped before we could get the lock, and retry
171 * if so. If we locked the right context, then it
172 * can't get swapped on us any more.
173 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100174 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200175 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100176 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200177 goto retry;
178 }
179
180 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100181 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200182 ctx = NULL;
183 }
184 }
185 rcu_read_unlock();
186 return ctx;
187}
188
189/*
190 * Get the context for a task and increment its pin_count so it
191 * can't get swapped to another task. This also increments its
192 * reference count so that the context can't get freed.
193 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200194static struct perf_event_context *
195perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200196{
197 struct perf_event_context *ctx;
198 unsigned long flags;
199
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200200 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200201 if (ctx) {
202 ++ctx->pin_count;
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100203 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200204 }
205 return ctx;
206}
207
208static void perf_unpin_context(struct perf_event_context *ctx)
209{
210 unsigned long flags;
211
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100212 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200213 --ctx->pin_count;
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100214 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200215 put_ctx(ctx);
216}
217
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100218static inline u64 perf_clock(void)
219{
Peter Zijlstrac6763292010-05-25 10:48:51 +0200220 return local_clock();
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100221}
222
223/*
224 * Update the record of the current time in a context.
225 */
226static void update_context_time(struct perf_event_context *ctx)
227{
228 u64 now = perf_clock();
229
230 ctx->time += now - ctx->timestamp;
231 ctx->timestamp = now;
232}
233
234/*
235 * Update the total_time_enabled and total_time_running fields for a event.
236 */
237static void update_event_times(struct perf_event *event)
238{
239 struct perf_event_context *ctx = event->ctx;
240 u64 run_end;
241
242 if (event->state < PERF_EVENT_STATE_INACTIVE ||
243 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
244 return;
245
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100246 if (ctx->is_active)
247 run_end = ctx->time;
248 else
249 run_end = event->tstamp_stopped;
250
251 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100252
253 if (event->state == PERF_EVENT_STATE_INACTIVE)
254 run_end = event->tstamp_stopped;
255 else
256 run_end = ctx->time;
257
258 event->total_time_running = run_end - event->tstamp_running;
259}
260
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200261/*
262 * Update total_time_enabled and total_time_running for all events in a group.
263 */
264static void update_group_times(struct perf_event *leader)
265{
266 struct perf_event *event;
267
268 update_event_times(leader);
269 list_for_each_entry(event, &leader->sibling_list, group_entry)
270 update_event_times(event);
271}
272
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100273static struct list_head *
274ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
275{
276 if (event->attr.pinned)
277 return &ctx->pinned_groups;
278 else
279 return &ctx->flexible_groups;
280}
281
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200282/*
283 * Add a event from the lists for its context.
284 * Must be called with ctx->mutex and ctx->lock held.
285 */
286static void
287list_add_event(struct perf_event *event, struct perf_event_context *ctx)
288{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200289 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
290 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200291
292 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200293 * If we're a stand alone event or group leader, we go to the context
294 * list, group events are kept attached to the group so that
295 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200296 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200297 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100298 struct list_head *list;
299
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100300 if (is_software_event(event))
301 event->group_flags |= PERF_GROUP_SOFTWARE;
302
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100303 list = ctx_group_list(event, ctx);
304 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200305 }
306
307 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200308 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200309 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200310 ctx->nr_events++;
311 if (event->attr.inherit_stat)
312 ctx->nr_stat++;
313}
314
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200315/*
316 * Called at perf_event creation and when events are attached/detached from a
317 * group.
318 */
319static void perf_event__read_size(struct perf_event *event)
320{
321 int entry = sizeof(u64); /* value */
322 int size = 0;
323 int nr = 1;
324
325 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
326 size += sizeof(u64);
327
328 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
329 size += sizeof(u64);
330
331 if (event->attr.read_format & PERF_FORMAT_ID)
332 entry += sizeof(u64);
333
334 if (event->attr.read_format & PERF_FORMAT_GROUP) {
335 nr += event->group_leader->nr_siblings;
336 size += sizeof(u64);
337 }
338
339 size += entry * nr;
340 event->read_size = size;
341}
342
343static void perf_event__header_size(struct perf_event *event)
344{
345 struct perf_sample_data *data;
346 u64 sample_type = event->attr.sample_type;
347 u16 size = 0;
348
349 perf_event__read_size(event);
350
351 if (sample_type & PERF_SAMPLE_IP)
352 size += sizeof(data->ip);
353
354 if (sample_type & PERF_SAMPLE_TID)
355 size += sizeof(data->tid_entry);
356
357 if (sample_type & PERF_SAMPLE_TIME)
358 size += sizeof(data->time);
359
360 if (sample_type & PERF_SAMPLE_ADDR)
361 size += sizeof(data->addr);
362
363 if (sample_type & PERF_SAMPLE_ID)
364 size += sizeof(data->id);
365
366 if (sample_type & PERF_SAMPLE_STREAM_ID)
367 size += sizeof(data->stream_id);
368
369 if (sample_type & PERF_SAMPLE_CPU)
370 size += sizeof(data->cpu_entry);
371
372 if (sample_type & PERF_SAMPLE_PERIOD)
373 size += sizeof(data->period);
374
375 if (sample_type & PERF_SAMPLE_READ)
376 size += event->read_size;
377
378 event->header_size = size;
379}
380
Peter Zijlstra8a495422010-05-27 15:47:49 +0200381static void perf_group_attach(struct perf_event *event)
382{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200383 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200384
Peter Zijlstra74c33372010-10-15 11:40:29 +0200385 /*
386 * We can have double attach due to group movement in perf_event_open.
387 */
388 if (event->attach_state & PERF_ATTACH_GROUP)
389 return;
390
Peter Zijlstra8a495422010-05-27 15:47:49 +0200391 event->attach_state |= PERF_ATTACH_GROUP;
392
393 if (group_leader == event)
394 return;
395
396 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
397 !is_software_event(event))
398 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
399
400 list_add_tail(&event->group_entry, &group_leader->sibling_list);
401 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200402
403 perf_event__header_size(group_leader);
404
405 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
406 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200407}
408
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200409/*
410 * Remove a event from the lists for its context.
411 * Must be called with ctx->mutex and ctx->lock held.
412 */
413static void
414list_del_event(struct perf_event *event, struct perf_event_context *ctx)
415{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200416 /*
417 * We can have double detach due to exit/hot-unplug + close.
418 */
419 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200420 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200421
422 event->attach_state &= ~PERF_ATTACH_CONTEXT;
423
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200424 ctx->nr_events--;
425 if (event->attr.inherit_stat)
426 ctx->nr_stat--;
427
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200428 list_del_rcu(&event->event_entry);
429
Peter Zijlstra8a495422010-05-27 15:47:49 +0200430 if (event->group_leader == event)
431 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200432
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200433 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -0800434
435 /*
436 * If event was in error state, then keep it
437 * that way, otherwise bogus counts will be
438 * returned on read(). The only way to get out
439 * of error state is by explicit re-enabling
440 * of the event
441 */
442 if (event->state > PERF_EVENT_STATE_OFF)
443 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +0200444}
445
Peter Zijlstra8a495422010-05-27 15:47:49 +0200446static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +0200447{
448 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200449 struct list_head *list = NULL;
450
451 /*
452 * We can have double detach due to exit/hot-unplug + close.
453 */
454 if (!(event->attach_state & PERF_ATTACH_GROUP))
455 return;
456
457 event->attach_state &= ~PERF_ATTACH_GROUP;
458
459 /*
460 * If this is a sibling, remove it from its group.
461 */
462 if (event->group_leader != event) {
463 list_del_init(&event->group_entry);
464 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200465 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200466 }
467
468 if (!list_empty(&event->group_entry))
469 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +0100470
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200471 /*
472 * If this was a group event with sibling events then
473 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +0200474 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200475 */
476 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +0200477 if (list)
478 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200479 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100480
481 /* Inherit group flags from the previous leader */
482 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200483 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200484
485out:
486 perf_event__header_size(event->group_leader);
487
488 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
489 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200490}
491
Stephane Eranianfa66f072010-08-26 16:40:01 +0200492static inline int
493event_filter_match(struct perf_event *event)
494{
495 return event->cpu == -1 || event->cpu == smp_processor_id();
496}
497
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200498static void
499event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200500 struct perf_cpu_context *cpuctx,
501 struct perf_event_context *ctx)
502{
Stephane Eranianfa66f072010-08-26 16:40:01 +0200503 u64 delta;
504 /*
505 * An event which could not be activated because of
506 * filter mismatch still needs to have its timings
507 * maintained, otherwise bogus information is return
508 * via read() for time_enabled, time_running:
509 */
510 if (event->state == PERF_EVENT_STATE_INACTIVE
511 && !event_filter_match(event)) {
512 delta = ctx->time - event->tstamp_stopped;
513 event->tstamp_running += delta;
514 event->tstamp_stopped = ctx->time;
515 }
516
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200517 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200518 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200519
520 event->state = PERF_EVENT_STATE_INACTIVE;
521 if (event->pending_disable) {
522 event->pending_disable = 0;
523 event->state = PERF_EVENT_STATE_OFF;
524 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200525 event->tstamp_stopped = ctx->time;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200526 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200527 event->oncpu = -1;
528
529 if (!is_software_event(event))
530 cpuctx->active_oncpu--;
531 ctx->nr_active--;
532 if (event->attr.exclusive || !cpuctx->active_oncpu)
533 cpuctx->exclusive = 0;
534}
535
536static void
537group_sched_out(struct perf_event *group_event,
538 struct perf_cpu_context *cpuctx,
539 struct perf_event_context *ctx)
540{
541 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +0200542 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200543
544 event_sched_out(group_event, cpuctx, ctx);
545
546 /*
547 * Schedule out siblings (if any):
548 */
549 list_for_each_entry(event, &group_event->sibling_list, group_entry)
550 event_sched_out(event, cpuctx, ctx);
551
Stephane Eranianfa66f072010-08-26 16:40:01 +0200552 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200553 cpuctx->exclusive = 0;
554}
555
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200556static inline struct perf_cpu_context *
557__get_cpu_context(struct perf_event_context *ctx)
558{
559 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
560}
561
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200562/*
563 * Cross CPU call to remove a performance event
564 *
565 * We disable the event on the hardware level first. After that we
566 * remove it from the context list.
567 */
568static void __perf_event_remove_from_context(void *info)
569{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200570 struct perf_event *event = info;
571 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200572 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200573
574 /*
575 * If this is a task context, we need to check whether it is
576 * the current task context of this cpu. If not it has been
577 * scheduled out before the smp call arrived.
578 */
579 if (ctx->task && cpuctx->task_ctx != ctx)
580 return;
581
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100582 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200583
584 event_sched_out(event, cpuctx, ctx);
585
586 list_del_event(event, ctx);
587
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100588 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200589}
590
591
592/*
593 * Remove the event from a task's (or a CPU's) list of events.
594 *
595 * Must be called with ctx->mutex held.
596 *
597 * CPU events are removed with a smp call. For task events we only
598 * call when the task is on a CPU.
599 *
600 * If event->ctx is a cloned context, callers must make sure that
601 * every task struct that event->ctx->task could possibly point to
602 * remains valid. This is OK when called from perf_release since
603 * that only calls us on the top-level context, which can't be a clone.
604 * When called from perf_event_exit_task, it's OK because the
605 * context has been detached from its task.
606 */
607static void perf_event_remove_from_context(struct perf_event *event)
608{
609 struct perf_event_context *ctx = event->ctx;
610 struct task_struct *task = ctx->task;
611
612 if (!task) {
613 /*
614 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200615 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200616 */
617 smp_call_function_single(event->cpu,
618 __perf_event_remove_from_context,
619 event, 1);
620 return;
621 }
622
623retry:
624 task_oncpu_function_call(task, __perf_event_remove_from_context,
625 event);
626
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100627 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200628 /*
629 * If the context is active we need to retry the smp call.
630 */
631 if (ctx->nr_active && !list_empty(&event->group_entry)) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100632 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200633 goto retry;
634 }
635
636 /*
637 * The lock prevents that this context is scheduled in so we
638 * can remove the event safely, if the call above did not
639 * succeed.
640 */
Peter Zijlstra6c2bfcb2009-11-23 11:37:24 +0100641 if (!list_empty(&event->group_entry))
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200642 list_del_event(event, ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100643 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200644}
645
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200646/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200647 * Cross CPU call to disable a performance event
648 */
649static void __perf_event_disable(void *info)
650{
651 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200652 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200653 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200654
655 /*
656 * If this is a per-task event, need to check whether this
657 * event's task is the current task on this cpu.
658 */
659 if (ctx->task && cpuctx->task_ctx != ctx)
660 return;
661
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100662 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200663
664 /*
665 * If the event is on, turn it off.
666 * If it is in error state, leave it in error state.
667 */
668 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
669 update_context_time(ctx);
670 update_group_times(event);
671 if (event == event->group_leader)
672 group_sched_out(event, cpuctx, ctx);
673 else
674 event_sched_out(event, cpuctx, ctx);
675 event->state = PERF_EVENT_STATE_OFF;
676 }
677
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100678 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200679}
680
681/*
682 * Disable a event.
683 *
684 * If event->ctx is a cloned context, callers must make sure that
685 * every task struct that event->ctx->task could possibly point to
686 * remains valid. This condition is satisifed when called through
687 * perf_event_for_each_child or perf_event_for_each because they
688 * hold the top-level event's child_mutex, so any descendant that
689 * goes to exit will block in sync_child_event.
690 * When called from perf_pending_event it's OK because event->ctx
691 * is the current context on this CPU and preemption is disabled,
692 * hence we can't get into perf_event_task_sched_out for this context.
693 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +0100694void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200695{
696 struct perf_event_context *ctx = event->ctx;
697 struct task_struct *task = ctx->task;
698
699 if (!task) {
700 /*
701 * Disable the event on the cpu that it's on
702 */
703 smp_call_function_single(event->cpu, __perf_event_disable,
704 event, 1);
705 return;
706 }
707
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200708retry:
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200709 task_oncpu_function_call(task, __perf_event_disable, event);
710
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100711 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200712 /*
713 * If the event is still active, we need to retry the cross-call.
714 */
715 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100716 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200717 goto retry;
718 }
719
720 /*
721 * Since we have the lock this context can't be scheduled
722 * in, so we can change the state safely.
723 */
724 if (event->state == PERF_EVENT_STATE_INACTIVE) {
725 update_group_times(event);
726 event->state = PERF_EVENT_STATE_OFF;
727 }
728
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100729 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200730}
731
732static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200733event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200734 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100735 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200736{
737 if (event->state <= PERF_EVENT_STATE_OFF)
738 return 0;
739
740 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +0100741 event->oncpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200742 /*
743 * The new state must be visible before we turn it on in the hardware:
744 */
745 smp_wmb();
746
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200747 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200748 event->state = PERF_EVENT_STATE_INACTIVE;
749 event->oncpu = -1;
750 return -EAGAIN;
751 }
752
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200753 event->tstamp_running += ctx->time - event->tstamp_stopped;
754
Stephane Eranianeed01522010-10-26 16:08:01 +0200755 event->shadow_ctx_time = ctx->time - ctx->timestamp;
756
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200757 if (!is_software_event(event))
758 cpuctx->active_oncpu++;
759 ctx->nr_active++;
760
761 if (event->attr.exclusive)
762 cpuctx->exclusive = 1;
763
764 return 0;
765}
766
767static int
768group_sched_in(struct perf_event *group_event,
769 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +0100770 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200771{
Lin Ming6bde9b62010-04-23 13:56:00 +0800772 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200773 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +0200774 u64 now = ctx->time;
775 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200776
777 if (group_event->state == PERF_EVENT_STATE_OFF)
778 return 0;
779
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200780 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +0800781
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200782 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200783 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200784 return -EAGAIN;
Stephane Eranian90151c32010-05-25 16:23:10 +0200785 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200786
787 /*
788 * Schedule in siblings as one group (if any):
789 */
790 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200791 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200792 partial_group = event;
793 goto group_error;
794 }
795 }
796
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200797 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +1000798 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200799
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200800group_error:
801 /*
802 * Groups can be scheduled in as one unit only, so undo any
803 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +0200804 * The events up to the failed event are scheduled out normally,
805 * tstamp_stopped will be updated.
806 *
807 * The failed events and the remaining siblings need to have
808 * their timings updated as if they had gone thru event_sched_in()
809 * and event_sched_out(). This is required to get consistent timings
810 * across the group. This also takes care of the case where the group
811 * could never be scheduled by ensuring tstamp_stopped is set to mark
812 * the time the event was actually stopped, such that time delta
813 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200814 */
815 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
816 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +0200817 simulate = true;
818
819 if (simulate) {
820 event->tstamp_running += now - event->tstamp_stopped;
821 event->tstamp_stopped = now;
822 } else {
823 event_sched_out(event, cpuctx, ctx);
824 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200825 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +0200826 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200827
Peter Zijlstraad5133b2010-06-15 12:22:39 +0200828 pmu->cancel_txn(pmu);
Stephane Eranian90151c32010-05-25 16:23:10 +0200829
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200830 return -EAGAIN;
831}
832
833/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200834 * Work out whether we can put this event group on the CPU now.
835 */
836static int group_can_go_on(struct perf_event *event,
837 struct perf_cpu_context *cpuctx,
838 int can_add_hw)
839{
840 /*
841 * Groups consisting entirely of software events can always go on.
842 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100843 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200844 return 1;
845 /*
846 * If an exclusive group is already on, no other hardware
847 * events can go on.
848 */
849 if (cpuctx->exclusive)
850 return 0;
851 /*
852 * If this group is exclusive and there are already
853 * events on the CPU, it can't go on.
854 */
855 if (event->attr.exclusive && cpuctx->active_oncpu)
856 return 0;
857 /*
858 * Otherwise, try to add it if all previous groups were able
859 * to go on.
860 */
861 return can_add_hw;
862}
863
864static void add_event_to_ctx(struct perf_event *event,
865 struct perf_event_context *ctx)
866{
867 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +0200868 perf_group_attach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200869 event->tstamp_enabled = ctx->time;
870 event->tstamp_running = ctx->time;
871 event->tstamp_stopped = ctx->time;
872}
873
874/*
875 * Cross CPU call to install and enable a performance event
876 *
877 * Must be called with ctx->mutex held
878 */
879static void __perf_install_in_context(void *info)
880{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200881 struct perf_event *event = info;
882 struct perf_event_context *ctx = event->ctx;
883 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200884 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200885 int err;
886
887 /*
888 * If this is a task context, we need to check whether it is
889 * the current task context of this cpu. If not it has been
890 * scheduled out before the smp call arrived.
891 * Or possibly this is the right context but it isn't
892 * on this cpu because it had no events.
893 */
894 if (ctx->task && cpuctx->task_ctx != ctx) {
895 if (cpuctx->task_ctx || ctx->task != current)
896 return;
897 cpuctx->task_ctx = ctx;
898 }
899
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100900 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200901 ctx->is_active = 1;
902 update_context_time(ctx);
903
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200904 add_event_to_ctx(event, ctx);
905
Peter Zijlstraf4c41762009-12-16 17:55:54 +0100906 if (event->cpu != -1 && event->cpu != smp_processor_id())
907 goto unlock;
908
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200909 /*
910 * Don't put the event on if it is disabled or if
911 * it is in a group and the group isn't on.
912 */
913 if (event->state != PERF_EVENT_STATE_INACTIVE ||
914 (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE))
915 goto unlock;
916
917 /*
918 * An exclusive event can't go on if there are already active
919 * hardware events, and no hardware event can go on if there
920 * is already an exclusive event on.
921 */
922 if (!group_can_go_on(event, cpuctx, 1))
923 err = -EEXIST;
924 else
Peter Zijlstra6e377382010-02-11 13:21:58 +0100925 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200926
927 if (err) {
928 /*
929 * This event couldn't go on. If it is in a group
930 * then we have to pull the whole group off.
931 * If the event group is pinned then put it in error state.
932 */
933 if (leader != event)
934 group_sched_out(leader, cpuctx, ctx);
935 if (leader->attr.pinned) {
936 update_group_times(leader);
937 leader->state = PERF_EVENT_STATE_ERROR;
938 }
939 }
940
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200941unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100942 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200943}
944
945/*
946 * Attach a performance event to a context
947 *
948 * First we add the event to the list with the hardware enable bit
949 * in event->hw_config cleared.
950 *
951 * If the event is attached to a task which is on a CPU we use a smp
952 * call to enable it in the task context. The task might have been
953 * scheduled away, but we check this in the smp call again.
954 *
955 * Must be called with ctx->mutex held.
956 */
957static void
958perf_install_in_context(struct perf_event_context *ctx,
959 struct perf_event *event,
960 int cpu)
961{
962 struct task_struct *task = ctx->task;
963
Peter Zijlstrac3f00c72010-08-18 14:37:15 +0200964 event->ctx = ctx;
965
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200966 if (!task) {
967 /*
968 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200969 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200970 */
971 smp_call_function_single(cpu, __perf_install_in_context,
972 event, 1);
973 return;
974 }
975
976retry:
977 task_oncpu_function_call(task, __perf_install_in_context,
978 event);
979
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100980 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200981 /*
982 * we need to retry the smp call.
983 */
984 if (ctx->is_active && list_empty(&event->group_entry)) {
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100985 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200986 goto retry;
987 }
988
989 /*
990 * The lock prevents that this context is scheduled in so we
991 * can add the event safely, if it the call above did not
992 * succeed.
993 */
994 if (list_empty(&event->group_entry))
995 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +0100996 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200997}
998
999/*
1000 * Put a event into inactive state and update time fields.
1001 * Enabling the leader of a group effectively enables all
1002 * the group members that aren't explicitly disabled, so we
1003 * have to update their ->tstamp_enabled also.
1004 * Note: this works for group members as well as group leaders
1005 * since the non-leader members' sibling_lists will be empty.
1006 */
1007static void __perf_event_mark_enabled(struct perf_event *event,
1008 struct perf_event_context *ctx)
1009{
1010 struct perf_event *sub;
1011
1012 event->state = PERF_EVENT_STATE_INACTIVE;
1013 event->tstamp_enabled = ctx->time - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001014 list_for_each_entry(sub, &event->sibling_list, group_entry) {
1015 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001016 sub->tstamp_enabled =
1017 ctx->time - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001018 }
1019 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001020}
1021
1022/*
1023 * Cross CPU call to enable a performance event
1024 */
1025static void __perf_event_enable(void *info)
1026{
1027 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001028 struct perf_event_context *ctx = event->ctx;
1029 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001030 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001031 int err;
1032
1033 /*
1034 * If this is a per-task event, need to check whether this
1035 * event's task is the current task on this cpu.
1036 */
1037 if (ctx->task && cpuctx->task_ctx != ctx) {
1038 if (cpuctx->task_ctx || ctx->task != current)
1039 return;
1040 cpuctx->task_ctx = ctx;
1041 }
1042
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001043 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001044 ctx->is_active = 1;
1045 update_context_time(ctx);
1046
1047 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1048 goto unlock;
1049 __perf_event_mark_enabled(event, ctx);
1050
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001051 if (event->cpu != -1 && event->cpu != smp_processor_id())
1052 goto unlock;
1053
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001054 /*
1055 * If the event is in a group and isn't the group leader,
1056 * then don't put it on unless the group is on.
1057 */
1058 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1059 goto unlock;
1060
1061 if (!group_can_go_on(event, cpuctx, 1)) {
1062 err = -EEXIST;
1063 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001064 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001065 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001066 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001067 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001068 }
1069
1070 if (err) {
1071 /*
1072 * If this event can't go on and it's part of a
1073 * group, then the whole group has to come off.
1074 */
1075 if (leader != event)
1076 group_sched_out(leader, cpuctx, ctx);
1077 if (leader->attr.pinned) {
1078 update_group_times(leader);
1079 leader->state = PERF_EVENT_STATE_ERROR;
1080 }
1081 }
1082
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001083unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001084 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001085}
1086
1087/*
1088 * Enable a event.
1089 *
1090 * If event->ctx is a cloned context, callers must make sure that
1091 * every task struct that event->ctx->task could possibly point to
1092 * remains valid. This condition is satisfied when called through
1093 * perf_event_for_each_child or perf_event_for_each as described
1094 * for perf_event_disable.
1095 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001096void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001097{
1098 struct perf_event_context *ctx = event->ctx;
1099 struct task_struct *task = ctx->task;
1100
1101 if (!task) {
1102 /*
1103 * Enable the event on the cpu that it's on
1104 */
1105 smp_call_function_single(event->cpu, __perf_event_enable,
1106 event, 1);
1107 return;
1108 }
1109
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001110 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1112 goto out;
1113
1114 /*
1115 * If the event is in error state, clear that first.
1116 * That way, if we see the event in error state below, we
1117 * know that it has gone back into error state, as distinct
1118 * from the task having been scheduled away before the
1119 * cross-call arrived.
1120 */
1121 if (event->state == PERF_EVENT_STATE_ERROR)
1122 event->state = PERF_EVENT_STATE_OFF;
1123
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001124retry:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001125 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001126 task_oncpu_function_call(task, __perf_event_enable, event);
1127
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001128 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001129
1130 /*
1131 * If the context is active and the event is still off,
1132 * we need to retry the cross-call.
1133 */
1134 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF)
1135 goto retry;
1136
1137 /*
1138 * Since we have the lock this context can't be scheduled
1139 * in, so we can change the state safely.
1140 */
1141 if (event->state == PERF_EVENT_STATE_OFF)
1142 __perf_event_mark_enabled(event, ctx);
1143
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001144out:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001145 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001146}
1147
1148static int perf_event_refresh(struct perf_event *event, int refresh)
1149{
1150 /*
1151 * not supported on inherited events
1152 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01001153 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001154 return -EINVAL;
1155
1156 atomic_add(refresh, &event->event_limit);
1157 perf_event_enable(event);
1158
1159 return 0;
1160}
1161
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001162enum event_type_t {
1163 EVENT_FLEXIBLE = 0x1,
1164 EVENT_PINNED = 0x2,
1165 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
1166};
1167
1168static void ctx_sched_out(struct perf_event_context *ctx,
1169 struct perf_cpu_context *cpuctx,
1170 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001171{
1172 struct perf_event *event;
1173
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001174 raw_spin_lock(&ctx->lock);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001175 perf_pmu_disable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001176 ctx->is_active = 0;
1177 if (likely(!ctx->nr_events))
1178 goto out;
1179 update_context_time(ctx);
1180
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001181 if (!ctx->nr_active)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001182 goto out;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001183
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001184 if (event_type & EVENT_PINNED) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001185 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1186 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001187 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001188
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001189 if (event_type & EVENT_FLEXIBLE) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001190 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001191 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001192 }
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001193out:
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001194 perf_pmu_enable(ctx->pmu);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001195 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001196}
1197
1198/*
1199 * Test whether two contexts are equivalent, i.e. whether they
1200 * have both been cloned from the same version of the same context
1201 * and they both have the same number of enabled events.
1202 * If the number of enabled events is the same, then the set
1203 * of enabled events should be the same, because these are both
1204 * inherited contexts, therefore we can't access individual events
1205 * in them directly with an fd; we can only enable/disable all
1206 * events via prctl, or enable/disable all events in a family
1207 * via ioctl, which will have the same effect on both contexts.
1208 */
1209static int context_equiv(struct perf_event_context *ctx1,
1210 struct perf_event_context *ctx2)
1211{
1212 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1213 && ctx1->parent_gen == ctx2->parent_gen
1214 && !ctx1->pin_count && !ctx2->pin_count;
1215}
1216
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001217static void __perf_event_sync_stat(struct perf_event *event,
1218 struct perf_event *next_event)
1219{
1220 u64 value;
1221
1222 if (!event->attr.inherit_stat)
1223 return;
1224
1225 /*
1226 * Update the event value, we cannot use perf_event_read()
1227 * because we're in the middle of a context switch and have IRQs
1228 * disabled, which upsets smp_call_function_single(), however
1229 * we know the event must be on the current CPU, therefore we
1230 * don't need to use it.
1231 */
1232 switch (event->state) {
1233 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001234 event->pmu->read(event);
1235 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001236
1237 case PERF_EVENT_STATE_INACTIVE:
1238 update_event_times(event);
1239 break;
1240
1241 default:
1242 break;
1243 }
1244
1245 /*
1246 * In order to keep per-task stats reliable we need to flip the event
1247 * values when we flip the contexts.
1248 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001249 value = local64_read(&next_event->count);
1250 value = local64_xchg(&event->count, value);
1251 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001252
1253 swap(event->total_time_enabled, next_event->total_time_enabled);
1254 swap(event->total_time_running, next_event->total_time_running);
1255
1256 /*
1257 * Since we swizzled the values, update the user visible data too.
1258 */
1259 perf_event_update_userpage(event);
1260 perf_event_update_userpage(next_event);
1261}
1262
1263#define list_next_entry(pos, member) \
1264 list_entry(pos->member.next, typeof(*pos), member)
1265
1266static void perf_event_sync_stat(struct perf_event_context *ctx,
1267 struct perf_event_context *next_ctx)
1268{
1269 struct perf_event *event, *next_event;
1270
1271 if (!ctx->nr_stat)
1272 return;
1273
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001274 update_context_time(ctx);
1275
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001276 event = list_first_entry(&ctx->event_list,
1277 struct perf_event, event_entry);
1278
1279 next_event = list_first_entry(&next_ctx->event_list,
1280 struct perf_event, event_entry);
1281
1282 while (&event->event_entry != &ctx->event_list &&
1283 &next_event->event_entry != &next_ctx->event_list) {
1284
1285 __perf_event_sync_stat(event, next_event);
1286
1287 event = list_next_entry(event, event_entry);
1288 next_event = list_next_entry(next_event, event_entry);
1289 }
1290}
1291
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001292void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1293 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001294{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001295 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296 struct perf_event_context *next_ctx;
1297 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001298 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001299 int do_switch = 1;
1300
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001301 if (likely(!ctx))
1302 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001303
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001304 cpuctx = __get_cpu_context(ctx);
1305 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001306 return;
1307
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001308 rcu_read_lock();
1309 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001310 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001311 if (parent && next_ctx &&
1312 rcu_dereference(next_ctx->parent_ctx) == parent) {
1313 /*
1314 * Looks like the two contexts are clones, so we might be
1315 * able to optimize the context switch. We lock both
1316 * contexts and check that they are clones under the
1317 * lock (including re-checking that neither has been
1318 * uncloned in the meantime). It doesn't matter which
1319 * order we take the locks because no other cpu could
1320 * be trying to lock both of these tasks.
1321 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001322 raw_spin_lock(&ctx->lock);
1323 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001324 if (context_equiv(ctx, next_ctx)) {
1325 /*
1326 * XXX do we need a memory barrier of sorts
1327 * wrt to rcu_dereference() of perf_event_ctxp
1328 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001329 task->perf_event_ctxp[ctxn] = next_ctx;
1330 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001331 ctx->task = next;
1332 next_ctx->task = task;
1333 do_switch = 0;
1334
1335 perf_event_sync_stat(ctx, next_ctx);
1336 }
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001337 raw_spin_unlock(&next_ctx->lock);
1338 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001339 }
1340 rcu_read_unlock();
1341
1342 if (do_switch) {
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001343 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001344 cpuctx->task_ctx = NULL;
1345 }
1346}
1347
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001348#define for_each_task_context_nr(ctxn) \
1349 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
1350
1351/*
1352 * Called from scheduler to remove the events of the current task,
1353 * with interrupts disabled.
1354 *
1355 * We stop each event and update the event value in event->count.
1356 *
1357 * This does not protect us against NMI, but disable()
1358 * sets the disabled bit in the control field of event _before_
1359 * accessing the event control register. If a NMI hits, then it will
1360 * not restart the event.
1361 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02001362void __perf_event_task_sched_out(struct task_struct *task,
1363 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001364{
1365 int ctxn;
1366
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001367 for_each_task_context_nr(ctxn)
1368 perf_event_context_sched_out(task, ctxn, next);
1369}
1370
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001371static void task_ctx_sched_out(struct perf_event_context *ctx,
1372 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001373{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001374 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001375
1376 if (!cpuctx->task_ctx)
1377 return;
1378
1379 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
1380 return;
1381
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001382 ctx_sched_out(ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001383 cpuctx->task_ctx = NULL;
1384}
1385
1386/*
1387 * Called with IRQs disabled
1388 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001389static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
1390 enum event_type_t event_type)
1391{
1392 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001393}
1394
1395static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001396ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001397 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001398{
1399 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001400
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001401 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1402 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001403 continue;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001404 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 continue;
1406
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001407 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01001408 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001409
1410 /*
1411 * If this pinned group hasn't been scheduled,
1412 * put it in error state.
1413 */
1414 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1415 update_group_times(event);
1416 event->state = PERF_EVENT_STATE_ERROR;
1417 }
1418 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001419}
1420
1421static void
1422ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001423 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001424{
1425 struct perf_event *event;
1426 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001427
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001428 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1429 /* Ignore events in OFF or ERROR state */
1430 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001431 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001432 /*
1433 * Listen to the 'cpu' scheduling filter constraint
1434 * of events:
1435 */
Peter Zijlstra6e377382010-02-11 13:21:58 +01001436 if (event->cpu != -1 && event->cpu != smp_processor_id())
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001437 continue;
1438
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001439 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01001440 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001441 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001442 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001443 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001444}
1445
1446static void
1447ctx_sched_in(struct perf_event_context *ctx,
1448 struct perf_cpu_context *cpuctx,
1449 enum event_type_t event_type)
1450{
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001451 raw_spin_lock(&ctx->lock);
1452 ctx->is_active = 1;
1453 if (likely(!ctx->nr_events))
1454 goto out;
1455
1456 ctx->timestamp = perf_clock();
1457
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001458 /*
1459 * First go through the list and put on any pinned groups
1460 * in order to give them the best chance of going on.
1461 */
1462 if (event_type & EVENT_PINNED)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001463 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001464
1465 /* Then walk through the lower prio flexible groups */
1466 if (event_type & EVENT_FLEXIBLE)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001467 ctx_flexible_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001468
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001469out:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001470 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471}
1472
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001473static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
1474 enum event_type_t event_type)
1475{
1476 struct perf_event_context *ctx = &cpuctx->ctx;
1477
1478 ctx_sched_in(ctx, cpuctx, event_type);
1479}
1480
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001481static void task_ctx_sched_in(struct perf_event_context *ctx,
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001482 enum event_type_t event_type)
1483{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001484 struct perf_cpu_context *cpuctx;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001485
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001486 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001487 if (cpuctx->task_ctx == ctx)
1488 return;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001489
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001490 ctx_sched_in(ctx, cpuctx, event_type);
1491 cpuctx->task_ctx = ctx;
1492}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001493
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001494void perf_event_context_sched_in(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001495{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001496 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001497
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001498 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001499 if (cpuctx->task_ctx == ctx)
1500 return;
1501
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001502 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01001503 /*
1504 * We want to keep the following priority order:
1505 * cpu pinned (that don't need to move), task pinned,
1506 * cpu flexible, task flexible.
1507 */
1508 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
1509
1510 ctx_sched_in(ctx, cpuctx, EVENT_PINNED);
1511 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
1512 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE);
1513
1514 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08001515
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001516 /*
1517 * Since these rotations are per-cpu, we need to ensure the
1518 * cpu-context we got scheduled on is actually rotating.
1519 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001520 perf_pmu_rotate_start(ctx->pmu);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001521 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001522}
1523
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001524/*
1525 * Called from scheduler to add the events of the current task
1526 * with interrupts disabled.
1527 *
1528 * We restore the event value and then enable it.
1529 *
1530 * This does not protect us against NMI, but enable()
1531 * sets the enabled bit in the control field of event _before_
1532 * accessing the event control register. If a NMI hits, then it will
1533 * keep the event running.
1534 */
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02001535void __perf_event_task_sched_in(struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001536{
1537 struct perf_event_context *ctx;
1538 int ctxn;
1539
1540 for_each_task_context_nr(ctxn) {
1541 ctx = task->perf_event_ctxp[ctxn];
1542 if (likely(!ctx))
1543 continue;
1544
1545 perf_event_context_sched_in(ctx);
1546 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001547}
1548
1549#define MAX_INTERRUPTS (~0ULL)
1550
1551static void perf_log_throttle(struct perf_event *event, int enable);
1552
Peter Zijlstraabd50712010-01-26 18:50:16 +01001553static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
1554{
1555 u64 frequency = event->attr.sample_freq;
1556 u64 sec = NSEC_PER_SEC;
1557 u64 divisor, dividend;
1558
1559 int count_fls, nsec_fls, frequency_fls, sec_fls;
1560
1561 count_fls = fls64(count);
1562 nsec_fls = fls64(nsec);
1563 frequency_fls = fls64(frequency);
1564 sec_fls = 30;
1565
1566 /*
1567 * We got @count in @nsec, with a target of sample_freq HZ
1568 * the target period becomes:
1569 *
1570 * @count * 10^9
1571 * period = -------------------
1572 * @nsec * sample_freq
1573 *
1574 */
1575
1576 /*
1577 * Reduce accuracy by one bit such that @a and @b converge
1578 * to a similar magnitude.
1579 */
1580#define REDUCE_FLS(a, b) \
1581do { \
1582 if (a##_fls > b##_fls) { \
1583 a >>= 1; \
1584 a##_fls--; \
1585 } else { \
1586 b >>= 1; \
1587 b##_fls--; \
1588 } \
1589} while (0)
1590
1591 /*
1592 * Reduce accuracy until either term fits in a u64, then proceed with
1593 * the other, so that finally we can do a u64/u64 division.
1594 */
1595 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
1596 REDUCE_FLS(nsec, frequency);
1597 REDUCE_FLS(sec, count);
1598 }
1599
1600 if (count_fls + sec_fls > 64) {
1601 divisor = nsec * frequency;
1602
1603 while (count_fls + sec_fls > 64) {
1604 REDUCE_FLS(count, sec);
1605 divisor >>= 1;
1606 }
1607
1608 dividend = count * sec;
1609 } else {
1610 dividend = count * sec;
1611
1612 while (nsec_fls + frequency_fls > 64) {
1613 REDUCE_FLS(nsec, frequency);
1614 dividend >>= 1;
1615 }
1616
1617 divisor = nsec * frequency;
1618 }
1619
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02001620 if (!divisor)
1621 return dividend;
1622
Peter Zijlstraabd50712010-01-26 18:50:16 +01001623 return div64_u64(dividend, divisor);
1624}
1625
1626static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001627{
1628 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02001629 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001630 s64 delta;
1631
Peter Zijlstraabd50712010-01-26 18:50:16 +01001632 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001633
1634 delta = (s64)(period - hwc->sample_period);
1635 delta = (delta + 7) / 8; /* low pass filter */
1636
1637 sample_period = hwc->sample_period + delta;
1638
1639 if (!sample_period)
1640 sample_period = 1;
1641
1642 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001643
Peter Zijlstrae7850592010-05-21 14:43:08 +02001644 if (local64_read(&hwc->period_left) > 8*sample_period) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001645 event->pmu->stop(event, PERF_EF_UPDATE);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001646 local64_set(&hwc->period_left, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001647 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001648 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001649}
1650
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001651static void perf_ctx_adjust_freq(struct perf_event_context *ctx, u64 period)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001652{
1653 struct perf_event *event;
1654 struct hw_perf_event *hwc;
Peter Zijlstraabd50712010-01-26 18:50:16 +01001655 u64 interrupts, now;
1656 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001657
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001658 raw_spin_lock(&ctx->lock);
Paul Mackerras03541f82009-10-14 16:58:03 +11001659 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001660 if (event->state != PERF_EVENT_STATE_ACTIVE)
1661 continue;
1662
Peter Zijlstra5d27c232009-12-17 13:16:32 +01001663 if (event->cpu != -1 && event->cpu != smp_processor_id())
1664 continue;
1665
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001666 hwc = &event->hw;
1667
1668 interrupts = hwc->interrupts;
1669 hwc->interrupts = 0;
1670
1671 /*
1672 * unthrottle events on the tick
1673 */
1674 if (interrupts == MAX_INTERRUPTS) {
1675 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001676 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677 }
1678
1679 if (!event->attr.freq || !event->attr.sample_freq)
1680 continue;
1681
Peter Zijlstraabd50712010-01-26 18:50:16 +01001682 event->pmu->read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02001683 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01001684 delta = now - hwc->freq_count_stamp;
1685 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001686
Peter Zijlstraabd50712010-01-26 18:50:16 +01001687 if (delta > 0)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001688 perf_adjust_period(event, period, delta);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689 }
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001690 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001691}
1692
1693/*
1694 * Round-robin a context's events:
1695 */
1696static void rotate_ctx(struct perf_event_context *ctx)
1697{
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001698 raw_spin_lock(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001699
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01001700 /*
1701 * Rotate the first entry last of non-pinned groups. Rotation might be
1702 * disabled by the inheritance code.
1703 */
1704 if (!ctx->rotate_disable)
1705 list_rotate_left(&ctx->flexible_groups);
Frederic Weisbeckere2864172010-01-09 21:05:28 +01001706
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001707 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001708}
1709
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001710/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001711 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
1712 * because they're strictly cpu affine and rotate_start is called with IRQs
1713 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001714 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001715static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001716{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001717 u64 interval = (u64)cpuctx->jiffies_interval * TICK_NSEC;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001718 struct perf_event_context *ctx = NULL;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001719 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001720
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001721 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001722 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001723 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
1724 rotate = 1;
1725 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001726
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001727 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001728 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001729 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001730 if (ctx->nr_events != ctx->nr_active)
1731 rotate = 1;
1732 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001733
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001734 perf_pmu_disable(cpuctx->ctx.pmu);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001735 perf_ctx_adjust_freq(&cpuctx->ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001736 if (ctx)
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001737 perf_ctx_adjust_freq(ctx, interval);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001738
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001739 if (!rotate)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001740 goto done;
Peter Zijlstrad4944a02010-03-08 13:51:20 +01001741
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001742 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743 if (ctx)
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001744 task_ctx_sched_out(ctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001745
1746 rotate_ctx(&cpuctx->ctx);
1747 if (ctx)
1748 rotate_ctx(ctx);
1749
Frederic Weisbecker7defb0f2010-01-17 12:15:31 +01001750 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001751 if (ctx)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001752 task_ctx_sched_in(ctx, EVENT_FLEXIBLE);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001753
1754done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001755 if (remove)
1756 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001757
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02001758 perf_pmu_enable(cpuctx->ctx.pmu);
1759}
1760
1761void perf_event_task_tick(void)
1762{
1763 struct list_head *head = &__get_cpu_var(rotation_list);
1764 struct perf_cpu_context *cpuctx, *tmp;
1765
1766 WARN_ON(!irqs_disabled());
1767
1768 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
1769 if (cpuctx->jiffies_interval == 1 ||
1770 !(jiffies % cpuctx->jiffies_interval))
1771 perf_rotate_context(cpuctx);
1772 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001773}
1774
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001775static int event_enable_on_exec(struct perf_event *event,
1776 struct perf_event_context *ctx)
1777{
1778 if (!event->attr.enable_on_exec)
1779 return 0;
1780
1781 event->attr.enable_on_exec = 0;
1782 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1783 return 0;
1784
1785 __perf_event_mark_enabled(event, ctx);
1786
1787 return 1;
1788}
1789
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001790/*
1791 * Enable all of a task's events that have been marked enable-on-exec.
1792 * This expects task == current.
1793 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001794static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001795{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796 struct perf_event *event;
1797 unsigned long flags;
1798 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001799 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800
1801 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001802 if (!ctx || !ctx->nr_events)
1803 goto out;
1804
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001805 task_ctx_sched_out(ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001807 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001808
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001809 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
1810 ret = event_enable_on_exec(event, ctx);
1811 if (ret)
1812 enabled = 1;
1813 }
1814
1815 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
1816 ret = event_enable_on_exec(event, ctx);
1817 if (ret)
1818 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001819 }
1820
1821 /*
1822 * Unclone this context if we enabled any event.
1823 */
1824 if (enabled)
1825 unclone_ctx(ctx);
1826
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001827 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001828
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001829 perf_event_context_sched_in(ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001830out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001831 local_irq_restore(flags);
1832}
1833
1834/*
1835 * Cross CPU call to read the hardware event
1836 */
1837static void __perf_event_read(void *info)
1838{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001839 struct perf_event *event = info;
1840 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001841 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001842
1843 /*
1844 * If this is a task context, we need to check whether it is
1845 * the current task context of this cpu. If not it has been
1846 * scheduled out before the smp call arrived. In that case
1847 * event->count would have been updated to a recent sample
1848 * when the event was scheduled out.
1849 */
1850 if (ctx->task && cpuctx->task_ctx != ctx)
1851 return;
1852
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001853 raw_spin_lock(&ctx->lock);
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001854 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001855 update_event_times(event);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001856 raw_spin_unlock(&ctx->lock);
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001857
Peter Zijlstra58e5ad12009-11-20 22:19:53 +01001858 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001859}
1860
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001861static inline u64 perf_event_count(struct perf_event *event)
1862{
Peter Zijlstrae7850592010-05-21 14:43:08 +02001863 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001864}
1865
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866static u64 perf_event_read(struct perf_event *event)
1867{
1868 /*
1869 * If event is enabled and currently active on a CPU, update the
1870 * value in the event structure:
1871 */
1872 if (event->state == PERF_EVENT_STATE_ACTIVE) {
1873 smp_call_function_single(event->oncpu,
1874 __perf_event_read, event, 1);
1875 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01001876 struct perf_event_context *ctx = event->ctx;
1877 unsigned long flags;
1878
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001879 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02001880 /*
1881 * may read while context is not active
1882 * (e.g., thread is blocked), in that case
1883 * we cannot update context time
1884 */
1885 if (ctx->is_active)
1886 update_context_time(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001887 update_event_times(event);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01001888 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001889 }
1890
Peter Zijlstrab5e58792010-05-21 14:43:12 +02001891 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892}
1893
1894/*
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001895 * Callchain support
1896 */
1897
1898struct callchain_cpus_entries {
1899 struct rcu_head rcu_head;
1900 struct perf_callchain_entry *cpu_entries[0];
1901};
1902
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001903static DEFINE_PER_CPU(int, callchain_recursion[PERF_NR_CONTEXTS]);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001904static atomic_t nr_callchain_events;
1905static DEFINE_MUTEX(callchain_mutex);
1906struct callchain_cpus_entries *callchain_cpus_entries;
1907
1908
1909__weak void perf_callchain_kernel(struct perf_callchain_entry *entry,
1910 struct pt_regs *regs)
1911{
1912}
1913
1914__weak void perf_callchain_user(struct perf_callchain_entry *entry,
1915 struct pt_regs *regs)
1916{
1917}
1918
1919static void release_callchain_buffers_rcu(struct rcu_head *head)
1920{
1921 struct callchain_cpus_entries *entries;
1922 int cpu;
1923
1924 entries = container_of(head, struct callchain_cpus_entries, rcu_head);
1925
1926 for_each_possible_cpu(cpu)
1927 kfree(entries->cpu_entries[cpu]);
1928
1929 kfree(entries);
1930}
1931
1932static void release_callchain_buffers(void)
1933{
1934 struct callchain_cpus_entries *entries;
1935
1936 entries = callchain_cpus_entries;
1937 rcu_assign_pointer(callchain_cpus_entries, NULL);
1938 call_rcu(&entries->rcu_head, release_callchain_buffers_rcu);
1939}
1940
1941static int alloc_callchain_buffers(void)
1942{
1943 int cpu;
1944 int size;
1945 struct callchain_cpus_entries *entries;
1946
1947 /*
1948 * We can't use the percpu allocation API for data that can be
1949 * accessed from NMI. Use a temporary manual per cpu allocation
1950 * until that gets sorted out.
1951 */
1952 size = sizeof(*entries) + sizeof(struct perf_callchain_entry *) *
1953 num_possible_cpus();
1954
1955 entries = kzalloc(size, GFP_KERNEL);
1956 if (!entries)
1957 return -ENOMEM;
1958
Frederic Weisbecker7ae07ea2010-08-14 20:45:13 +02001959 size = sizeof(struct perf_callchain_entry) * PERF_NR_CONTEXTS;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001960
1961 for_each_possible_cpu(cpu) {
1962 entries->cpu_entries[cpu] = kmalloc_node(size, GFP_KERNEL,
1963 cpu_to_node(cpu));
1964 if (!entries->cpu_entries[cpu])
1965 goto fail;
1966 }
1967
1968 rcu_assign_pointer(callchain_cpus_entries, entries);
1969
1970 return 0;
1971
1972fail:
1973 for_each_possible_cpu(cpu)
1974 kfree(entries->cpu_entries[cpu]);
1975 kfree(entries);
1976
1977 return -ENOMEM;
1978}
1979
1980static int get_callchain_buffers(void)
1981{
1982 int err = 0;
1983 int count;
1984
1985 mutex_lock(&callchain_mutex);
1986
1987 count = atomic_inc_return(&nr_callchain_events);
1988 if (WARN_ON_ONCE(count < 1)) {
1989 err = -EINVAL;
1990 goto exit;
1991 }
1992
1993 if (count > 1) {
1994 /* If the allocation failed, give up */
1995 if (!callchain_cpus_entries)
1996 err = -ENOMEM;
1997 goto exit;
1998 }
1999
2000 err = alloc_callchain_buffers();
2001 if (err)
2002 release_callchain_buffers();
2003exit:
2004 mutex_unlock(&callchain_mutex);
2005
2006 return err;
2007}
2008
2009static void put_callchain_buffers(void)
2010{
2011 if (atomic_dec_and_mutex_lock(&nr_callchain_events, &callchain_mutex)) {
2012 release_callchain_buffers();
2013 mutex_unlock(&callchain_mutex);
2014 }
2015}
2016
2017static int get_recursion_context(int *recursion)
2018{
2019 int rctx;
2020
2021 if (in_nmi())
2022 rctx = 3;
2023 else if (in_irq())
2024 rctx = 2;
2025 else if (in_softirq())
2026 rctx = 1;
2027 else
2028 rctx = 0;
2029
2030 if (recursion[rctx])
2031 return -1;
2032
2033 recursion[rctx]++;
2034 barrier();
2035
2036 return rctx;
2037}
2038
2039static inline void put_recursion_context(int *recursion, int rctx)
2040{
2041 barrier();
2042 recursion[rctx]--;
2043}
2044
2045static struct perf_callchain_entry *get_callchain_entry(int *rctx)
2046{
2047 int cpu;
2048 struct callchain_cpus_entries *entries;
2049
2050 *rctx = get_recursion_context(__get_cpu_var(callchain_recursion));
2051 if (*rctx == -1)
2052 return NULL;
2053
2054 entries = rcu_dereference(callchain_cpus_entries);
2055 if (!entries)
2056 return NULL;
2057
2058 cpu = smp_processor_id();
2059
2060 return &entries->cpu_entries[cpu][*rctx];
2061}
2062
2063static void
2064put_callchain_entry(int rctx)
2065{
2066 put_recursion_context(__get_cpu_var(callchain_recursion), rctx);
2067}
2068
2069static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
2070{
2071 int rctx;
2072 struct perf_callchain_entry *entry;
2073
2074
2075 entry = get_callchain_entry(&rctx);
2076 if (rctx == -1)
2077 return NULL;
2078
2079 if (!entry)
2080 goto exit_put;
2081
2082 entry->nr = 0;
2083
2084 if (!user_mode(regs)) {
2085 perf_callchain_store(entry, PERF_CONTEXT_KERNEL);
2086 perf_callchain_kernel(entry, regs);
2087 if (current->mm)
2088 regs = task_pt_regs(current);
2089 else
2090 regs = NULL;
2091 }
2092
2093 if (regs) {
2094 perf_callchain_store(entry, PERF_CONTEXT_USER);
2095 perf_callchain_user(entry, regs);
2096 }
2097
2098exit_put:
2099 put_callchain_entry(rctx);
2100
2101 return entry;
2102}
2103
2104/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002105 * Initialize the perf_event context in a task_struct:
2106 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002107static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002108{
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002109 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002111 INIT_LIST_HEAD(&ctx->pinned_groups);
2112 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002113 INIT_LIST_HEAD(&ctx->event_list);
2114 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002115}
2116
Peter Zijlstraeb184472010-09-07 15:55:13 +02002117static struct perf_event_context *
2118alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002119{
2120 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002121
2122 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2123 if (!ctx)
2124 return NULL;
2125
2126 __perf_event_init_context(ctx);
2127 if (task) {
2128 ctx->task = task;
2129 get_task_struct(task);
2130 }
2131 ctx->pmu = pmu;
2132
2133 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002134}
2135
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002136static struct task_struct *
2137find_lively_task_by_vpid(pid_t vpid)
2138{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002139 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140 int err;
2141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002142 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002143 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002144 task = current;
2145 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002146 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002147 if (task)
2148 get_task_struct(task);
2149 rcu_read_unlock();
2150
2151 if (!task)
2152 return ERR_PTR(-ESRCH);
2153
2154 /*
2155 * Can't attach events to a dying task.
2156 */
2157 err = -ESRCH;
2158 if (task->flags & PF_EXITING)
2159 goto errout;
2160
2161 /* Reuse ptrace permission checks for now. */
2162 err = -EACCES;
2163 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2164 goto errout;
2165
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002166 return task;
2167errout:
2168 put_task_struct(task);
2169 return ERR_PTR(err);
2170
2171}
2172
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002173static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002174find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002175{
2176 struct perf_event_context *ctx;
2177 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002178 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002179 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002180
Matt Helsley38a81da2010-09-13 13:01:20 -07002181 if (!task && cpu != -1) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002182 /* Must be root to operate on a CPU event: */
2183 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2184 return ERR_PTR(-EACCES);
2185
2186 if (cpu < 0 || cpu >= nr_cpumask_bits)
2187 return ERR_PTR(-EINVAL);
2188
2189 /*
2190 * We could be clever and allow to attach a event to an
2191 * offline CPU and activate it when the CPU comes up, but
2192 * that's for later.
2193 */
2194 if (!cpu_online(cpu))
2195 return ERR_PTR(-ENODEV);
2196
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002197 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198 ctx = &cpuctx->ctx;
2199 get_ctx(ctx);
2200
2201 return ctx;
2202 }
2203
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002204 err = -EINVAL;
2205 ctxn = pmu->task_ctx_nr;
2206 if (ctxn < 0)
2207 goto errout;
2208
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002209retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002210 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002211 if (ctx) {
2212 unclone_ctx(ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002213 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002214 }
2215
2216 if (!ctx) {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002217 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002218 err = -ENOMEM;
2219 if (!ctx)
2220 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002222 get_ctx(ctx);
Peter Zijlstraeb184472010-09-07 15:55:13 +02002223
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002224 if (cmpxchg(&task->perf_event_ctxp[ctxn], NULL, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002225 /*
2226 * We raced with some other task; use
2227 * the context they set.
2228 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002229 put_task_struct(task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002230 kfree(ctx);
2231 goto retry;
2232 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233 }
2234
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002235 return ctx;
2236
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002237errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238 return ERR_PTR(err);
2239}
2240
Li Zefan6fb29152009-10-15 11:21:42 +08002241static void perf_event_free_filter(struct perf_event *event);
2242
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002243static void free_event_rcu(struct rcu_head *head)
2244{
2245 struct perf_event *event;
2246
2247 event = container_of(head, struct perf_event, rcu_head);
2248 if (event->ns)
2249 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002250 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002251 kfree(event);
2252}
2253
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002254static void perf_buffer_put(struct perf_buffer *buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255
2256static void free_event(struct perf_event *event)
2257{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002258 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002259
2260 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002261 if (event->attach_state & PERF_ATTACH_TASK)
2262 jump_label_dec(&perf_task_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002263 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002264 atomic_dec(&nr_mmap_events);
2265 if (event->attr.comm)
2266 atomic_dec(&nr_comm_events);
2267 if (event->attr.task)
2268 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002269 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2270 put_callchain_buffers();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002271 }
2272
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002273 if (event->buffer) {
2274 perf_buffer_put(event->buffer);
2275 event->buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002276 }
2277
2278 if (event->destroy)
2279 event->destroy(event);
2280
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002281 if (event->ctx)
2282 put_ctx(event->ctx);
2283
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002284 call_rcu(&event->rcu_head, free_event_rcu);
2285}
2286
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002287int perf_event_release_kernel(struct perf_event *event)
2288{
2289 struct perf_event_context *ctx = event->ctx;
2290
Peter Zijlstra050735b2010-05-11 11:51:53 +02002291 /*
2292 * Remove from the PMU, can't get re-enabled since we got
2293 * here because the last ref went.
2294 */
2295 perf_event_disable(event);
2296
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002297 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002298 /*
2299 * There are two ways this annotation is useful:
2300 *
2301 * 1) there is a lock recursion from perf_event_exit_task
2302 * see the comment there.
2303 *
2304 * 2) there is a lock-inversion with mmap_sem through
2305 * perf_event_read_group(), which takes faults while
2306 * holding ctx->mutex, however this is called after
2307 * the last filedesc died, so there is no possibility
2308 * to trigger the AB-BA case.
2309 */
2310 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002311 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002312 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002313 list_del_event(event, ctx);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002314 raw_spin_unlock_irq(&ctx->lock);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002315 mutex_unlock(&ctx->mutex);
2316
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002317 free_event(event);
2318
2319 return 0;
2320}
2321EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2322
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002323/*
2324 * Called when the last reference to the file is gone.
2325 */
2326static int perf_release(struct inode *inode, struct file *file)
2327{
2328 struct perf_event *event = file->private_data;
Peter Zijlstra8882135b2010-11-09 19:01:43 +01002329 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002330
2331 file->private_data = NULL;
2332
Peter Zijlstra8882135b2010-11-09 19:01:43 +01002333 rcu_read_lock();
2334 owner = ACCESS_ONCE(event->owner);
2335 /*
2336 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
2337 * !owner it means the list deletion is complete and we can indeed
2338 * free this event, otherwise we need to serialize on
2339 * owner->perf_event_mutex.
2340 */
2341 smp_read_barrier_depends();
2342 if (owner) {
2343 /*
2344 * Since delayed_put_task_struct() also drops the last
2345 * task reference we can safely take a new reference
2346 * while holding the rcu_read_lock().
2347 */
2348 get_task_struct(owner);
2349 }
2350 rcu_read_unlock();
2351
2352 if (owner) {
2353 mutex_lock(&owner->perf_event_mutex);
2354 /*
2355 * We have to re-check the event->owner field, if it is cleared
2356 * we raced with perf_event_exit_task(), acquiring the mutex
2357 * ensured they're done, and we can proceed with freeing the
2358 * event.
2359 */
2360 if (event->owner)
2361 list_del_init(&event->owner_entry);
2362 mutex_unlock(&owner->perf_event_mutex);
2363 put_task_struct(owner);
2364 }
2365
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002366 return perf_event_release_kernel(event);
2367}
2368
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002369u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002370{
2371 struct perf_event *child;
2372 u64 total = 0;
2373
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002374 *enabled = 0;
2375 *running = 0;
2376
Peter Zijlstra6f105812009-11-20 22:19:56 +01002377 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002378 total += perf_event_read(event);
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002379 *enabled += event->total_time_enabled +
2380 atomic64_read(&event->child_total_time_enabled);
2381 *running += event->total_time_running +
2382 atomic64_read(&event->child_total_time_running);
2383
2384 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002385 total += perf_event_read(child);
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002386 *enabled += child->total_time_enabled;
2387 *running += child->total_time_running;
2388 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002389 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002390
2391 return total;
2392}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002393EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002394
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002395static int perf_event_read_group(struct perf_event *event,
2396 u64 read_format, char __user *buf)
2397{
2398 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01002399 int n = 0, size = 0, ret = -EFAULT;
2400 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002401 u64 values[5];
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002402 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002403
Peter Zijlstra6f105812009-11-20 22:19:56 +01002404 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002405 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002406
2407 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002408 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2409 values[n++] = enabled;
2410 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2411 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01002412 values[n++] = count;
2413 if (read_format & PERF_FORMAT_ID)
2414 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002415
2416 size = n * sizeof(u64);
2417
2418 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01002419 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002420
Peter Zijlstra6f105812009-11-20 22:19:56 +01002421 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422
2423 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01002424 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002425
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002426 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01002427 if (read_format & PERF_FORMAT_ID)
2428 values[n++] = primary_event_id(sub);
2429
2430 size = n * sizeof(u64);
2431
Stephane Eranian184d3da2009-11-23 21:40:49 -08002432 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01002433 ret = -EFAULT;
2434 goto unlock;
2435 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01002436
2437 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002438 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01002439unlock:
2440 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002441
Peter Zijlstraabf48682009-11-20 22:19:49 +01002442 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443}
2444
2445static int perf_event_read_one(struct perf_event *event,
2446 u64 read_format, char __user *buf)
2447{
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002448 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002449 u64 values[4];
2450 int n = 0;
2451
Peter Zijlstra59ed446f2009-11-20 22:19:55 +01002452 values[n++] = perf_event_read_value(event, &enabled, &running);
2453 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
2454 values[n++] = enabled;
2455 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
2456 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002457 if (read_format & PERF_FORMAT_ID)
2458 values[n++] = primary_event_id(event);
2459
2460 if (copy_to_user(buf, values, n * sizeof(u64)))
2461 return -EFAULT;
2462
2463 return n * sizeof(u64);
2464}
2465
2466/*
2467 * Read the performance event - simple non blocking version for now
2468 */
2469static ssize_t
2470perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
2471{
2472 u64 read_format = event->attr.read_format;
2473 int ret;
2474
2475 /*
2476 * Return end-of-file for a read on a event that is in
2477 * error state (i.e. because it was pinned but it couldn't be
2478 * scheduled on to the CPU at some point).
2479 */
2480 if (event->state == PERF_EVENT_STATE_ERROR)
2481 return 0;
2482
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02002483 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002484 return -ENOSPC;
2485
2486 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002487 if (read_format & PERF_FORMAT_GROUP)
2488 ret = perf_event_read_group(event, read_format, buf);
2489 else
2490 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002491
2492 return ret;
2493}
2494
2495static ssize_t
2496perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
2497{
2498 struct perf_event *event = file->private_data;
2499
2500 return perf_read_hw(event, buf, count);
2501}
2502
2503static unsigned int perf_poll(struct file *file, poll_table *wait)
2504{
2505 struct perf_event *event = file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002506 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002507 unsigned int events = POLL_HUP;
2508
2509 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002510 buffer = rcu_dereference(event->buffer);
2511 if (buffer)
2512 events = atomic_xchg(&buffer->poll, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002513 rcu_read_unlock();
2514
2515 poll_wait(file, &event->waitq, wait);
2516
2517 return events;
2518}
2519
2520static void perf_event_reset(struct perf_event *event)
2521{
2522 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02002523 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002524 perf_event_update_userpage(event);
2525}
2526
2527/*
2528 * Holding the top-level event's child_mutex means that any
2529 * descendant process that has inherited this event will block
2530 * in sync_child_event if it goes to exit, thus satisfying the
2531 * task existence requirements of perf_event_enable/disable.
2532 */
2533static void perf_event_for_each_child(struct perf_event *event,
2534 void (*func)(struct perf_event *))
2535{
2536 struct perf_event *child;
2537
2538 WARN_ON_ONCE(event->ctx->parent_ctx);
2539 mutex_lock(&event->child_mutex);
2540 func(event);
2541 list_for_each_entry(child, &event->child_list, child_list)
2542 func(child);
2543 mutex_unlock(&event->child_mutex);
2544}
2545
2546static void perf_event_for_each(struct perf_event *event,
2547 void (*func)(struct perf_event *))
2548{
2549 struct perf_event_context *ctx = event->ctx;
2550 struct perf_event *sibling;
2551
2552 WARN_ON_ONCE(ctx->parent_ctx);
2553 mutex_lock(&ctx->mutex);
2554 event = event->group_leader;
2555
2556 perf_event_for_each_child(event, func);
2557 func(event);
2558 list_for_each_entry(sibling, &event->sibling_list, group_entry)
2559 perf_event_for_each_child(event, func);
2560 mutex_unlock(&ctx->mutex);
2561}
2562
2563static int perf_event_period(struct perf_event *event, u64 __user *arg)
2564{
2565 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002566 int ret = 0;
2567 u64 value;
2568
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01002569 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002570 return -EINVAL;
2571
John Blackwoodad0cf342010-09-28 18:03:11 -04002572 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002573 return -EFAULT;
2574
2575 if (!value)
2576 return -EINVAL;
2577
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002578 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002579 if (event->attr.freq) {
2580 if (value > sysctl_perf_event_sample_rate) {
2581 ret = -EINVAL;
2582 goto unlock;
2583 }
2584
2585 event->attr.sample_freq = value;
2586 } else {
2587 event->attr.sample_period = value;
2588 event->hw.sample_period = value;
2589 }
2590unlock:
Thomas Gleixnere625cce2009-11-17 18:02:06 +01002591 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002592
2593 return ret;
2594}
2595
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002596static const struct file_operations perf_fops;
2597
2598static struct perf_event *perf_fget_light(int fd, int *fput_needed)
2599{
2600 struct file *file;
2601
2602 file = fget_light(fd, fput_needed);
2603 if (!file)
2604 return ERR_PTR(-EBADF);
2605
2606 if (file->f_op != &perf_fops) {
2607 fput_light(file, *fput_needed);
2608 *fput_needed = 0;
2609 return ERR_PTR(-EBADF);
2610 }
2611
2612 return file->private_data;
2613}
2614
2615static int perf_event_set_output(struct perf_event *event,
2616 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08002617static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002618
2619static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2620{
2621 struct perf_event *event = file->private_data;
2622 void (*func)(struct perf_event *);
2623 u32 flags = arg;
2624
2625 switch (cmd) {
2626 case PERF_EVENT_IOC_ENABLE:
2627 func = perf_event_enable;
2628 break;
2629 case PERF_EVENT_IOC_DISABLE:
2630 func = perf_event_disable;
2631 break;
2632 case PERF_EVENT_IOC_RESET:
2633 func = perf_event_reset;
2634 break;
2635
2636 case PERF_EVENT_IOC_REFRESH:
2637 return perf_event_refresh(event, arg);
2638
2639 case PERF_EVENT_IOC_PERIOD:
2640 return perf_event_period(event, (u64 __user *)arg);
2641
2642 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02002643 {
2644 struct perf_event *output_event = NULL;
2645 int fput_needed = 0;
2646 int ret;
2647
2648 if (arg != -1) {
2649 output_event = perf_fget_light(arg, &fput_needed);
2650 if (IS_ERR(output_event))
2651 return PTR_ERR(output_event);
2652 }
2653
2654 ret = perf_event_set_output(event, output_event);
2655 if (output_event)
2656 fput_light(output_event->filp, fput_needed);
2657
2658 return ret;
2659 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002660
Li Zefan6fb29152009-10-15 11:21:42 +08002661 case PERF_EVENT_IOC_SET_FILTER:
2662 return perf_event_set_filter(event, (void __user *)arg);
2663
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002664 default:
2665 return -ENOTTY;
2666 }
2667
2668 if (flags & PERF_IOC_FLAG_GROUP)
2669 perf_event_for_each(event, func);
2670 else
2671 perf_event_for_each_child(event, func);
2672
2673 return 0;
2674}
2675
2676int perf_event_task_enable(void)
2677{
2678 struct perf_event *event;
2679
2680 mutex_lock(&current->perf_event_mutex);
2681 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2682 perf_event_for_each_child(event, perf_event_enable);
2683 mutex_unlock(&current->perf_event_mutex);
2684
2685 return 0;
2686}
2687
2688int perf_event_task_disable(void)
2689{
2690 struct perf_event *event;
2691
2692 mutex_lock(&current->perf_event_mutex);
2693 list_for_each_entry(event, &current->perf_event_list, owner_entry)
2694 perf_event_for_each_child(event, perf_event_disable);
2695 mutex_unlock(&current->perf_event_mutex);
2696
2697 return 0;
2698}
2699
2700#ifndef PERF_EVENT_INDEX_OFFSET
2701# define PERF_EVENT_INDEX_OFFSET 0
2702#endif
2703
2704static int perf_event_index(struct perf_event *event)
2705{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002706 if (event->hw.state & PERF_HES_STOPPED)
2707 return 0;
2708
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002709 if (event->state != PERF_EVENT_STATE_ACTIVE)
2710 return 0;
2711
2712 return event->hw.idx + 1 - PERF_EVENT_INDEX_OFFSET;
2713}
2714
2715/*
2716 * Callers need to ensure there can be no nesting of this function, otherwise
2717 * the seqlock logic goes bad. We can not serialize this because the arch
2718 * code calls this from NMI context.
2719 */
2720void perf_event_update_userpage(struct perf_event *event)
2721{
2722 struct perf_event_mmap_page *userpg;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002723 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002724
2725 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002726 buffer = rcu_dereference(event->buffer);
2727 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002728 goto unlock;
2729
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002730 userpg = buffer->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002731
2732 /*
2733 * Disable preemption so as to not let the corresponding user-space
2734 * spin too long if we get preempted.
2735 */
2736 preempt_disable();
2737 ++userpg->lock;
2738 barrier();
2739 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002740 userpg->offset = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002741 if (event->state == PERF_EVENT_STATE_ACTIVE)
Peter Zijlstrae7850592010-05-21 14:43:08 +02002742 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002743
2744 userpg->time_enabled = event->total_time_enabled +
2745 atomic64_read(&event->child_total_time_enabled);
2746
2747 userpg->time_running = event->total_time_running +
2748 atomic64_read(&event->child_total_time_running);
2749
2750 barrier();
2751 ++userpg->lock;
2752 preempt_enable();
2753unlock:
2754 rcu_read_unlock();
2755}
2756
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002757static unsigned long perf_data_size(struct perf_buffer *buffer);
2758
2759static void
2760perf_buffer_init(struct perf_buffer *buffer, long watermark, int flags)
2761{
2762 long max_size = perf_data_size(buffer);
2763
2764 if (watermark)
2765 buffer->watermark = min(max_size, watermark);
2766
2767 if (!buffer->watermark)
2768 buffer->watermark = max_size / 2;
2769
2770 if (flags & PERF_BUFFER_WRITABLE)
2771 buffer->writable = 1;
2772
2773 atomic_set(&buffer->refcount, 1);
2774}
2775
Peter Zijlstra906010b2009-09-21 16:08:49 +02002776#ifndef CONFIG_PERF_USE_VMALLOC
2777
2778/*
2779 * Back perf_mmap() with regular GFP_KERNEL-0 pages.
2780 */
2781
2782static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002783perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002784{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002785 if (pgoff > buffer->nr_pages)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002786 return NULL;
2787
2788 if (pgoff == 0)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002789 return virt_to_page(buffer->user_page);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002790
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002791 return virt_to_page(buffer->data_pages[pgoff - 1]);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002792}
2793
Peter Zijlstraa19d35c2010-05-17 18:48:00 +02002794static void *perf_mmap_alloc_page(int cpu)
2795{
2796 struct page *page;
2797 int node;
2798
2799 node = (cpu == -1) ? cpu : cpu_to_node(cpu);
2800 page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
2801 if (!page)
2802 return NULL;
2803
2804 return page_address(page);
2805}
2806
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002807static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002808perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002809{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002810 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002811 unsigned long size;
2812 int i;
2813
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002814 size = sizeof(struct perf_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002815 size += nr_pages * sizeof(void *);
2816
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002817 buffer = kzalloc(size, GFP_KERNEL);
2818 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002819 goto fail;
2820
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002821 buffer->user_page = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002822 if (!buffer->user_page)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002823 goto fail_user_page;
2824
2825 for (i = 0; i < nr_pages; i++) {
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002826 buffer->data_pages[i] = perf_mmap_alloc_page(cpu);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002827 if (!buffer->data_pages[i])
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002828 goto fail_data_pages;
2829 }
2830
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002831 buffer->nr_pages = nr_pages;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002832
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002833 perf_buffer_init(buffer, watermark, flags);
2834
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002835 return buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002836
2837fail_data_pages:
2838 for (i--; i >= 0; i--)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002839 free_page((unsigned long)buffer->data_pages[i]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002840
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002841 free_page((unsigned long)buffer->user_page);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842
2843fail_user_page:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002844 kfree(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002845
2846fail:
Peter Zijlstra906010b2009-09-21 16:08:49 +02002847 return NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848}
2849
2850static void perf_mmap_free_page(unsigned long addr)
2851{
2852 struct page *page = virt_to_page((void *)addr);
2853
2854 page->mapping = NULL;
2855 __free_page(page);
2856}
2857
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002858static void perf_buffer_free(struct perf_buffer *buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002859{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002860 int i;
2861
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002862 perf_mmap_free_page((unsigned long)buffer->user_page);
2863 for (i = 0; i < buffer->nr_pages; i++)
2864 perf_mmap_free_page((unsigned long)buffer->data_pages[i]);
2865 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002866}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002867
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002868static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002869{
2870 return 0;
2871}
2872
Peter Zijlstra906010b2009-09-21 16:08:49 +02002873#else
2874
2875/*
2876 * Back perf_mmap() with vmalloc memory.
2877 *
2878 * Required for architectures that have d-cache aliasing issues.
2879 */
2880
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002881static inline int page_order(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002882{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002883 return buffer->page_order;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002884}
2885
Peter Zijlstra906010b2009-09-21 16:08:49 +02002886static struct page *
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002887perf_mmap_to_page(struct perf_buffer *buffer, unsigned long pgoff)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002888{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002889 if (pgoff > (1UL << page_order(buffer)))
Peter Zijlstra906010b2009-09-21 16:08:49 +02002890 return NULL;
2891
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002892 return vmalloc_to_page((void *)buffer->user_page + pgoff * PAGE_SIZE);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002893}
2894
2895static void perf_mmap_unmark_page(void *addr)
2896{
2897 struct page *page = vmalloc_to_page(addr);
2898
2899 page->mapping = NULL;
2900}
2901
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002902static void perf_buffer_free_work(struct work_struct *work)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002903{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002904 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002905 void *base;
2906 int i, nr;
2907
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002908 buffer = container_of(work, struct perf_buffer, work);
2909 nr = 1 << page_order(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002910
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002911 base = buffer->user_page;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002912 for (i = 0; i < nr + 1; i++)
2913 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
2914
2915 vfree(base);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002916 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002917}
2918
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002919static void perf_buffer_free(struct perf_buffer *buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002920{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002921 schedule_work(&buffer->work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002922}
2923
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002924static struct perf_buffer *
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002925perf_buffer_alloc(int nr_pages, long watermark, int cpu, int flags)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002926{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002927 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002928 unsigned long size;
2929 void *all_buf;
2930
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002931 size = sizeof(struct perf_buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002932 size += sizeof(void *);
2933
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002934 buffer = kzalloc(size, GFP_KERNEL);
2935 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002936 goto fail;
2937
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002938 INIT_WORK(&buffer->work, perf_buffer_free_work);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002939
2940 all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
2941 if (!all_buf)
2942 goto fail_all_buf;
2943
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002944 buffer->user_page = all_buf;
2945 buffer->data_pages[0] = all_buf + PAGE_SIZE;
2946 buffer->page_order = ilog2(nr_pages);
2947 buffer->nr_pages = 1;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002948
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02002949 perf_buffer_init(buffer, watermark, flags);
2950
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002951 return buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002952
2953fail_all_buf:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002954 kfree(buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002955
2956fail:
2957 return NULL;
2958}
2959
2960#endif
2961
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002962static unsigned long perf_data_size(struct perf_buffer *buffer)
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002963{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002964 return buffer->nr_pages << (PAGE_SHIFT + page_order(buffer));
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02002965}
2966
Peter Zijlstra906010b2009-09-21 16:08:49 +02002967static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
2968{
2969 struct perf_event *event = vma->vm_file->private_data;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002970 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02002971 int ret = VM_FAULT_SIGBUS;
2972
2973 if (vmf->flags & FAULT_FLAG_MKWRITE) {
2974 if (vmf->pgoff == 0)
2975 ret = 0;
2976 return ret;
2977 }
2978
2979 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002980 buffer = rcu_dereference(event->buffer);
2981 if (!buffer)
Peter Zijlstra906010b2009-09-21 16:08:49 +02002982 goto unlock;
2983
2984 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
2985 goto unlock;
2986
Peter Zijlstraca5135e2010-05-28 19:33:23 +02002987 vmf->page = perf_mmap_to_page(buffer, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02002988 if (!vmf->page)
2989 goto unlock;
2990
2991 get_page(vmf->page);
2992 vmf->page->mapping = vma->vm_file->f_mapping;
2993 vmf->page->index = vmf->pgoff;
2994
2995 ret = 0;
2996unlock:
2997 rcu_read_unlock();
2998
2999 return ret;
3000}
3001
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003002static void perf_buffer_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003003{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003004 struct perf_buffer *buffer;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003005
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003006 buffer = container_of(rcu_head, struct perf_buffer, rcu_head);
3007 perf_buffer_free(buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003008}
3009
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003010static struct perf_buffer *perf_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003011{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003012 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003013
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003014 rcu_read_lock();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003015 buffer = rcu_dereference(event->buffer);
3016 if (buffer) {
3017 if (!atomic_inc_not_zero(&buffer->refcount))
3018 buffer = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003019 }
3020 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003021
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003022 return buffer;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003023}
3024
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003025static void perf_buffer_put(struct perf_buffer *buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003026{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003027 if (!atomic_dec_and_test(&buffer->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003028 return;
3029
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003030 call_rcu(&buffer->rcu_head, perf_buffer_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003031}
3032
3033static void perf_mmap_open(struct vm_area_struct *vma)
3034{
3035 struct perf_event *event = vma->vm_file->private_data;
3036
3037 atomic_inc(&event->mmap_count);
3038}
3039
3040static void perf_mmap_close(struct vm_area_struct *vma)
3041{
3042 struct perf_event *event = vma->vm_file->private_data;
3043
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003044 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003045 unsigned long size = perf_data_size(event->buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003046 struct user_struct *user = event->mmap_user;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003047 struct perf_buffer *buffer = event->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003048
Peter Zijlstra906010b2009-09-21 16:08:49 +02003049 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003050 vma->vm_mm->locked_vm -= event->mmap_locked;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003051 rcu_assign_pointer(event->buffer, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003052 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003053
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003054 perf_buffer_put(buffer);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003055 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003056 }
3057}
3058
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003059static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003060 .open = perf_mmap_open,
3061 .close = perf_mmap_close,
3062 .fault = perf_mmap_fault,
3063 .page_mkwrite = perf_mmap_fault,
3064};
3065
3066static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3067{
3068 struct perf_event *event = file->private_data;
3069 unsigned long user_locked, user_lock_limit;
3070 struct user_struct *user = current_user();
3071 unsigned long locked, lock_limit;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003072 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003073 unsigned long vma_size;
3074 unsigned long nr_pages;
3075 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003076 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003077
Peter Zijlstrac7920612010-05-18 10:33:24 +02003078 /*
3079 * Don't allow mmap() of inherited per-task counters. This would
3080 * create a performance issue due to all children writing to the
3081 * same buffer.
3082 */
3083 if (event->cpu == -1 && event->attr.inherit)
3084 return -EINVAL;
3085
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003086 if (!(vma->vm_flags & VM_SHARED))
3087 return -EINVAL;
3088
3089 vma_size = vma->vm_end - vma->vm_start;
3090 nr_pages = (vma_size / PAGE_SIZE) - 1;
3091
3092 /*
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003093 * If we have buffer pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003094 * can do bitmasks instead of modulo.
3095 */
3096 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3097 return -EINVAL;
3098
3099 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3100 return -EINVAL;
3101
3102 if (vma->vm_pgoff != 0)
3103 return -EINVAL;
3104
3105 WARN_ON_ONCE(event->ctx->parent_ctx);
3106 mutex_lock(&event->mmap_mutex);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003107 if (event->buffer) {
3108 if (event->buffer->nr_pages == nr_pages)
3109 atomic_inc(&event->buffer->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003110 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111 ret = -EINVAL;
3112 goto unlock;
3113 }
3114
3115 user_extra = nr_pages + 1;
3116 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3117
3118 /*
3119 * Increase the limit linearly with more CPUs:
3120 */
3121 user_lock_limit *= num_online_cpus();
3122
3123 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3124
3125 extra = 0;
3126 if (user_locked > user_lock_limit)
3127 extra = user_locked - user_lock_limit;
3128
Jiri Slaby78d7d402010-03-05 13:42:54 -08003129 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003130 lock_limit >>= PAGE_SHIFT;
3131 locked = vma->vm_mm->locked_vm + extra;
3132
3133 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3134 !capable(CAP_IPC_LOCK)) {
3135 ret = -EPERM;
3136 goto unlock;
3137 }
3138
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003139 WARN_ON(event->buffer);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003140
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003141 if (vma->vm_flags & VM_WRITE)
3142 flags |= PERF_BUFFER_WRITABLE;
3143
3144 buffer = perf_buffer_alloc(nr_pages, event->attr.wakeup_watermark,
3145 event->cpu, flags);
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003146 if (!buffer) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003147 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003148 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003149 }
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003150 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003151
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003152 atomic_long_add(user_extra, &user->locked_vm);
3153 event->mmap_locked = extra;
3154 event->mmap_user = get_current_user();
3155 vma->vm_mm->locked_vm += event->mmap_locked;
3156
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003157unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003158 if (!ret)
3159 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003160 mutex_unlock(&event->mmap_mutex);
3161
3162 vma->vm_flags |= VM_RESERVED;
3163 vma->vm_ops = &perf_mmap_vmops;
3164
3165 return ret;
3166}
3167
3168static int perf_fasync(int fd, struct file *filp, int on)
3169{
3170 struct inode *inode = filp->f_path.dentry->d_inode;
3171 struct perf_event *event = filp->private_data;
3172 int retval;
3173
3174 mutex_lock(&inode->i_mutex);
3175 retval = fasync_helper(fd, filp, on, &event->fasync);
3176 mutex_unlock(&inode->i_mutex);
3177
3178 if (retval < 0)
3179 return retval;
3180
3181 return 0;
3182}
3183
3184static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003185 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003186 .release = perf_release,
3187 .read = perf_read,
3188 .poll = perf_poll,
3189 .unlocked_ioctl = perf_ioctl,
3190 .compat_ioctl = perf_ioctl,
3191 .mmap = perf_mmap,
3192 .fasync = perf_fasync,
3193};
3194
3195/*
3196 * Perf event wakeup
3197 *
3198 * If there's data, ensure we set the poll() state and publish everything
3199 * to user-space before waking everybody up.
3200 */
3201
3202void perf_event_wakeup(struct perf_event *event)
3203{
3204 wake_up_all(&event->waitq);
3205
3206 if (event->pending_kill) {
3207 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3208 event->pending_kill = 0;
3209 }
3210}
3211
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003212static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003213{
3214 struct perf_event *event = container_of(entry,
3215 struct perf_event, pending);
3216
3217 if (event->pending_disable) {
3218 event->pending_disable = 0;
3219 __perf_event_disable(event);
3220 }
3221
3222 if (event->pending_wakeup) {
3223 event->pending_wakeup = 0;
3224 perf_event_wakeup(event);
3225 }
3226}
3227
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003228/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003229 * We assume there is only KVM supporting the callbacks.
3230 * Later on, we might change it to a list if there is
3231 * another virtualization implementation supporting the callbacks.
3232 */
3233struct perf_guest_info_callbacks *perf_guest_cbs;
3234
3235int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3236{
3237 perf_guest_cbs = cbs;
3238 return 0;
3239}
3240EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3241
3242int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3243{
3244 perf_guest_cbs = NULL;
3245 return 0;
3246}
3247EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3248
3249/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003250 * Output
3251 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003252static bool perf_output_space(struct perf_buffer *buffer, unsigned long tail,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003253 unsigned long offset, unsigned long head)
3254{
3255 unsigned long mask;
3256
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003257 if (!buffer->writable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003258 return true;
3259
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003260 mask = perf_data_size(buffer) - 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003261
3262 offset = (offset - tail) & mask;
3263 head = (head - tail) & mask;
3264
3265 if ((int)(head - offset) < 0)
3266 return false;
3267
3268 return true;
3269}
3270
3271static void perf_output_wakeup(struct perf_output_handle *handle)
3272{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003273 atomic_set(&handle->buffer->poll, POLL_IN);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003274
3275 if (handle->nmi) {
3276 handle->event->pending_wakeup = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003277 irq_work_queue(&handle->event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003278 } else
3279 perf_event_wakeup(handle->event);
3280}
3281
3282/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003283 * We need to ensure a later event_id doesn't publish a head when a former
Peter Zijlstraef607772010-05-18 10:50:41 +02003284 * event isn't done writing. However since we need to deal with NMIs we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003285 * cannot fully serialize things.
3286 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003287 * We only publish the head (and generate a wakeup) when the outer-most
Peter Zijlstraef607772010-05-18 10:50:41 +02003288 * event completes.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003289 */
Peter Zijlstraef607772010-05-18 10:50:41 +02003290static void perf_output_get_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003291{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003292 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293
Peter Zijlstraef607772010-05-18 10:50:41 +02003294 preempt_disable();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003295 local_inc(&buffer->nest);
3296 handle->wakeup = local_read(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003297}
3298
Peter Zijlstraef607772010-05-18 10:50:41 +02003299static void perf_output_put_handle(struct perf_output_handle *handle)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003300{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003301 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003302 unsigned long head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003303
3304again:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003305 head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306
3307 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003308 * IRQ/NMI can happen here, which means we can miss a head update.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003309 */
3310
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003311 if (!local_dec_and_test(&buffer->nest))
Frederic Weisbeckeracd35a42010-05-20 21:28:34 +02003312 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003313
3314 /*
Peter Zijlstraef607772010-05-18 10:50:41 +02003315 * Publish the known good head. Rely on the full barrier implied
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003316 * by atomic_dec_and_test() order the buffer->head read and this
Peter Zijlstraef607772010-05-18 10:50:41 +02003317 * write.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003318 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003319 buffer->user_page->data_head = head;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003320
Peter Zijlstraef607772010-05-18 10:50:41 +02003321 /*
3322 * Now check if we missed an update, rely on the (compiler)
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003323 * barrier in atomic_dec_and_test() to re-read buffer->head.
Peter Zijlstraef607772010-05-18 10:50:41 +02003324 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003325 if (unlikely(head != local_read(&buffer->head))) {
3326 local_inc(&buffer->nest);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327 goto again;
3328 }
3329
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003330 if (handle->wakeup != local_read(&buffer->wakeup))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003331 perf_output_wakeup(handle);
Peter Zijlstraef607772010-05-18 10:50:41 +02003332
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003333out:
Peter Zijlstraef607772010-05-18 10:50:41 +02003334 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003335}
3336
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003337__always_inline void perf_output_copy(struct perf_output_handle *handle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003338 const void *buf, unsigned int len)
3339{
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003340 do {
Peter Zijlstraa94ffaa2010-05-20 19:50:07 +02003341 unsigned long size = min_t(unsigned long, handle->size, len);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003342
3343 memcpy(handle->addr, buf, size);
3344
3345 len -= size;
3346 handle->addr += size;
Frederic Weisbecker74048f82010-05-27 21:34:58 +02003347 buf += size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003348 handle->size -= size;
3349 if (!handle->size) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003350 struct perf_buffer *buffer = handle->buffer;
Peter Zijlstra3cafa9f2010-05-20 19:07:56 +02003351
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003352 handle->page++;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003353 handle->page &= buffer->nr_pages - 1;
3354 handle->addr = buffer->data_pages[handle->page];
3355 handle->size = PAGE_SIZE << page_order(buffer);
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003356 }
3357 } while (len);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003358}
3359
3360int perf_output_begin(struct perf_output_handle *handle,
3361 struct perf_event *event, unsigned int size,
3362 int nmi, int sample)
3363{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003364 struct perf_buffer *buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365 unsigned long tail, offset, head;
3366 int have_lost;
3367 struct {
3368 struct perf_event_header header;
3369 u64 id;
3370 u64 lost;
3371 } lost_event;
3372
3373 rcu_read_lock();
3374 /*
3375 * For inherited events we send all the output towards the parent.
3376 */
3377 if (event->parent)
3378 event = event->parent;
3379
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003380 buffer = rcu_dereference(event->buffer);
3381 if (!buffer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003382 goto out;
3383
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003384 handle->buffer = buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003385 handle->event = event;
3386 handle->nmi = nmi;
3387 handle->sample = sample;
3388
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003389 if (!buffer->nr_pages)
Stephane Eranian00d1d0b2010-05-17 12:46:01 +02003390 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003391
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003392 have_lost = local_read(&buffer->lost);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003393 if (have_lost)
3394 size += sizeof(lost_event);
3395
Peter Zijlstraef607772010-05-18 10:50:41 +02003396 perf_output_get_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003397
3398 do {
3399 /*
3400 * Userspace could choose to issue a mb() before updating the
3401 * tail pointer. So that all reads will be completed before the
3402 * write is issued.
3403 */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003404 tail = ACCESS_ONCE(buffer->user_page->data_tail);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003405 smp_rmb();
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003406 offset = head = local_read(&buffer->head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 head += size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003408 if (unlikely(!perf_output_space(buffer, tail, offset, head)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003409 goto fail;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003410 } while (local_cmpxchg(&buffer->head, offset, head) != offset);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003411
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003412 if (head - local_read(&buffer->wakeup) > buffer->watermark)
3413 local_add(buffer->watermark, &buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003414
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003415 handle->page = offset >> (PAGE_SHIFT + page_order(buffer));
3416 handle->page &= buffer->nr_pages - 1;
3417 handle->size = offset & ((PAGE_SIZE << page_order(buffer)) - 1);
3418 handle->addr = buffer->data_pages[handle->page];
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003419 handle->addr += handle->size;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003420 handle->size = (PAGE_SIZE << page_order(buffer)) - handle->size;
Peter Zijlstra5d967a82010-05-20 16:46:39 +02003421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003422 if (have_lost) {
3423 lost_event.header.type = PERF_RECORD_LOST;
3424 lost_event.header.misc = 0;
3425 lost_event.header.size = sizeof(lost_event);
3426 lost_event.id = event->id;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003427 lost_event.lost = local_xchg(&buffer->lost, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003428
3429 perf_output_put(handle, lost_event);
3430 }
3431
3432 return 0;
3433
3434fail:
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003435 local_inc(&buffer->lost);
Peter Zijlstraef607772010-05-18 10:50:41 +02003436 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003437out:
3438 rcu_read_unlock();
3439
3440 return -ENOSPC;
3441}
3442
3443void perf_output_end(struct perf_output_handle *handle)
3444{
3445 struct perf_event *event = handle->event;
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003446 struct perf_buffer *buffer = handle->buffer;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003447
3448 int wakeup_events = event->attr.wakeup_events;
3449
3450 if (handle->sample && wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003451 int events = local_inc_return(&buffer->events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003452 if (events >= wakeup_events) {
Peter Zijlstraca5135e2010-05-28 19:33:23 +02003453 local_sub(wakeup_events, &buffer->events);
3454 local_inc(&buffer->wakeup);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455 }
3456 }
3457
Peter Zijlstraef607772010-05-18 10:50:41 +02003458 perf_output_put_handle(handle);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003459 rcu_read_unlock();
3460}
3461
3462static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
3463{
3464 /*
3465 * only top level events have the pid namespace they were created in
3466 */
3467 if (event->parent)
3468 event = event->parent;
3469
3470 return task_tgid_nr_ns(p, event->ns);
3471}
3472
3473static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
3474{
3475 /*
3476 * only top level events have the pid namespace they were created in
3477 */
3478 if (event->parent)
3479 event = event->parent;
3480
3481 return task_pid_nr_ns(p, event->ns);
3482}
3483
3484static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02003485 struct perf_event *event,
3486 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003487{
3488 u64 read_format = event->attr.read_format;
3489 u64 values[4];
3490 int n = 0;
3491
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003492 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003493 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02003494 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003495 atomic64_read(&event->child_total_time_enabled);
3496 }
3497 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02003498 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003499 atomic64_read(&event->child_total_time_running);
3500 }
3501 if (read_format & PERF_FORMAT_ID)
3502 values[n++] = primary_event_id(event);
3503
3504 perf_output_copy(handle, values, n * sizeof(u64));
3505}
3506
3507/*
3508 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
3509 */
3510static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02003511 struct perf_event *event,
3512 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003513{
3514 struct perf_event *leader = event->group_leader, *sub;
3515 u64 read_format = event->attr.read_format;
3516 u64 values[5];
3517 int n = 0;
3518
3519 values[n++] = 1 + leader->nr_siblings;
3520
3521 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02003522 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003523
3524 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02003525 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003526
3527 if (leader != event)
3528 leader->pmu->read(leader);
3529
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003530 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003531 if (read_format & PERF_FORMAT_ID)
3532 values[n++] = primary_event_id(leader);
3533
3534 perf_output_copy(handle, values, n * sizeof(u64));
3535
3536 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
3537 n = 0;
3538
3539 if (sub != event)
3540 sub->pmu->read(sub);
3541
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003542 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003543 if (read_format & PERF_FORMAT_ID)
3544 values[n++] = primary_event_id(sub);
3545
3546 perf_output_copy(handle, values, n * sizeof(u64));
3547 }
3548}
3549
Stephane Eranianeed01522010-10-26 16:08:01 +02003550#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
3551 PERF_FORMAT_TOTAL_TIME_RUNNING)
3552
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003553static void perf_output_read(struct perf_output_handle *handle,
3554 struct perf_event *event)
3555{
Stephane Eranianeed01522010-10-26 16:08:01 +02003556 u64 enabled = 0, running = 0, now, ctx_time;
3557 u64 read_format = event->attr.read_format;
3558
3559 /*
3560 * compute total_time_enabled, total_time_running
3561 * based on snapshot values taken when the event
3562 * was last scheduled in.
3563 *
3564 * we cannot simply called update_context_time()
3565 * because of locking issue as we are called in
3566 * NMI context
3567 */
3568 if (read_format & PERF_FORMAT_TOTAL_TIMES) {
3569 now = perf_clock();
3570 ctx_time = event->shadow_ctx_time + now;
3571 enabled = ctx_time - event->tstamp_enabled;
3572 running = ctx_time - event->tstamp_running;
3573 }
3574
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003575 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02003576 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003577 else
Stephane Eranianeed01522010-10-26 16:08:01 +02003578 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003579}
3580
3581void perf_output_sample(struct perf_output_handle *handle,
3582 struct perf_event_header *header,
3583 struct perf_sample_data *data,
3584 struct perf_event *event)
3585{
3586 u64 sample_type = data->type;
3587
3588 perf_output_put(handle, *header);
3589
3590 if (sample_type & PERF_SAMPLE_IP)
3591 perf_output_put(handle, data->ip);
3592
3593 if (sample_type & PERF_SAMPLE_TID)
3594 perf_output_put(handle, data->tid_entry);
3595
3596 if (sample_type & PERF_SAMPLE_TIME)
3597 perf_output_put(handle, data->time);
3598
3599 if (sample_type & PERF_SAMPLE_ADDR)
3600 perf_output_put(handle, data->addr);
3601
3602 if (sample_type & PERF_SAMPLE_ID)
3603 perf_output_put(handle, data->id);
3604
3605 if (sample_type & PERF_SAMPLE_STREAM_ID)
3606 perf_output_put(handle, data->stream_id);
3607
3608 if (sample_type & PERF_SAMPLE_CPU)
3609 perf_output_put(handle, data->cpu_entry);
3610
3611 if (sample_type & PERF_SAMPLE_PERIOD)
3612 perf_output_put(handle, data->period);
3613
3614 if (sample_type & PERF_SAMPLE_READ)
3615 perf_output_read(handle, event);
3616
3617 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3618 if (data->callchain) {
3619 int size = 1;
3620
3621 if (data->callchain)
3622 size += data->callchain->nr;
3623
3624 size *= sizeof(u64);
3625
3626 perf_output_copy(handle, data->callchain, size);
3627 } else {
3628 u64 nr = 0;
3629 perf_output_put(handle, nr);
3630 }
3631 }
3632
3633 if (sample_type & PERF_SAMPLE_RAW) {
3634 if (data->raw) {
3635 perf_output_put(handle, data->raw->size);
3636 perf_output_copy(handle, data->raw->data,
3637 data->raw->size);
3638 } else {
3639 struct {
3640 u32 size;
3641 u32 data;
3642 } raw = {
3643 .size = sizeof(u32),
3644 .data = 0,
3645 };
3646 perf_output_put(handle, raw);
3647 }
3648 }
3649}
3650
3651void perf_prepare_sample(struct perf_event_header *header,
3652 struct perf_sample_data *data,
3653 struct perf_event *event,
3654 struct pt_regs *regs)
3655{
3656 u64 sample_type = event->attr.sample_type;
3657
3658 data->type = sample_type;
3659
3660 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003661 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003662
3663 header->misc = 0;
3664 header->misc |= perf_misc_flags(regs);
3665
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003666 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003667 data->ip = perf_instruction_pointer(regs);
3668
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003669 if (sample_type & PERF_SAMPLE_TID) {
3670 /* namespace issues */
3671 data->tid_entry.pid = perf_event_pid(event, current);
3672 data->tid_entry.tid = perf_event_tid(event, current);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673 }
3674
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003675 if (sample_type & PERF_SAMPLE_TIME)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003676 data->time = perf_clock();
3677
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003678 if (sample_type & PERF_SAMPLE_ID)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003679 data->id = primary_event_id(event);
3680
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003681 if (sample_type & PERF_SAMPLE_STREAM_ID)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003682 data->stream_id = event->id;
3683
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003684 if (sample_type & PERF_SAMPLE_CPU) {
3685 data->cpu_entry.cpu = raw_smp_processor_id();
3686 data->cpu_entry.reserved = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687 }
3688
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003689 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
3690 int size = 1;
3691
3692 data->callchain = perf_callchain(regs);
3693
3694 if (data->callchain)
3695 size += data->callchain->nr;
3696
3697 header->size += size * sizeof(u64);
3698 }
3699
3700 if (sample_type & PERF_SAMPLE_RAW) {
3701 int size = sizeof(u32);
3702
3703 if (data->raw)
3704 size += data->raw->size;
3705 else
3706 size += sizeof(u32);
3707
3708 WARN_ON_ONCE(size & (sizeof(u64)-1));
3709 header->size += size;
3710 }
3711}
3712
3713static void perf_event_output(struct perf_event *event, int nmi,
3714 struct perf_sample_data *data,
3715 struct pt_regs *regs)
3716{
3717 struct perf_output_handle handle;
3718 struct perf_event_header header;
3719
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003720 /* protect the callchain buffers */
3721 rcu_read_lock();
3722
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003723 perf_prepare_sample(&header, data, event, regs);
3724
3725 if (perf_output_begin(&handle, event, header.size, nmi, 1))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003726 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003727
3728 perf_output_sample(&handle, &header, data, event);
3729
3730 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02003731
3732exit:
3733 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003734}
3735
3736/*
3737 * read event_id
3738 */
3739
3740struct perf_read_event {
3741 struct perf_event_header header;
3742
3743 u32 pid;
3744 u32 tid;
3745};
3746
3747static void
3748perf_event_read_event(struct perf_event *event,
3749 struct task_struct *task)
3750{
3751 struct perf_output_handle handle;
3752 struct perf_read_event read_event = {
3753 .header = {
3754 .type = PERF_RECORD_READ,
3755 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003756 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003757 },
3758 .pid = perf_event_pid(event, task),
3759 .tid = perf_event_tid(event, task),
3760 };
3761 int ret;
3762
3763 ret = perf_output_begin(&handle, event, read_event.header.size, 0, 0);
3764 if (ret)
3765 return;
3766
3767 perf_output_put(&handle, read_event);
3768 perf_output_read(&handle, event);
3769
3770 perf_output_end(&handle);
3771}
3772
3773/*
3774 * task tracking -- fork/exit
3775 *
Eric B Munson3af9e852010-05-18 15:30:49 +01003776 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003777 */
3778
3779struct perf_task_event {
3780 struct task_struct *task;
3781 struct perf_event_context *task_ctx;
3782
3783 struct {
3784 struct perf_event_header header;
3785
3786 u32 pid;
3787 u32 ppid;
3788 u32 tid;
3789 u32 ptid;
3790 u64 time;
3791 } event_id;
3792};
3793
3794static void perf_event_task_output(struct perf_event *event,
3795 struct perf_task_event *task_event)
3796{
3797 struct perf_output_handle handle;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003798 struct task_struct *task = task_event->task;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01003799 int size, ret;
3800
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003801 size = task_event->event_id.header.size;
3802 ret = perf_output_begin(&handle, event, size, 0, 0);
3803
Peter Zijlstraef607772010-05-18 10:50:41 +02003804 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003805 return;
3806
3807 task_event->event_id.pid = perf_event_pid(event, task);
3808 task_event->event_id.ppid = perf_event_pid(event, current);
3809
3810 task_event->event_id.tid = perf_event_tid(event, task);
3811 task_event->event_id.ptid = perf_event_tid(event, current);
3812
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003813 perf_output_put(&handle, task_event->event_id);
3814
3815 perf_output_end(&handle);
3816}
3817
3818static int perf_event_task_match(struct perf_event *event)
3819{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003820 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003821 return 0;
3822
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003823 if (event->cpu != -1 && event->cpu != smp_processor_id())
3824 return 0;
3825
Eric B Munson3af9e852010-05-18 15:30:49 +01003826 if (event->attr.comm || event->attr.mmap ||
3827 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003828 return 1;
3829
3830 return 0;
3831}
3832
3833static void perf_event_task_ctx(struct perf_event_context *ctx,
3834 struct perf_task_event *task_event)
3835{
3836 struct perf_event *event;
3837
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003838 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3839 if (perf_event_task_match(event))
3840 perf_event_task_output(event, task_event);
3841 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003842}
3843
3844static void perf_event_task_event(struct perf_task_event *task_event)
3845{
3846 struct perf_cpu_context *cpuctx;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003847 struct perf_event_context *ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003848 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003849 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003850
Peter Zijlstrad6ff86c2009-11-20 22:19:46 +01003851 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003852 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02003853 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003854 perf_event_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003855
3856 ctx = task_event->task_ctx;
3857 if (!ctx) {
3858 ctxn = pmu->task_ctx_nr;
3859 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02003860 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003861 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
3862 }
3863 if (ctx)
3864 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02003865next:
3866 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003867 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003868 rcu_read_unlock();
3869}
3870
3871static void perf_event_task(struct task_struct *task,
3872 struct perf_event_context *task_ctx,
3873 int new)
3874{
3875 struct perf_task_event task_event;
3876
3877 if (!atomic_read(&nr_comm_events) &&
3878 !atomic_read(&nr_mmap_events) &&
3879 !atomic_read(&nr_task_events))
3880 return;
3881
3882 task_event = (struct perf_task_event){
3883 .task = task,
3884 .task_ctx = task_ctx,
3885 .event_id = {
3886 .header = {
3887 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
3888 .misc = 0,
3889 .size = sizeof(task_event.event_id),
3890 },
3891 /* .pid */
3892 /* .ppid */
3893 /* .tid */
3894 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003895 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003896 },
3897 };
3898
3899 perf_event_task_event(&task_event);
3900}
3901
3902void perf_event_fork(struct task_struct *task)
3903{
3904 perf_event_task(task, NULL, 1);
3905}
3906
3907/*
3908 * comm tracking
3909 */
3910
3911struct perf_comm_event {
3912 struct task_struct *task;
3913 char *comm;
3914 int comm_size;
3915
3916 struct {
3917 struct perf_event_header header;
3918
3919 u32 pid;
3920 u32 tid;
3921 } event_id;
3922};
3923
3924static void perf_event_comm_output(struct perf_event *event,
3925 struct perf_comm_event *comm_event)
3926{
3927 struct perf_output_handle handle;
3928 int size = comm_event->event_id.header.size;
3929 int ret = perf_output_begin(&handle, event, size, 0, 0);
3930
3931 if (ret)
3932 return;
3933
3934 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
3935 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
3936
3937 perf_output_put(&handle, comm_event->event_id);
3938 perf_output_copy(&handle, comm_event->comm,
3939 comm_event->comm_size);
3940 perf_output_end(&handle);
3941}
3942
3943static int perf_event_comm_match(struct perf_event *event)
3944{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01003945 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01003946 return 0;
3947
Peter Zijlstra5d27c232009-12-17 13:16:32 +01003948 if (event->cpu != -1 && event->cpu != smp_processor_id())
3949 return 0;
3950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003951 if (event->attr.comm)
3952 return 1;
3953
3954 return 0;
3955}
3956
3957static void perf_event_comm_ctx(struct perf_event_context *ctx,
3958 struct perf_comm_event *comm_event)
3959{
3960 struct perf_event *event;
3961
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003962 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
3963 if (perf_event_comm_match(event))
3964 perf_event_comm_output(event, comm_event);
3965 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003966}
3967
3968static void perf_event_comm_event(struct perf_comm_event *comm_event)
3969{
3970 struct perf_cpu_context *cpuctx;
3971 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003972 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003973 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003974 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003975 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003976
3977 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01003978 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003979 size = ALIGN(strlen(comm)+1, sizeof(u64));
3980
3981 comm_event->comm = comm;
3982 comm_event->comm_size = size;
3983
3984 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
3985
Peter Zijlstraf6595f32009-11-20 22:19:47 +01003986 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003987 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02003988 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003989 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003990
3991 ctxn = pmu->task_ctx_nr;
3992 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02003993 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003994
3995 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
3996 if (ctx)
3997 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02003998next:
3999 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004000 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004001 rcu_read_unlock();
4002}
4003
4004void perf_event_comm(struct task_struct *task)
4005{
4006 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004007 struct perf_event_context *ctx;
4008 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004009
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004010 for_each_task_context_nr(ctxn) {
4011 ctx = task->perf_event_ctxp[ctxn];
4012 if (!ctx)
4013 continue;
4014
4015 perf_event_enable_on_exec(ctx);
4016 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004017
4018 if (!atomic_read(&nr_comm_events))
4019 return;
4020
4021 comm_event = (struct perf_comm_event){
4022 .task = task,
4023 /* .comm */
4024 /* .comm_size */
4025 .event_id = {
4026 .header = {
4027 .type = PERF_RECORD_COMM,
4028 .misc = 0,
4029 /* .size */
4030 },
4031 /* .pid */
4032 /* .tid */
4033 },
4034 };
4035
4036 perf_event_comm_event(&comm_event);
4037}
4038
4039/*
4040 * mmap tracking
4041 */
4042
4043struct perf_mmap_event {
4044 struct vm_area_struct *vma;
4045
4046 const char *file_name;
4047 int file_size;
4048
4049 struct {
4050 struct perf_event_header header;
4051
4052 u32 pid;
4053 u32 tid;
4054 u64 start;
4055 u64 len;
4056 u64 pgoff;
4057 } event_id;
4058};
4059
4060static void perf_event_mmap_output(struct perf_event *event,
4061 struct perf_mmap_event *mmap_event)
4062{
4063 struct perf_output_handle handle;
4064 int size = mmap_event->event_id.header.size;
4065 int ret = perf_output_begin(&handle, event, size, 0, 0);
4066
4067 if (ret)
4068 return;
4069
4070 mmap_event->event_id.pid = perf_event_pid(event, current);
4071 mmap_event->event_id.tid = perf_event_tid(event, current);
4072
4073 perf_output_put(&handle, mmap_event->event_id);
4074 perf_output_copy(&handle, mmap_event->file_name,
4075 mmap_event->file_size);
4076 perf_output_end(&handle);
4077}
4078
4079static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01004080 struct perf_mmap_event *mmap_event,
4081 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004082{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004083 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004084 return 0;
4085
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004086 if (event->cpu != -1 && event->cpu != smp_processor_id())
4087 return 0;
4088
Eric B Munson3af9e852010-05-18 15:30:49 +01004089 if ((!executable && event->attr.mmap_data) ||
4090 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004091 return 1;
4092
4093 return 0;
4094}
4095
4096static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01004097 struct perf_mmap_event *mmap_event,
4098 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004099{
4100 struct perf_event *event;
4101
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004102 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01004103 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004104 perf_event_mmap_output(event, mmap_event);
4105 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004106}
4107
4108static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4109{
4110 struct perf_cpu_context *cpuctx;
4111 struct perf_event_context *ctx;
4112 struct vm_area_struct *vma = mmap_event->vma;
4113 struct file *file = vma->vm_file;
4114 unsigned int size;
4115 char tmp[16];
4116 char *buf = NULL;
4117 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004118 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004119 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004120
4121 memset(tmp, 0, sizeof(tmp));
4122
4123 if (file) {
4124 /*
4125 * d_path works from the end of the buffer backwards, so we
4126 * need to add enough zero bytes after the string to handle
4127 * the 64bit alignment we do later.
4128 */
4129 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4130 if (!buf) {
4131 name = strncpy(tmp, "//enomem", sizeof(tmp));
4132 goto got_name;
4133 }
4134 name = d_path(&file->f_path, buf, PATH_MAX);
4135 if (IS_ERR(name)) {
4136 name = strncpy(tmp, "//toolong", sizeof(tmp));
4137 goto got_name;
4138 }
4139 } else {
4140 if (arch_vma_name(mmap_event->vma)) {
4141 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4142 sizeof(tmp));
4143 goto got_name;
4144 }
4145
4146 if (!vma->vm_mm) {
4147 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4148 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004149 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4150 vma->vm_end >= vma->vm_mm->brk) {
4151 name = strncpy(tmp, "[heap]", sizeof(tmp));
4152 goto got_name;
4153 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4154 vma->vm_end >= vma->vm_mm->start_stack) {
4155 name = strncpy(tmp, "[stack]", sizeof(tmp));
4156 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004157 }
4158
4159 name = strncpy(tmp, "//anon", sizeof(tmp));
4160 goto got_name;
4161 }
4162
4163got_name:
4164 size = ALIGN(strlen(name)+1, sizeof(u64));
4165
4166 mmap_event->file_name = name;
4167 mmap_event->file_size = size;
4168
4169 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4170
Peter Zijlstraf6d9dd22009-11-20 22:19:48 +01004171 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004172 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004173 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004174 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4175 vma->vm_flags & VM_EXEC);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004176
4177 ctxn = pmu->task_ctx_nr;
4178 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004179 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004180
4181 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4182 if (ctx) {
4183 perf_event_mmap_ctx(ctx, mmap_event,
4184 vma->vm_flags & VM_EXEC);
4185 }
Peter Zijlstra41945f62010-09-16 19:17:24 +02004186next:
4187 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004188 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004189 rcu_read_unlock();
4190
4191 kfree(buf);
4192}
4193
Eric B Munson3af9e852010-05-18 15:30:49 +01004194void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004195{
4196 struct perf_mmap_event mmap_event;
4197
4198 if (!atomic_read(&nr_mmap_events))
4199 return;
4200
4201 mmap_event = (struct perf_mmap_event){
4202 .vma = vma,
4203 /* .file_name */
4204 /* .file_size */
4205 .event_id = {
4206 .header = {
4207 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004208 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004209 /* .size */
4210 },
4211 /* .pid */
4212 /* .tid */
4213 .start = vma->vm_start,
4214 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004215 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004216 },
4217 };
4218
4219 perf_event_mmap_event(&mmap_event);
4220}
4221
4222/*
4223 * IRQ throttle logging
4224 */
4225
4226static void perf_log_throttle(struct perf_event *event, int enable)
4227{
4228 struct perf_output_handle handle;
4229 int ret;
4230
4231 struct {
4232 struct perf_event_header header;
4233 u64 time;
4234 u64 id;
4235 u64 stream_id;
4236 } throttle_event = {
4237 .header = {
4238 .type = PERF_RECORD_THROTTLE,
4239 .misc = 0,
4240 .size = sizeof(throttle_event),
4241 },
4242 .time = perf_clock(),
4243 .id = primary_event_id(event),
4244 .stream_id = event->id,
4245 };
4246
4247 if (enable)
4248 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4249
4250 ret = perf_output_begin(&handle, event, sizeof(throttle_event), 1, 0);
4251 if (ret)
4252 return;
4253
4254 perf_output_put(&handle, throttle_event);
4255 perf_output_end(&handle);
4256}
4257
4258/*
4259 * Generic event overflow handling, sampling.
4260 */
4261
4262static int __perf_event_overflow(struct perf_event *event, int nmi,
4263 int throttle, struct perf_sample_data *data,
4264 struct pt_regs *regs)
4265{
4266 int events = atomic_read(&event->event_limit);
4267 struct hw_perf_event *hwc = &event->hw;
4268 int ret = 0;
4269
Peter Zijlstra96398822010-11-24 18:55:29 +01004270 /*
4271 * Non-sampling counters might still use the PMI to fold short
4272 * hardware counters, ignore those.
4273 */
4274 if (unlikely(!is_sampling_event(event)))
4275 return 0;
4276
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004277 if (!throttle) {
4278 hwc->interrupts++;
4279 } else {
4280 if (hwc->interrupts != MAX_INTERRUPTS) {
4281 hwc->interrupts++;
4282 if (HZ * hwc->interrupts >
4283 (u64)sysctl_perf_event_sample_rate) {
4284 hwc->interrupts = MAX_INTERRUPTS;
4285 perf_log_throttle(event, 0);
4286 ret = 1;
4287 }
4288 } else {
4289 /*
4290 * Keep re-disabling events even though on the previous
4291 * pass we disabled it - just in case we raced with a
4292 * sched-in and the event got enabled again:
4293 */
4294 ret = 1;
4295 }
4296 }
4297
4298 if (event->attr.freq) {
4299 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004300 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004301
Peter Zijlstraabd50712010-01-26 18:50:16 +01004302 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004303
Peter Zijlstraabd50712010-01-26 18:50:16 +01004304 if (delta > 0 && delta < 2*TICK_NSEC)
4305 perf_adjust_period(event, delta, hwc->last_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004306 }
4307
4308 /*
4309 * XXX event_limit might not quite work as expected on inherited
4310 * events
4311 */
4312
4313 event->pending_kill = POLL_IN;
4314 if (events && atomic_dec_and_test(&event->event_limit)) {
4315 ret = 1;
4316 event->pending_kill = POLL_HUP;
4317 if (nmi) {
4318 event->pending_disable = 1;
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004319 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004320 } else
4321 perf_event_disable(event);
4322 }
4323
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004324 if (event->overflow_handler)
4325 event->overflow_handler(event, nmi, data, regs);
4326 else
4327 perf_event_output(event, nmi, data, regs);
4328
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004329 return ret;
4330}
4331
4332int perf_event_overflow(struct perf_event *event, int nmi,
4333 struct perf_sample_data *data,
4334 struct pt_regs *regs)
4335{
4336 return __perf_event_overflow(event, nmi, 1, data, regs);
4337}
4338
4339/*
4340 * Generic software event infrastructure
4341 */
4342
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004343struct swevent_htable {
4344 struct swevent_hlist *swevent_hlist;
4345 struct mutex hlist_mutex;
4346 int hlist_refcount;
4347
4348 /* Recursion avoidance in each contexts */
4349 int recursion[PERF_NR_CONTEXTS];
4350};
4351
4352static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4353
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004354/*
4355 * We directly increment event->count and keep a second value in
4356 * event->hw.period_left to count intervals. This period event
4357 * is kept in the range [-sample_period, 0] so that we can use the
4358 * sign as trigger.
4359 */
4360
4361static u64 perf_swevent_set_period(struct perf_event *event)
4362{
4363 struct hw_perf_event *hwc = &event->hw;
4364 u64 period = hwc->last_period;
4365 u64 nr, offset;
4366 s64 old, val;
4367
4368 hwc->last_period = hwc->sample_period;
4369
4370again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02004371 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004372 if (val < 0)
4373 return 0;
4374
4375 nr = div64_u64(period + val, period);
4376 offset = nr * period;
4377 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02004378 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004379 goto again;
4380
4381 return nr;
4382}
4383
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004384static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004385 int nmi, struct perf_sample_data *data,
4386 struct pt_regs *regs)
4387{
4388 struct hw_perf_event *hwc = &event->hw;
4389 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390
4391 data->period = event->hw.last_period;
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004392 if (!overflow)
4393 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004394
4395 if (hwc->interrupts == MAX_INTERRUPTS)
4396 return;
4397
4398 for (; overflow; overflow--) {
4399 if (__perf_event_overflow(event, nmi, throttle,
4400 data, regs)) {
4401 /*
4402 * We inhibit the overflow from happening when
4403 * hwc->interrupts == MAX_INTERRUPTS.
4404 */
4405 break;
4406 }
4407 throttle = 1;
4408 }
4409}
4410
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004411static void perf_swevent_event(struct perf_event *event, u64 nr,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004412 int nmi, struct perf_sample_data *data,
4413 struct pt_regs *regs)
4414{
4415 struct hw_perf_event *hwc = &event->hw;
4416
Peter Zijlstrae7850592010-05-21 14:43:08 +02004417 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004418
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004419 if (!regs)
4420 return;
4421
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01004422 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004423 return;
4424
4425 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
4426 return perf_swevent_overflow(event, 1, nmi, data, regs);
4427
Peter Zijlstrae7850592010-05-21 14:43:08 +02004428 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004429 return;
4430
4431 perf_swevent_overflow(event, 0, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004432}
4433
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004434static int perf_exclude_event(struct perf_event *event,
4435 struct pt_regs *regs)
4436{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004437 if (event->hw.state & PERF_HES_STOPPED)
4438 return 0;
4439
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004440 if (regs) {
4441 if (event->attr.exclude_user && user_mode(regs))
4442 return 1;
4443
4444 if (event->attr.exclude_kernel && !user_mode(regs))
4445 return 1;
4446 }
4447
4448 return 0;
4449}
4450
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004451static int perf_swevent_match(struct perf_event *event,
4452 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08004453 u32 event_id,
4454 struct perf_sample_data *data,
4455 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004456{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004457 if (event->attr.type != type)
4458 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004459
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004460 if (event->attr.config != event_id)
4461 return 0;
4462
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004463 if (perf_exclude_event(event, regs))
4464 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004465
4466 return 1;
4467}
4468
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004469static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004470{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004471 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004472
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004473 return hash_64(val, SWEVENT_HLIST_BITS);
4474}
4475
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004476static inline struct hlist_head *
4477__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004478{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004479 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004480
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004481 return &hlist->heads[hash];
4482}
4483
4484/* For the read side: events when they trigger */
4485static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004486find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004487{
4488 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004489
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004490 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004491 if (!hlist)
4492 return NULL;
4493
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004494 return __find_swevent_head(hlist, type, event_id);
4495}
4496
4497/* For the event head insertion and removal in the hlist */
4498static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004499find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004500{
4501 struct swevent_hlist *hlist;
4502 u32 event_id = event->attr.config;
4503 u64 type = event->attr.type;
4504
4505 /*
4506 * Event scheduling is always serialized against hlist allocation
4507 * and release. Which makes the protected version suitable here.
4508 * The context lock guarantees that.
4509 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004510 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004511 lockdep_is_held(&event->ctx->lock));
4512 if (!hlist)
4513 return NULL;
4514
4515 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004516}
4517
4518static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
4519 u64 nr, int nmi,
4520 struct perf_sample_data *data,
4521 struct pt_regs *regs)
4522{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004523 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004524 struct perf_event *event;
4525 struct hlist_node *node;
4526 struct hlist_head *head;
4527
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004528 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004529 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004530 if (!head)
4531 goto end;
4532
4533 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08004534 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004535 perf_swevent_event(event, nr, nmi, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004536 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004537end:
4538 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004539}
4540
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004541int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004542{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004543 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004544
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004545 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004546}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01004547EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004548
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004549void inline perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004550{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004551 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004552
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004553 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01004554}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004555
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004556void __perf_sw_event(u32 event_id, u64 nr, int nmi,
4557 struct pt_regs *regs, u64 addr)
4558{
Ingo Molnara4234bf2009-11-23 10:57:59 +01004559 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004560 int rctx;
4561
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004562 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004563 rctx = perf_swevent_get_recursion_context();
4564 if (rctx < 0)
4565 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004566
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004567 perf_sample_data_init(&data, addr);
Ingo Molnara4234bf2009-11-23 10:57:59 +01004568
4569 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, nmi, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01004570
4571 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004572 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004573}
4574
4575static void perf_swevent_read(struct perf_event *event)
4576{
4577}
4578
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004579static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004580{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004581 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004582 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004583 struct hlist_head *head;
4584
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01004585 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004586 hwc->last_period = hwc->sample_period;
4587 perf_swevent_set_period(event);
4588 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004589
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004590 hwc->state = !(flags & PERF_EF_START);
4591
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004592 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004593 if (WARN_ON_ONCE(!head))
4594 return -EINVAL;
4595
4596 hlist_add_head_rcu(&event->hlist_entry, head);
4597
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004598 return 0;
4599}
4600
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004601static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004602{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004603 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004604}
4605
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004606static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004607{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004608 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004609}
4610
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004611static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004612{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004613 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02004614}
4615
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004616/* Deref the hlist from the update side */
4617static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004618swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004619{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004620 return rcu_dereference_protected(swhash->swevent_hlist,
4621 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004622}
4623
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004624static void swevent_hlist_release_rcu(struct rcu_head *rcu_head)
4625{
4626 struct swevent_hlist *hlist;
4627
4628 hlist = container_of(rcu_head, struct swevent_hlist, rcu_head);
4629 kfree(hlist);
4630}
4631
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004632static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004633{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004634 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004635
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02004636 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004637 return;
4638
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004639 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004640 call_rcu(&hlist->rcu_head, swevent_hlist_release_rcu);
4641}
4642
4643static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
4644{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004645 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004646
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004647 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004648
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004649 if (!--swhash->hlist_refcount)
4650 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004651
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004652 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004653}
4654
4655static void swevent_hlist_put(struct perf_event *event)
4656{
4657 int cpu;
4658
4659 if (event->cpu != -1) {
4660 swevent_hlist_put_cpu(event, event->cpu);
4661 return;
4662 }
4663
4664 for_each_possible_cpu(cpu)
4665 swevent_hlist_put_cpu(event, cpu);
4666}
4667
4668static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
4669{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004670 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004671 int err = 0;
4672
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004673 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004674
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004675 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004676 struct swevent_hlist *hlist;
4677
4678 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
4679 if (!hlist) {
4680 err = -ENOMEM;
4681 goto exit;
4682 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004683 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004684 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004685 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004686exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004687 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004688
4689 return err;
4690}
4691
4692static int swevent_hlist_get(struct perf_event *event)
4693{
4694 int err;
4695 int cpu, failed_cpu;
4696
4697 if (event->cpu != -1)
4698 return swevent_hlist_get_cpu(event, event->cpu);
4699
4700 get_online_cpus();
4701 for_each_possible_cpu(cpu) {
4702 err = swevent_hlist_get_cpu(event, cpu);
4703 if (err) {
4704 failed_cpu = cpu;
4705 goto fail;
4706 }
4707 }
4708 put_online_cpus();
4709
4710 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02004711fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004712 for_each_possible_cpu(cpu) {
4713 if (cpu == failed_cpu)
4714 break;
4715 swevent_hlist_put_cpu(event, cpu);
4716 }
4717
4718 put_online_cpus();
4719 return err;
4720}
4721
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004722atomic_t perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004723
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004724static void sw_perf_event_destroy(struct perf_event *event)
4725{
4726 u64 event_id = event->attr.config;
4727
4728 WARN_ON(event->parent);
4729
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02004730 jump_label_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004731 swevent_hlist_put(event);
4732}
4733
4734static int perf_swevent_init(struct perf_event *event)
4735{
4736 int event_id = event->attr.config;
4737
4738 if (event->attr.type != PERF_TYPE_SOFTWARE)
4739 return -ENOENT;
4740
4741 switch (event_id) {
4742 case PERF_COUNT_SW_CPU_CLOCK:
4743 case PERF_COUNT_SW_TASK_CLOCK:
4744 return -ENOENT;
4745
4746 default:
4747 break;
4748 }
4749
4750 if (event_id > PERF_COUNT_SW_MAX)
4751 return -ENOENT;
4752
4753 if (!event->parent) {
4754 int err;
4755
4756 err = swevent_hlist_get(event);
4757 if (err)
4758 return err;
4759
Peter Zijlstra7e54a5a2010-10-14 22:32:45 +02004760 jump_label_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004761 event->destroy = sw_perf_event_destroy;
4762 }
4763
4764 return 0;
4765}
4766
4767static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02004768 .task_ctx_nr = perf_sw_context,
4769
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004770 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004771 .add = perf_swevent_add,
4772 .del = perf_swevent_del,
4773 .start = perf_swevent_start,
4774 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004775 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004776};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004777
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004778#ifdef CONFIG_EVENT_TRACING
4779
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004780static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02004781 struct perf_sample_data *data)
4782{
4783 void *record = data->raw->data;
4784
4785 if (likely(!event->filter) || filter_match_preds(event->filter, record))
4786 return 1;
4787 return 0;
4788}
4789
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004790static int perf_tp_event_match(struct perf_event *event,
4791 struct perf_sample_data *data,
4792 struct pt_regs *regs)
4793{
Peter Zijlstra580d6072010-05-20 20:54:31 +02004794 /*
4795 * All tracepoints are from kernel-space.
4796 */
4797 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004798 return 0;
4799
4800 if (!perf_tp_filter_match(event, data))
4801 return 0;
4802
4803 return 1;
4804}
4805
4806void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004807 struct pt_regs *regs, struct hlist_head *head, int rctx)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004808{
4809 struct perf_sample_data data;
4810 struct perf_event *event;
4811 struct hlist_node *node;
4812
4813 struct perf_raw_record raw = {
4814 .size = entry_size,
4815 .data = record,
4816 };
4817
4818 perf_sample_data_init(&data, addr);
4819 data.raw = &raw;
4820
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004821 hlist_for_each_entry_rcu(event, node, head, hlist_entry) {
4822 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004823 perf_swevent_event(event, count, 1, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004824 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02004825
4826 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004827}
4828EXPORT_SYMBOL_GPL(perf_tp_event);
4829
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004830static void tp_perf_event_destroy(struct perf_event *event)
4831{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004832 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004833}
4834
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004835static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004836{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02004837 int err;
4838
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004839 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4840 return -ENOENT;
4841
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02004842 err = perf_trace_init(event);
4843 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004844 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004845
4846 event->destroy = tp_perf_event_destroy;
4847
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004848 return 0;
4849}
4850
4851static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02004852 .task_ctx_nr = perf_sw_context,
4853
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004854 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004855 .add = perf_trace_add,
4856 .del = perf_trace_del,
4857 .start = perf_swevent_start,
4858 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004859 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004860};
4861
4862static inline void perf_tp_register(void)
4863{
4864 perf_pmu_register(&perf_tracepoint);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004865}
Li Zefan6fb29152009-10-15 11:21:42 +08004866
4867static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4868{
4869 char *filter_str;
4870 int ret;
4871
4872 if (event->attr.type != PERF_TYPE_TRACEPOINT)
4873 return -EINVAL;
4874
4875 filter_str = strndup_user(arg, PAGE_SIZE);
4876 if (IS_ERR(filter_str))
4877 return PTR_ERR(filter_str);
4878
4879 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
4880
4881 kfree(filter_str);
4882 return ret;
4883}
4884
4885static void perf_event_free_filter(struct perf_event *event)
4886{
4887 ftrace_profile_free_filter(event);
4888}
4889
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004890#else
Li Zefan6fb29152009-10-15 11:21:42 +08004891
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004892static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004893{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004894}
Li Zefan6fb29152009-10-15 11:21:42 +08004895
4896static int perf_event_set_filter(struct perf_event *event, void __user *arg)
4897{
4898 return -ENOENT;
4899}
4900
4901static void perf_event_free_filter(struct perf_event *event)
4902{
4903}
4904
Li Zefan07b139c2009-12-21 14:27:35 +08004905#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004906
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004907#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004908void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004909{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004910 struct perf_sample_data sample;
4911 struct pt_regs *regs = data;
4912
Peter Zijlstradc1d6282010-03-03 15:55:04 +01004913 perf_sample_data_init(&sample, bp->attr.bp_addr);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01004914
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004915 if (!bp->hw.state && !perf_exclude_event(bp, regs))
4916 perf_swevent_event(bp, 1, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02004917}
4918#endif
4919
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004920/*
4921 * hrtimer based swevent callback
4922 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004923
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004924static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004925{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004926 enum hrtimer_restart ret = HRTIMER_RESTART;
4927 struct perf_sample_data data;
4928 struct pt_regs *regs;
4929 struct perf_event *event;
4930 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004931
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004932 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
4933 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004934
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004935 perf_sample_data_init(&data, 0);
4936 data.period = event->hw.last_period;
4937 regs = get_irq_regs();
4938
4939 if (regs && !perf_exclude_event(event, regs)) {
4940 if (!(event->attr.exclude_idle && current->pid == 0))
4941 if (perf_event_overflow(event, 0, &data, regs))
4942 ret = HRTIMER_NORESTART;
4943 }
4944
4945 period = max_t(u64, 10000, event->hw.sample_period);
4946 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
4947
4948 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004949}
4950
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004951static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004952{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004953 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01004954 s64 period;
4955
4956 if (!is_sampling_event(event))
4957 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004958
4959 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
4960 hwc->hrtimer.function = perf_swevent_hrtimer;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004961
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01004962 period = local64_read(&hwc->period_left);
4963 if (period) {
4964 if (period < 0)
4965 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004966
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01004967 local64_set(&hwc->period_left, 0);
4968 } else {
4969 period = max_t(u64, 10000, hwc->sample_period);
4970 }
4971 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004972 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02004973 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004974}
4975
4976static void perf_swevent_cancel_hrtimer(struct perf_event *event)
4977{
4978 struct hw_perf_event *hwc = &event->hw;
4979
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01004980 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004981 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02004982 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004983
4984 hrtimer_cancel(&hwc->hrtimer);
4985 }
4986}
4987
4988/*
4989 * Software event: cpu wall time clock
4990 */
4991
4992static void cpu_clock_event_update(struct perf_event *event)
4993{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004994 s64 prev;
4995 u64 now;
4996
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004997 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02004998 prev = local64_xchg(&event->hw.prev_count, now);
4999 local64_add(now - prev, &event->count);
5000}
5001
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005002static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005003{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005004 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005005 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005006}
5007
5008static void cpu_clock_event_stop(struct perf_event *event, int flags)
5009{
5010 perf_swevent_cancel_hrtimer(event);
5011 cpu_clock_event_update(event);
5012}
5013
5014static int cpu_clock_event_add(struct perf_event *event, int flags)
5015{
5016 if (flags & PERF_EF_START)
5017 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005018
5019 return 0;
5020}
5021
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005022static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005023{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005024 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005025}
5026
5027static void cpu_clock_event_read(struct perf_event *event)
5028{
5029 cpu_clock_event_update(event);
5030}
5031
5032static int cpu_clock_event_init(struct perf_event *event)
5033{
5034 if (event->attr.type != PERF_TYPE_SOFTWARE)
5035 return -ENOENT;
5036
5037 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5038 return -ENOENT;
5039
5040 return 0;
5041}
5042
5043static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005044 .task_ctx_nr = perf_sw_context,
5045
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005046 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005047 .add = cpu_clock_event_add,
5048 .del = cpu_clock_event_del,
5049 .start = cpu_clock_event_start,
5050 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005051 .read = cpu_clock_event_read,
5052};
5053
5054/*
5055 * Software event: task time clock
5056 */
5057
5058static void task_clock_event_update(struct perf_event *event, u64 now)
5059{
5060 u64 prev;
5061 s64 delta;
5062
5063 prev = local64_xchg(&event->hw.prev_count, now);
5064 delta = now - prev;
5065 local64_add(delta, &event->count);
5066}
5067
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005068static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005069{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005070 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005071 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005072}
5073
5074static void task_clock_event_stop(struct perf_event *event, int flags)
5075{
5076 perf_swevent_cancel_hrtimer(event);
5077 task_clock_event_update(event, event->ctx->time);
5078}
5079
5080static int task_clock_event_add(struct perf_event *event, int flags)
5081{
5082 if (flags & PERF_EF_START)
5083 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005084
5085 return 0;
5086}
5087
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005088static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005089{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005090 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005091}
5092
5093static void task_clock_event_read(struct perf_event *event)
5094{
5095 u64 time;
5096
5097 if (!in_nmi()) {
5098 update_context_time(event->ctx);
5099 time = event->ctx->time;
5100 } else {
5101 u64 now = perf_clock();
5102 u64 delta = now - event->ctx->timestamp;
5103 time = event->ctx->time + delta;
5104 }
5105
5106 task_clock_event_update(event, time);
5107}
5108
5109static int task_clock_event_init(struct perf_event *event)
5110{
5111 if (event->attr.type != PERF_TYPE_SOFTWARE)
5112 return -ENOENT;
5113
5114 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5115 return -ENOENT;
5116
5117 return 0;
5118}
5119
5120static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005121 .task_ctx_nr = perf_sw_context,
5122
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005123 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005124 .add = task_clock_event_add,
5125 .del = task_clock_event_del,
5126 .start = task_clock_event_start,
5127 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005128 .read = task_clock_event_read,
5129};
5130
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005131static void perf_pmu_nop_void(struct pmu *pmu)
5132{
5133}
5134
5135static int perf_pmu_nop_int(struct pmu *pmu)
5136{
5137 return 0;
5138}
5139
5140static void perf_pmu_start_txn(struct pmu *pmu)
5141{
5142 perf_pmu_disable(pmu);
5143}
5144
5145static int perf_pmu_commit_txn(struct pmu *pmu)
5146{
5147 perf_pmu_enable(pmu);
5148 return 0;
5149}
5150
5151static void perf_pmu_cancel_txn(struct pmu *pmu)
5152{
5153 perf_pmu_enable(pmu);
5154}
5155
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005156/*
5157 * Ensures all contexts with the same task_ctx_nr have the same
5158 * pmu_cpu_context too.
5159 */
5160static void *find_pmu_context(int ctxn)
5161{
5162 struct pmu *pmu;
5163
5164 if (ctxn < 0)
5165 return NULL;
5166
5167 list_for_each_entry(pmu, &pmus, entry) {
5168 if (pmu->task_ctx_nr == ctxn)
5169 return pmu->pmu_cpu_context;
5170 }
5171
5172 return NULL;
5173}
5174
5175static void free_pmu_context(void * __percpu cpu_context)
5176{
5177 struct pmu *pmu;
5178
5179 mutex_lock(&pmus_lock);
5180 /*
5181 * Like a real lame refcount.
5182 */
5183 list_for_each_entry(pmu, &pmus, entry) {
5184 if (pmu->pmu_cpu_context == cpu_context)
5185 goto out;
5186 }
5187
5188 free_percpu(cpu_context);
5189out:
5190 mutex_unlock(&pmus_lock);
5191}
5192
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005193int perf_pmu_register(struct pmu *pmu)
5194{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005195 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005196
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005197 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005198 ret = -ENOMEM;
5199 pmu->pmu_disable_count = alloc_percpu(int);
5200 if (!pmu->pmu_disable_count)
5201 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005202
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005203 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
5204 if (pmu->pmu_cpu_context)
5205 goto got_cpu_context;
5206
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005207 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5208 if (!pmu->pmu_cpu_context)
5209 goto free_pdc;
5210
5211 for_each_possible_cpu(cpu) {
5212 struct perf_cpu_context *cpuctx;
5213
5214 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02005215 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005216 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005217 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02005218 cpuctx->jiffies_interval = 1;
5219 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005220 }
5221
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005222got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005223 if (!pmu->start_txn) {
5224 if (pmu->pmu_enable) {
5225 /*
5226 * If we have pmu_enable/pmu_disable calls, install
5227 * transaction stubs that use that to try and batch
5228 * hardware accesses.
5229 */
5230 pmu->start_txn = perf_pmu_start_txn;
5231 pmu->commit_txn = perf_pmu_commit_txn;
5232 pmu->cancel_txn = perf_pmu_cancel_txn;
5233 } else {
5234 pmu->start_txn = perf_pmu_nop_void;
5235 pmu->commit_txn = perf_pmu_nop_int;
5236 pmu->cancel_txn = perf_pmu_nop_void;
5237 }
5238 }
5239
5240 if (!pmu->pmu_enable) {
5241 pmu->pmu_enable = perf_pmu_nop_void;
5242 pmu->pmu_disable = perf_pmu_nop_void;
5243 }
5244
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005245 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005246 ret = 0;
5247unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005248 mutex_unlock(&pmus_lock);
5249
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005250 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005251
5252free_pdc:
5253 free_percpu(pmu->pmu_disable_count);
5254 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005255}
5256
5257void perf_pmu_unregister(struct pmu *pmu)
5258{
5259 mutex_lock(&pmus_lock);
5260 list_del_rcu(&pmu->entry);
5261 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005262
5263 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02005264 * We dereference the pmu list under both SRCU and regular RCU, so
5265 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005266 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005267 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02005268 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005269
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005270 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005271 free_pmu_context(pmu->pmu_cpu_context);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005272}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005273
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005274struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005275{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005276 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005277 int idx;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005278
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005279 idx = srcu_read_lock(&pmus_srcu);
5280 list_for_each_entry_rcu(pmu, &pmus, entry) {
5281 int ret = pmu->event_init(event);
5282 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005283 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005284
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005285 if (ret != -ENOENT) {
5286 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005287 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005289 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02005290 pmu = ERR_PTR(-ENOENT);
5291unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005292 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005293
5294 return pmu;
5295}
5296
5297/*
5298 * Allocate and initialize a event structure
5299 */
5300static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005301perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02005302 struct task_struct *task,
5303 struct perf_event *group_leader,
5304 struct perf_event *parent_event,
5305 perf_overflow_handler_t overflow_handler)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005306{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02005307 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005308 struct perf_event *event;
5309 struct hw_perf_event *hwc;
5310 long err;
5311
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005312 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005313 if (!event)
5314 return ERR_PTR(-ENOMEM);
5315
5316 /*
5317 * Single events are their own group leaders, with an
5318 * empty sibling list:
5319 */
5320 if (!group_leader)
5321 group_leader = event;
5322
5323 mutex_init(&event->child_mutex);
5324 INIT_LIST_HEAD(&event->child_list);
5325
5326 INIT_LIST_HEAD(&event->group_entry);
5327 INIT_LIST_HEAD(&event->event_entry);
5328 INIT_LIST_HEAD(&event->sibling_list);
5329 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08005330 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005331
5332 mutex_init(&event->mmap_mutex);
5333
5334 event->cpu = cpu;
5335 event->attr = *attr;
5336 event->group_leader = group_leader;
5337 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005338 event->oncpu = -1;
5339
5340 event->parent = parent_event;
5341
5342 event->ns = get_pid_ns(current->nsproxy->pid_ns);
5343 event->id = atomic64_inc_return(&perf_event_id);
5344
5345 event->state = PERF_EVENT_STATE_INACTIVE;
5346
Peter Zijlstrad580ff82010-10-14 17:43:23 +02005347 if (task) {
5348 event->attach_state = PERF_ATTACH_TASK;
5349#ifdef CONFIG_HAVE_HW_BREAKPOINT
5350 /*
5351 * hw_breakpoint is a bit difficult here..
5352 */
5353 if (attr->type == PERF_TYPE_BREAKPOINT)
5354 event->hw.bp_target = task;
5355#endif
5356 }
5357
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005358 if (!overflow_handler && parent_event)
5359 overflow_handler = parent_event->overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005360
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005361 event->overflow_handler = overflow_handler;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02005362
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005363 if (attr->disabled)
5364 event->state = PERF_EVENT_STATE_OFF;
5365
5366 pmu = NULL;
5367
5368 hwc = &event->hw;
5369 hwc->sample_period = attr->sample_period;
5370 if (attr->freq && attr->sample_freq)
5371 hwc->sample_period = 1;
5372 hwc->last_period = hwc->sample_period;
5373
Peter Zijlstrae7850592010-05-21 14:43:08 +02005374 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005375
5376 /*
5377 * we currently do not support PERF_FORMAT_GROUP on inherited events
5378 */
5379 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
5380 goto done;
5381
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005382 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005383
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005384done:
5385 err = 0;
5386 if (!pmu)
5387 err = -EINVAL;
5388 else if (IS_ERR(pmu))
5389 err = PTR_ERR(pmu);
5390
5391 if (err) {
5392 if (event->ns)
5393 put_pid_ns(event->ns);
5394 kfree(event);
5395 return ERR_PTR(err);
5396 }
5397
5398 event->pmu = pmu;
5399
5400 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02005401 if (event->attach_state & PERF_ATTACH_TASK)
5402 jump_label_inc(&perf_task_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01005403 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404 atomic_inc(&nr_mmap_events);
5405 if (event->attr.comm)
5406 atomic_inc(&nr_comm_events);
5407 if (event->attr.task)
5408 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005409 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
5410 err = get_callchain_buffers();
5411 if (err) {
5412 free_event(event);
5413 return ERR_PTR(err);
5414 }
5415 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005416 }
5417
5418 return event;
5419}
5420
5421static int perf_copy_attr(struct perf_event_attr __user *uattr,
5422 struct perf_event_attr *attr)
5423{
5424 u32 size;
5425 int ret;
5426
5427 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
5428 return -EFAULT;
5429
5430 /*
5431 * zero the full structure, so that a short copy will be nice.
5432 */
5433 memset(attr, 0, sizeof(*attr));
5434
5435 ret = get_user(size, &uattr->size);
5436 if (ret)
5437 return ret;
5438
5439 if (size > PAGE_SIZE) /* silly large */
5440 goto err_size;
5441
5442 if (!size) /* abi compat */
5443 size = PERF_ATTR_SIZE_VER0;
5444
5445 if (size < PERF_ATTR_SIZE_VER0)
5446 goto err_size;
5447
5448 /*
5449 * If we're handed a bigger struct than we know of,
5450 * ensure all the unknown bits are 0 - i.e. new
5451 * user-space does not rely on any kernel feature
5452 * extensions we dont know about yet.
5453 */
5454 if (size > sizeof(*attr)) {
5455 unsigned char __user *addr;
5456 unsigned char __user *end;
5457 unsigned char val;
5458
5459 addr = (void __user *)uattr + sizeof(*attr);
5460 end = (void __user *)uattr + size;
5461
5462 for (; addr < end; addr++) {
5463 ret = get_user(val, addr);
5464 if (ret)
5465 return ret;
5466 if (val)
5467 goto err_size;
5468 }
5469 size = sizeof(*attr);
5470 }
5471
5472 ret = copy_from_user(attr, uattr, size);
5473 if (ret)
5474 return -EFAULT;
5475
5476 /*
5477 * If the type exists, the corresponding creation will verify
5478 * the attr->config.
5479 */
5480 if (attr->type >= PERF_TYPE_MAX)
5481 return -EINVAL;
5482
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05305483 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005484 return -EINVAL;
5485
5486 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
5487 return -EINVAL;
5488
5489 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
5490 return -EINVAL;
5491
5492out:
5493 return ret;
5494
5495err_size:
5496 put_user(sizeof(*attr), &uattr->size);
5497 ret = -E2BIG;
5498 goto out;
5499}
5500
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005501static int
5502perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005503{
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005504 struct perf_buffer *buffer = NULL, *old_buffer = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005505 int ret = -EINVAL;
5506
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005507 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005508 goto set;
5509
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005510 /* don't allow circular references */
5511 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005512 goto out;
5513
Peter Zijlstra0f139302010-05-20 14:35:15 +02005514 /*
5515 * Don't allow cross-cpu buffers
5516 */
5517 if (output_event->cpu != event->cpu)
5518 goto out;
5519
5520 /*
5521 * If its not a per-cpu buffer, it must be the same task.
5522 */
5523 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
5524 goto out;
5525
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005526set:
5527 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005528 /* Can't redirect output if we've got an active mmap() */
5529 if (atomic_read(&event->mmap_count))
5530 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005531
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005532 if (output_event) {
5533 /* get the buffer we want to redirect to */
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005534 buffer = perf_buffer_get(output_event);
5535 if (!buffer)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005536 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005537 }
5538
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005539 old_buffer = event->buffer;
5540 rcu_assign_pointer(event->buffer, buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005541 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005542unlock:
5543 mutex_unlock(&event->mmap_mutex);
5544
Peter Zijlstraca5135e2010-05-28 19:33:23 +02005545 if (old_buffer)
5546 perf_buffer_put(old_buffer);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005547out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005548 return ret;
5549}
5550
5551/**
5552 * sys_perf_event_open - open a performance event, associate it to a task/cpu
5553 *
5554 * @attr_uptr: event_id type attributes for monitoring/sampling
5555 * @pid: target pid
5556 * @cpu: target cpu
5557 * @group_fd: group leader event fd
5558 */
5559SYSCALL_DEFINE5(perf_event_open,
5560 struct perf_event_attr __user *, attr_uptr,
5561 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
5562{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005563 struct perf_event *group_leader = NULL, *output_event = NULL;
5564 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005565 struct perf_event_attr attr;
5566 struct perf_event_context *ctx;
5567 struct file *event_file = NULL;
5568 struct file *group_file = NULL;
Matt Helsley38a81da2010-09-13 13:01:20 -07005569 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005570 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04005571 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005572 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005573 int fput_needed = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005574 int err;
5575
5576 /* for future expandability... */
5577 if (flags & ~(PERF_FLAG_FD_NO_GROUP | PERF_FLAG_FD_OUTPUT))
5578 return -EINVAL;
5579
5580 err = perf_copy_attr(attr_uptr, &attr);
5581 if (err)
5582 return err;
5583
5584 if (!attr.exclude_kernel) {
5585 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
5586 return -EACCES;
5587 }
5588
5589 if (attr.freq) {
5590 if (attr.sample_freq > sysctl_perf_event_sample_rate)
5591 return -EINVAL;
5592 }
5593
Al Viroea635c62010-05-26 17:40:29 -04005594 event_fd = get_unused_fd_flags(O_RDWR);
5595 if (event_fd < 0)
5596 return event_fd;
5597
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005598 if (group_fd != -1) {
5599 group_leader = perf_fget_light(group_fd, &fput_needed);
5600 if (IS_ERR(group_leader)) {
5601 err = PTR_ERR(group_leader);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02005602 goto err_fd;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005603 }
5604 group_file = group_leader->filp;
5605 if (flags & PERF_FLAG_FD_OUTPUT)
5606 output_event = group_leader;
5607 if (flags & PERF_FLAG_FD_NO_GROUP)
5608 group_leader = NULL;
5609 }
5610
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02005611 if (pid != -1) {
5612 task = find_lively_task_by_vpid(pid);
5613 if (IS_ERR(task)) {
5614 err = PTR_ERR(task);
5615 goto err_group_fd;
5616 }
5617 }
5618
Peter Zijlstrad580ff82010-10-14 17:43:23 +02005619 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02005620 if (IS_ERR(event)) {
5621 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02005622 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02005623 }
5624
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005625 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005626 * Special case software events and allow them to be part of
5627 * any hardware group.
5628 */
5629 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005630
5631 if (group_leader &&
5632 (is_software_event(event) != is_software_event(group_leader))) {
5633 if (is_software_event(event)) {
5634 /*
5635 * If event and group_leader are not both a software
5636 * event, and event is, then group leader is not.
5637 *
5638 * Allow the addition of software events to !software
5639 * groups, this is safe because software events never
5640 * fail to schedule.
5641 */
5642 pmu = group_leader->pmu;
5643 } else if (is_software_event(group_leader) &&
5644 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
5645 /*
5646 * In case the group is a pure software group, and we
5647 * try to add a hardware event, move the whole group to
5648 * the hardware context.
5649 */
5650 move_group = 1;
5651 }
5652 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005653
5654 /*
5655 * Get the target context (task or percpu):
5656 */
Matt Helsley38a81da2010-09-13 13:01:20 -07005657 ctx = find_get_context(pmu, task, cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005658 if (IS_ERR(ctx)) {
5659 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02005660 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005661 }
5662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005663 /*
5664 * Look up the group leader (we will attach this event to it):
5665 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005666 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005667 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005668
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005669 /*
5670 * Do not allow a recursive hierarchy (this new sibling
5671 * becoming part of another group-sibling):
5672 */
5673 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005674 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005675 /*
5676 * Do not allow to attach to a group in a different
5677 * task or CPU context:
5678 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005679 if (move_group) {
5680 if (group_leader->ctx->type != ctx->type)
5681 goto err_context;
5682 } else {
5683 if (group_leader->ctx != ctx)
5684 goto err_context;
5685 }
5686
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005687 /*
5688 * Only a group leader can be exclusive or pinned
5689 */
5690 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005691 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005692 }
5693
5694 if (output_event) {
5695 err = perf_event_set_output(event, output_event);
5696 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005697 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02005698 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005699
Al Viroea635c62010-05-26 17:40:29 -04005700 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
5701 if (IS_ERR(event_file)) {
5702 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005703 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04005704 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005705
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005706 if (move_group) {
5707 struct perf_event_context *gctx = group_leader->ctx;
5708
5709 mutex_lock(&gctx->mutex);
5710 perf_event_remove_from_context(group_leader);
5711 list_for_each_entry(sibling, &group_leader->sibling_list,
5712 group_entry) {
5713 perf_event_remove_from_context(sibling);
5714 put_ctx(gctx);
5715 }
5716 mutex_unlock(&gctx->mutex);
5717 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005718 }
5719
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005720 event->filp = event_file;
5721 WARN_ON_ONCE(ctx->parent_ctx);
5722 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005723
5724 if (move_group) {
5725 perf_install_in_context(ctx, group_leader, cpu);
5726 get_ctx(ctx);
5727 list_for_each_entry(sibling, &group_leader->sibling_list,
5728 group_entry) {
5729 perf_install_in_context(ctx, sibling, cpu);
5730 get_ctx(ctx);
5731 }
5732 }
5733
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005734 perf_install_in_context(ctx, event, cpu);
5735 ++ctx->generation;
5736 mutex_unlock(&ctx->mutex);
5737
5738 event->owner = current;
Peter Zijlstra8882135b2010-11-09 19:01:43 +01005739
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005740 mutex_lock(&current->perf_event_mutex);
5741 list_add_tail(&event->owner_entry, &current->perf_event_list);
5742 mutex_unlock(&current->perf_event_mutex);
5743
Peter Zijlstra8a495422010-05-27 15:47:49 +02005744 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005745 * Precalculate sample_data sizes
5746 */
5747 perf_event__header_size(event);
5748
5749 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02005750 * Drop the reference on the group_event after placing the
5751 * new event on the sibling_list. This ensures destruction
5752 * of the group leader will find the pointer to itself in
5753 * perf_group_detach().
5754 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005755 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04005756 fd_install(event_fd, event_file);
5757 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005758
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005759err_context:
Al Viroea635c62010-05-26 17:40:29 -04005760 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02005761err_alloc:
5762 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02005763err_task:
5764 if (task)
5765 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005766err_group_fd:
5767 fput_light(group_file, fput_needed);
Al Viroea635c62010-05-26 17:40:29 -04005768err_fd:
5769 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005770 return err;
5771}
5772
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005773/**
5774 * perf_event_create_kernel_counter
5775 *
5776 * @attr: attributes of the counter to create
5777 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07005778 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005779 */
5780struct perf_event *
5781perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07005782 struct task_struct *task,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01005783 perf_overflow_handler_t overflow_handler)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005784{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005785 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005786 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005787 int err;
5788
5789 /*
5790 * Get the target context (task or percpu):
5791 */
5792
Peter Zijlstrad580ff82010-10-14 17:43:23 +02005793 event = perf_event_alloc(attr, cpu, task, NULL, NULL, overflow_handler);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005794 if (IS_ERR(event)) {
5795 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005796 goto err;
5797 }
5798
Matt Helsley38a81da2010-09-13 13:01:20 -07005799 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005800 if (IS_ERR(ctx)) {
5801 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005802 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005803 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005804
5805 event->filp = NULL;
5806 WARN_ON_ONCE(ctx->parent_ctx);
5807 mutex_lock(&ctx->mutex);
5808 perf_install_in_context(ctx, event, cpu);
5809 ++ctx->generation;
5810 mutex_unlock(&ctx->mutex);
5811
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005812 return event;
5813
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02005814err_free:
5815 free_event(event);
5816err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01005817 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02005818}
5819EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
5820
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005821static void sync_child_event(struct perf_event *child_event,
5822 struct task_struct *child)
5823{
5824 struct perf_event *parent_event = child_event->parent;
5825 u64 child_val;
5826
5827 if (child_event->attr.inherit_stat)
5828 perf_event_read_event(child_event, child);
5829
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005830 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005831
5832 /*
5833 * Add back the child's count to the parent's count:
5834 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02005835 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005836 atomic64_add(child_event->total_time_enabled,
5837 &parent_event->child_total_time_enabled);
5838 atomic64_add(child_event->total_time_running,
5839 &parent_event->child_total_time_running);
5840
5841 /*
5842 * Remove this event from the parent's list
5843 */
5844 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
5845 mutex_lock(&parent_event->child_mutex);
5846 list_del_init(&child_event->child_list);
5847 mutex_unlock(&parent_event->child_mutex);
5848
5849 /*
5850 * Release the parent event, if this was the last
5851 * reference to it.
5852 */
5853 fput(parent_event->filp);
5854}
5855
5856static void
5857__perf_event_exit_task(struct perf_event *child_event,
5858 struct perf_event_context *child_ctx,
5859 struct task_struct *child)
5860{
5861 struct perf_event *parent_event;
5862
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005863 perf_event_remove_from_context(child_event);
5864
5865 parent_event = child_event->parent;
5866 /*
5867 * It can happen that parent exits first, and has events
5868 * that are still around due to the child reference. These
5869 * events need to be zapped - but otherwise linger.
5870 */
5871 if (parent_event) {
5872 sync_child_event(child_event, child);
5873 free_event(child_event);
5874 }
5875}
5876
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005877static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005878{
5879 struct perf_event *child_event, *tmp;
5880 struct perf_event_context *child_ctx;
5881 unsigned long flags;
5882
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005883 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005884 perf_event_task(child, NULL, 0);
5885 return;
5886 }
5887
5888 local_irq_save(flags);
5889 /*
5890 * We can't reschedule here because interrupts are disabled,
5891 * and either child is current or it is a task that can't be
5892 * scheduled, so we are now safe from rescheduling changing
5893 * our context.
5894 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005895 child_ctx = child->perf_event_ctxp[ctxn];
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02005896 task_ctx_sched_out(child_ctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005897
5898 /*
5899 * Take the context lock here so that if find_get_context is
5900 * reading child->perf_event_ctxp, we wait until it has
5901 * incremented the context's refcount before we do put_ctx below.
5902 */
Thomas Gleixnere625cce2009-11-17 18:02:06 +01005903 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005904 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005905 /*
5906 * If this context is a clone; unclone it so it can't get
5907 * swapped to another process while we're removing all
5908 * the events from it.
5909 */
5910 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01005911 update_context_time(child_ctx);
Thomas Gleixnere625cce2009-11-17 18:02:06 +01005912 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005913
5914 /*
5915 * Report the task dead after unscheduling the events so that we
5916 * won't get any samples after PERF_RECORD_EXIT. We can however still
5917 * get a few PERF_RECORD_READ events.
5918 */
5919 perf_event_task(child, child_ctx, 0);
5920
5921 /*
5922 * We can recurse on the same lock type through:
5923 *
5924 * __perf_event_exit_task()
5925 * sync_child_event()
5926 * fput(parent_event->filp)
5927 * perf_release()
5928 * mutex_lock(&ctx->mutex)
5929 *
5930 * But since its the parent context it won't be the same instance.
5931 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02005932 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005933
5934again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005935 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
5936 group_entry)
5937 __perf_event_exit_task(child_event, child_ctx, child);
5938
5939 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005940 group_entry)
5941 __perf_event_exit_task(child_event, child_ctx, child);
5942
5943 /*
5944 * If the last event was a group event, it will have appended all
5945 * its siblings to the list, but we obtained 'tmp' before that which
5946 * will still point to the list head terminating the iteration.
5947 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005948 if (!list_empty(&child_ctx->pinned_groups) ||
5949 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950 goto again;
5951
5952 mutex_unlock(&child_ctx->mutex);
5953
5954 put_ctx(child_ctx);
5955}
5956
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005957/*
5958 * When a child task exits, feed back event values to parent events.
5959 */
5960void perf_event_exit_task(struct task_struct *child)
5961{
Peter Zijlstra8882135b2010-11-09 19:01:43 +01005962 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005963 int ctxn;
5964
Peter Zijlstra8882135b2010-11-09 19:01:43 +01005965 mutex_lock(&child->perf_event_mutex);
5966 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
5967 owner_entry) {
5968 list_del_init(&event->owner_entry);
5969
5970 /*
5971 * Ensure the list deletion is visible before we clear
5972 * the owner, closes a race against perf_release() where
5973 * we need to serialize on the owner->perf_event_mutex.
5974 */
5975 smp_wmb();
5976 event->owner = NULL;
5977 }
5978 mutex_unlock(&child->perf_event_mutex);
5979
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005980 for_each_task_context_nr(ctxn)
5981 perf_event_exit_task_context(child, ctxn);
5982}
5983
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005984static void perf_free_event(struct perf_event *event,
5985 struct perf_event_context *ctx)
5986{
5987 struct perf_event *parent = event->parent;
5988
5989 if (WARN_ON_ONCE(!parent))
5990 return;
5991
5992 mutex_lock(&parent->child_mutex);
5993 list_del_init(&event->child_list);
5994 mutex_unlock(&parent->child_mutex);
5995
5996 fput(parent->filp);
5997
Peter Zijlstra8a495422010-05-27 15:47:49 +02005998 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01005999 list_del_event(event, ctx);
6000 free_event(event);
6001}
6002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006003/*
6004 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006005 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006006 */
6007void perf_event_free_task(struct task_struct *task)
6008{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006009 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006010 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006011 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006012
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006013 for_each_task_context_nr(ctxn) {
6014 ctx = task->perf_event_ctxp[ctxn];
6015 if (!ctx)
6016 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006017
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006018 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006019again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006020 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6021 group_entry)
6022 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006023
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006024 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6025 group_entry)
6026 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006027
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006028 if (!list_empty(&ctx->pinned_groups) ||
6029 !list_empty(&ctx->flexible_groups))
6030 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006031
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006032 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006033
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006034 put_ctx(ctx);
6035 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006036}
6037
Peter Zijlstra4e231c72010-09-09 21:01:59 +02006038void perf_event_delayed_put(struct task_struct *task)
6039{
6040 int ctxn;
6041
6042 for_each_task_context_nr(ctxn)
6043 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
6044}
6045
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006046/*
6047 * inherit a event from parent task to child task:
6048 */
6049static struct perf_event *
6050inherit_event(struct perf_event *parent_event,
6051 struct task_struct *parent,
6052 struct perf_event_context *parent_ctx,
6053 struct task_struct *child,
6054 struct perf_event *group_leader,
6055 struct perf_event_context *child_ctx)
6056{
6057 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02006058 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006059
6060 /*
6061 * Instead of creating recursive hierarchies of events,
6062 * we link inherited events back to the original parent,
6063 * which has a filp for sure, which we use as the reference
6064 * count:
6065 */
6066 if (parent_event->parent)
6067 parent_event = parent_event->parent;
6068
6069 child_event = perf_event_alloc(&parent_event->attr,
6070 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006071 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006072 group_leader, parent_event,
6073 NULL);
6074 if (IS_ERR(child_event))
6075 return child_event;
6076 get_ctx(child_ctx);
6077
6078 /*
6079 * Make the child state follow the state of the parent event,
6080 * not its attr.disabled bit. We hold the parent's mutex,
6081 * so we won't race with perf_event_{en, dis}able_family.
6082 */
6083 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
6084 child_event->state = PERF_EVENT_STATE_INACTIVE;
6085 else
6086 child_event->state = PERF_EVENT_STATE_OFF;
6087
6088 if (parent_event->attr.freq) {
6089 u64 sample_period = parent_event->hw.sample_period;
6090 struct hw_perf_event *hwc = &child_event->hw;
6091
6092 hwc->sample_period = sample_period;
6093 hwc->last_period = sample_period;
6094
6095 local64_set(&hwc->period_left, sample_period);
6096 }
6097
6098 child_event->ctx = child_ctx;
6099 child_event->overflow_handler = parent_event->overflow_handler;
6100
6101 /*
6102 * Link it up in the child's context:
6103 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02006104 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006105 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02006106 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02006107
6108 /*
6109 * Get a reference to the parent filp - we will fput it
6110 * when the child event exits. This is safe to do because
6111 * we are in the parent and we know that the filp still
6112 * exists and has a nonzero count:
6113 */
6114 atomic_long_inc(&parent_event->filp->f_count);
6115
6116 /*
6117 * Link this into the parent event's child list
6118 */
6119 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6120 mutex_lock(&parent_event->child_mutex);
6121 list_add_tail(&child_event->child_list, &parent_event->child_list);
6122 mutex_unlock(&parent_event->child_mutex);
6123
6124 return child_event;
6125}
6126
6127static int inherit_group(struct perf_event *parent_event,
6128 struct task_struct *parent,
6129 struct perf_event_context *parent_ctx,
6130 struct task_struct *child,
6131 struct perf_event_context *child_ctx)
6132{
6133 struct perf_event *leader;
6134 struct perf_event *sub;
6135 struct perf_event *child_ctr;
6136
6137 leader = inherit_event(parent_event, parent, parent_ctx,
6138 child, NULL, child_ctx);
6139 if (IS_ERR(leader))
6140 return PTR_ERR(leader);
6141 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
6142 child_ctr = inherit_event(sub, parent, parent_ctx,
6143 child, leader, child_ctx);
6144 if (IS_ERR(child_ctr))
6145 return PTR_ERR(child_ctr);
6146 }
6147 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006148}
6149
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006150static int
6151inherit_task_group(struct perf_event *event, struct task_struct *parent,
6152 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006153 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006154 int *inherited_all)
6155{
6156 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006157 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006158
6159 if (!event->attr.inherit) {
6160 *inherited_all = 0;
6161 return 0;
6162 }
6163
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006164 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006165 if (!child_ctx) {
6166 /*
6167 * This is executed from the parent task context, so
6168 * inherit events that have been marked for cloning.
6169 * First allocate and initialize a context for the
6170 * child.
6171 */
6172
Peter Zijlstraeb184472010-09-07 15:55:13 +02006173 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006174 if (!child_ctx)
6175 return -ENOMEM;
6176
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006177 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006178 }
6179
6180 ret = inherit_group(event, parent, parent_ctx,
6181 child, child_ctx);
6182
6183 if (ret)
6184 *inherited_all = 0;
6185
6186 return ret;
6187}
6188
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006189/*
6190 * Initialize the perf_event context in task_struct
6191 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006192int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006193{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006194 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006195 struct perf_event_context *cloned_ctx;
6196 struct perf_event *event;
6197 struct task_struct *parent = current;
6198 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01006199 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006200 int ret = 0;
6201
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006202 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006203
6204 mutex_init(&child->perf_event_mutex);
6205 INIT_LIST_HEAD(&child->perf_event_list);
6206
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006207 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006208 return 0;
6209
6210 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006211 * If the parent's context is a clone, pin it so it won't get
6212 * swapped under us.
6213 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006214 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006215
6216 /*
6217 * No need to check if parent_ctx != NULL here; since we saw
6218 * it non-NULL earlier, the only reason for it to become NULL
6219 * is if we exit, and since we're currently in the middle of
6220 * a fork we can't be exiting at the same time.
6221 */
6222
6223 /*
6224 * Lock the parent list. No need to lock the child - not PID
6225 * hashed yet and not running, so nobody can access it.
6226 */
6227 mutex_lock(&parent_ctx->mutex);
6228
6229 /*
6230 * We dont have to disable NMIs - we are only looking at
6231 * the list, not manipulating it:
6232 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006233 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006234 ret = inherit_task_group(event, parent, parent_ctx,
6235 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006236 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006237 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006238 }
6239
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01006240 /*
6241 * We can't hold ctx->lock when iterating the ->flexible_group list due
6242 * to allocations, but we need to prevent rotation because
6243 * rotate_ctx() will change the list from interrupt context.
6244 */
6245 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
6246 parent_ctx->rotate_disable = 1;
6247 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
6248
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006249 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006250 ret = inherit_task_group(event, parent, parent_ctx,
6251 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006252 if (ret)
6253 break;
6254 }
6255
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01006256 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
6257 parent_ctx->rotate_disable = 0;
6258 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
6259
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006260 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006261
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01006262 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006263 /*
6264 * Mark the child context as a clone of the parent
6265 * context, or of whatever the parent is a clone of.
6266 * Note that if the parent is a clone, it could get
6267 * uncloned at any point, but that doesn't matter
6268 * because the list of events and the generation
6269 * count can't have changed since we took the mutex.
6270 */
6271 cloned_ctx = rcu_dereference(parent_ctx->parent_ctx);
6272 if (cloned_ctx) {
6273 child_ctx->parent_ctx = cloned_ctx;
6274 child_ctx->parent_gen = parent_ctx->parent_gen;
6275 } else {
6276 child_ctx->parent_ctx = parent_ctx;
6277 child_ctx->parent_gen = parent_ctx->generation;
6278 }
6279 get_ctx(child_ctx->parent_ctx);
6280 }
6281
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006282 mutex_unlock(&parent_ctx->mutex);
6283
6284 perf_unpin_context(parent_ctx);
6285
6286 return ret;
6287}
6288
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006289/*
6290 * Initialize the perf_event context in task_struct
6291 */
6292int perf_event_init_task(struct task_struct *child)
6293{
6294 int ctxn, ret;
6295
6296 for_each_task_context_nr(ctxn) {
6297 ret = perf_event_init_context(child, ctxn);
6298 if (ret)
6299 return ret;
6300 }
6301
6302 return 0;
6303}
6304
Paul Mackerras220b1402010-03-10 20:45:52 +11006305static void __init perf_event_init_all_cpus(void)
6306{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006307 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11006308 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11006309
6310 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006311 swhash = &per_cpu(swevent_htable, cpu);
6312 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006313 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11006314 }
6315}
6316
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006317static void __cpuinit perf_event_init_cpu(int cpu)
6318{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006319 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006320
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006321 mutex_lock(&swhash->hlist_mutex);
6322 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006323 struct swevent_hlist *hlist;
6324
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006325 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
6326 WARN_ON(!hlist);
6327 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006328 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006329 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006330}
6331
6332#ifdef CONFIG_HOTPLUG_CPU
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006333static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006334{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006335 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
6336
6337 WARN_ON(!irqs_disabled());
6338
6339 list_del_init(&cpuctx->rotation_list);
6340}
6341
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006342static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006343{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006344 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006345 struct perf_event *event, *tmp;
6346
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006347 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006348
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006349 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
6350 __perf_event_remove_from_context(event);
6351 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006352 __perf_event_remove_from_context(event);
6353}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006354
6355static void perf_event_exit_cpu_context(int cpu)
6356{
6357 struct perf_event_context *ctx;
6358 struct pmu *pmu;
6359 int idx;
6360
6361 idx = srcu_read_lock(&pmus_srcu);
6362 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02006363 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006364
6365 mutex_lock(&ctx->mutex);
6366 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
6367 mutex_unlock(&ctx->mutex);
6368 }
6369 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006370}
6371
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006372static void perf_event_exit_cpu(int cpu)
6373{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006374 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006375
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006376 mutex_lock(&swhash->hlist_mutex);
6377 swevent_hlist_release(swhash);
6378 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006379
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006380 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006381}
6382#else
6383static inline void perf_event_exit_cpu(int cpu) { }
6384#endif
6385
6386static int __cpuinit
6387perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
6388{
6389 unsigned int cpu = (long)hcpu;
6390
Peter Zijlstra5e116372010-06-11 13:35:08 +02006391 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006392
6393 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02006394 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006395 perf_event_init_cpu(cpu);
6396 break;
6397
Peter Zijlstra5e116372010-06-11 13:35:08 +02006398 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006399 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006400 perf_event_exit_cpu(cpu);
6401 break;
6402
6403 default:
6404 break;
6405 }
6406
6407 return NOTIFY_OK;
6408}
6409
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006410void __init perf_event_init(void)
6411{
Jason Wessel3c502e72010-11-04 17:33:01 -05006412 int ret;
6413
Paul Mackerras220b1402010-03-10 20:45:52 +11006414 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006415 init_srcu_struct(&pmus_srcu);
6416 perf_pmu_register(&perf_swevent);
6417 perf_pmu_register(&perf_cpu_clock);
6418 perf_pmu_register(&perf_task_clock);
6419 perf_tp_register();
6420 perf_cpu_notifier(perf_cpu_notify);
Jason Wessel3c502e72010-11-04 17:33:01 -05006421
6422 ret = init_hw_breakpoint();
6423 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006424}