blob: b0cd86501c30db1a1320d284f2d52eb1ec499f2b [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>
Ingo Molnare7e7ee22011-05-04 08:42:29 +02005 * Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Al Virod36b6912011-12-29 17:09:01 -05007 * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008 *
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>
Peter Zijlstra2e80a822010-11-17 23:17:36 +010016#include <linux/idr.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/file.h>
18#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Frederic Weisbecker76e1d902010-04-05 15:35:57 +020020#include <linux/hash.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020021#include <linux/sysfs.h>
22#include <linux/dcache.h>
23#include <linux/percpu.h>
24#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010025#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020026#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010027#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040028#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020029#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020030#include <linux/hardirq.h>
31#include <linux/rculist.h>
32#include <linux/uaccess.h>
33#include <linux/syscalls.h>
34#include <linux/anon_inodes.h>
35#include <linux/kernel_stat.h>
36#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080037#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050038#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020039#include <linux/mm_types.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020040
Frederic Weisbecker76369132011-05-19 19:55:04 +020041#include "internal.h"
42
Ingo Molnarcdd6c482009-09-21 12:02:48 +020043#include <asm/irq_regs.h>
44
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010045struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020046 struct task_struct *p;
47 int (*func)(void *info);
48 void *info;
49 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010050};
51
52static void remote_function(void *data)
53{
54 struct remote_function_call *tfc = data;
55 struct task_struct *p = tfc->p;
56
57 if (p) {
58 tfc->ret = -EAGAIN;
59 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
60 return;
61 }
62
63 tfc->ret = tfc->func(tfc->info);
64}
65
66/**
67 * task_function_call - call a function on the cpu on which a task runs
68 * @p: the task to evaluate
69 * @func: the function to be called
70 * @info: the function call argument
71 *
72 * Calls the function @func when the task is currently running. This might
73 * be on the current CPU, which just calls the function directly
74 *
75 * returns: @func return value, or
76 * -ESRCH - when the process isn't running
77 * -EAGAIN - when the process moved away
78 */
79static int
80task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
81{
82 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020083 .p = p,
84 .func = func,
85 .info = info,
86 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010087 };
88
89 if (task_curr(p))
90 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
91
92 return data.ret;
93}
94
95/**
96 * cpu_function_call - call a function on the cpu
97 * @func: the function to be called
98 * @info: the function call argument
99 *
100 * Calls the function @func on the remote cpu.
101 *
102 * returns: @func return value or -ENXIO when the cpu is offline
103 */
104static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
105{
106 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200107 .p = NULL,
108 .func = func,
109 .info = info,
110 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100111 };
112
113 smp_call_function_single(cpu, remote_function, &data, 1);
114
115 return data.ret;
116}
117
Stephane Eraniane5d13672011-02-14 11:20:01 +0200118#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
119 PERF_FLAG_FD_OUTPUT |\
120 PERF_FLAG_PID_CGROUP)
121
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100122/*
123 * branch priv levels that need permission checks
124 */
125#define PERF_SAMPLE_BRANCH_PERM_PLM \
126 (PERF_SAMPLE_BRANCH_KERNEL |\
127 PERF_SAMPLE_BRANCH_HV)
128
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200129enum event_type_t {
130 EVENT_FLEXIBLE = 0x1,
131 EVENT_PINNED = 0x2,
132 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
133};
134
Stephane Eraniane5d13672011-02-14 11:20:01 +0200135/*
136 * perf_sched_events : >0 events exist
137 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
138 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100139struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200140static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Stephane Eraniand010b332012-02-09 23:21:00 +0100141static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200142
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200143static atomic_t nr_mmap_events __read_mostly;
144static atomic_t nr_comm_events __read_mostly;
145static atomic_t nr_task_events __read_mostly;
146
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200147static LIST_HEAD(pmus);
148static DEFINE_MUTEX(pmus_lock);
149static struct srcu_struct pmus_srcu;
150
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200151/*
152 * perf event paranoia level:
153 * -1 - not paranoid at all
154 * 0 - disallow raw tracepoint access for unpriv
155 * 1 - disallow cpu events for unpriv
156 * 2 - disallow kernel profiling for unpriv
157 */
158int sysctl_perf_event_paranoid __read_mostly = 1;
159
Frederic Weisbecker20443382011-03-31 03:33:29 +0200160/* Minimum for 512 kiB + 1 user control page */
161int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200162
163/*
164 * max perf event sample rate
165 */
Peter Zijlstra163ec432011-02-16 11:22:34 +0100166#define DEFAULT_MAX_SAMPLE_RATE 100000
167int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
168static int max_samples_per_tick __read_mostly =
169 DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
170
171int perf_proc_update_handler(struct ctl_table *table, int write,
172 void __user *buffer, size_t *lenp,
173 loff_t *ppos)
174{
175 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
176
177 if (ret || !write)
178 return ret;
179
180 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
181
182 return 0;
183}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200184
185static atomic64_t perf_event_id;
186
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200187static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
188 enum event_type_t event_type);
189
190static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200191 enum event_type_t event_type,
192 struct task_struct *task);
193
194static void update_context_time(struct perf_event_context *ctx);
195static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200196
Peter Zijlstra10c6db12011-11-26 02:47:31 +0100197static void ring_buffer_attach(struct perf_event *event,
198 struct ring_buffer *rb);
199
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200200void __weak perf_event_print_debug(void) { }
201
Matt Fleming84c79912010-10-03 21:41:13 +0100202extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200203{
Matt Fleming84c79912010-10-03 21:41:13 +0100204 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200205}
206
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200207static inline u64 perf_clock(void)
208{
209 return local_clock();
210}
211
Stephane Eraniane5d13672011-02-14 11:20:01 +0200212static inline struct perf_cpu_context *
213__get_cpu_context(struct perf_event_context *ctx)
214{
215 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
216}
217
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200218static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
219 struct perf_event_context *ctx)
220{
221 raw_spin_lock(&cpuctx->ctx.lock);
222 if (ctx)
223 raw_spin_lock(&ctx->lock);
224}
225
226static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
227 struct perf_event_context *ctx)
228{
229 if (ctx)
230 raw_spin_unlock(&ctx->lock);
231 raw_spin_unlock(&cpuctx->ctx.lock);
232}
233
Stephane Eraniane5d13672011-02-14 11:20:01 +0200234#ifdef CONFIG_CGROUP_PERF
235
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200236/*
237 * Must ensure cgroup is pinned (css_get) before calling
238 * this function. In other words, we cannot call this function
239 * if there is no cgroup event for the current CPU context.
240 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200241static inline struct perf_cgroup *
242perf_cgroup_from_task(struct task_struct *task)
243{
244 return container_of(task_subsys_state(task, perf_subsys_id),
245 struct perf_cgroup, css);
246}
247
248static inline bool
249perf_cgroup_match(struct perf_event *event)
250{
251 struct perf_event_context *ctx = event->ctx;
252 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
253
254 return !event->cgrp || event->cgrp == cpuctx->cgrp;
255}
256
Salman Qazi9c5da092012-06-14 15:31:09 -0700257static inline bool perf_tryget_cgroup(struct perf_event *event)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200258{
Salman Qazi9c5da092012-06-14 15:31:09 -0700259 return css_tryget(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200260}
261
262static inline void perf_put_cgroup(struct perf_event *event)
263{
264 css_put(&event->cgrp->css);
265}
266
267static inline void perf_detach_cgroup(struct perf_event *event)
268{
269 perf_put_cgroup(event);
270 event->cgrp = NULL;
271}
272
273static inline int is_cgroup_event(struct perf_event *event)
274{
275 return event->cgrp != NULL;
276}
277
278static inline u64 perf_cgroup_event_time(struct perf_event *event)
279{
280 struct perf_cgroup_info *t;
281
282 t = per_cpu_ptr(event->cgrp->info, event->cpu);
283 return t->time;
284}
285
286static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
287{
288 struct perf_cgroup_info *info;
289 u64 now;
290
291 now = perf_clock();
292
293 info = this_cpu_ptr(cgrp->info);
294
295 info->time += now - info->timestamp;
296 info->timestamp = now;
297}
298
299static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
300{
301 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
302 if (cgrp_out)
303 __update_cgrp_time(cgrp_out);
304}
305
306static inline void update_cgrp_time_from_event(struct perf_event *event)
307{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200308 struct perf_cgroup *cgrp;
309
Stephane Eraniane5d13672011-02-14 11:20:01 +0200310 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200311 * ensure we access cgroup data only when needed and
312 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200313 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200314 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200315 return;
316
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200317 cgrp = perf_cgroup_from_task(current);
318 /*
319 * Do not update time when cgroup is not active
320 */
321 if (cgrp == event->cgrp)
322 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200323}
324
325static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200326perf_cgroup_set_timestamp(struct task_struct *task,
327 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200328{
329 struct perf_cgroup *cgrp;
330 struct perf_cgroup_info *info;
331
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200332 /*
333 * ctx->lock held by caller
334 * ensure we do not access cgroup data
335 * unless we have the cgroup pinned (css_get)
336 */
337 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200338 return;
339
340 cgrp = perf_cgroup_from_task(task);
341 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200342 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200343}
344
345#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
346#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
347
348/*
349 * reschedule events based on the cgroup constraint of task.
350 *
351 * mode SWOUT : schedule out everything
352 * mode SWIN : schedule in based on cgroup for next
353 */
354void perf_cgroup_switch(struct task_struct *task, int mode)
355{
356 struct perf_cpu_context *cpuctx;
357 struct pmu *pmu;
358 unsigned long flags;
359
360 /*
361 * disable interrupts to avoid geting nr_cgroup
362 * changes via __perf_event_disable(). Also
363 * avoids preemption.
364 */
365 local_irq_save(flags);
366
367 /*
368 * we reschedule only in the presence of cgroup
369 * constrained events.
370 */
371 rcu_read_lock();
372
373 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200374 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200375 if (cpuctx->unique_pmu != pmu)
376 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200377
Stephane Eraniane5d13672011-02-14 11:20:01 +0200378 /*
379 * perf_cgroup_events says at least one
380 * context on this CPU has cgroup events.
381 *
382 * ctx->nr_cgroups reports the number of cgroup
383 * events for a context.
384 */
385 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200386 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
387 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200388
389 if (mode & PERF_CGROUP_SWOUT) {
390 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
391 /*
392 * must not be done before ctxswout due
393 * to event_filter_match() in event_sched_out()
394 */
395 cpuctx->cgrp = NULL;
396 }
397
398 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200399 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200400 /*
401 * set cgrp before ctxsw in to allow
402 * event_filter_match() to not have to pass
403 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200404 */
405 cpuctx->cgrp = perf_cgroup_from_task(task);
406 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
407 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200408 perf_pmu_enable(cpuctx->ctx.pmu);
409 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200410 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200411 }
412
413 rcu_read_unlock();
414
415 local_irq_restore(flags);
416}
417
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200418static inline void perf_cgroup_sched_out(struct task_struct *task,
419 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200420{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200421 struct perf_cgroup *cgrp1;
422 struct perf_cgroup *cgrp2 = NULL;
423
424 /*
425 * we come here when we know perf_cgroup_events > 0
426 */
427 cgrp1 = perf_cgroup_from_task(task);
428
429 /*
430 * next is NULL when called from perf_event_enable_on_exec()
431 * that will systematically cause a cgroup_switch()
432 */
433 if (next)
434 cgrp2 = perf_cgroup_from_task(next);
435
436 /*
437 * only schedule out current cgroup events if we know
438 * that we are switching to a different cgroup. Otherwise,
439 * do no touch the cgroup events.
440 */
441 if (cgrp1 != cgrp2)
442 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200443}
444
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200445static inline void perf_cgroup_sched_in(struct task_struct *prev,
446 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200447{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200448 struct perf_cgroup *cgrp1;
449 struct perf_cgroup *cgrp2 = NULL;
450
451 /*
452 * we come here when we know perf_cgroup_events > 0
453 */
454 cgrp1 = perf_cgroup_from_task(task);
455
456 /* prev can never be NULL */
457 cgrp2 = perf_cgroup_from_task(prev);
458
459 /*
460 * only need to schedule in cgroup events if we are changing
461 * cgroup during ctxsw. Cgroup events were not scheduled
462 * out of ctxsw out if that was not the case.
463 */
464 if (cgrp1 != cgrp2)
465 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200466}
467
468static inline int perf_cgroup_connect(int fd, struct perf_event *event,
469 struct perf_event_attr *attr,
470 struct perf_event *group_leader)
471{
472 struct perf_cgroup *cgrp;
473 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400474 struct fd f = fdget(fd);
475 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200476
Al Viro2903ff02012-08-28 12:52:22 -0400477 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200478 return -EBADF;
479
Al Viro2903ff02012-08-28 12:52:22 -0400480 css = cgroup_css_from_dir(f.file, perf_subsys_id);
Li Zefan3db272c2011-03-03 14:25:37 +0800481 if (IS_ERR(css)) {
482 ret = PTR_ERR(css);
483 goto out;
484 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200485
486 cgrp = container_of(css, struct perf_cgroup, css);
487 event->cgrp = cgrp;
488
Li Zefanf75e18c2011-03-03 14:25:50 +0800489 /* must be done before we fput() the file */
Salman Qazi9c5da092012-06-14 15:31:09 -0700490 if (!perf_tryget_cgroup(event)) {
491 event->cgrp = NULL;
492 ret = -ENOENT;
493 goto out;
494 }
Li Zefanf75e18c2011-03-03 14:25:50 +0800495
Stephane Eraniane5d13672011-02-14 11:20:01 +0200496 /*
497 * all events in a group must monitor
498 * the same cgroup because a task belongs
499 * to only one perf cgroup at a time
500 */
501 if (group_leader && group_leader->cgrp != cgrp) {
502 perf_detach_cgroup(event);
503 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200504 }
Li Zefan3db272c2011-03-03 14:25:37 +0800505out:
Al Viro2903ff02012-08-28 12:52:22 -0400506 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200507 return ret;
508}
509
510static inline void
511perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
512{
513 struct perf_cgroup_info *t;
514 t = per_cpu_ptr(event->cgrp->info, event->cpu);
515 event->shadow_ctx_time = now - t->timestamp;
516}
517
518static inline void
519perf_cgroup_defer_enabled(struct perf_event *event)
520{
521 /*
522 * when the current task's perf cgroup does not match
523 * the event's, we need to remember to call the
524 * perf_mark_enable() function the first time a task with
525 * a matching perf cgroup is scheduled in.
526 */
527 if (is_cgroup_event(event) && !perf_cgroup_match(event))
528 event->cgrp_defer_enabled = 1;
529}
530
531static inline void
532perf_cgroup_mark_enabled(struct perf_event *event,
533 struct perf_event_context *ctx)
534{
535 struct perf_event *sub;
536 u64 tstamp = perf_event_time(event);
537
538 if (!event->cgrp_defer_enabled)
539 return;
540
541 event->cgrp_defer_enabled = 0;
542
543 event->tstamp_enabled = tstamp - event->total_time_enabled;
544 list_for_each_entry(sub, &event->sibling_list, group_entry) {
545 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
546 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
547 sub->cgrp_defer_enabled = 0;
548 }
549 }
550}
551#else /* !CONFIG_CGROUP_PERF */
552
553static inline bool
554perf_cgroup_match(struct perf_event *event)
555{
556 return true;
557}
558
559static inline void perf_detach_cgroup(struct perf_event *event)
560{}
561
562static inline int is_cgroup_event(struct perf_event *event)
563{
564 return 0;
565}
566
567static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
568{
569 return 0;
570}
571
572static inline void update_cgrp_time_from_event(struct perf_event *event)
573{
574}
575
576static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
577{
578}
579
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200580static inline void perf_cgroup_sched_out(struct task_struct *task,
581 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200582{
583}
584
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200585static inline void perf_cgroup_sched_in(struct task_struct *prev,
586 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200587{
588}
589
590static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
591 struct perf_event_attr *attr,
592 struct perf_event *group_leader)
593{
594 return -EINVAL;
595}
596
597static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200598perf_cgroup_set_timestamp(struct task_struct *task,
599 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200600{
601}
602
603void
604perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
605{
606}
607
608static inline void
609perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
610{
611}
612
613static inline u64 perf_cgroup_event_time(struct perf_event *event)
614{
615 return 0;
616}
617
618static inline void
619perf_cgroup_defer_enabled(struct perf_event *event)
620{
621}
622
623static inline void
624perf_cgroup_mark_enabled(struct perf_event *event,
625 struct perf_event_context *ctx)
626{
627}
628#endif
629
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200630void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200631{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200632 int *count = this_cpu_ptr(pmu->pmu_disable_count);
633 if (!(*count)++)
634 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200635}
636
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200637void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200638{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200639 int *count = this_cpu_ptr(pmu->pmu_disable_count);
640 if (!--(*count))
641 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200642}
643
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200644static DEFINE_PER_CPU(struct list_head, rotation_list);
645
646/*
647 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
648 * because they're strictly cpu affine and rotate_start is called with IRQs
649 * disabled, while rotate_context is called from IRQ context.
650 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200651static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200652{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200653 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200654 struct list_head *head = &__get_cpu_var(rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200655
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200656 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200657
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200658 if (list_empty(&cpuctx->rotation_list))
659 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200660}
661
662static void get_ctx(struct perf_event_context *ctx)
663{
664 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
665}
666
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200667static void put_ctx(struct perf_event_context *ctx)
668{
669 if (atomic_dec_and_test(&ctx->refcount)) {
670 if (ctx->parent_ctx)
671 put_ctx(ctx->parent_ctx);
672 if (ctx->task)
673 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800674 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200675 }
676}
677
678static void unclone_ctx(struct perf_event_context *ctx)
679{
680 if (ctx->parent_ctx) {
681 put_ctx(ctx->parent_ctx);
682 ctx->parent_ctx = NULL;
683 }
684}
685
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200686static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
687{
688 /*
689 * only top level events have the pid namespace they were created in
690 */
691 if (event->parent)
692 event = event->parent;
693
694 return task_tgid_nr_ns(p, event->ns);
695}
696
697static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
698{
699 /*
700 * only top level events have the pid namespace they were created in
701 */
702 if (event->parent)
703 event = event->parent;
704
705 return task_pid_nr_ns(p, event->ns);
706}
707
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200708/*
709 * If we inherit events we want to return the parent event id
710 * to userspace.
711 */
712static u64 primary_event_id(struct perf_event *event)
713{
714 u64 id = event->id;
715
716 if (event->parent)
717 id = event->parent->id;
718
719 return id;
720}
721
722/*
723 * Get the perf_event_context for a task and lock it.
724 * This has to cope with with the fact that until it is locked,
725 * the context could get moved to another task.
726 */
727static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200728perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200729{
730 struct perf_event_context *ctx;
731
732 rcu_read_lock();
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200733retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200734 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200735 if (ctx) {
736 /*
737 * If this context is a clone of another, it might
738 * get swapped for another underneath us by
739 * perf_event_task_sched_out, though the
740 * rcu_read_lock() protects us from any context
741 * getting freed. Lock the context and check if it
742 * got swapped before we could get the lock, and retry
743 * if so. If we locked the right context, then it
744 * can't get swapped on us any more.
745 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100746 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200747 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100748 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200749 goto retry;
750 }
751
752 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100753 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200754 ctx = NULL;
755 }
756 }
757 rcu_read_unlock();
758 return ctx;
759}
760
761/*
762 * Get the context for a task and increment its pin_count so it
763 * can't get swapped to another task. This also increments its
764 * reference count so that the context can't get freed.
765 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200766static struct perf_event_context *
767perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200768{
769 struct perf_event_context *ctx;
770 unsigned long flags;
771
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200772 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200773 if (ctx) {
774 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100775 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200776 }
777 return ctx;
778}
779
780static void perf_unpin_context(struct perf_event_context *ctx)
781{
782 unsigned long flags;
783
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100784 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200785 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100786 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200787}
788
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100789/*
790 * Update the record of the current time in a context.
791 */
792static void update_context_time(struct perf_event_context *ctx)
793{
794 u64 now = perf_clock();
795
796 ctx->time += now - ctx->timestamp;
797 ctx->timestamp = now;
798}
799
Stephane Eranian41587552011-01-03 18:20:01 +0200800static u64 perf_event_time(struct perf_event *event)
801{
802 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200803
804 if (is_cgroup_event(event))
805 return perf_cgroup_event_time(event);
806
Stephane Eranian41587552011-01-03 18:20:01 +0200807 return ctx ? ctx->time : 0;
808}
809
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100810/*
811 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -0400812 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100813 */
814static void update_event_times(struct perf_event *event)
815{
816 struct perf_event_context *ctx = event->ctx;
817 u64 run_end;
818
819 if (event->state < PERF_EVENT_STATE_INACTIVE ||
820 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
821 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200822 /*
823 * in cgroup mode, time_enabled represents
824 * the time the event was enabled AND active
825 * tasks were in the monitored cgroup. This is
826 * independent of the activity of the context as
827 * there may be a mix of cgroup and non-cgroup events.
828 *
829 * That is why we treat cgroup events differently
830 * here.
831 */
832 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +0900833 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200834 else if (ctx->is_active)
835 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +0100836 else
837 run_end = event->tstamp_stopped;
838
839 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100840
841 if (event->state == PERF_EVENT_STATE_INACTIVE)
842 run_end = event->tstamp_stopped;
843 else
Stephane Eranian41587552011-01-03 18:20:01 +0200844 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100845
846 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200847
Peter Zijlstraf67218c2009-11-23 11:37:27 +0100848}
849
Peter Zijlstra96c21a42010-05-11 16:19:10 +0200850/*
851 * Update total_time_enabled and total_time_running for all events in a group.
852 */
853static void update_group_times(struct perf_event *leader)
854{
855 struct perf_event *event;
856
857 update_event_times(leader);
858 list_for_each_entry(event, &leader->sibling_list, group_entry)
859 update_event_times(event);
860}
861
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100862static struct list_head *
863ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
864{
865 if (event->attr.pinned)
866 return &ctx->pinned_groups;
867 else
868 return &ctx->flexible_groups;
869}
870
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200871/*
872 * Add a event from the lists for its context.
873 * Must be called with ctx->mutex and ctx->lock held.
874 */
875static void
876list_add_event(struct perf_event *event, struct perf_event_context *ctx)
877{
Peter Zijlstra8a495422010-05-27 15:47:49 +0200878 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
879 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200880
881 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +0200882 * If we're a stand alone event or group leader, we go to the context
883 * list, group events are kept attached to the group so that
884 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200885 */
Peter Zijlstra8a495422010-05-27 15:47:49 +0200886 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100887 struct list_head *list;
888
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +0100889 if (is_software_event(event))
890 event->group_flags |= PERF_GROUP_SOFTWARE;
891
Frederic Weisbecker889ff012010-01-09 20:04:47 +0100892 list = ctx_group_list(event, ctx);
893 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200894 }
895
Peter Zijlstra08309372011-03-03 11:31:20 +0100896 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200897 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200898
Stephane Eraniand010b332012-02-09 23:21:00 +0100899 if (has_branch_stack(event))
900 ctx->nr_branch_stack++;
901
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200902 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200903 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200904 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200905 ctx->nr_events++;
906 if (event->attr.inherit_stat)
907 ctx->nr_stat++;
908}
909
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200910/*
Jiri Olsa0231bb52013-02-01 11:23:45 +0100911 * Initialize event state based on the perf_event_attr::disabled.
912 */
913static inline void perf_event__state_init(struct perf_event *event)
914{
915 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
916 PERF_EVENT_STATE_INACTIVE;
917}
918
919/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200920 * Called at perf_event creation and when events are attached/detached from a
921 * group.
922 */
923static void perf_event__read_size(struct perf_event *event)
924{
925 int entry = sizeof(u64); /* value */
926 int size = 0;
927 int nr = 1;
928
929 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
930 size += sizeof(u64);
931
932 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
933 size += sizeof(u64);
934
935 if (event->attr.read_format & PERF_FORMAT_ID)
936 entry += sizeof(u64);
937
938 if (event->attr.read_format & PERF_FORMAT_GROUP) {
939 nr += event->group_leader->nr_siblings;
940 size += sizeof(u64);
941 }
942
943 size += entry * nr;
944 event->read_size = size;
945}
946
947static void perf_event__header_size(struct perf_event *event)
948{
949 struct perf_sample_data *data;
950 u64 sample_type = event->attr.sample_type;
951 u16 size = 0;
952
953 perf_event__read_size(event);
954
955 if (sample_type & PERF_SAMPLE_IP)
956 size += sizeof(data->ip);
957
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200958 if (sample_type & PERF_SAMPLE_ADDR)
959 size += sizeof(data->addr);
960
961 if (sample_type & PERF_SAMPLE_PERIOD)
962 size += sizeof(data->period);
963
964 if (sample_type & PERF_SAMPLE_READ)
965 size += event->read_size;
966
967 event->header_size = size;
968}
969
970static void perf_event__id_header_size(struct perf_event *event)
971{
972 struct perf_sample_data *data;
973 u64 sample_type = event->attr.sample_type;
974 u16 size = 0;
975
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200976 if (sample_type & PERF_SAMPLE_TID)
977 size += sizeof(data->tid_entry);
978
979 if (sample_type & PERF_SAMPLE_TIME)
980 size += sizeof(data->time);
981
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200982 if (sample_type & PERF_SAMPLE_ID)
983 size += sizeof(data->id);
984
985 if (sample_type & PERF_SAMPLE_STREAM_ID)
986 size += sizeof(data->stream_id);
987
988 if (sample_type & PERF_SAMPLE_CPU)
989 size += sizeof(data->cpu_entry);
990
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200991 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200992}
993
Peter Zijlstra8a495422010-05-27 15:47:49 +0200994static void perf_group_attach(struct perf_event *event)
995{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -0200996 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +0200997
Peter Zijlstra74c33372010-10-15 11:40:29 +0200998 /*
999 * We can have double attach due to group movement in perf_event_open.
1000 */
1001 if (event->attach_state & PERF_ATTACH_GROUP)
1002 return;
1003
Peter Zijlstra8a495422010-05-27 15:47:49 +02001004 event->attach_state |= PERF_ATTACH_GROUP;
1005
1006 if (group_leader == event)
1007 return;
1008
1009 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1010 !is_software_event(event))
1011 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1012
1013 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1014 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001015
1016 perf_event__header_size(group_leader);
1017
1018 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1019 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001020}
1021
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001022/*
1023 * Remove a event from the lists for its context.
1024 * Must be called with ctx->mutex and ctx->lock held.
1025 */
1026static void
1027list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1028{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001029 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001030 /*
1031 * We can have double detach due to exit/hot-unplug + close.
1032 */
1033 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001034 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001035
1036 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1037
Stephane Eranian68cacd22011-03-23 16:03:06 +01001038 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001039 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001040 cpuctx = __get_cpu_context(ctx);
1041 /*
1042 * if there are no more cgroup events
1043 * then cler cgrp to avoid stale pointer
1044 * in update_cgrp_time_from_cpuctx()
1045 */
1046 if (!ctx->nr_cgroups)
1047 cpuctx->cgrp = NULL;
1048 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001049
Stephane Eraniand010b332012-02-09 23:21:00 +01001050 if (has_branch_stack(event))
1051 ctx->nr_branch_stack--;
1052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001053 ctx->nr_events--;
1054 if (event->attr.inherit_stat)
1055 ctx->nr_stat--;
1056
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001057 list_del_rcu(&event->event_entry);
1058
Peter Zijlstra8a495422010-05-27 15:47:49 +02001059 if (event->group_leader == event)
1060 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001061
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001062 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001063
1064 /*
1065 * If event was in error state, then keep it
1066 * that way, otherwise bogus counts will be
1067 * returned on read(). The only way to get out
1068 * of error state is by explicit re-enabling
1069 * of the event
1070 */
1071 if (event->state > PERF_EVENT_STATE_OFF)
1072 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001073}
1074
Peter Zijlstra8a495422010-05-27 15:47:49 +02001075static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001076{
1077 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001078 struct list_head *list = NULL;
1079
1080 /*
1081 * We can have double detach due to exit/hot-unplug + close.
1082 */
1083 if (!(event->attach_state & PERF_ATTACH_GROUP))
1084 return;
1085
1086 event->attach_state &= ~PERF_ATTACH_GROUP;
1087
1088 /*
1089 * If this is a sibling, remove it from its group.
1090 */
1091 if (event->group_leader != event) {
1092 list_del_init(&event->group_entry);
1093 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001094 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001095 }
1096
1097 if (!list_empty(&event->group_entry))
1098 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001099
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001100 /*
1101 * If this was a group event with sibling events then
1102 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001103 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001104 */
1105 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001106 if (list)
1107 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001109
1110 /* Inherit group flags from the previous leader */
1111 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001112 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001113
1114out:
1115 perf_event__header_size(event->group_leader);
1116
1117 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1118 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001119}
1120
Stephane Eranianfa66f072010-08-26 16:40:01 +02001121static inline int
1122event_filter_match(struct perf_event *event)
1123{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001124 return (event->cpu == -1 || event->cpu == smp_processor_id())
1125 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001126}
1127
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001128static void
1129event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001130 struct perf_cpu_context *cpuctx,
1131 struct perf_event_context *ctx)
1132{
Stephane Eranian41587552011-01-03 18:20:01 +02001133 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001134 u64 delta;
1135 /*
1136 * An event which could not be activated because of
1137 * filter mismatch still needs to have its timings
1138 * maintained, otherwise bogus information is return
1139 * via read() for time_enabled, time_running:
1140 */
1141 if (event->state == PERF_EVENT_STATE_INACTIVE
1142 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001143 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001144 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001145 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001146 }
1147
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001148 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001149 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001150
1151 event->state = PERF_EVENT_STATE_INACTIVE;
1152 if (event->pending_disable) {
1153 event->pending_disable = 0;
1154 event->state = PERF_EVENT_STATE_OFF;
1155 }
Stephane Eranian41587552011-01-03 18:20:01 +02001156 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001157 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001158 event->oncpu = -1;
1159
1160 if (!is_software_event(event))
1161 cpuctx->active_oncpu--;
1162 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001163 if (event->attr.freq && event->attr.sample_freq)
1164 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001165 if (event->attr.exclusive || !cpuctx->active_oncpu)
1166 cpuctx->exclusive = 0;
1167}
1168
1169static void
1170group_sched_out(struct perf_event *group_event,
1171 struct perf_cpu_context *cpuctx,
1172 struct perf_event_context *ctx)
1173{
1174 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001175 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001176
1177 event_sched_out(group_event, cpuctx, ctx);
1178
1179 /*
1180 * Schedule out siblings (if any):
1181 */
1182 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1183 event_sched_out(event, cpuctx, ctx);
1184
Stephane Eranianfa66f072010-08-26 16:40:01 +02001185 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001186 cpuctx->exclusive = 0;
1187}
1188
1189/*
1190 * Cross CPU call to remove a performance event
1191 *
1192 * We disable the event on the hardware level first. After that we
1193 * remove it from the context list.
1194 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001195static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001196{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001197 struct perf_event *event = info;
1198 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001199 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001200
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001201 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001202 event_sched_out(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001203 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001204 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1205 ctx->is_active = 0;
1206 cpuctx->task_ctx = NULL;
1207 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001208 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001209
1210 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001211}
1212
1213
1214/*
1215 * Remove the event from a task's (or a CPU's) list of events.
1216 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001217 * CPU events are removed with a smp call. For task events we only
1218 * call when the task is on a CPU.
1219 *
1220 * If event->ctx is a cloned context, callers must make sure that
1221 * every task struct that event->ctx->task could possibly point to
1222 * remains valid. This is OK when called from perf_release since
1223 * that only calls us on the top-level context, which can't be a clone.
1224 * When called from perf_event_exit_task, it's OK because the
1225 * context has been detached from its task.
1226 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001227static void perf_remove_from_context(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001228{
1229 struct perf_event_context *ctx = event->ctx;
1230 struct task_struct *task = ctx->task;
1231
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001232 lockdep_assert_held(&ctx->mutex);
1233
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001234 if (!task) {
1235 /*
1236 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001237 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001238 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001239 cpu_function_call(event->cpu, __perf_remove_from_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001240 return;
1241 }
1242
1243retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001244 if (!task_function_call(task, __perf_remove_from_context, event))
1245 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001246
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001247 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001248 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001249 * If we failed to find a running task, but find the context active now
1250 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001251 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001252 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001253 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001254 goto retry;
1255 }
1256
1257 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001258 * Since the task isn't running, its safe to remove the event, us
1259 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001260 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001261 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001262 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001263}
1264
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001265/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266 * Cross CPU call to disable a performance event
1267 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301268int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001269{
1270 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001271 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001272 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001273
1274 /*
1275 * If this is a per-task event, need to check whether this
1276 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001277 *
1278 * Can trigger due to concurrent perf_event_context_sched_out()
1279 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001280 */
1281 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001282 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001283
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001284 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001285
1286 /*
1287 * If the event is on, turn it off.
1288 * If it is in error state, leave it in error state.
1289 */
1290 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1291 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001292 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001293 update_group_times(event);
1294 if (event == event->group_leader)
1295 group_sched_out(event, cpuctx, ctx);
1296 else
1297 event_sched_out(event, cpuctx, ctx);
1298 event->state = PERF_EVENT_STATE_OFF;
1299 }
1300
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001301 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001302
1303 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001304}
1305
1306/*
1307 * Disable a event.
1308 *
1309 * If event->ctx is a cloned context, callers must make sure that
1310 * every task struct that event->ctx->task could possibly point to
1311 * remains valid. This condition is satisifed when called through
1312 * perf_event_for_each_child or perf_event_for_each because they
1313 * hold the top-level event's child_mutex, so any descendant that
1314 * goes to exit will block in sync_child_event.
1315 * When called from perf_pending_event it's OK because event->ctx
1316 * is the current context on this CPU and preemption is disabled,
1317 * hence we can't get into perf_event_task_sched_out for this context.
1318 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001319void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001320{
1321 struct perf_event_context *ctx = event->ctx;
1322 struct task_struct *task = ctx->task;
1323
1324 if (!task) {
1325 /*
1326 * Disable the event on the cpu that it's on
1327 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001328 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329 return;
1330 }
1331
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001332retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001333 if (!task_function_call(task, __perf_event_disable, event))
1334 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001335
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001336 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001337 /*
1338 * If the event is still active, we need to retry the cross-call.
1339 */
1340 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001341 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001342 /*
1343 * Reload the task pointer, it might have been changed by
1344 * a concurrent perf_event_context_sched_out().
1345 */
1346 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001347 goto retry;
1348 }
1349
1350 /*
1351 * Since we have the lock this context can't be scheduled
1352 * in, so we can change the state safely.
1353 */
1354 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1355 update_group_times(event);
1356 event->state = PERF_EVENT_STATE_OFF;
1357 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001358 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001359}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001360EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001361
Stephane Eraniane5d13672011-02-14 11:20:01 +02001362static void perf_set_shadow_time(struct perf_event *event,
1363 struct perf_event_context *ctx,
1364 u64 tstamp)
1365{
1366 /*
1367 * use the correct time source for the time snapshot
1368 *
1369 * We could get by without this by leveraging the
1370 * fact that to get to this function, the caller
1371 * has most likely already called update_context_time()
1372 * and update_cgrp_time_xx() and thus both timestamp
1373 * are identical (or very close). Given that tstamp is,
1374 * already adjusted for cgroup, we could say that:
1375 * tstamp - ctx->timestamp
1376 * is equivalent to
1377 * tstamp - cgrp->timestamp.
1378 *
1379 * Then, in perf_output_read(), the calculation would
1380 * work with no changes because:
1381 * - event is guaranteed scheduled in
1382 * - no scheduled out in between
1383 * - thus the timestamp would be the same
1384 *
1385 * But this is a bit hairy.
1386 *
1387 * So instead, we have an explicit cgroup call to remain
1388 * within the time time source all along. We believe it
1389 * is cleaner and simpler to understand.
1390 */
1391 if (is_cgroup_event(event))
1392 perf_cgroup_set_shadow_time(event, tstamp);
1393 else
1394 event->shadow_ctx_time = tstamp - ctx->timestamp;
1395}
1396
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001397#define MAX_INTERRUPTS (~0ULL)
1398
1399static void perf_log_throttle(struct perf_event *event, int enable);
1400
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001401static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001402event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001403 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001404 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405{
Stephane Eranian41587552011-01-03 18:20:01 +02001406 u64 tstamp = perf_event_time(event);
1407
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001408 if (event->state <= PERF_EVENT_STATE_OFF)
1409 return 0;
1410
1411 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001412 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001413
1414 /*
1415 * Unthrottle events, since we scheduled we might have missed several
1416 * ticks already, also for a heavily scheduling task there is little
1417 * guarantee it'll get a tick in a timely manner.
1418 */
1419 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1420 perf_log_throttle(event, 1);
1421 event->hw.interrupts = 0;
1422 }
1423
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001424 /*
1425 * The new state must be visible before we turn it on in the hardware:
1426 */
1427 smp_wmb();
1428
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001429 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001430 event->state = PERF_EVENT_STATE_INACTIVE;
1431 event->oncpu = -1;
1432 return -EAGAIN;
1433 }
1434
Stephane Eranian41587552011-01-03 18:20:01 +02001435 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001436
Stephane Eraniane5d13672011-02-14 11:20:01 +02001437 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001438
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001439 if (!is_software_event(event))
1440 cpuctx->active_oncpu++;
1441 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001442 if (event->attr.freq && event->attr.sample_freq)
1443 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001444
1445 if (event->attr.exclusive)
1446 cpuctx->exclusive = 1;
1447
1448 return 0;
1449}
1450
1451static int
1452group_sched_in(struct perf_event *group_event,
1453 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001454 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001455{
Lin Ming6bde9b62010-04-23 13:56:00 +08001456 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001457 struct pmu *pmu = group_event->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001458 u64 now = ctx->time;
1459 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001460
1461 if (group_event->state == PERF_EVENT_STATE_OFF)
1462 return 0;
1463
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001464 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001465
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001466 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001467 pmu->cancel_txn(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001468 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001469 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001470
1471 /*
1472 * Schedule in siblings as one group (if any):
1473 */
1474 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001475 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001476 partial_group = event;
1477 goto group_error;
1478 }
1479 }
1480
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001481 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001482 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001483
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001484group_error:
1485 /*
1486 * Groups can be scheduled in as one unit only, so undo any
1487 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001488 * The events up to the failed event are scheduled out normally,
1489 * tstamp_stopped will be updated.
1490 *
1491 * The failed events and the remaining siblings need to have
1492 * their timings updated as if they had gone thru event_sched_in()
1493 * and event_sched_out(). This is required to get consistent timings
1494 * across the group. This also takes care of the case where the group
1495 * could never be scheduled by ensuring tstamp_stopped is set to mark
1496 * the time the event was actually stopped, such that time delta
1497 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001498 */
1499 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1500 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001501 simulate = true;
1502
1503 if (simulate) {
1504 event->tstamp_running += now - event->tstamp_stopped;
1505 event->tstamp_stopped = now;
1506 } else {
1507 event_sched_out(event, cpuctx, ctx);
1508 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001509 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001510 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001512 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001513
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001514 return -EAGAIN;
1515}
1516
1517/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001518 * Work out whether we can put this event group on the CPU now.
1519 */
1520static int group_can_go_on(struct perf_event *event,
1521 struct perf_cpu_context *cpuctx,
1522 int can_add_hw)
1523{
1524 /*
1525 * Groups consisting entirely of software events can always go on.
1526 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001527 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001528 return 1;
1529 /*
1530 * If an exclusive group is already on, no other hardware
1531 * events can go on.
1532 */
1533 if (cpuctx->exclusive)
1534 return 0;
1535 /*
1536 * If this group is exclusive and there are already
1537 * events on the CPU, it can't go on.
1538 */
1539 if (event->attr.exclusive && cpuctx->active_oncpu)
1540 return 0;
1541 /*
1542 * Otherwise, try to add it if all previous groups were able
1543 * to go on.
1544 */
1545 return can_add_hw;
1546}
1547
1548static void add_event_to_ctx(struct perf_event *event,
1549 struct perf_event_context *ctx)
1550{
Stephane Eranian41587552011-01-03 18:20:01 +02001551 u64 tstamp = perf_event_time(event);
1552
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001553 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001554 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001555 event->tstamp_enabled = tstamp;
1556 event->tstamp_running = tstamp;
1557 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001558}
1559
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001560static void task_ctx_sched_out(struct perf_event_context *ctx);
1561static void
1562ctx_sched_in(struct perf_event_context *ctx,
1563 struct perf_cpu_context *cpuctx,
1564 enum event_type_t event_type,
1565 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001566
Peter Zijlstradce58552011-04-09 21:17:46 +02001567static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1568 struct perf_event_context *ctx,
1569 struct task_struct *task)
1570{
1571 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1572 if (ctx)
1573 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1574 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1575 if (ctx)
1576 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1577}
1578
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001579/*
1580 * Cross CPU call to install and enable a performance event
1581 *
1582 * Must be called with ctx->mutex held
1583 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001584static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001585{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001586 struct perf_event *event = info;
1587 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001588 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001589 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1590 struct task_struct *task = current;
1591
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001592 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001593 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001594
1595 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001596 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001597 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001598 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001599 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001600
1601 /*
1602 * If the context we're installing events in is not the
1603 * active task_ctx, flip them.
1604 */
1605 if (ctx->task && task_ctx != ctx) {
1606 if (task_ctx)
1607 raw_spin_unlock(&task_ctx->lock);
1608 raw_spin_lock(&ctx->lock);
1609 task_ctx = ctx;
1610 }
1611
1612 if (task_ctx) {
1613 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001614 task = task_ctx->task;
1615 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001616
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001617 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001618
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001619 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001620 /*
1621 * update cgrp time only if current cgrp
1622 * matches event->cgrp. Must be done before
1623 * calling add_event_to_ctx()
1624 */
1625 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001626
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001627 add_event_to_ctx(event, ctx);
1628
1629 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001630 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001631 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001632 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001633
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001634 perf_pmu_enable(cpuctx->ctx.pmu);
1635 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001636
1637 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001638}
1639
1640/*
1641 * Attach a performance event to a context
1642 *
1643 * First we add the event to the list with the hardware enable bit
1644 * in event->hw_config cleared.
1645 *
1646 * If the event is attached to a task which is on a CPU we use a smp
1647 * call to enable it in the task context. The task might have been
1648 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001649 */
1650static void
1651perf_install_in_context(struct perf_event_context *ctx,
1652 struct perf_event *event,
1653 int cpu)
1654{
1655 struct task_struct *task = ctx->task;
1656
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001657 lockdep_assert_held(&ctx->mutex);
1658
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001659 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001660 if (event->cpu != -1)
1661 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001662
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001663 if (!task) {
1664 /*
1665 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001666 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001667 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001668 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001669 return;
1670 }
1671
1672retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001673 if (!task_function_call(task, __perf_install_in_context, event))
1674 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001675
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001676 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001678 * If we failed to find a running task, but find the context active now
1679 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001680 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001681 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001682 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001683 goto retry;
1684 }
1685
1686 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001687 * Since the task isn't running, its safe to add the event, us holding
1688 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001690 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001691 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001692}
1693
1694/*
1695 * Put a event into inactive state and update time fields.
1696 * Enabling the leader of a group effectively enables all
1697 * the group members that aren't explicitly disabled, so we
1698 * have to update their ->tstamp_enabled also.
1699 * Note: this works for group members as well as group leaders
1700 * since the non-leader members' sibling_lists will be empty.
1701 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001702static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001703{
1704 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001705 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001706
1707 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001708 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001709 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001710 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1711 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001712 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001713}
1714
1715/*
1716 * Cross CPU call to enable a performance event
1717 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001718static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001719{
1720 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001721 struct perf_event_context *ctx = event->ctx;
1722 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001723 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001724 int err;
1725
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001726 if (WARN_ON_ONCE(!ctx->is_active))
1727 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001728
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001729 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001730 update_context_time(ctx);
1731
1732 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1733 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001734
1735 /*
1736 * set current task's cgroup time reference point
1737 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02001738 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001739
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001740 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001741
Stephane Eraniane5d13672011-02-14 11:20:01 +02001742 if (!event_filter_match(event)) {
1743 if (is_cgroup_event(event))
1744 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001745 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001746 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01001747
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001748 /*
1749 * If the event is in a group and isn't the group leader,
1750 * then don't put it on unless the group is on.
1751 */
1752 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
1753 goto unlock;
1754
1755 if (!group_can_go_on(event, cpuctx, 1)) {
1756 err = -EEXIST;
1757 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001758 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01001759 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001760 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01001761 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001762 }
1763
1764 if (err) {
1765 /*
1766 * If this event can't go on and it's part of a
1767 * group, then the whole group has to come off.
1768 */
1769 if (leader != event)
1770 group_sched_out(leader, cpuctx, ctx);
1771 if (leader->attr.pinned) {
1772 update_group_times(leader);
1773 leader->state = PERF_EVENT_STATE_ERROR;
1774 }
1775 }
1776
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001777unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001778 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001779
1780 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001781}
1782
1783/*
1784 * Enable a event.
1785 *
1786 * If event->ctx is a cloned context, callers must make sure that
1787 * every task struct that event->ctx->task could possibly point to
1788 * remains valid. This condition is satisfied when called through
1789 * perf_event_for_each_child or perf_event_for_each as described
1790 * for perf_event_disable.
1791 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001792void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001793{
1794 struct perf_event_context *ctx = event->ctx;
1795 struct task_struct *task = ctx->task;
1796
1797 if (!task) {
1798 /*
1799 * Enable the event on the cpu that it's on
1800 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001801 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001802 return;
1803 }
1804
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001805 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806 if (event->state >= PERF_EVENT_STATE_INACTIVE)
1807 goto out;
1808
1809 /*
1810 * If the event is in error state, clear that first.
1811 * That way, if we see the event in error state below, we
1812 * know that it has gone back into error state, as distinct
1813 * from the task having been scheduled away before the
1814 * cross-call arrived.
1815 */
1816 if (event->state == PERF_EVENT_STATE_ERROR)
1817 event->state = PERF_EVENT_STATE_OFF;
1818
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001819retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001820 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001821 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001822 goto out;
1823 }
1824
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001825 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001826
1827 if (!task_function_call(task, __perf_event_enable, event))
1828 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001829
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001830 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001831
1832 /*
1833 * If the context is active and the event is still off,
1834 * we need to retry the cross-call.
1835 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001836 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
1837 /*
1838 * task could have been flipped by a concurrent
1839 * perf_event_context_sched_out()
1840 */
1841 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001842 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001843 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001844
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001845out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001846 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001847}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001848EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001849
Avi Kivity26ca5c12011-06-29 18:42:37 +03001850int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001851{
1852 /*
1853 * not supported on inherited events
1854 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01001855 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001856 return -EINVAL;
1857
1858 atomic_add(refresh, &event->event_limit);
1859 perf_event_enable(event);
1860
1861 return 0;
1862}
Avi Kivity26ca5c12011-06-29 18:42:37 +03001863EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001865static void ctx_sched_out(struct perf_event_context *ctx,
1866 struct perf_cpu_context *cpuctx,
1867 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001868{
1869 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02001870 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001871
Peter Zijlstradb24d332011-04-09 21:17:45 +02001872 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001873 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02001874 return;
1875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001876 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001877 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001878 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02001879 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01001880
Peter Zijlstra075e0b02011-04-09 21:17:40 +02001881 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02001882 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001883 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
1884 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001885 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001886
Peter Zijlstradb24d332011-04-09 21:17:45 +02001887 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001888 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08001889 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001890 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02001891 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001892}
1893
1894/*
1895 * Test whether two contexts are equivalent, i.e. whether they
1896 * have both been cloned from the same version of the same context
1897 * and they both have the same number of enabled events.
1898 * If the number of enabled events is the same, then the set
1899 * of enabled events should be the same, because these are both
1900 * inherited contexts, therefore we can't access individual events
1901 * in them directly with an fd; we can only enable/disable all
1902 * events via prctl, or enable/disable all events in a family
1903 * via ioctl, which will have the same effect on both contexts.
1904 */
1905static int context_equiv(struct perf_event_context *ctx1,
1906 struct perf_event_context *ctx2)
1907{
1908 return ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx
1909 && ctx1->parent_gen == ctx2->parent_gen
1910 && !ctx1->pin_count && !ctx2->pin_count;
1911}
1912
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001913static void __perf_event_sync_stat(struct perf_event *event,
1914 struct perf_event *next_event)
1915{
1916 u64 value;
1917
1918 if (!event->attr.inherit_stat)
1919 return;
1920
1921 /*
1922 * Update the event value, we cannot use perf_event_read()
1923 * because we're in the middle of a context switch and have IRQs
1924 * disabled, which upsets smp_call_function_single(), however
1925 * we know the event must be on the current CPU, therefore we
1926 * don't need to use it.
1927 */
1928 switch (event->state) {
1929 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01001930 event->pmu->read(event);
1931 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001932
1933 case PERF_EVENT_STATE_INACTIVE:
1934 update_event_times(event);
1935 break;
1936
1937 default:
1938 break;
1939 }
1940
1941 /*
1942 * In order to keep per-task stats reliable we need to flip the event
1943 * values when we flip the contexts.
1944 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02001945 value = local64_read(&next_event->count);
1946 value = local64_xchg(&event->count, value);
1947 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001948
1949 swap(event->total_time_enabled, next_event->total_time_enabled);
1950 swap(event->total_time_running, next_event->total_time_running);
1951
1952 /*
1953 * Since we swizzled the values, update the user visible data too.
1954 */
1955 perf_event_update_userpage(event);
1956 perf_event_update_userpage(next_event);
1957}
1958
1959#define list_next_entry(pos, member) \
1960 list_entry(pos->member.next, typeof(*pos), member)
1961
1962static void perf_event_sync_stat(struct perf_event_context *ctx,
1963 struct perf_event_context *next_ctx)
1964{
1965 struct perf_event *event, *next_event;
1966
1967 if (!ctx->nr_stat)
1968 return;
1969
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01001970 update_context_time(ctx);
1971
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001972 event = list_first_entry(&ctx->event_list,
1973 struct perf_event, event_entry);
1974
1975 next_event = list_first_entry(&next_ctx->event_list,
1976 struct perf_event, event_entry);
1977
1978 while (&event->event_entry != &ctx->event_list &&
1979 &next_event->event_entry != &next_ctx->event_list) {
1980
1981 __perf_event_sync_stat(event, next_event);
1982
1983 event = list_next_entry(event, event_entry);
1984 next_event = list_next_entry(next_event, event_entry);
1985 }
1986}
1987
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001988static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
1989 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001990{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001991 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001992 struct perf_event_context *next_ctx;
1993 struct perf_event_context *parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001994 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001995 int do_switch = 1;
1996
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001997 if (likely(!ctx))
1998 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002000 cpuctx = __get_cpu_context(ctx);
2001 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002002 return;
2003
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002004 rcu_read_lock();
2005 parent = rcu_dereference(ctx->parent_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002006 next_ctx = next->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007 if (parent && next_ctx &&
2008 rcu_dereference(next_ctx->parent_ctx) == parent) {
2009 /*
2010 * Looks like the two contexts are clones, so we might be
2011 * able to optimize the context switch. We lock both
2012 * contexts and check that they are clones under the
2013 * lock (including re-checking that neither has been
2014 * uncloned in the meantime). It doesn't matter which
2015 * order we take the locks because no other cpu could
2016 * be trying to lock both of these tasks.
2017 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002018 raw_spin_lock(&ctx->lock);
2019 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002020 if (context_equiv(ctx, next_ctx)) {
2021 /*
2022 * XXX do we need a memory barrier of sorts
2023 * wrt to rcu_dereference() of perf_event_ctxp
2024 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002025 task->perf_event_ctxp[ctxn] = next_ctx;
2026 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002027 ctx->task = next;
2028 next_ctx->task = task;
2029 do_switch = 0;
2030
2031 perf_event_sync_stat(ctx, next_ctx);
2032 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002033 raw_spin_unlock(&next_ctx->lock);
2034 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002035 }
2036 rcu_read_unlock();
2037
2038 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002039 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002040 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002041 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002042 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002043 }
2044}
2045
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002046#define for_each_task_context_nr(ctxn) \
2047 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2048
2049/*
2050 * Called from scheduler to remove the events of the current task,
2051 * with interrupts disabled.
2052 *
2053 * We stop each event and update the event value in event->count.
2054 *
2055 * This does not protect us against NMI, but disable()
2056 * sets the disabled bit in the control field of event _before_
2057 * accessing the event control register. If a NMI hits, then it will
2058 * not restart the event.
2059 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002060void __perf_event_task_sched_out(struct task_struct *task,
2061 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002062{
2063 int ctxn;
2064
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002065 for_each_task_context_nr(ctxn)
2066 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002067
2068 /*
2069 * if cgroup events exist on this CPU, then we need
2070 * to check if we have to switch out PMU state.
2071 * cgroup event are system-wide mode only
2072 */
2073 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002074 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002075}
2076
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002077static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002078{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002079 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002080
2081 if (!cpuctx->task_ctx)
2082 return;
2083
2084 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2085 return;
2086
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002087 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088 cpuctx->task_ctx = NULL;
2089}
2090
2091/*
2092 * Called with IRQs disabled
2093 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002094static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2095 enum event_type_t event_type)
2096{
2097 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002098}
2099
2100static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002101ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002102 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103{
2104 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002105
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002106 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2107 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002108 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002109 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002110 continue;
2111
Stephane Eraniane5d13672011-02-14 11:20:01 +02002112 /* may need to reset tstamp_enabled */
2113 if (is_cgroup_event(event))
2114 perf_cgroup_mark_enabled(event, ctx);
2115
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002116 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002117 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002118
2119 /*
2120 * If this pinned group hasn't been scheduled,
2121 * put it in error state.
2122 */
2123 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2124 update_group_times(event);
2125 event->state = PERF_EVENT_STATE_ERROR;
2126 }
2127 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002128}
2129
2130static void
2131ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002132 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002133{
2134 struct perf_event *event;
2135 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002136
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002137 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2138 /* Ignore events in OFF or ERROR state */
2139 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002140 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141 /*
2142 * Listen to the 'cpu' scheduling filter constraint
2143 * of events:
2144 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002145 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146 continue;
2147
Stephane Eraniane5d13672011-02-14 11:20:01 +02002148 /* may need to reset tstamp_enabled */
2149 if (is_cgroup_event(event))
2150 perf_cgroup_mark_enabled(event, ctx);
2151
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002152 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002153 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002154 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002155 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002156 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002157}
2158
2159static void
2160ctx_sched_in(struct perf_event_context *ctx,
2161 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002162 enum event_type_t event_type,
2163 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002164{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002165 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002166 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002167
Peter Zijlstradb24d332011-04-09 21:17:45 +02002168 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002169 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002170 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002171
Stephane Eraniane5d13672011-02-14 11:20:01 +02002172 now = perf_clock();
2173 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002174 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002175 /*
2176 * First go through the list and put on any pinned groups
2177 * in order to give them the best chance of going on.
2178 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002179 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002180 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002181
2182 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002183 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002184 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002185}
2186
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002187static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002188 enum event_type_t event_type,
2189 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002190{
2191 struct perf_event_context *ctx = &cpuctx->ctx;
2192
Stephane Eraniane5d13672011-02-14 11:20:01 +02002193 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002194}
2195
Stephane Eraniane5d13672011-02-14 11:20:01 +02002196static void perf_event_context_sched_in(struct perf_event_context *ctx,
2197 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002199 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002200
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002201 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002202 if (cpuctx->task_ctx == ctx)
2203 return;
2204
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002205 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002206 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002207 /*
2208 * We want to keep the following priority order:
2209 * cpu pinned (that don't need to move), task pinned,
2210 * cpu flexible, task flexible.
2211 */
2212 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2213
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002214 if (ctx->nr_events)
2215 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002216
Gleb Natapov86b47c22011-11-22 16:08:21 +02002217 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2218
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002219 perf_pmu_enable(ctx->pmu);
2220 perf_ctx_unlock(cpuctx, ctx);
2221
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002222 /*
2223 * Since these rotations are per-cpu, we need to ensure the
2224 * cpu-context we got scheduled on is actually rotating.
2225 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002226 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002227}
2228
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002229/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002230 * When sampling the branck stack in system-wide, it may be necessary
2231 * to flush the stack on context switch. This happens when the branch
2232 * stack does not tag its entries with the pid of the current task.
2233 * Otherwise it becomes impossible to associate a branch entry with a
2234 * task. This ambiguity is more likely to appear when the branch stack
2235 * supports priv level filtering and the user sets it to monitor only
2236 * at the user level (which could be a useful measurement in system-wide
2237 * mode). In that case, the risk is high of having a branch stack with
2238 * branch from multiple tasks. Flushing may mean dropping the existing
2239 * entries or stashing them somewhere in the PMU specific code layer.
2240 *
2241 * This function provides the context switch callback to the lower code
2242 * layer. It is invoked ONLY when there is at least one system-wide context
2243 * with at least one active event using taken branch sampling.
2244 */
2245static void perf_branch_stack_sched_in(struct task_struct *prev,
2246 struct task_struct *task)
2247{
2248 struct perf_cpu_context *cpuctx;
2249 struct pmu *pmu;
2250 unsigned long flags;
2251
2252 /* no need to flush branch stack if not changing task */
2253 if (prev == task)
2254 return;
2255
2256 local_irq_save(flags);
2257
2258 rcu_read_lock();
2259
2260 list_for_each_entry_rcu(pmu, &pmus, entry) {
2261 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2262
2263 /*
2264 * check if the context has at least one
2265 * event using PERF_SAMPLE_BRANCH_STACK
2266 */
2267 if (cpuctx->ctx.nr_branch_stack > 0
2268 && pmu->flush_branch_stack) {
2269
2270 pmu = cpuctx->ctx.pmu;
2271
2272 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2273
2274 perf_pmu_disable(pmu);
2275
2276 pmu->flush_branch_stack();
2277
2278 perf_pmu_enable(pmu);
2279
2280 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2281 }
2282 }
2283
2284 rcu_read_unlock();
2285
2286 local_irq_restore(flags);
2287}
2288
2289/*
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002290 * Called from scheduler to add the events of the current task
2291 * with interrupts disabled.
2292 *
2293 * We restore the event value and then enable it.
2294 *
2295 * This does not protect us against NMI, but enable()
2296 * sets the enabled bit in the control field of event _before_
2297 * accessing the event control register. If a NMI hits, then it will
2298 * keep the event running.
2299 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002300void __perf_event_task_sched_in(struct task_struct *prev,
2301 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002302{
2303 struct perf_event_context *ctx;
2304 int ctxn;
2305
2306 for_each_task_context_nr(ctxn) {
2307 ctx = task->perf_event_ctxp[ctxn];
2308 if (likely(!ctx))
2309 continue;
2310
Stephane Eraniane5d13672011-02-14 11:20:01 +02002311 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002312 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002313 /*
2314 * if cgroup events exist on this CPU, then we need
2315 * to check if we have to switch in PMU state.
2316 * cgroup event are system-wide mode only
2317 */
2318 if (atomic_read(&__get_cpu_var(perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002319 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002320
2321 /* check for system-wide branch_stack events */
2322 if (atomic_read(&__get_cpu_var(perf_branch_stack_events)))
2323 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002324}
2325
Peter Zijlstraabd50712010-01-26 18:50:16 +01002326static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2327{
2328 u64 frequency = event->attr.sample_freq;
2329 u64 sec = NSEC_PER_SEC;
2330 u64 divisor, dividend;
2331
2332 int count_fls, nsec_fls, frequency_fls, sec_fls;
2333
2334 count_fls = fls64(count);
2335 nsec_fls = fls64(nsec);
2336 frequency_fls = fls64(frequency);
2337 sec_fls = 30;
2338
2339 /*
2340 * We got @count in @nsec, with a target of sample_freq HZ
2341 * the target period becomes:
2342 *
2343 * @count * 10^9
2344 * period = -------------------
2345 * @nsec * sample_freq
2346 *
2347 */
2348
2349 /*
2350 * Reduce accuracy by one bit such that @a and @b converge
2351 * to a similar magnitude.
2352 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002353#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002354do { \
2355 if (a##_fls > b##_fls) { \
2356 a >>= 1; \
2357 a##_fls--; \
2358 } else { \
2359 b >>= 1; \
2360 b##_fls--; \
2361 } \
2362} while (0)
2363
2364 /*
2365 * Reduce accuracy until either term fits in a u64, then proceed with
2366 * the other, so that finally we can do a u64/u64 division.
2367 */
2368 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2369 REDUCE_FLS(nsec, frequency);
2370 REDUCE_FLS(sec, count);
2371 }
2372
2373 if (count_fls + sec_fls > 64) {
2374 divisor = nsec * frequency;
2375
2376 while (count_fls + sec_fls > 64) {
2377 REDUCE_FLS(count, sec);
2378 divisor >>= 1;
2379 }
2380
2381 dividend = count * sec;
2382 } else {
2383 dividend = count * sec;
2384
2385 while (nsec_fls + frequency_fls > 64) {
2386 REDUCE_FLS(nsec, frequency);
2387 dividend >>= 1;
2388 }
2389
2390 divisor = nsec * frequency;
2391 }
2392
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002393 if (!divisor)
2394 return dividend;
2395
Peter Zijlstraabd50712010-01-26 18:50:16 +01002396 return div64_u64(dividend, divisor);
2397}
2398
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002399static DEFINE_PER_CPU(int, perf_throttled_count);
2400static DEFINE_PER_CPU(u64, perf_throttled_seq);
2401
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002402static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002403{
2404 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002405 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002406 s64 delta;
2407
Peter Zijlstraabd50712010-01-26 18:50:16 +01002408 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002409
2410 delta = (s64)(period - hwc->sample_period);
2411 delta = (delta + 7) / 8; /* low pass filter */
2412
2413 sample_period = hwc->sample_period + delta;
2414
2415 if (!sample_period)
2416 sample_period = 1;
2417
2418 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002419
Peter Zijlstrae7850592010-05-21 14:43:08 +02002420 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002421 if (disable)
2422 event->pmu->stop(event, PERF_EF_UPDATE);
2423
Peter Zijlstrae7850592010-05-21 14:43:08 +02002424 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002425
2426 if (disable)
2427 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002428 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429}
2430
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002431/*
2432 * combine freq adjustment with unthrottling to avoid two passes over the
2433 * events. At the same time, make sure, having freq events does not change
2434 * the rate of unthrottling as that would introduce bias.
2435 */
2436static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2437 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002438{
2439 struct perf_event *event;
2440 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002441 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002442 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002443
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002444 /*
2445 * only need to iterate over all events iff:
2446 * - context have events in frequency mode (needs freq adjust)
2447 * - there are events to unthrottle on this cpu
2448 */
2449 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002450 return;
2451
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002452 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002453 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002454
Paul Mackerras03541f82009-10-14 16:58:03 +11002455 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002456 if (event->state != PERF_EVENT_STATE_ACTIVE)
2457 continue;
2458
Stephane Eranian5632ab12011-01-03 18:20:01 +02002459 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002460 continue;
2461
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002462 hwc = &event->hw;
2463
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002464 if (needs_unthr && hwc->interrupts == MAX_INTERRUPTS) {
2465 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002466 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002467 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002468 }
2469
2470 if (!event->attr.freq || !event->attr.sample_freq)
2471 continue;
2472
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002473 /*
2474 * stop the event and update event->count
2475 */
2476 event->pmu->stop(event, PERF_EF_UPDATE);
2477
Peter Zijlstrae7850592010-05-21 14:43:08 +02002478 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002479 delta = now - hwc->freq_count_stamp;
2480 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002481
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002482 /*
2483 * restart the event
2484 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002485 * we have stopped the event so tell that
2486 * to perf_adjust_period() to avoid stopping it
2487 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002488 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002489 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002490 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002491
2492 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002493 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002494
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002495 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002496 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002497}
2498
2499/*
2500 * Round-robin a context's events:
2501 */
2502static void rotate_ctx(struct perf_event_context *ctx)
2503{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002504 /*
2505 * Rotate the first entry last of non-pinned groups. Rotation might be
2506 * disabled by the inheritance code.
2507 */
2508 if (!ctx->rotate_disable)
2509 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002510}
2511
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002512/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002513 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2514 * because they're strictly cpu affine and rotate_start is called with IRQs
2515 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002516 */
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002517static void perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002518{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002519 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002520 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002521
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002522 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002523 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002524 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2525 rotate = 1;
2526 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002527
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002528 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002529 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002530 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002531 if (ctx->nr_events != ctx->nr_active)
2532 rotate = 1;
2533 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002534
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002535 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002536 goto done;
2537
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002538 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002539 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002540
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002541 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2542 if (ctx)
2543 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002544
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002545 rotate_ctx(&cpuctx->ctx);
2546 if (ctx)
2547 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002548
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002549 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002550
2551 perf_pmu_enable(cpuctx->ctx.pmu);
2552 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002553done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002554 if (remove)
2555 list_del_init(&cpuctx->rotation_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002556}
2557
2558void perf_event_task_tick(void)
2559{
2560 struct list_head *head = &__get_cpu_var(rotation_list);
2561 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002562 struct perf_event_context *ctx;
2563 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002564
2565 WARN_ON(!irqs_disabled());
2566
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002567 __this_cpu_inc(perf_throttled_seq);
2568 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2569
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002570 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002571 ctx = &cpuctx->ctx;
2572 perf_adjust_freq_unthr_context(ctx, throttled);
2573
2574 ctx = cpuctx->task_ctx;
2575 if (ctx)
2576 perf_adjust_freq_unthr_context(ctx, throttled);
2577
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002578 if (cpuctx->jiffies_interval == 1 ||
2579 !(jiffies % cpuctx->jiffies_interval))
2580 perf_rotate_context(cpuctx);
2581 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002582}
2583
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002584static int event_enable_on_exec(struct perf_event *event,
2585 struct perf_event_context *ctx)
2586{
2587 if (!event->attr.enable_on_exec)
2588 return 0;
2589
2590 event->attr.enable_on_exec = 0;
2591 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2592 return 0;
2593
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002594 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002595
2596 return 1;
2597}
2598
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002599/*
2600 * Enable all of a task's events that have been marked enable-on-exec.
2601 * This expects task == current.
2602 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002603static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002604{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002605 struct perf_event *event;
2606 unsigned long flags;
2607 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002608 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002609
2610 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002611 if (!ctx || !ctx->nr_events)
2612 goto out;
2613
Stephane Eraniane566b762011-04-06 02:54:54 +02002614 /*
2615 * We must ctxsw out cgroup events to avoid conflict
2616 * when invoking perf_task_event_sched_in() later on
2617 * in this function. Otherwise we end up trying to
2618 * ctxswin cgroup events which are already scheduled
2619 * in.
2620 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002621 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002622
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002623 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002624 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002625
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002626 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002627 ret = event_enable_on_exec(event, ctx);
2628 if (ret)
2629 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002630 }
2631
2632 /*
2633 * Unclone this context if we enabled any event.
2634 */
2635 if (enabled)
2636 unclone_ctx(ctx);
2637
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002638 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002639
Stephane Eraniane566b762011-04-06 02:54:54 +02002640 /*
2641 * Also calls ctxswin for cgroup events, if any:
2642 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002643 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002644out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002645 local_irq_restore(flags);
2646}
2647
2648/*
2649 * Cross CPU call to read the hardware event
2650 */
2651static void __perf_event_read(void *info)
2652{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002653 struct perf_event *event = info;
2654 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002655 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002656
2657 /*
2658 * If this is a task context, we need to check whether it is
2659 * the current task context of this cpu. If not it has been
2660 * scheduled out before the smp call arrived. In that case
2661 * event->count would have been updated to a recent sample
2662 * when the event was scheduled out.
2663 */
2664 if (ctx->task && cpuctx->task_ctx != ctx)
2665 return;
2666
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002667 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002668 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002669 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002670 update_cgrp_time_from_event(event);
2671 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002672 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01002673 if (event->state == PERF_EVENT_STATE_ACTIVE)
2674 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002675 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002676}
2677
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002678static inline u64 perf_event_count(struct perf_event *event)
2679{
Peter Zijlstrae7850592010-05-21 14:43:08 +02002680 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002681}
2682
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002683static u64 perf_event_read(struct perf_event *event)
2684{
2685 /*
2686 * If event is enabled and currently active on a CPU, update the
2687 * value in the event structure:
2688 */
2689 if (event->state == PERF_EVENT_STATE_ACTIVE) {
2690 smp_call_function_single(event->oncpu,
2691 __perf_event_read, event, 1);
2692 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01002693 struct perf_event_context *ctx = event->ctx;
2694 unsigned long flags;
2695
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002696 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002697 /*
2698 * may read while context is not active
2699 * (e.g., thread is blocked), in that case
2700 * we cannot update context time
2701 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002702 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02002703 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002704 update_cgrp_time_from_event(event);
2705 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002706 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002707 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002708 }
2709
Peter Zijlstrab5e58792010-05-21 14:43:12 +02002710 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002711}
2712
2713/*
2714 * Initialize the perf_event context in a task_struct:
2715 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02002716static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002717{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002718 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002719 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002720 INIT_LIST_HEAD(&ctx->pinned_groups);
2721 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002722 INIT_LIST_HEAD(&ctx->event_list);
2723 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002724}
2725
Peter Zijlstraeb184472010-09-07 15:55:13 +02002726static struct perf_event_context *
2727alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002728{
2729 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002730
2731 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
2732 if (!ctx)
2733 return NULL;
2734
2735 __perf_event_init_context(ctx);
2736 if (task) {
2737 ctx->task = task;
2738 get_task_struct(task);
2739 }
2740 ctx->pmu = pmu;
2741
2742 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002743}
2744
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002745static struct task_struct *
2746find_lively_task_by_vpid(pid_t vpid)
2747{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002748 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002749 int err;
2750
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002751 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002752 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002753 task = current;
2754 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002755 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002756 if (task)
2757 get_task_struct(task);
2758 rcu_read_unlock();
2759
2760 if (!task)
2761 return ERR_PTR(-ESRCH);
2762
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002763 /* Reuse ptrace permission checks for now. */
2764 err = -EACCES;
2765 if (!ptrace_may_access(task, PTRACE_MODE_READ))
2766 goto errout;
2767
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07002768 return task;
2769errout:
2770 put_task_struct(task);
2771 return ERR_PTR(err);
2772
2773}
2774
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002775/*
2776 * Returns a matching context with refcount and pincount.
2777 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002778static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07002779find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002780{
2781 struct perf_event_context *ctx;
2782 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002783 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002784 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002785
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01002786 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002787 /* Must be root to operate on a CPU event: */
2788 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
2789 return ERR_PTR(-EACCES);
2790
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002791 /*
2792 * We could be clever and allow to attach a event to an
2793 * offline CPU and activate it when the CPU comes up, but
2794 * that's for later.
2795 */
2796 if (!cpu_online(cpu))
2797 return ERR_PTR(-ENODEV);
2798
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002799 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800 ctx = &cpuctx->ctx;
2801 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002802 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002803
2804 return ctx;
2805 }
2806
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002807 err = -EINVAL;
2808 ctxn = pmu->task_ctx_nr;
2809 if (ctxn < 0)
2810 goto errout;
2811
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002812retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002813 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814 if (ctx) {
2815 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002816 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002817 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002818 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02002819 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002820 err = -ENOMEM;
2821 if (!ctx)
2822 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02002823
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002824 err = 0;
2825 mutex_lock(&task->perf_event_mutex);
2826 /*
2827 * If it has already passed perf_event_exit_task().
2828 * we must see PF_EXITING, it takes this mutex too.
2829 */
2830 if (task->flags & PF_EXITING)
2831 err = -ESRCH;
2832 else if (task->perf_event_ctxp[ctxn])
2833 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002834 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002835 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002836 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002837 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002838 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002839 mutex_unlock(&task->perf_event_mutex);
2840
2841 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02002842 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01002843
2844 if (err == -EAGAIN)
2845 goto retry;
2846 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002847 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848 }
2849
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002850 return ctx;
2851
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002852errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002853 return ERR_PTR(err);
2854}
2855
Li Zefan6fb29152009-10-15 11:21:42 +08002856static void perf_event_free_filter(struct perf_event *event);
2857
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002858static void free_event_rcu(struct rcu_head *head)
2859{
2860 struct perf_event *event;
2861
2862 event = container_of(head, struct perf_event, rcu_head);
2863 if (event->ns)
2864 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08002865 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002866 kfree(event);
2867}
2868
Frederic Weisbecker76369132011-05-19 19:55:04 +02002869static void ring_buffer_put(struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002870
2871static void free_event(struct perf_event *event)
2872{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08002873 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002874
2875 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02002876 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01002877 static_key_slow_dec_deferred(&perf_sched_events);
Eric B Munson3af9e852010-05-18 15:30:49 +01002878 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002879 atomic_dec(&nr_mmap_events);
2880 if (event->attr.comm)
2881 atomic_dec(&nr_comm_events);
2882 if (event->attr.task)
2883 atomic_dec(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002884 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
2885 put_callchain_buffers();
Peter Zijlstra08309372011-03-03 11:31:20 +01002886 if (is_cgroup_event(event)) {
2887 atomic_dec(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01002888 static_key_slow_dec_deferred(&perf_sched_events);
Peter Zijlstra08309372011-03-03 11:31:20 +01002889 }
Stephane Eraniand010b332012-02-09 23:21:00 +01002890
2891 if (has_branch_stack(event)) {
2892 static_key_slow_dec_deferred(&perf_sched_events);
2893 /* is system-wide event */
2894 if (!(event->attach_state & PERF_ATTACH_TASK))
2895 atomic_dec(&per_cpu(perf_branch_stack_events,
2896 event->cpu));
2897 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002898 }
2899
Frederic Weisbecker76369132011-05-19 19:55:04 +02002900 if (event->rb) {
2901 ring_buffer_put(event->rb);
2902 event->rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002903 }
2904
Stephane Eraniane5d13672011-02-14 11:20:01 +02002905 if (is_cgroup_event(event))
2906 perf_detach_cgroup(event);
2907
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002908 if (event->destroy)
2909 event->destroy(event);
2910
Peter Zijlstra0c67b402010-09-13 11:15:58 +02002911 if (event->ctx)
2912 put_ctx(event->ctx);
2913
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002914 call_rcu(&event->rcu_head, free_event_rcu);
2915}
2916
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002917int perf_event_release_kernel(struct perf_event *event)
2918{
2919 struct perf_event_context *ctx = event->ctx;
2920
2921 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstraa0507c82010-05-06 15:42:53 +02002922 /*
2923 * There are two ways this annotation is useful:
2924 *
2925 * 1) there is a lock recursion from perf_event_exit_task
2926 * see the comment there.
2927 *
2928 * 2) there is a lock-inversion with mmap_sem through
2929 * perf_event_read_group(), which takes faults while
2930 * holding ctx->mutex, however this is called after
2931 * the last filedesc died, so there is no possibility
2932 * to trigger the AB-BA case.
2933 */
2934 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002935 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002936 perf_group_detach(event);
Peter Zijlstra050735b2010-05-11 11:51:53 +02002937 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrae03a9a52011-04-09 21:17:47 +02002938 perf_remove_from_context(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002939 mutex_unlock(&ctx->mutex);
2940
Arjan van de Venfb0459d2009-09-25 12:25:56 +02002941 free_event(event);
2942
2943 return 0;
2944}
2945EXPORT_SYMBOL_GPL(perf_event_release_kernel);
2946
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002947/*
2948 * Called when the last reference to the file is gone.
2949 */
Al Viroa6fa9412012-08-20 14:59:25 +01002950static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002951{
Peter Zijlstra88821352010-11-09 19:01:43 +01002952 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002953
Al Viroa6fa9412012-08-20 14:59:25 +01002954 if (!atomic_long_dec_and_test(&event->refcount))
2955 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002956
Peter Zijlstra88821352010-11-09 19:01:43 +01002957 rcu_read_lock();
2958 owner = ACCESS_ONCE(event->owner);
2959 /*
2960 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
2961 * !owner it means the list deletion is complete and we can indeed
2962 * free this event, otherwise we need to serialize on
2963 * owner->perf_event_mutex.
2964 */
2965 smp_read_barrier_depends();
2966 if (owner) {
2967 /*
2968 * Since delayed_put_task_struct() also drops the last
2969 * task reference we can safely take a new reference
2970 * while holding the rcu_read_lock().
2971 */
2972 get_task_struct(owner);
2973 }
2974 rcu_read_unlock();
2975
2976 if (owner) {
2977 mutex_lock(&owner->perf_event_mutex);
2978 /*
2979 * We have to re-check the event->owner field, if it is cleared
2980 * we raced with perf_event_exit_task(), acquiring the mutex
2981 * ensured they're done, and we can proceed with freeing the
2982 * event.
2983 */
2984 if (event->owner)
2985 list_del_init(&event->owner_entry);
2986 mutex_unlock(&owner->perf_event_mutex);
2987 put_task_struct(owner);
2988 }
2989
Al Viroa6fa9412012-08-20 14:59:25 +01002990 perf_event_release_kernel(event);
2991}
2992
2993static int perf_release(struct inode *inode, struct file *file)
2994{
2995 put_event(file->private_data);
2996 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01002997}
2998
Peter Zijlstra59ed4462009-11-20 22:19:55 +01002999u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003000{
3001 struct perf_event *child;
3002 u64 total = 0;
3003
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003004 *enabled = 0;
3005 *running = 0;
3006
Peter Zijlstra6f105812009-11-20 22:19:56 +01003007 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003008 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003009 *enabled += event->total_time_enabled +
3010 atomic64_read(&event->child_total_time_enabled);
3011 *running += event->total_time_running +
3012 atomic64_read(&event->child_total_time_running);
3013
3014 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003015 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003016 *enabled += child->total_time_enabled;
3017 *running += child->total_time_running;
3018 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003019 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003020
3021 return total;
3022}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003023EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003024
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003025static int perf_event_read_group(struct perf_event *event,
3026 u64 read_format, char __user *buf)
3027{
3028 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003029 int n = 0, size = 0, ret = -EFAULT;
3030 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003031 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003032 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003033
Peter Zijlstra6f105812009-11-20 22:19:56 +01003034 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003035 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003036
3037 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003038 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3039 values[n++] = enabled;
3040 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3041 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003042 values[n++] = count;
3043 if (read_format & PERF_FORMAT_ID)
3044 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003045
3046 size = n * sizeof(u64);
3047
3048 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003049 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003050
Peter Zijlstra6f105812009-11-20 22:19:56 +01003051 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003052
3053 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003054 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003055
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003056 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003057 if (read_format & PERF_FORMAT_ID)
3058 values[n++] = primary_event_id(sub);
3059
3060 size = n * sizeof(u64);
3061
Stephane Eranian184d3da2009-11-23 21:40:49 -08003062 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003063 ret = -EFAULT;
3064 goto unlock;
3065 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003066
3067 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003068 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003069unlock:
3070 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003071
Peter Zijlstraabf48682009-11-20 22:19:49 +01003072 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003073}
3074
3075static int perf_event_read_one(struct perf_event *event,
3076 u64 read_format, char __user *buf)
3077{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003078 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003079 u64 values[4];
3080 int n = 0;
3081
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003082 values[n++] = perf_event_read_value(event, &enabled, &running);
3083 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3084 values[n++] = enabled;
3085 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3086 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003087 if (read_format & PERF_FORMAT_ID)
3088 values[n++] = primary_event_id(event);
3089
3090 if (copy_to_user(buf, values, n * sizeof(u64)))
3091 return -EFAULT;
3092
3093 return n * sizeof(u64);
3094}
3095
3096/*
3097 * Read the performance event - simple non blocking version for now
3098 */
3099static ssize_t
3100perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3101{
3102 u64 read_format = event->attr.read_format;
3103 int ret;
3104
3105 /*
3106 * Return end-of-file for a read on a event that is in
3107 * error state (i.e. because it was pinned but it couldn't be
3108 * scheduled on to the CPU at some point).
3109 */
3110 if (event->state == PERF_EVENT_STATE_ERROR)
3111 return 0;
3112
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003113 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003114 return -ENOSPC;
3115
3116 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003117 if (read_format & PERF_FORMAT_GROUP)
3118 ret = perf_event_read_group(event, read_format, buf);
3119 else
3120 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003121
3122 return ret;
3123}
3124
3125static ssize_t
3126perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3127{
3128 struct perf_event *event = file->private_data;
3129
3130 return perf_read_hw(event, buf, count);
3131}
3132
3133static unsigned int perf_poll(struct file *file, poll_table *wait)
3134{
3135 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003136 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003137 unsigned int events = POLL_HUP;
3138
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003139 /*
3140 * Race between perf_event_set_output() and perf_poll(): perf_poll()
3141 * grabs the rb reference but perf_event_set_output() overrides it.
3142 * Here is the timeline for two threads T1, T2:
3143 * t0: T1, rb = rcu_dereference(event->rb)
3144 * t1: T2, old_rb = event->rb
3145 * t2: T2, event->rb = new rb
3146 * t3: T2, ring_buffer_detach(old_rb)
3147 * t4: T1, ring_buffer_attach(rb1)
3148 * t5: T1, poll_wait(event->waitq)
3149 *
3150 * To avoid this problem, we grab mmap_mutex in perf_poll()
3151 * thereby ensuring that the assignment of the new ring buffer
3152 * and the detachment of the old buffer appear atomic to perf_poll()
3153 */
3154 mutex_lock(&event->mmap_mutex);
3155
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003156 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003157 rb = rcu_dereference(event->rb);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003158 if (rb) {
3159 ring_buffer_attach(event, rb);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003160 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003161 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003162 rcu_read_unlock();
3163
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003164 mutex_unlock(&event->mmap_mutex);
3165
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003166 poll_wait(file, &event->waitq, wait);
3167
3168 return events;
3169}
3170
3171static void perf_event_reset(struct perf_event *event)
3172{
3173 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003174 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003175 perf_event_update_userpage(event);
3176}
3177
3178/*
3179 * Holding the top-level event's child_mutex means that any
3180 * descendant process that has inherited this event will block
3181 * in sync_child_event if it goes to exit, thus satisfying the
3182 * task existence requirements of perf_event_enable/disable.
3183 */
3184static void perf_event_for_each_child(struct perf_event *event,
3185 void (*func)(struct perf_event *))
3186{
3187 struct perf_event *child;
3188
3189 WARN_ON_ONCE(event->ctx->parent_ctx);
3190 mutex_lock(&event->child_mutex);
3191 func(event);
3192 list_for_each_entry(child, &event->child_list, child_list)
3193 func(child);
3194 mutex_unlock(&event->child_mutex);
3195}
3196
3197static void perf_event_for_each(struct perf_event *event,
3198 void (*func)(struct perf_event *))
3199{
3200 struct perf_event_context *ctx = event->ctx;
3201 struct perf_event *sibling;
3202
3203 WARN_ON_ONCE(ctx->parent_ctx);
3204 mutex_lock(&ctx->mutex);
3205 event = event->group_leader;
3206
3207 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003208 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003209 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003210 mutex_unlock(&ctx->mutex);
3211}
3212
3213static int perf_event_period(struct perf_event *event, u64 __user *arg)
3214{
3215 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003216 int ret = 0;
3217 u64 value;
3218
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003219 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003220 return -EINVAL;
3221
John Blackwoodad0cf342010-09-28 18:03:11 -04003222 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003223 return -EFAULT;
3224
3225 if (!value)
3226 return -EINVAL;
3227
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003228 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003229 if (event->attr.freq) {
3230 if (value > sysctl_perf_event_sample_rate) {
3231 ret = -EINVAL;
3232 goto unlock;
3233 }
3234
3235 event->attr.sample_freq = value;
3236 } else {
3237 event->attr.sample_period = value;
3238 event->hw.sample_period = value;
3239 }
3240unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003241 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003242
3243 return ret;
3244}
3245
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003246static const struct file_operations perf_fops;
3247
Al Viro2903ff02012-08-28 12:52:22 -04003248static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003249{
Al Viro2903ff02012-08-28 12:52:22 -04003250 struct fd f = fdget(fd);
3251 if (!f.file)
3252 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003253
Al Viro2903ff02012-08-28 12:52:22 -04003254 if (f.file->f_op != &perf_fops) {
3255 fdput(f);
3256 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003257 }
Al Viro2903ff02012-08-28 12:52:22 -04003258 *p = f;
3259 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003260}
3261
3262static int perf_event_set_output(struct perf_event *event,
3263 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003264static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003265
3266static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3267{
3268 struct perf_event *event = file->private_data;
3269 void (*func)(struct perf_event *);
3270 u32 flags = arg;
3271
3272 switch (cmd) {
3273 case PERF_EVENT_IOC_ENABLE:
3274 func = perf_event_enable;
3275 break;
3276 case PERF_EVENT_IOC_DISABLE:
3277 func = perf_event_disable;
3278 break;
3279 case PERF_EVENT_IOC_RESET:
3280 func = perf_event_reset;
3281 break;
3282
3283 case PERF_EVENT_IOC_REFRESH:
3284 return perf_event_refresh(event, arg);
3285
3286 case PERF_EVENT_IOC_PERIOD:
3287 return perf_event_period(event, (u64 __user *)arg);
3288
3289 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003290 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003291 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003292 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003293 struct perf_event *output_event;
3294 struct fd output;
3295 ret = perf_fget_light(arg, &output);
3296 if (ret)
3297 return ret;
3298 output_event = output.file->private_data;
3299 ret = perf_event_set_output(event, output_event);
3300 fdput(output);
3301 } else {
3302 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003303 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003304 return ret;
3305 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003306
Li Zefan6fb29152009-10-15 11:21:42 +08003307 case PERF_EVENT_IOC_SET_FILTER:
3308 return perf_event_set_filter(event, (void __user *)arg);
3309
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003310 default:
3311 return -ENOTTY;
3312 }
3313
3314 if (flags & PERF_IOC_FLAG_GROUP)
3315 perf_event_for_each(event, func);
3316 else
3317 perf_event_for_each_child(event, func);
3318
3319 return 0;
3320}
3321
3322int perf_event_task_enable(void)
3323{
3324 struct perf_event *event;
3325
3326 mutex_lock(&current->perf_event_mutex);
3327 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3328 perf_event_for_each_child(event, perf_event_enable);
3329 mutex_unlock(&current->perf_event_mutex);
3330
3331 return 0;
3332}
3333
3334int perf_event_task_disable(void)
3335{
3336 struct perf_event *event;
3337
3338 mutex_lock(&current->perf_event_mutex);
3339 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3340 perf_event_for_each_child(event, perf_event_disable);
3341 mutex_unlock(&current->perf_event_mutex);
3342
3343 return 0;
3344}
3345
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003346static int perf_event_index(struct perf_event *event)
3347{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003348 if (event->hw.state & PERF_HES_STOPPED)
3349 return 0;
3350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003351 if (event->state != PERF_EVENT_STATE_ACTIVE)
3352 return 0;
3353
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003354 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003355}
3356
Eric B Munsonc4794292011-06-23 16:34:38 -04003357static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003358 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003359 u64 *enabled,
3360 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003361{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003362 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003363
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003364 *now = perf_clock();
3365 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003366 *enabled = ctx_time - event->tstamp_enabled;
3367 *running = ctx_time - event->tstamp_running;
3368}
3369
Peter Zijlstrac7206202012-03-22 17:26:36 +01003370void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003371{
3372}
3373
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374/*
3375 * Callers need to ensure there can be no nesting of this function, otherwise
3376 * the seqlock logic goes bad. We can not serialize this because the arch
3377 * code calls this from NMI context.
3378 */
3379void perf_event_update_userpage(struct perf_event *event)
3380{
3381 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003382 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003383 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003384
3385 rcu_read_lock();
Eric B Munson0d641202011-06-24 12:26:26 -04003386 /*
3387 * compute total_time_enabled, total_time_running
3388 * based on snapshot values taken when the event
3389 * was last scheduled in.
3390 *
3391 * we cannot simply called update_context_time()
3392 * because of locking issue as we can be called in
3393 * NMI context
3394 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003395 calc_timer_values(event, &now, &enabled, &running);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003396 rb = rcu_dereference(event->rb);
3397 if (!rb)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003398 goto unlock;
3399
Frederic Weisbecker76369132011-05-19 19:55:04 +02003400 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003401
3402 /*
3403 * Disable preemption so as to not let the corresponding user-space
3404 * spin too long if we get preempted.
3405 */
3406 preempt_disable();
3407 ++userpg->lock;
3408 barrier();
3409 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003410 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003411 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003412 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003413
Eric B Munson0d641202011-06-24 12:26:26 -04003414 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003415 atomic64_read(&event->child_total_time_enabled);
3416
Eric B Munson0d641202011-06-24 12:26:26 -04003417 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003418 atomic64_read(&event->child_total_time_running);
3419
Peter Zijlstrac7206202012-03-22 17:26:36 +01003420 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003421
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003422 barrier();
3423 ++userpg->lock;
3424 preempt_enable();
3425unlock:
3426 rcu_read_unlock();
3427}
3428
Peter Zijlstra906010b2009-09-21 16:08:49 +02003429static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3430{
3431 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003432 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003433 int ret = VM_FAULT_SIGBUS;
3434
3435 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3436 if (vmf->pgoff == 0)
3437 ret = 0;
3438 return ret;
3439 }
3440
3441 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003442 rb = rcu_dereference(event->rb);
3443 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003444 goto unlock;
3445
3446 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3447 goto unlock;
3448
Frederic Weisbecker76369132011-05-19 19:55:04 +02003449 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003450 if (!vmf->page)
3451 goto unlock;
3452
3453 get_page(vmf->page);
3454 vmf->page->mapping = vma->vm_file->f_mapping;
3455 vmf->page->index = vmf->pgoff;
3456
3457 ret = 0;
3458unlock:
3459 rcu_read_unlock();
3460
3461 return ret;
3462}
3463
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003464static void ring_buffer_attach(struct perf_event *event,
3465 struct ring_buffer *rb)
3466{
3467 unsigned long flags;
3468
3469 if (!list_empty(&event->rb_entry))
3470 return;
3471
3472 spin_lock_irqsave(&rb->event_lock, flags);
3473 if (!list_empty(&event->rb_entry))
3474 goto unlock;
3475
3476 list_add(&event->rb_entry, &rb->event_list);
3477unlock:
3478 spin_unlock_irqrestore(&rb->event_lock, flags);
3479}
3480
3481static void ring_buffer_detach(struct perf_event *event,
3482 struct ring_buffer *rb)
3483{
3484 unsigned long flags;
3485
3486 if (list_empty(&event->rb_entry))
3487 return;
3488
3489 spin_lock_irqsave(&rb->event_lock, flags);
3490 list_del_init(&event->rb_entry);
3491 wake_up_all(&event->waitq);
3492 spin_unlock_irqrestore(&rb->event_lock, flags);
3493}
3494
3495static void ring_buffer_wakeup(struct perf_event *event)
3496{
3497 struct ring_buffer *rb;
3498
3499 rcu_read_lock();
3500 rb = rcu_dereference(event->rb);
Will Deacon44b7f4b2011-12-13 20:40:45 +01003501 if (!rb)
3502 goto unlock;
3503
3504 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003505 wake_up_all(&event->waitq);
Will Deacon44b7f4b2011-12-13 20:40:45 +01003506
3507unlock:
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003508 rcu_read_unlock();
3509}
3510
Frederic Weisbecker76369132011-05-19 19:55:04 +02003511static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003512{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003513 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003514
Frederic Weisbecker76369132011-05-19 19:55:04 +02003515 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3516 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003517}
3518
Frederic Weisbecker76369132011-05-19 19:55:04 +02003519static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003520{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003521 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003522
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003523 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003524 rb = rcu_dereference(event->rb);
3525 if (rb) {
3526 if (!atomic_inc_not_zero(&rb->refcount))
3527 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003528 }
3529 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003530
Frederic Weisbecker76369132011-05-19 19:55:04 +02003531 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003532}
3533
Frederic Weisbecker76369132011-05-19 19:55:04 +02003534static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003535{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003536 struct perf_event *event, *n;
3537 unsigned long flags;
3538
Frederic Weisbecker76369132011-05-19 19:55:04 +02003539 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003540 return;
3541
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003542 spin_lock_irqsave(&rb->event_lock, flags);
3543 list_for_each_entry_safe(event, n, &rb->event_list, rb_entry) {
3544 list_del_init(&event->rb_entry);
3545 wake_up_all(&event->waitq);
3546 }
3547 spin_unlock_irqrestore(&rb->event_lock, flags);
3548
Frederic Weisbecker76369132011-05-19 19:55:04 +02003549 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003550}
3551
3552static void perf_mmap_open(struct vm_area_struct *vma)
3553{
3554 struct perf_event *event = vma->vm_file->private_data;
3555
3556 atomic_inc(&event->mmap_count);
3557}
3558
3559static void perf_mmap_close(struct vm_area_struct *vma)
3560{
3561 struct perf_event *event = vma->vm_file->private_data;
3562
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003563 if (atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex)) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02003564 unsigned long size = perf_data_size(event->rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003565 struct user_struct *user = event->mmap_user;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003566 struct ring_buffer *rb = event->rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003567
Peter Zijlstra906010b2009-09-21 16:08:49 +02003568 atomic_long_sub((size >> PAGE_SHIFT) + 1, &user->locked_vm);
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003569 vma->vm_mm->pinned_vm -= event->mmap_locked;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003570 rcu_assign_pointer(event->rb, NULL);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003571 ring_buffer_detach(event, rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003572 mutex_unlock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003573
Frederic Weisbecker76369132011-05-19 19:55:04 +02003574 ring_buffer_put(rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003575 free_uid(user);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003576 }
3577}
3578
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003579static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003580 .open = perf_mmap_open,
3581 .close = perf_mmap_close,
3582 .fault = perf_mmap_fault,
3583 .page_mkwrite = perf_mmap_fault,
3584};
3585
3586static int perf_mmap(struct file *file, struct vm_area_struct *vma)
3587{
3588 struct perf_event *event = file->private_data;
3589 unsigned long user_locked, user_lock_limit;
3590 struct user_struct *user = current_user();
3591 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003592 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003593 unsigned long vma_size;
3594 unsigned long nr_pages;
3595 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003596 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003597
Peter Zijlstrac7920612010-05-18 10:33:24 +02003598 /*
3599 * Don't allow mmap() of inherited per-task counters. This would
3600 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02003601 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02003602 */
3603 if (event->cpu == -1 && event->attr.inherit)
3604 return -EINVAL;
3605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003606 if (!(vma->vm_flags & VM_SHARED))
3607 return -EINVAL;
3608
3609 vma_size = vma->vm_end - vma->vm_start;
3610 nr_pages = (vma_size / PAGE_SIZE) - 1;
3611
3612 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02003613 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003614 * can do bitmasks instead of modulo.
3615 */
3616 if (nr_pages != 0 && !is_power_of_2(nr_pages))
3617 return -EINVAL;
3618
3619 if (vma_size != PAGE_SIZE * (1 + nr_pages))
3620 return -EINVAL;
3621
3622 if (vma->vm_pgoff != 0)
3623 return -EINVAL;
3624
3625 WARN_ON_ONCE(event->ctx->parent_ctx);
3626 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02003627 if (event->rb) {
3628 if (event->rb->nr_pages == nr_pages)
3629 atomic_inc(&event->rb->refcount);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003630 else
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003631 ret = -EINVAL;
3632 goto unlock;
3633 }
3634
3635 user_extra = nr_pages + 1;
3636 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
3637
3638 /*
3639 * Increase the limit linearly with more CPUs:
3640 */
3641 user_lock_limit *= num_online_cpus();
3642
3643 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
3644
3645 extra = 0;
3646 if (user_locked > user_lock_limit)
3647 extra = user_locked - user_lock_limit;
3648
Jiri Slaby78d7d402010-03-05 13:42:54 -08003649 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003650 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003651 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003652
3653 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
3654 !capable(CAP_IPC_LOCK)) {
3655 ret = -EPERM;
3656 goto unlock;
3657 }
3658
Frederic Weisbecker76369132011-05-19 19:55:04 +02003659 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003660
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003661 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003662 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02003663
Vince Weaver4ec83632011-06-01 15:15:36 -04003664 rb = rb_alloc(nr_pages,
3665 event->attr.watermark ? event->attr.wakeup_watermark : 0,
3666 event->cpu, flags);
3667
Frederic Weisbecker76369132011-05-19 19:55:04 +02003668 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003669 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003670 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003671 }
Frederic Weisbecker76369132011-05-19 19:55:04 +02003672 rcu_assign_pointer(event->rb, rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003673
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003674 atomic_long_add(user_extra, &user->locked_vm);
3675 event->mmap_locked = extra;
3676 event->mmap_user = get_current_user();
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07003677 vma->vm_mm->pinned_vm += event->mmap_locked;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003678
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01003679 perf_event_update_userpage(event);
3680
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003681unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003682 if (!ret)
3683 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003684 mutex_unlock(&event->mmap_mutex);
3685
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003686 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687 vma->vm_ops = &perf_mmap_vmops;
3688
3689 return ret;
3690}
3691
3692static int perf_fasync(int fd, struct file *filp, int on)
3693{
Al Viro496ad9a2013-01-23 17:07:38 -05003694 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003695 struct perf_event *event = filp->private_data;
3696 int retval;
3697
3698 mutex_lock(&inode->i_mutex);
3699 retval = fasync_helper(fd, filp, on, &event->fasync);
3700 mutex_unlock(&inode->i_mutex);
3701
3702 if (retval < 0)
3703 return retval;
3704
3705 return 0;
3706}
3707
3708static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01003709 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003710 .release = perf_release,
3711 .read = perf_read,
3712 .poll = perf_poll,
3713 .unlocked_ioctl = perf_ioctl,
3714 .compat_ioctl = perf_ioctl,
3715 .mmap = perf_mmap,
3716 .fasync = perf_fasync,
3717};
3718
3719/*
3720 * Perf event wakeup
3721 *
3722 * If there's data, ensure we set the poll() state and publish everything
3723 * to user-space before waking everybody up.
3724 */
3725
3726void perf_event_wakeup(struct perf_event *event)
3727{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003728 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003729
3730 if (event->pending_kill) {
3731 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
3732 event->pending_kill = 0;
3733 }
3734}
3735
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003736static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003737{
3738 struct perf_event *event = container_of(entry,
3739 struct perf_event, pending);
3740
3741 if (event->pending_disable) {
3742 event->pending_disable = 0;
3743 __perf_event_disable(event);
3744 }
3745
3746 if (event->pending_wakeup) {
3747 event->pending_wakeup = 0;
3748 perf_event_wakeup(event);
3749 }
3750}
3751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003752/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08003753 * We assume there is only KVM supporting the callbacks.
3754 * Later on, we might change it to a list if there is
3755 * another virtualization implementation supporting the callbacks.
3756 */
3757struct perf_guest_info_callbacks *perf_guest_cbs;
3758
3759int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3760{
3761 perf_guest_cbs = cbs;
3762 return 0;
3763}
3764EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
3765
3766int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
3767{
3768 perf_guest_cbs = NULL;
3769 return 0;
3770}
3771EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
3772
Jiri Olsa40189942012-08-07 15:20:37 +02003773static void
3774perf_output_sample_regs(struct perf_output_handle *handle,
3775 struct pt_regs *regs, u64 mask)
3776{
3777 int bit;
3778
3779 for_each_set_bit(bit, (const unsigned long *) &mask,
3780 sizeof(mask) * BITS_PER_BYTE) {
3781 u64 val;
3782
3783 val = perf_reg_value(regs, bit);
3784 perf_output_put(handle, val);
3785 }
3786}
3787
3788static void perf_sample_regs_user(struct perf_regs_user *regs_user,
3789 struct pt_regs *regs)
3790{
3791 if (!user_mode(regs)) {
3792 if (current->mm)
3793 regs = task_pt_regs(current);
3794 else
3795 regs = NULL;
3796 }
3797
3798 if (regs) {
3799 regs_user->regs = regs;
3800 regs_user->abi = perf_reg_abi(current);
3801 }
3802}
3803
Jiri Olsac5ebced2012-08-07 15:20:40 +02003804/*
3805 * Get remaining task size from user stack pointer.
3806 *
3807 * It'd be better to take stack vma map and limit this more
3808 * precisly, but there's no way to get it safely under interrupt,
3809 * so using TASK_SIZE as limit.
3810 */
3811static u64 perf_ustack_task_size(struct pt_regs *regs)
3812{
3813 unsigned long addr = perf_user_stack_pointer(regs);
3814
3815 if (!addr || addr >= TASK_SIZE)
3816 return 0;
3817
3818 return TASK_SIZE - addr;
3819}
3820
3821static u16
3822perf_sample_ustack_size(u16 stack_size, u16 header_size,
3823 struct pt_regs *regs)
3824{
3825 u64 task_size;
3826
3827 /* No regs, no stack pointer, no dump. */
3828 if (!regs)
3829 return 0;
3830
3831 /*
3832 * Check if we fit in with the requested stack size into the:
3833 * - TASK_SIZE
3834 * If we don't, we limit the size to the TASK_SIZE.
3835 *
3836 * - remaining sample size
3837 * If we don't, we customize the stack size to
3838 * fit in to the remaining sample size.
3839 */
3840
3841 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
3842 stack_size = min(stack_size, (u16) task_size);
3843
3844 /* Current header size plus static size and dynamic size. */
3845 header_size += 2 * sizeof(u64);
3846
3847 /* Do we fit in with the current stack dump size? */
3848 if ((u16) (header_size + stack_size) < header_size) {
3849 /*
3850 * If we overflow the maximum size for the sample,
3851 * we customize the stack dump size to fit in.
3852 */
3853 stack_size = USHRT_MAX - header_size - sizeof(u64);
3854 stack_size = round_up(stack_size, sizeof(u64));
3855 }
3856
3857 return stack_size;
3858}
3859
3860static void
3861perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
3862 struct pt_regs *regs)
3863{
3864 /* Case of a kernel thread, nothing to dump */
3865 if (!regs) {
3866 u64 size = 0;
3867 perf_output_put(handle, size);
3868 } else {
3869 unsigned long sp;
3870 unsigned int rem;
3871 u64 dyn_size;
3872
3873 /*
3874 * We dump:
3875 * static size
3876 * - the size requested by user or the best one we can fit
3877 * in to the sample max size
3878 * data
3879 * - user stack dump data
3880 * dynamic size
3881 * - the actual dumped size
3882 */
3883
3884 /* Static size. */
3885 perf_output_put(handle, dump_size);
3886
3887 /* Data. */
3888 sp = perf_user_stack_pointer(regs);
3889 rem = __output_copy_user(handle, (void *) sp, dump_size);
3890 dyn_size = dump_size - rem;
3891
3892 perf_output_skip(handle, rem);
3893
3894 /* Dynamic size. */
3895 perf_output_put(handle, dyn_size);
3896 }
3897}
3898
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02003899static void __perf_event_header__init_id(struct perf_event_header *header,
3900 struct perf_sample_data *data,
3901 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02003902{
3903 u64 sample_type = event->attr.sample_type;
3904
3905 data->type = sample_type;
3906 header->size += event->id_header_size;
3907
3908 if (sample_type & PERF_SAMPLE_TID) {
3909 /* namespace issues */
3910 data->tid_entry.pid = perf_event_pid(event, current);
3911 data->tid_entry.tid = perf_event_tid(event, current);
3912 }
3913
3914 if (sample_type & PERF_SAMPLE_TIME)
3915 data->time = perf_clock();
3916
3917 if (sample_type & PERF_SAMPLE_ID)
3918 data->id = primary_event_id(event);
3919
3920 if (sample_type & PERF_SAMPLE_STREAM_ID)
3921 data->stream_id = event->id;
3922
3923 if (sample_type & PERF_SAMPLE_CPU) {
3924 data->cpu_entry.cpu = raw_smp_processor_id();
3925 data->cpu_entry.reserved = 0;
3926 }
3927}
3928
Frederic Weisbecker76369132011-05-19 19:55:04 +02003929void perf_event_header__init_id(struct perf_event_header *header,
3930 struct perf_sample_data *data,
3931 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02003932{
3933 if (event->attr.sample_id_all)
3934 __perf_event_header__init_id(header, data, event);
3935}
3936
3937static void __perf_event__output_id_sample(struct perf_output_handle *handle,
3938 struct perf_sample_data *data)
3939{
3940 u64 sample_type = data->type;
3941
3942 if (sample_type & PERF_SAMPLE_TID)
3943 perf_output_put(handle, data->tid_entry);
3944
3945 if (sample_type & PERF_SAMPLE_TIME)
3946 perf_output_put(handle, data->time);
3947
3948 if (sample_type & PERF_SAMPLE_ID)
3949 perf_output_put(handle, data->id);
3950
3951 if (sample_type & PERF_SAMPLE_STREAM_ID)
3952 perf_output_put(handle, data->stream_id);
3953
3954 if (sample_type & PERF_SAMPLE_CPU)
3955 perf_output_put(handle, data->cpu_entry);
3956}
3957
Frederic Weisbecker76369132011-05-19 19:55:04 +02003958void perf_event__output_id_sample(struct perf_event *event,
3959 struct perf_output_handle *handle,
3960 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02003961{
3962 if (event->attr.sample_id_all)
3963 __perf_event__output_id_sample(handle, sample);
3964}
3965
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003966static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02003967 struct perf_event *event,
3968 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003969{
3970 u64 read_format = event->attr.read_format;
3971 u64 values[4];
3972 int n = 0;
3973
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003974 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003975 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02003976 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003977 atomic64_read(&event->child_total_time_enabled);
3978 }
3979 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02003980 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003981 atomic64_read(&event->child_total_time_running);
3982 }
3983 if (read_format & PERF_FORMAT_ID)
3984 values[n++] = primary_event_id(event);
3985
Frederic Weisbecker76369132011-05-19 19:55:04 +02003986 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003987}
3988
3989/*
3990 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
3991 */
3992static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02003993 struct perf_event *event,
3994 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003995{
3996 struct perf_event *leader = event->group_leader, *sub;
3997 u64 read_format = event->attr.read_format;
3998 u64 values[5];
3999 int n = 0;
4000
4001 values[n++] = 1 + leader->nr_siblings;
4002
4003 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004004 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004005
4006 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004007 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004008
4009 if (leader != event)
4010 leader->pmu->read(leader);
4011
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004012 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004013 if (read_format & PERF_FORMAT_ID)
4014 values[n++] = primary_event_id(leader);
4015
Frederic Weisbecker76369132011-05-19 19:55:04 +02004016 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004017
4018 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4019 n = 0;
4020
4021 if (sub != event)
4022 sub->pmu->read(sub);
4023
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004024 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004025 if (read_format & PERF_FORMAT_ID)
4026 values[n++] = primary_event_id(sub);
4027
Frederic Weisbecker76369132011-05-19 19:55:04 +02004028 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004029 }
4030}
4031
Stephane Eranianeed01522010-10-26 16:08:01 +02004032#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4033 PERF_FORMAT_TOTAL_TIME_RUNNING)
4034
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004035static void perf_output_read(struct perf_output_handle *handle,
4036 struct perf_event *event)
4037{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004038 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004039 u64 read_format = event->attr.read_format;
4040
4041 /*
4042 * compute total_time_enabled, total_time_running
4043 * based on snapshot values taken when the event
4044 * was last scheduled in.
4045 *
4046 * we cannot simply called update_context_time()
4047 * because of locking issue as we are called in
4048 * NMI context
4049 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004050 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004051 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004053 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004054 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004056 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004057}
4058
4059void perf_output_sample(struct perf_output_handle *handle,
4060 struct perf_event_header *header,
4061 struct perf_sample_data *data,
4062 struct perf_event *event)
4063{
4064 u64 sample_type = data->type;
4065
4066 perf_output_put(handle, *header);
4067
4068 if (sample_type & PERF_SAMPLE_IP)
4069 perf_output_put(handle, data->ip);
4070
4071 if (sample_type & PERF_SAMPLE_TID)
4072 perf_output_put(handle, data->tid_entry);
4073
4074 if (sample_type & PERF_SAMPLE_TIME)
4075 perf_output_put(handle, data->time);
4076
4077 if (sample_type & PERF_SAMPLE_ADDR)
4078 perf_output_put(handle, data->addr);
4079
4080 if (sample_type & PERF_SAMPLE_ID)
4081 perf_output_put(handle, data->id);
4082
4083 if (sample_type & PERF_SAMPLE_STREAM_ID)
4084 perf_output_put(handle, data->stream_id);
4085
4086 if (sample_type & PERF_SAMPLE_CPU)
4087 perf_output_put(handle, data->cpu_entry);
4088
4089 if (sample_type & PERF_SAMPLE_PERIOD)
4090 perf_output_put(handle, data->period);
4091
4092 if (sample_type & PERF_SAMPLE_READ)
4093 perf_output_read(handle, event);
4094
4095 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4096 if (data->callchain) {
4097 int size = 1;
4098
4099 if (data->callchain)
4100 size += data->callchain->nr;
4101
4102 size *= sizeof(u64);
4103
Frederic Weisbecker76369132011-05-19 19:55:04 +02004104 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004105 } else {
4106 u64 nr = 0;
4107 perf_output_put(handle, nr);
4108 }
4109 }
4110
4111 if (sample_type & PERF_SAMPLE_RAW) {
4112 if (data->raw) {
4113 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004114 __output_copy(handle, data->raw->data,
4115 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004116 } else {
4117 struct {
4118 u32 size;
4119 u32 data;
4120 } raw = {
4121 .size = sizeof(u32),
4122 .data = 0,
4123 };
4124 perf_output_put(handle, raw);
4125 }
4126 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004127
4128 if (!event->attr.watermark) {
4129 int wakeup_events = event->attr.wakeup_events;
4130
4131 if (wakeup_events) {
4132 struct ring_buffer *rb = handle->rb;
4133 int events = local_inc_return(&rb->events);
4134
4135 if (events >= wakeup_events) {
4136 local_sub(wakeup_events, &rb->events);
4137 local_inc(&rb->wakeup);
4138 }
4139 }
4140 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004141
4142 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4143 if (data->br_stack) {
4144 size_t size;
4145
4146 size = data->br_stack->nr
4147 * sizeof(struct perf_branch_entry);
4148
4149 perf_output_put(handle, data->br_stack->nr);
4150 perf_output_copy(handle, data->br_stack->entries, size);
4151 } else {
4152 /*
4153 * we always store at least the value of nr
4154 */
4155 u64 nr = 0;
4156 perf_output_put(handle, nr);
4157 }
4158 }
Jiri Olsa40189942012-08-07 15:20:37 +02004159
4160 if (sample_type & PERF_SAMPLE_REGS_USER) {
4161 u64 abi = data->regs_user.abi;
4162
4163 /*
4164 * If there are no regs to dump, notice it through
4165 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4166 */
4167 perf_output_put(handle, abi);
4168
4169 if (abi) {
4170 u64 mask = event->attr.sample_regs_user;
4171 perf_output_sample_regs(handle,
4172 data->regs_user.regs,
4173 mask);
4174 }
4175 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004176
4177 if (sample_type & PERF_SAMPLE_STACK_USER)
4178 perf_output_sample_ustack(handle,
4179 data->stack_user_size,
4180 data->regs_user.regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004181}
4182
4183void perf_prepare_sample(struct perf_event_header *header,
4184 struct perf_sample_data *data,
4185 struct perf_event *event,
4186 struct pt_regs *regs)
4187{
4188 u64 sample_type = event->attr.sample_type;
4189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004190 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004191 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004192
4193 header->misc = 0;
4194 header->misc |= perf_misc_flags(regs);
4195
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004196 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004197
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004198 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004199 data->ip = perf_instruction_pointer(regs);
4200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004201 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4202 int size = 1;
4203
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004204 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004205
4206 if (data->callchain)
4207 size += data->callchain->nr;
4208
4209 header->size += size * sizeof(u64);
4210 }
4211
4212 if (sample_type & PERF_SAMPLE_RAW) {
4213 int size = sizeof(u32);
4214
4215 if (data->raw)
4216 size += data->raw->size;
4217 else
4218 size += sizeof(u32);
4219
4220 WARN_ON_ONCE(size & (sizeof(u64)-1));
4221 header->size += size;
4222 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004223
4224 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4225 int size = sizeof(u64); /* nr */
4226 if (data->br_stack) {
4227 size += data->br_stack->nr
4228 * sizeof(struct perf_branch_entry);
4229 }
4230 header->size += size;
4231 }
Jiri Olsa40189942012-08-07 15:20:37 +02004232
4233 if (sample_type & PERF_SAMPLE_REGS_USER) {
4234 /* regs dump ABI info */
4235 int size = sizeof(u64);
4236
4237 perf_sample_regs_user(&data->regs_user, regs);
4238
4239 if (data->regs_user.regs) {
4240 u64 mask = event->attr.sample_regs_user;
4241 size += hweight64(mask) * sizeof(u64);
4242 }
4243
4244 header->size += size;
4245 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004246
4247 if (sample_type & PERF_SAMPLE_STACK_USER) {
4248 /*
4249 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4250 * processed as the last one or have additional check added
4251 * in case new sample type is added, because we could eat
4252 * up the rest of the sample size.
4253 */
4254 struct perf_regs_user *uregs = &data->regs_user;
4255 u16 stack_size = event->attr.sample_stack_user;
4256 u16 size = sizeof(u64);
4257
4258 if (!uregs->abi)
4259 perf_sample_regs_user(uregs, regs);
4260
4261 stack_size = perf_sample_ustack_size(stack_size, header->size,
4262 uregs->regs);
4263
4264 /*
4265 * If there is something to dump, add space for the dump
4266 * itself and for the field that tells the dynamic size,
4267 * which is how many have been actually dumped.
4268 */
4269 if (stack_size)
4270 size += sizeof(u64) + stack_size;
4271
4272 data->stack_user_size = stack_size;
4273 header->size += size;
4274 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004275}
4276
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004277static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004278 struct perf_sample_data *data,
4279 struct pt_regs *regs)
4280{
4281 struct perf_output_handle handle;
4282 struct perf_event_header header;
4283
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004284 /* protect the callchain buffers */
4285 rcu_read_lock();
4286
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004287 perf_prepare_sample(&header, data, event, regs);
4288
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004289 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004290 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004291
4292 perf_output_sample(&handle, &header, data, event);
4293
4294 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004295
4296exit:
4297 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004298}
4299
4300/*
4301 * read event_id
4302 */
4303
4304struct perf_read_event {
4305 struct perf_event_header header;
4306
4307 u32 pid;
4308 u32 tid;
4309};
4310
4311static void
4312perf_event_read_event(struct perf_event *event,
4313 struct task_struct *task)
4314{
4315 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004316 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004317 struct perf_read_event read_event = {
4318 .header = {
4319 .type = PERF_RECORD_READ,
4320 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004321 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004322 },
4323 .pid = perf_event_pid(event, task),
4324 .tid = perf_event_tid(event, task),
4325 };
4326 int ret;
4327
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004328 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004329 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004330 if (ret)
4331 return;
4332
4333 perf_output_put(&handle, read_event);
4334 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004335 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004336
4337 perf_output_end(&handle);
4338}
4339
4340/*
4341 * task tracking -- fork/exit
4342 *
Eric B Munson3af9e852010-05-18 15:30:49 +01004343 * enabled by: attr.comm | attr.mmap | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004344 */
4345
4346struct perf_task_event {
4347 struct task_struct *task;
4348 struct perf_event_context *task_ctx;
4349
4350 struct {
4351 struct perf_event_header header;
4352
4353 u32 pid;
4354 u32 ppid;
4355 u32 tid;
4356 u32 ptid;
4357 u64 time;
4358 } event_id;
4359};
4360
4361static void perf_event_task_output(struct perf_event *event,
4362 struct perf_task_event *task_event)
4363{
4364 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004365 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004366 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004367 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004368
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004369 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004370
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004371 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004372 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004373 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004374 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004375
4376 task_event->event_id.pid = perf_event_pid(event, task);
4377 task_event->event_id.ppid = perf_event_pid(event, current);
4378
4379 task_event->event_id.tid = perf_event_tid(event, task);
4380 task_event->event_id.ptid = perf_event_tid(event, current);
4381
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004382 perf_output_put(&handle, task_event->event_id);
4383
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004384 perf_event__output_id_sample(event, &handle, &sample);
4385
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004386 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004387out:
4388 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004389}
4390
4391static int perf_event_task_match(struct perf_event *event)
4392{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004393 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004394 return 0;
4395
Stephane Eranian5632ab12011-01-03 18:20:01 +02004396 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004397 return 0;
4398
Eric B Munson3af9e852010-05-18 15:30:49 +01004399 if (event->attr.comm || event->attr.mmap ||
4400 event->attr.mmap_data || event->attr.task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004401 return 1;
4402
4403 return 0;
4404}
4405
4406static void perf_event_task_ctx(struct perf_event_context *ctx,
4407 struct perf_task_event *task_event)
4408{
4409 struct perf_event *event;
4410
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004411 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4412 if (perf_event_task_match(event))
4413 perf_event_task_output(event, task_event);
4414 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004415}
4416
4417static void perf_event_task_event(struct perf_task_event *task_event)
4418{
4419 struct perf_cpu_context *cpuctx;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004420 struct perf_event_context *ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004421 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004422 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004423
Peter Zijlstrad6ff86c2009-11-20 22:19:46 +01004424 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004425 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004426 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02004427 if (cpuctx->unique_pmu != pmu)
Peter Zijlstra51676952010-12-07 14:18:20 +01004428 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004429 perf_event_task_ctx(&cpuctx->ctx, task_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004430
4431 ctx = task_event->task_ctx;
4432 if (!ctx) {
4433 ctxn = pmu->task_ctx_nr;
4434 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004435 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004436 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4437 }
4438 if (ctx)
4439 perf_event_task_ctx(ctx, task_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004440next:
4441 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004442 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004443 rcu_read_unlock();
4444}
4445
4446static void perf_event_task(struct task_struct *task,
4447 struct perf_event_context *task_ctx,
4448 int new)
4449{
4450 struct perf_task_event task_event;
4451
4452 if (!atomic_read(&nr_comm_events) &&
4453 !atomic_read(&nr_mmap_events) &&
4454 !atomic_read(&nr_task_events))
4455 return;
4456
4457 task_event = (struct perf_task_event){
4458 .task = task,
4459 .task_ctx = task_ctx,
4460 .event_id = {
4461 .header = {
4462 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
4463 .misc = 0,
4464 .size = sizeof(task_event.event_id),
4465 },
4466 /* .pid */
4467 /* .ppid */
4468 /* .tid */
4469 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004470 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004471 },
4472 };
4473
4474 perf_event_task_event(&task_event);
4475}
4476
4477void perf_event_fork(struct task_struct *task)
4478{
4479 perf_event_task(task, NULL, 1);
4480}
4481
4482/*
4483 * comm tracking
4484 */
4485
4486struct perf_comm_event {
4487 struct task_struct *task;
4488 char *comm;
4489 int comm_size;
4490
4491 struct {
4492 struct perf_event_header header;
4493
4494 u32 pid;
4495 u32 tid;
4496 } event_id;
4497};
4498
4499static void perf_event_comm_output(struct perf_event *event,
4500 struct perf_comm_event *comm_event)
4501{
4502 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004503 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004504 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004505 int ret;
4506
4507 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
4508 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004509 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004510
4511 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004512 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004513
4514 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
4515 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
4516
4517 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004518 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004519 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004520
4521 perf_event__output_id_sample(event, &handle, &sample);
4522
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004523 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004524out:
4525 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004526}
4527
4528static int perf_event_comm_match(struct perf_event *event)
4529{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004530 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004531 return 0;
4532
Stephane Eranian5632ab12011-01-03 18:20:01 +02004533 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004534 return 0;
4535
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004536 if (event->attr.comm)
4537 return 1;
4538
4539 return 0;
4540}
4541
4542static void perf_event_comm_ctx(struct perf_event_context *ctx,
4543 struct perf_comm_event *comm_event)
4544{
4545 struct perf_event *event;
4546
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004547 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4548 if (perf_event_comm_match(event))
4549 perf_event_comm_output(event, comm_event);
4550 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004551}
4552
4553static void perf_event_comm_event(struct perf_comm_event *comm_event)
4554{
4555 struct perf_cpu_context *cpuctx;
4556 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004557 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004558 unsigned int size;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004559 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004560 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004561
4562 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01004563 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004564 size = ALIGN(strlen(comm)+1, sizeof(u64));
4565
4566 comm_event->comm = comm;
4567 comm_event->comm_size = size;
4568
4569 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstraf6595f32009-11-20 22:19:47 +01004570 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004571 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004572 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02004573 if (cpuctx->unique_pmu != pmu)
Peter Zijlstra51676952010-12-07 14:18:20 +01004574 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004575 perf_event_comm_ctx(&cpuctx->ctx, comm_event);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004576
4577 ctxn = pmu->task_ctx_nr;
4578 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004579 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004580
4581 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4582 if (ctx)
4583 perf_event_comm_ctx(ctx, comm_event);
Peter Zijlstra41945f62010-09-16 19:17:24 +02004584next:
4585 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004586 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004587 rcu_read_unlock();
4588}
4589
4590void perf_event_comm(struct task_struct *task)
4591{
4592 struct perf_comm_event comm_event;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004593 struct perf_event_context *ctx;
4594 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004595
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004596 for_each_task_context_nr(ctxn) {
4597 ctx = task->perf_event_ctxp[ctxn];
4598 if (!ctx)
4599 continue;
4600
4601 perf_event_enable_on_exec(ctx);
4602 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004603
4604 if (!atomic_read(&nr_comm_events))
4605 return;
4606
4607 comm_event = (struct perf_comm_event){
4608 .task = task,
4609 /* .comm */
4610 /* .comm_size */
4611 .event_id = {
4612 .header = {
4613 .type = PERF_RECORD_COMM,
4614 .misc = 0,
4615 /* .size */
4616 },
4617 /* .pid */
4618 /* .tid */
4619 },
4620 };
4621
4622 perf_event_comm_event(&comm_event);
4623}
4624
4625/*
4626 * mmap tracking
4627 */
4628
4629struct perf_mmap_event {
4630 struct vm_area_struct *vma;
4631
4632 const char *file_name;
4633 int file_size;
4634
4635 struct {
4636 struct perf_event_header header;
4637
4638 u32 pid;
4639 u32 tid;
4640 u64 start;
4641 u64 len;
4642 u64 pgoff;
4643 } event_id;
4644};
4645
4646static void perf_event_mmap_output(struct perf_event *event,
4647 struct perf_mmap_event *mmap_event)
4648{
4649 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004650 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004651 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004652 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004653
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004654 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
4655 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004656 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004657 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004658 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004659
4660 mmap_event->event_id.pid = perf_event_pid(event, current);
4661 mmap_event->event_id.tid = perf_event_tid(event, current);
4662
4663 perf_output_put(&handle, mmap_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004664 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004665 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004666
4667 perf_event__output_id_sample(event, &handle, &sample);
4668
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004669 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004670out:
4671 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004672}
4673
4674static int perf_event_mmap_match(struct perf_event *event,
Eric B Munson3af9e852010-05-18 15:30:49 +01004675 struct perf_mmap_event *mmap_event,
4676 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004677{
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01004678 if (event->state < PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra22e19082010-01-18 09:12:32 +01004679 return 0;
4680
Stephane Eranian5632ab12011-01-03 18:20:01 +02004681 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01004682 return 0;
4683
Eric B Munson3af9e852010-05-18 15:30:49 +01004684 if ((!executable && event->attr.mmap_data) ||
4685 (executable && event->attr.mmap))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004686 return 1;
4687
4688 return 0;
4689}
4690
4691static void perf_event_mmap_ctx(struct perf_event_context *ctx,
Eric B Munson3af9e852010-05-18 15:30:49 +01004692 struct perf_mmap_event *mmap_event,
4693 int executable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004694{
4695 struct perf_event *event;
4696
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004697 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Eric B Munson3af9e852010-05-18 15:30:49 +01004698 if (perf_event_mmap_match(event, mmap_event, executable))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004699 perf_event_mmap_output(event, mmap_event);
4700 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004701}
4702
4703static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
4704{
4705 struct perf_cpu_context *cpuctx;
4706 struct perf_event_context *ctx;
4707 struct vm_area_struct *vma = mmap_event->vma;
4708 struct file *file = vma->vm_file;
4709 unsigned int size;
4710 char tmp[16];
4711 char *buf = NULL;
4712 const char *name;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004713 struct pmu *pmu;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004714 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004715
4716 memset(tmp, 0, sizeof(tmp));
4717
4718 if (file) {
4719 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004720 * d_path works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004721 * need to add enough zero bytes after the string to handle
4722 * the 64bit alignment we do later.
4723 */
4724 buf = kzalloc(PATH_MAX + sizeof(u64), GFP_KERNEL);
4725 if (!buf) {
4726 name = strncpy(tmp, "//enomem", sizeof(tmp));
4727 goto got_name;
4728 }
4729 name = d_path(&file->f_path, buf, PATH_MAX);
4730 if (IS_ERR(name)) {
4731 name = strncpy(tmp, "//toolong", sizeof(tmp));
4732 goto got_name;
4733 }
4734 } else {
4735 if (arch_vma_name(mmap_event->vma)) {
4736 name = strncpy(tmp, arch_vma_name(mmap_event->vma),
4737 sizeof(tmp));
4738 goto got_name;
4739 }
4740
4741 if (!vma->vm_mm) {
4742 name = strncpy(tmp, "[vdso]", sizeof(tmp));
4743 goto got_name;
Eric B Munson3af9e852010-05-18 15:30:49 +01004744 } else if (vma->vm_start <= vma->vm_mm->start_brk &&
4745 vma->vm_end >= vma->vm_mm->brk) {
4746 name = strncpy(tmp, "[heap]", sizeof(tmp));
4747 goto got_name;
4748 } else if (vma->vm_start <= vma->vm_mm->start_stack &&
4749 vma->vm_end >= vma->vm_mm->start_stack) {
4750 name = strncpy(tmp, "[stack]", sizeof(tmp));
4751 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004752 }
4753
4754 name = strncpy(tmp, "//anon", sizeof(tmp));
4755 goto got_name;
4756 }
4757
4758got_name:
4759 size = ALIGN(strlen(name)+1, sizeof(u64));
4760
4761 mmap_event->file_name = name;
4762 mmap_event->file_size = size;
4763
4764 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
4765
Peter Zijlstraf6d9dd22009-11-20 22:19:48 +01004766 rcu_read_lock();
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004767 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra41945f62010-09-16 19:17:24 +02004768 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02004769 if (cpuctx->unique_pmu != pmu)
Peter Zijlstra51676952010-12-07 14:18:20 +01004770 goto next;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004771 perf_event_mmap_ctx(&cpuctx->ctx, mmap_event,
4772 vma->vm_flags & VM_EXEC);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004773
4774 ctxn = pmu->task_ctx_nr;
4775 if (ctxn < 0)
Peter Zijlstra41945f62010-09-16 19:17:24 +02004776 goto next;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02004777
4778 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4779 if (ctx) {
4780 perf_event_mmap_ctx(ctx, mmap_event,
4781 vma->vm_flags & VM_EXEC);
4782 }
Peter Zijlstra41945f62010-09-16 19:17:24 +02004783next:
4784 put_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02004785 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004786 rcu_read_unlock();
4787
4788 kfree(buf);
4789}
4790
Eric B Munson3af9e852010-05-18 15:30:49 +01004791void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004792{
4793 struct perf_mmap_event mmap_event;
4794
4795 if (!atomic_read(&nr_mmap_events))
4796 return;
4797
4798 mmap_event = (struct perf_mmap_event){
4799 .vma = vma,
4800 /* .file_name */
4801 /* .file_size */
4802 .event_id = {
4803 .header = {
4804 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004805 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004806 /* .size */
4807 },
4808 /* .pid */
4809 /* .tid */
4810 .start = vma->vm_start,
4811 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01004812 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004813 },
4814 };
4815
4816 perf_event_mmap_event(&mmap_event);
4817}
4818
4819/*
4820 * IRQ throttle logging
4821 */
4822
4823static void perf_log_throttle(struct perf_event *event, int enable)
4824{
4825 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004826 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004827 int ret;
4828
4829 struct {
4830 struct perf_event_header header;
4831 u64 time;
4832 u64 id;
4833 u64 stream_id;
4834 } throttle_event = {
4835 .header = {
4836 .type = PERF_RECORD_THROTTLE,
4837 .misc = 0,
4838 .size = sizeof(throttle_event),
4839 },
4840 .time = perf_clock(),
4841 .id = primary_event_id(event),
4842 .stream_id = event->id,
4843 };
4844
4845 if (enable)
4846 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
4847
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004848 perf_event_header__init_id(&throttle_event.header, &sample, event);
4849
4850 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004851 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004852 if (ret)
4853 return;
4854
4855 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004856 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004857 perf_output_end(&handle);
4858}
4859
4860/*
4861 * Generic event overflow handling, sampling.
4862 */
4863
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004864static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004865 int throttle, struct perf_sample_data *data,
4866 struct pt_regs *regs)
4867{
4868 int events = atomic_read(&event->event_limit);
4869 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004870 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004871 int ret = 0;
4872
Peter Zijlstra96398822010-11-24 18:55:29 +01004873 /*
4874 * Non-sampling counters might still use the PMI to fold short
4875 * hardware counters, ignore those.
4876 */
4877 if (unlikely(!is_sampling_event(event)))
4878 return 0;
4879
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004880 seq = __this_cpu_read(perf_throttled_seq);
4881 if (seq != hwc->interrupts_seq) {
4882 hwc->interrupts_seq = seq;
4883 hwc->interrupts = 1;
4884 } else {
4885 hwc->interrupts++;
4886 if (unlikely(throttle
4887 && hwc->interrupts >= max_samples_per_tick)) {
4888 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01004889 hwc->interrupts = MAX_INTERRUPTS;
4890 perf_log_throttle(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004891 ret = 1;
4892 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01004893 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004894
4895 if (event->attr.freq) {
4896 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01004897 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004898
Peter Zijlstraabd50712010-01-26 18:50:16 +01004899 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004900
Peter Zijlstraabd50712010-01-26 18:50:16 +01004901 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01004902 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004903 }
4904
4905 /*
4906 * XXX event_limit might not quite work as expected on inherited
4907 * events
4908 */
4909
4910 event->pending_kill = POLL_IN;
4911 if (events && atomic_dec_and_test(&event->event_limit)) {
4912 ret = 1;
4913 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004914 event->pending_disable = 1;
4915 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004916 }
4917
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004918 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004919 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004920 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004921 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01004922
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02004923 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004924 event->pending_wakeup = 1;
4925 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02004926 }
4927
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004928 return ret;
4929}
4930
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004931int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004932 struct perf_sample_data *data,
4933 struct pt_regs *regs)
4934{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004935 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004936}
4937
4938/*
4939 * Generic software event infrastructure
4940 */
4941
Peter Zijlstrab28ab832010-09-06 14:48:15 +02004942struct swevent_htable {
4943 struct swevent_hlist *swevent_hlist;
4944 struct mutex hlist_mutex;
4945 int hlist_refcount;
4946
4947 /* Recursion avoidance in each contexts */
4948 int recursion[PERF_NR_CONTEXTS];
4949};
4950
4951static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
4952
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004953/*
4954 * We directly increment event->count and keep a second value in
4955 * event->hw.period_left to count intervals. This period event
4956 * is kept in the range [-sample_period, 0] so that we can use the
4957 * sign as trigger.
4958 */
4959
4960static u64 perf_swevent_set_period(struct perf_event *event)
4961{
4962 struct hw_perf_event *hwc = &event->hw;
4963 u64 period = hwc->last_period;
4964 u64 nr, offset;
4965 s64 old, val;
4966
4967 hwc->last_period = hwc->sample_period;
4968
4969again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02004970 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004971 if (val < 0)
4972 return 0;
4973
4974 nr = div64_u64(period + val, period);
4975 offset = nr * period;
4976 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02004977 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004978 goto again;
4979
4980 return nr;
4981}
4982
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004983static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004984 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004985 struct pt_regs *regs)
4986{
4987 struct hw_perf_event *hwc = &event->hw;
4988 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004989
Peter Zijlstra0cff7842009-11-20 22:19:44 +01004990 if (!overflow)
4991 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004992
4993 if (hwc->interrupts == MAX_INTERRUPTS)
4994 return;
4995
4996 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004997 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004998 data, regs)) {
4999 /*
5000 * We inhibit the overflow from happening when
5001 * hwc->interrupts == MAX_INTERRUPTS.
5002 */
5003 break;
5004 }
5005 throttle = 1;
5006 }
5007}
5008
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005009static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005010 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005011 struct pt_regs *regs)
5012{
5013 struct hw_perf_event *hwc = &event->hw;
5014
Peter Zijlstrae7850592010-05-21 14:43:08 +02005015 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005016
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005017 if (!regs)
5018 return;
5019
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005020 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005021 return;
5022
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005023 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5024 data->period = nr;
5025 return perf_swevent_overflow(event, 1, data, regs);
5026 } else
5027 data->period = event->hw.last_period;
5028
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005029 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005030 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005031
Peter Zijlstrae7850592010-05-21 14:43:08 +02005032 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005033 return;
5034
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005035 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005036}
5037
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005038static int perf_exclude_event(struct perf_event *event,
5039 struct pt_regs *regs)
5040{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005041 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005042 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005043
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005044 if (regs) {
5045 if (event->attr.exclude_user && user_mode(regs))
5046 return 1;
5047
5048 if (event->attr.exclude_kernel && !user_mode(regs))
5049 return 1;
5050 }
5051
5052 return 0;
5053}
5054
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005055static int perf_swevent_match(struct perf_event *event,
5056 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005057 u32 event_id,
5058 struct perf_sample_data *data,
5059 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005060{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005061 if (event->attr.type != type)
5062 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005063
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005064 if (event->attr.config != event_id)
5065 return 0;
5066
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005067 if (perf_exclude_event(event, regs))
5068 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005069
5070 return 1;
5071}
5072
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005073static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005074{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005075 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005076
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005077 return hash_64(val, SWEVENT_HLIST_BITS);
5078}
5079
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005080static inline struct hlist_head *
5081__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005082{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005083 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005084
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005085 return &hlist->heads[hash];
5086}
5087
5088/* For the read side: events when they trigger */
5089static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005090find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005091{
5092 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005093
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005094 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005095 if (!hlist)
5096 return NULL;
5097
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005098 return __find_swevent_head(hlist, type, event_id);
5099}
5100
5101/* For the event head insertion and removal in the hlist */
5102static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005103find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005104{
5105 struct swevent_hlist *hlist;
5106 u32 event_id = event->attr.config;
5107 u64 type = event->attr.type;
5108
5109 /*
5110 * Event scheduling is always serialized against hlist allocation
5111 * and release. Which makes the protected version suitable here.
5112 * The context lock guarantees that.
5113 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005114 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005115 lockdep_is_held(&event->ctx->lock));
5116 if (!hlist)
5117 return NULL;
5118
5119 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005120}
5121
5122static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005123 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005124 struct perf_sample_data *data,
5125 struct pt_regs *regs)
5126{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005127 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005128 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005129 struct hlist_head *head;
5130
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005131 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005132 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005133 if (!head)
5134 goto end;
5135
Sasha Levinb67bfe02013-02-27 17:06:00 -08005136 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005137 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005138 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005139 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005140end:
5141 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005142}
5143
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005144int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005145{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005146 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005147
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005148 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005149}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005150EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005151
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005152inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005153{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005154 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005155
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005156 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005157}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005159void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005160{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005161 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005162 int rctx;
5163
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005164 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005165 rctx = perf_swevent_get_recursion_context();
5166 if (rctx < 0)
5167 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005168
Robert Richterfd0d0002012-04-02 20:19:08 +02005169 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005170
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005171 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005172
5173 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005174 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005175}
5176
5177static void perf_swevent_read(struct perf_event *event)
5178{
5179}
5180
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005181static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005182{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005183 struct swevent_htable *swhash = &__get_cpu_var(swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005184 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005185 struct hlist_head *head;
5186
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005187 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188 hwc->last_period = hwc->sample_period;
5189 perf_swevent_set_period(event);
5190 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005191
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005192 hwc->state = !(flags & PERF_EF_START);
5193
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005194 head = find_swevent_head(swhash, event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005195 if (WARN_ON_ONCE(!head))
5196 return -EINVAL;
5197
5198 hlist_add_head_rcu(&event->hlist_entry, head);
5199
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005200 return 0;
5201}
5202
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005203static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005204{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005205 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005206}
5207
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005208static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005209{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005210 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005211}
5212
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005213static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005214{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005215 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005216}
5217
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005218/* Deref the hlist from the update side */
5219static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005220swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005221{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005222 return rcu_dereference_protected(swhash->swevent_hlist,
5223 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005224}
5225
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005226static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005227{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005228 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005229
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005230 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005231 return;
5232
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005233 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005234 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005235}
5236
5237static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5238{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005239 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005240
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005241 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005242
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005243 if (!--swhash->hlist_refcount)
5244 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005245
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005246 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005247}
5248
5249static void swevent_hlist_put(struct perf_event *event)
5250{
5251 int cpu;
5252
5253 if (event->cpu != -1) {
5254 swevent_hlist_put_cpu(event, event->cpu);
5255 return;
5256 }
5257
5258 for_each_possible_cpu(cpu)
5259 swevent_hlist_put_cpu(event, cpu);
5260}
5261
5262static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5263{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005264 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005265 int err = 0;
5266
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005267 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005268
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005269 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005270 struct swevent_hlist *hlist;
5271
5272 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5273 if (!hlist) {
5274 err = -ENOMEM;
5275 goto exit;
5276 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005277 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005278 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005279 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005280exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005281 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005282
5283 return err;
5284}
5285
5286static int swevent_hlist_get(struct perf_event *event)
5287{
5288 int err;
5289 int cpu, failed_cpu;
5290
5291 if (event->cpu != -1)
5292 return swevent_hlist_get_cpu(event, event->cpu);
5293
5294 get_online_cpus();
5295 for_each_possible_cpu(cpu) {
5296 err = swevent_hlist_get_cpu(event, cpu);
5297 if (err) {
5298 failed_cpu = cpu;
5299 goto fail;
5300 }
5301 }
5302 put_online_cpus();
5303
5304 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005305fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005306 for_each_possible_cpu(cpu) {
5307 if (cpu == failed_cpu)
5308 break;
5309 swevent_hlist_put_cpu(event, cpu);
5310 }
5311
5312 put_online_cpus();
5313 return err;
5314}
5315
Ingo Molnarc5905af2012-02-24 08:31:31 +01005316struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005317
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005318static void sw_perf_event_destroy(struct perf_event *event)
5319{
5320 u64 event_id = event->attr.config;
5321
5322 WARN_ON(event->parent);
5323
Ingo Molnarc5905af2012-02-24 08:31:31 +01005324 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005325 swevent_hlist_put(event);
5326}
5327
5328static int perf_swevent_init(struct perf_event *event)
5329{
5330 int event_id = event->attr.config;
5331
5332 if (event->attr.type != PERF_TYPE_SOFTWARE)
5333 return -ENOENT;
5334
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005335 /*
5336 * no branch sampling for software events
5337 */
5338 if (has_branch_stack(event))
5339 return -EOPNOTSUPP;
5340
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005341 switch (event_id) {
5342 case PERF_COUNT_SW_CPU_CLOCK:
5343 case PERF_COUNT_SW_TASK_CLOCK:
5344 return -ENOENT;
5345
5346 default:
5347 break;
5348 }
5349
Dan Carpenterce677832010-10-24 21:50:42 +02005350 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005351 return -ENOENT;
5352
5353 if (!event->parent) {
5354 int err;
5355
5356 err = swevent_hlist_get(event);
5357 if (err)
5358 return err;
5359
Ingo Molnarc5905af2012-02-24 08:31:31 +01005360 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005361 event->destroy = sw_perf_event_destroy;
5362 }
5363
5364 return 0;
5365}
5366
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005367static int perf_swevent_event_idx(struct perf_event *event)
5368{
5369 return 0;
5370}
5371
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005372static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005373 .task_ctx_nr = perf_sw_context,
5374
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005375 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005376 .add = perf_swevent_add,
5377 .del = perf_swevent_del,
5378 .start = perf_swevent_start,
5379 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005380 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005381
5382 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005383};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005384
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005385#ifdef CONFIG_EVENT_TRACING
5386
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005387static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005388 struct perf_sample_data *data)
5389{
5390 void *record = data->raw->data;
5391
5392 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5393 return 1;
5394 return 0;
5395}
5396
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005397static int perf_tp_event_match(struct perf_event *event,
5398 struct perf_sample_data *data,
5399 struct pt_regs *regs)
5400{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005401 if (event->hw.state & PERF_HES_STOPPED)
5402 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005403 /*
5404 * All tracepoints are from kernel-space.
5405 */
5406 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005407 return 0;
5408
5409 if (!perf_tp_filter_match(event, data))
5410 return 0;
5411
5412 return 1;
5413}
5414
5415void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005416 struct pt_regs *regs, struct hlist_head *head, int rctx,
5417 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005418{
5419 struct perf_sample_data data;
5420 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005421
5422 struct perf_raw_record raw = {
5423 .size = entry_size,
5424 .data = record,
5425 };
5426
Robert Richterfd0d0002012-04-02 20:19:08 +02005427 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005428 data.raw = &raw;
5429
Sasha Levinb67bfe02013-02-27 17:06:00 -08005430 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005431 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005432 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005433 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005434
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005435 /*
5436 * If we got specified a target task, also iterate its context and
5437 * deliver this event there too.
5438 */
5439 if (task && task != current) {
5440 struct perf_event_context *ctx;
5441 struct trace_entry *entry = record;
5442
5443 rcu_read_lock();
5444 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5445 if (!ctx)
5446 goto unlock;
5447
5448 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5449 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5450 continue;
5451 if (event->attr.config != entry->type)
5452 continue;
5453 if (perf_tp_event_match(event, &data, regs))
5454 perf_swevent_event(event, count, &data, regs);
5455 }
5456unlock:
5457 rcu_read_unlock();
5458 }
5459
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005460 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005461}
5462EXPORT_SYMBOL_GPL(perf_tp_event);
5463
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005464static void tp_perf_event_destroy(struct perf_event *event)
5465{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005466 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005467}
5468
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005469static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005470{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005471 int err;
5472
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005473 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5474 return -ENOENT;
5475
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005476 /*
5477 * no branch sampling for tracepoint events
5478 */
5479 if (has_branch_stack(event))
5480 return -EOPNOTSUPP;
5481
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005482 err = perf_trace_init(event);
5483 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005484 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005485
5486 event->destroy = tp_perf_event_destroy;
5487
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005488 return 0;
5489}
5490
5491static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005492 .task_ctx_nr = perf_sw_context,
5493
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005494 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005495 .add = perf_trace_add,
5496 .del = perf_trace_del,
5497 .start = perf_swevent_start,
5498 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005499 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005500
5501 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005502};
5503
5504static inline void perf_tp_register(void)
5505{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005506 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005507}
Li Zefan6fb29152009-10-15 11:21:42 +08005508
5509static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5510{
5511 char *filter_str;
5512 int ret;
5513
5514 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5515 return -EINVAL;
5516
5517 filter_str = strndup_user(arg, PAGE_SIZE);
5518 if (IS_ERR(filter_str))
5519 return PTR_ERR(filter_str);
5520
5521 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
5522
5523 kfree(filter_str);
5524 return ret;
5525}
5526
5527static void perf_event_free_filter(struct perf_event *event)
5528{
5529 ftrace_profile_free_filter(event);
5530}
5531
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005532#else
Li Zefan6fb29152009-10-15 11:21:42 +08005533
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005534static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005535{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005536}
Li Zefan6fb29152009-10-15 11:21:42 +08005537
5538static int perf_event_set_filter(struct perf_event *event, void __user *arg)
5539{
5540 return -ENOENT;
5541}
5542
5543static void perf_event_free_filter(struct perf_event *event)
5544{
5545}
5546
Li Zefan07b139c2009-12-21 14:27:35 +08005547#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005548
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005549#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005550void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005551{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005552 struct perf_sample_data sample;
5553 struct pt_regs *regs = data;
5554
Robert Richterfd0d0002012-04-02 20:19:08 +02005555 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005556
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005557 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005558 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02005559}
5560#endif
5561
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005562/*
5563 * hrtimer based swevent callback
5564 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005565
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005566static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005567{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005568 enum hrtimer_restart ret = HRTIMER_RESTART;
5569 struct perf_sample_data data;
5570 struct pt_regs *regs;
5571 struct perf_event *event;
5572 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005573
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005574 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005575
5576 if (event->state != PERF_EVENT_STATE_ACTIVE)
5577 return HRTIMER_NORESTART;
5578
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005579 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005580
Robert Richterfd0d0002012-04-02 20:19:08 +02005581 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005582 regs = get_irq_regs();
5583
5584 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08005585 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02005586 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005587 ret = HRTIMER_NORESTART;
5588 }
5589
5590 period = max_t(u64, 10000, event->hw.sample_period);
5591 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
5592
5593 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005594}
5595
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005596static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005597{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005598 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005599 s64 period;
5600
5601 if (!is_sampling_event(event))
5602 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005603
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005604 period = local64_read(&hwc->period_left);
5605 if (period) {
5606 if (period < 0)
5607 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005608
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01005609 local64_set(&hwc->period_left, 0);
5610 } else {
5611 period = max_t(u64, 10000, hwc->sample_period);
5612 }
5613 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005614 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02005615 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005616}
5617
5618static void perf_swevent_cancel_hrtimer(struct perf_event *event)
5619{
5620 struct hw_perf_event *hwc = &event->hw;
5621
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005622 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005623 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02005624 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005625
5626 hrtimer_cancel(&hwc->hrtimer);
5627 }
5628}
5629
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005630static void perf_swevent_init_hrtimer(struct perf_event *event)
5631{
5632 struct hw_perf_event *hwc = &event->hw;
5633
5634 if (!is_sampling_event(event))
5635 return;
5636
5637 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
5638 hwc->hrtimer.function = perf_swevent_hrtimer;
5639
5640 /*
5641 * Since hrtimers have a fixed rate, we can do a static freq->period
5642 * mapping and avoid the whole period adjust feedback stuff.
5643 */
5644 if (event->attr.freq) {
5645 long freq = event->attr.sample_freq;
5646
5647 event->attr.sample_period = NSEC_PER_SEC / freq;
5648 hwc->sample_period = event->attr.sample_period;
5649 local64_set(&hwc->period_left, hwc->sample_period);
5650 event->attr.freq = 0;
5651 }
5652}
5653
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005654/*
5655 * Software event: cpu wall time clock
5656 */
5657
5658static void cpu_clock_event_update(struct perf_event *event)
5659{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005660 s64 prev;
5661 u64 now;
5662
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005663 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005664 prev = local64_xchg(&event->hw.prev_count, now);
5665 local64_add(now - prev, &event->count);
5666}
5667
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005668static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005669{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005670 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005671 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005672}
5673
5674static void cpu_clock_event_stop(struct perf_event *event, int flags)
5675{
5676 perf_swevent_cancel_hrtimer(event);
5677 cpu_clock_event_update(event);
5678}
5679
5680static int cpu_clock_event_add(struct perf_event *event, int flags)
5681{
5682 if (flags & PERF_EF_START)
5683 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005684
5685 return 0;
5686}
5687
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005688static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005689{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005690 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005691}
5692
5693static void cpu_clock_event_read(struct perf_event *event)
5694{
5695 cpu_clock_event_update(event);
5696}
5697
5698static int cpu_clock_event_init(struct perf_event *event)
5699{
5700 if (event->attr.type != PERF_TYPE_SOFTWARE)
5701 return -ENOENT;
5702
5703 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
5704 return -ENOENT;
5705
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005706 /*
5707 * no branch sampling for software events
5708 */
5709 if (has_branch_stack(event))
5710 return -EOPNOTSUPP;
5711
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005712 perf_swevent_init_hrtimer(event);
5713
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005714 return 0;
5715}
5716
5717static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005718 .task_ctx_nr = perf_sw_context,
5719
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005720 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005721 .add = cpu_clock_event_add,
5722 .del = cpu_clock_event_del,
5723 .start = cpu_clock_event_start,
5724 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005725 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005726
5727 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005728};
5729
5730/*
5731 * Software event: task time clock
5732 */
5733
5734static void task_clock_event_update(struct perf_event *event, u64 now)
5735{
5736 u64 prev;
5737 s64 delta;
5738
5739 prev = local64_xchg(&event->hw.prev_count, now);
5740 delta = now - prev;
5741 local64_add(delta, &event->count);
5742}
5743
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005744static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005745{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005746 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005747 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005748}
5749
5750static void task_clock_event_stop(struct perf_event *event, int flags)
5751{
5752 perf_swevent_cancel_hrtimer(event);
5753 task_clock_event_update(event, event->ctx->time);
5754}
5755
5756static int task_clock_event_add(struct perf_event *event, int flags)
5757{
5758 if (flags & PERF_EF_START)
5759 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005760
5761 return 0;
5762}
5763
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005764static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005765{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005766 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005767}
5768
5769static void task_clock_event_read(struct perf_event *event)
5770{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01005771 u64 now = perf_clock();
5772 u64 delta = now - event->ctx->timestamp;
5773 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005774
5775 task_clock_event_update(event, time);
5776}
5777
5778static int task_clock_event_init(struct perf_event *event)
5779{
5780 if (event->attr.type != PERF_TYPE_SOFTWARE)
5781 return -ENOENT;
5782
5783 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
5784 return -ENOENT;
5785
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005786 /*
5787 * no branch sampling for software events
5788 */
5789 if (has_branch_stack(event))
5790 return -EOPNOTSUPP;
5791
Peter Zijlstraba3dd362011-02-15 12:41:46 +01005792 perf_swevent_init_hrtimer(event);
5793
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005794 return 0;
5795}
5796
5797static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005798 .task_ctx_nr = perf_sw_context,
5799
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005800 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005801 .add = task_clock_event_add,
5802 .del = task_clock_event_del,
5803 .start = task_clock_event_start,
5804 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005805 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005806
5807 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005808};
5809
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005810static void perf_pmu_nop_void(struct pmu *pmu)
5811{
5812}
5813
5814static int perf_pmu_nop_int(struct pmu *pmu)
5815{
5816 return 0;
5817}
5818
5819static void perf_pmu_start_txn(struct pmu *pmu)
5820{
5821 perf_pmu_disable(pmu);
5822}
5823
5824static int perf_pmu_commit_txn(struct pmu *pmu)
5825{
5826 perf_pmu_enable(pmu);
5827 return 0;
5828}
5829
5830static void perf_pmu_cancel_txn(struct pmu *pmu)
5831{
5832 perf_pmu_enable(pmu);
5833}
5834
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005835static int perf_event_idx_default(struct perf_event *event)
5836{
5837 return event->hw.idx + 1;
5838}
5839
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005840/*
5841 * Ensures all contexts with the same task_ctx_nr have the same
5842 * pmu_cpu_context too.
5843 */
5844static void *find_pmu_context(int ctxn)
5845{
5846 struct pmu *pmu;
5847
5848 if (ctxn < 0)
5849 return NULL;
5850
5851 list_for_each_entry(pmu, &pmus, entry) {
5852 if (pmu->task_ctx_nr == ctxn)
5853 return pmu->pmu_cpu_context;
5854 }
5855
5856 return NULL;
5857}
5858
Peter Zijlstra51676952010-12-07 14:18:20 +01005859static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005860{
Peter Zijlstra51676952010-12-07 14:18:20 +01005861 int cpu;
5862
5863 for_each_possible_cpu(cpu) {
5864 struct perf_cpu_context *cpuctx;
5865
5866 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
5867
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02005868 if (cpuctx->unique_pmu == old_pmu)
5869 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01005870 }
5871}
5872
5873static void free_pmu_context(struct pmu *pmu)
5874{
5875 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005876
5877 mutex_lock(&pmus_lock);
5878 /*
5879 * Like a real lame refcount.
5880 */
Peter Zijlstra51676952010-12-07 14:18:20 +01005881 list_for_each_entry(i, &pmus, entry) {
5882 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
5883 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005884 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01005885 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005886 }
5887
Peter Zijlstra51676952010-12-07 14:18:20 +01005888 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005889out:
5890 mutex_unlock(&pmus_lock);
5891}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005892static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005893
Peter Zijlstraabe43402010-11-17 23:17:37 +01005894static ssize_t
5895type_show(struct device *dev, struct device_attribute *attr, char *page)
5896{
5897 struct pmu *pmu = dev_get_drvdata(dev);
5898
5899 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
5900}
5901
5902static struct device_attribute pmu_dev_attrs[] = {
5903 __ATTR_RO(type),
5904 __ATTR_NULL,
5905};
5906
5907static int pmu_bus_running;
5908static struct bus_type pmu_bus = {
5909 .name = "event_source",
5910 .dev_attrs = pmu_dev_attrs,
5911};
5912
5913static void pmu_dev_release(struct device *dev)
5914{
5915 kfree(dev);
5916}
5917
5918static int pmu_dev_alloc(struct pmu *pmu)
5919{
5920 int ret = -ENOMEM;
5921
5922 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
5923 if (!pmu->dev)
5924 goto out;
5925
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01005926 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01005927 device_initialize(pmu->dev);
5928 ret = dev_set_name(pmu->dev, "%s", pmu->name);
5929 if (ret)
5930 goto free_dev;
5931
5932 dev_set_drvdata(pmu->dev, pmu);
5933 pmu->dev->bus = &pmu_bus;
5934 pmu->dev->release = pmu_dev_release;
5935 ret = device_add(pmu->dev);
5936 if (ret)
5937 goto free_dev;
5938
5939out:
5940 return ret;
5941
5942free_dev:
5943 put_device(pmu->dev);
5944 goto out;
5945}
5946
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005947static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02005948static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005949
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005950int perf_pmu_register(struct pmu *pmu, char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005951{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005952 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005953
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005954 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02005955 ret = -ENOMEM;
5956 pmu->pmu_disable_count = alloc_percpu(int);
5957 if (!pmu->pmu_disable_count)
5958 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02005959
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005960 pmu->type = -1;
5961 if (!name)
5962 goto skip_type;
5963 pmu->name = name;
5964
5965 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08005966 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
5967 if (type < 0) {
5968 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005969 goto free_pdc;
5970 }
5971 }
5972 pmu->type = type;
5973
Peter Zijlstraabe43402010-11-17 23:17:37 +01005974 if (pmu_bus_running) {
5975 ret = pmu_dev_alloc(pmu);
5976 if (ret)
5977 goto free_idr;
5978 }
5979
Peter Zijlstra2e80a822010-11-17 23:17:36 +01005980skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005981 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
5982 if (pmu->pmu_cpu_context)
5983 goto got_cpu_context;
5984
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005985 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
5986 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01005987 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005988
5989 for_each_possible_cpu(cpu) {
5990 struct perf_cpu_context *cpuctx;
5991
5992 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02005993 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01005994 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02005995 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02005996 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02005997 cpuctx->ctx.pmu = pmu;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02005998 cpuctx->jiffies_interval = 1;
5999 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006000 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006001 }
6002
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006003got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006004 if (!pmu->start_txn) {
6005 if (pmu->pmu_enable) {
6006 /*
6007 * If we have pmu_enable/pmu_disable calls, install
6008 * transaction stubs that use that to try and batch
6009 * hardware accesses.
6010 */
6011 pmu->start_txn = perf_pmu_start_txn;
6012 pmu->commit_txn = perf_pmu_commit_txn;
6013 pmu->cancel_txn = perf_pmu_cancel_txn;
6014 } else {
6015 pmu->start_txn = perf_pmu_nop_void;
6016 pmu->commit_txn = perf_pmu_nop_int;
6017 pmu->cancel_txn = perf_pmu_nop_void;
6018 }
6019 }
6020
6021 if (!pmu->pmu_enable) {
6022 pmu->pmu_enable = perf_pmu_nop_void;
6023 pmu->pmu_disable = perf_pmu_nop_void;
6024 }
6025
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006026 if (!pmu->event_idx)
6027 pmu->event_idx = perf_event_idx_default;
6028
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006029 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006030 ret = 0;
6031unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006032 mutex_unlock(&pmus_lock);
6033
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006034 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006035
Peter Zijlstraabe43402010-11-17 23:17:37 +01006036free_dev:
6037 device_del(pmu->dev);
6038 put_device(pmu->dev);
6039
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006040free_idr:
6041 if (pmu->type >= PERF_TYPE_MAX)
6042 idr_remove(&pmu_idr, pmu->type);
6043
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006044free_pdc:
6045 free_percpu(pmu->pmu_disable_count);
6046 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006047}
6048
6049void perf_pmu_unregister(struct pmu *pmu)
6050{
6051 mutex_lock(&pmus_lock);
6052 list_del_rcu(&pmu->entry);
6053 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006054
6055 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006056 * We dereference the pmu list under both SRCU and regular RCU, so
6057 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006058 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006059 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006060 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006061
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006062 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006063 if (pmu->type >= PERF_TYPE_MAX)
6064 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006065 device_del(pmu->dev);
6066 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006067 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006068}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006069
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006070struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006071{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006072 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006073 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006074 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006075
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006076 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006077
6078 rcu_read_lock();
6079 pmu = idr_find(&pmu_idr, event->attr.type);
6080 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006081 if (pmu) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006082 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006083 ret = pmu->event_init(event);
6084 if (ret)
6085 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006086 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006087 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006088
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006089 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006090 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006091 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006092 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006093 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006094
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006095 if (ret != -ENOENT) {
6096 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006097 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006098 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006099 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006100 pmu = ERR_PTR(-ENOENT);
6101unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006102 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006103
6104 return pmu;
6105}
6106
6107/*
6108 * Allocate and initialize a event structure
6109 */
6110static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006111perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006112 struct task_struct *task,
6113 struct perf_event *group_leader,
6114 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006115 perf_overflow_handler_t overflow_handler,
6116 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006117{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006118 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006119 struct perf_event *event;
6120 struct hw_perf_event *hwc;
6121 long err;
6122
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006123 if ((unsigned)cpu >= nr_cpu_ids) {
6124 if (!task || cpu != -1)
6125 return ERR_PTR(-EINVAL);
6126 }
6127
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006128 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006129 if (!event)
6130 return ERR_PTR(-ENOMEM);
6131
6132 /*
6133 * Single events are their own group leaders, with an
6134 * empty sibling list:
6135 */
6136 if (!group_leader)
6137 group_leader = event;
6138
6139 mutex_init(&event->child_mutex);
6140 INIT_LIST_HEAD(&event->child_list);
6141
6142 INIT_LIST_HEAD(&event->group_entry);
6143 INIT_LIST_HEAD(&event->event_entry);
6144 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006145 INIT_LIST_HEAD(&event->rb_entry);
6146
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006147 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006148 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006149
6150 mutex_init(&event->mmap_mutex);
6151
Al Viroa6fa9412012-08-20 14:59:25 +01006152 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006153 event->cpu = cpu;
6154 event->attr = *attr;
6155 event->group_leader = group_leader;
6156 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006157 event->oncpu = -1;
6158
6159 event->parent = parent_event;
6160
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006161 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006162 event->id = atomic64_inc_return(&perf_event_id);
6163
6164 event->state = PERF_EVENT_STATE_INACTIVE;
6165
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006166 if (task) {
6167 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006168
6169 if (attr->type == PERF_TYPE_TRACEPOINT)
6170 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006171#ifdef CONFIG_HAVE_HW_BREAKPOINT
6172 /*
6173 * hw_breakpoint is a bit difficult here..
6174 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006175 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006176 event->hw.bp_target = task;
6177#endif
6178 }
6179
Avi Kivity4dc0da82011-06-29 18:42:35 +03006180 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006181 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006182 context = parent_event->overflow_handler_context;
6183 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006184
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006185 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006186 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006187
Jiri Olsa0231bb52013-02-01 11:23:45 +01006188 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006189
6190 pmu = NULL;
6191
6192 hwc = &event->hw;
6193 hwc->sample_period = attr->sample_period;
6194 if (attr->freq && attr->sample_freq)
6195 hwc->sample_period = 1;
6196 hwc->last_period = hwc->sample_period;
6197
Peter Zijlstrae7850592010-05-21 14:43:08 +02006198 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006199
6200 /*
6201 * we currently do not support PERF_FORMAT_GROUP on inherited events
6202 */
6203 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
6204 goto done;
6205
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006206 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006207
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006208done:
6209 err = 0;
6210 if (!pmu)
6211 err = -EINVAL;
6212 else if (IS_ERR(pmu))
6213 err = PTR_ERR(pmu);
6214
6215 if (err) {
6216 if (event->ns)
6217 put_pid_ns(event->ns);
6218 kfree(event);
6219 return ERR_PTR(err);
6220 }
6221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006222 if (!event->parent) {
Peter Zijlstra82cd6de2010-10-14 17:57:23 +02006223 if (event->attach_state & PERF_ATTACH_TASK)
Ingo Molnarc5905af2012-02-24 08:31:31 +01006224 static_key_slow_inc(&perf_sched_events.key);
Eric B Munson3af9e852010-05-18 15:30:49 +01006225 if (event->attr.mmap || event->attr.mmap_data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006226 atomic_inc(&nr_mmap_events);
6227 if (event->attr.comm)
6228 atomic_inc(&nr_comm_events);
6229 if (event->attr.task)
6230 atomic_inc(&nr_task_events);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006231 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6232 err = get_callchain_buffers();
6233 if (err) {
6234 free_event(event);
6235 return ERR_PTR(err);
6236 }
6237 }
Stephane Eraniand010b332012-02-09 23:21:00 +01006238 if (has_branch_stack(event)) {
6239 static_key_slow_inc(&perf_sched_events.key);
6240 if (!(event->attach_state & PERF_ATTACH_TASK))
6241 atomic_inc(&per_cpu(perf_branch_stack_events,
6242 event->cpu));
6243 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006244 }
6245
6246 return event;
6247}
6248
6249static int perf_copy_attr(struct perf_event_attr __user *uattr,
6250 struct perf_event_attr *attr)
6251{
6252 u32 size;
6253 int ret;
6254
6255 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6256 return -EFAULT;
6257
6258 /*
6259 * zero the full structure, so that a short copy will be nice.
6260 */
6261 memset(attr, 0, sizeof(*attr));
6262
6263 ret = get_user(size, &uattr->size);
6264 if (ret)
6265 return ret;
6266
6267 if (size > PAGE_SIZE) /* silly large */
6268 goto err_size;
6269
6270 if (!size) /* abi compat */
6271 size = PERF_ATTR_SIZE_VER0;
6272
6273 if (size < PERF_ATTR_SIZE_VER0)
6274 goto err_size;
6275
6276 /*
6277 * If we're handed a bigger struct than we know of,
6278 * ensure all the unknown bits are 0 - i.e. new
6279 * user-space does not rely on any kernel feature
6280 * extensions we dont know about yet.
6281 */
6282 if (size > sizeof(*attr)) {
6283 unsigned char __user *addr;
6284 unsigned char __user *end;
6285 unsigned char val;
6286
6287 addr = (void __user *)uattr + sizeof(*attr);
6288 end = (void __user *)uattr + size;
6289
6290 for (; addr < end; addr++) {
6291 ret = get_user(val, addr);
6292 if (ret)
6293 return ret;
6294 if (val)
6295 goto err_size;
6296 }
6297 size = sizeof(*attr);
6298 }
6299
6300 ret = copy_from_user(attr, uattr, size);
6301 if (ret)
6302 return -EFAULT;
6303
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306304 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006305 return -EINVAL;
6306
6307 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6308 return -EINVAL;
6309
6310 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6311 return -EINVAL;
6312
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006313 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6314 u64 mask = attr->branch_sample_type;
6315
6316 /* only using defined bits */
6317 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6318 return -EINVAL;
6319
6320 /* at least one branch bit must be set */
6321 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6322 return -EINVAL;
6323
6324 /* kernel level capture: check permissions */
6325 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
6326 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6327 return -EACCES;
6328
6329 /* propagate priv level, when not set for branch */
6330 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6331
6332 /* exclude_kernel checked on syscall entry */
6333 if (!attr->exclude_kernel)
6334 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6335
6336 if (!attr->exclude_user)
6337 mask |= PERF_SAMPLE_BRANCH_USER;
6338
6339 if (!attr->exclude_hv)
6340 mask |= PERF_SAMPLE_BRANCH_HV;
6341 /*
6342 * adjust user setting (for HW filter setup)
6343 */
6344 attr->branch_sample_type = mask;
6345 }
6346 }
Jiri Olsa40189942012-08-07 15:20:37 +02006347
Jiri Olsac5ebced2012-08-07 15:20:40 +02006348 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006349 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006350 if (ret)
6351 return ret;
6352 }
6353
6354 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6355 if (!arch_perf_have_user_stack_dump())
6356 return -ENOSYS;
6357
6358 /*
6359 * We have __u32 type for the size, but so far
6360 * we can only use __u16 as maximum due to the
6361 * __u16 sample size limit.
6362 */
6363 if (attr->sample_stack_user >= USHRT_MAX)
6364 ret = -EINVAL;
6365 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
6366 ret = -EINVAL;
6367 }
Jiri Olsa40189942012-08-07 15:20:37 +02006368
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006369out:
6370 return ret;
6371
6372err_size:
6373 put_user(sizeof(*attr), &uattr->size);
6374 ret = -E2BIG;
6375 goto out;
6376}
6377
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006378static int
6379perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006380{
Frederic Weisbecker76369132011-05-19 19:55:04 +02006381 struct ring_buffer *rb = NULL, *old_rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006382 int ret = -EINVAL;
6383
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006384 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006385 goto set;
6386
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006387 /* don't allow circular references */
6388 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006389 goto out;
6390
Peter Zijlstra0f139302010-05-20 14:35:15 +02006391 /*
6392 * Don't allow cross-cpu buffers
6393 */
6394 if (output_event->cpu != event->cpu)
6395 goto out;
6396
6397 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02006398 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02006399 */
6400 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
6401 goto out;
6402
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006403set:
6404 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006405 /* Can't redirect output if we've got an active mmap() */
6406 if (atomic_read(&event->mmap_count))
6407 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006408
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006409 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02006410 /* get the rb we want to redirect to */
6411 rb = ring_buffer_get(output_event);
6412 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006413 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006414 }
6415
Frederic Weisbecker76369132011-05-19 19:55:04 +02006416 old_rb = event->rb;
6417 rcu_assign_pointer(event->rb, rb);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006418 if (old_rb)
6419 ring_buffer_detach(event, old_rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006420 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006421unlock:
6422 mutex_unlock(&event->mmap_mutex);
6423
Frederic Weisbecker76369132011-05-19 19:55:04 +02006424 if (old_rb)
6425 ring_buffer_put(old_rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006426out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006427 return ret;
6428}
6429
6430/**
6431 * sys_perf_event_open - open a performance event, associate it to a task/cpu
6432 *
6433 * @attr_uptr: event_id type attributes for monitoring/sampling
6434 * @pid: target pid
6435 * @cpu: target cpu
6436 * @group_fd: group leader event fd
6437 */
6438SYSCALL_DEFINE5(perf_event_open,
6439 struct perf_event_attr __user *, attr_uptr,
6440 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
6441{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006442 struct perf_event *group_leader = NULL, *output_event = NULL;
6443 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006444 struct perf_event_attr attr;
6445 struct perf_event_context *ctx;
6446 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04006447 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07006448 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006449 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04006450 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006451 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006452 int err;
6453
6454 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02006455 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006456 return -EINVAL;
6457
6458 err = perf_copy_attr(attr_uptr, &attr);
6459 if (err)
6460 return err;
6461
6462 if (!attr.exclude_kernel) {
6463 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6464 return -EACCES;
6465 }
6466
6467 if (attr.freq) {
6468 if (attr.sample_freq > sysctl_perf_event_sample_rate)
6469 return -EINVAL;
6470 }
6471
Stephane Eraniane5d13672011-02-14 11:20:01 +02006472 /*
6473 * In cgroup mode, the pid argument is used to pass the fd
6474 * opened to the cgroup directory in cgroupfs. The cpu argument
6475 * designates the cpu on which to monitor threads from that
6476 * cgroup.
6477 */
6478 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
6479 return -EINVAL;
6480
Al Viroab72a702012-08-21 09:40:46 -04006481 event_fd = get_unused_fd();
Al Viroea635c62010-05-26 17:40:29 -04006482 if (event_fd < 0)
6483 return event_fd;
6484
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006485 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04006486 err = perf_fget_light(group_fd, &group);
6487 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006488 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04006489 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006490 if (flags & PERF_FLAG_FD_OUTPUT)
6491 output_event = group_leader;
6492 if (flags & PERF_FLAG_FD_NO_GROUP)
6493 group_leader = NULL;
6494 }
6495
Stephane Eraniane5d13672011-02-14 11:20:01 +02006496 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006497 task = find_lively_task_by_vpid(pid);
6498 if (IS_ERR(task)) {
6499 err = PTR_ERR(task);
6500 goto err_group_fd;
6501 }
6502 }
6503
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006504 get_online_cpus();
6505
Avi Kivity4dc0da82011-06-29 18:42:35 +03006506 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
6507 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006508 if (IS_ERR(event)) {
6509 err = PTR_ERR(event);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006510 goto err_task;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02006511 }
6512
Stephane Eraniane5d13672011-02-14 11:20:01 +02006513 if (flags & PERF_FLAG_PID_CGROUP) {
6514 err = perf_cgroup_connect(pid, event, &attr, group_leader);
6515 if (err)
6516 goto err_alloc;
Peter Zijlstra08309372011-03-03 11:31:20 +01006517 /*
6518 * one more event:
6519 * - that has cgroup constraint on event->cpu
6520 * - that may need work on context switch
6521 */
6522 atomic_inc(&per_cpu(perf_cgroup_events, event->cpu));
Ingo Molnarc5905af2012-02-24 08:31:31 +01006523 static_key_slow_inc(&perf_sched_events.key);
Stephane Eraniane5d13672011-02-14 11:20:01 +02006524 }
6525
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006526 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006527 * Special case software events and allow them to be part of
6528 * any hardware group.
6529 */
6530 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006531
6532 if (group_leader &&
6533 (is_software_event(event) != is_software_event(group_leader))) {
6534 if (is_software_event(event)) {
6535 /*
6536 * If event and group_leader are not both a software
6537 * event, and event is, then group leader is not.
6538 *
6539 * Allow the addition of software events to !software
6540 * groups, this is safe because software events never
6541 * fail to schedule.
6542 */
6543 pmu = group_leader->pmu;
6544 } else if (is_software_event(group_leader) &&
6545 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
6546 /*
6547 * In case the group is a pure software group, and we
6548 * try to add a hardware event, move the whole group to
6549 * the hardware context.
6550 */
6551 move_group = 1;
6552 }
6553 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006554
6555 /*
6556 * Get the target context (task or percpu):
6557 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006558 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006559 if (IS_ERR(ctx)) {
6560 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006561 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006562 }
6563
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02006564 if (task) {
6565 put_task_struct(task);
6566 task = NULL;
6567 }
6568
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006569 /*
6570 * Look up the group leader (we will attach this event to it):
6571 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006572 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006573 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006574
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006575 /*
6576 * Do not allow a recursive hierarchy (this new sibling
6577 * becoming part of another group-sibling):
6578 */
6579 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006580 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006581 /*
6582 * Do not allow to attach to a group in a different
6583 * task or CPU context:
6584 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006585 if (move_group) {
6586 if (group_leader->ctx->type != ctx->type)
6587 goto err_context;
6588 } else {
6589 if (group_leader->ctx != ctx)
6590 goto err_context;
6591 }
6592
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006593 /*
6594 * Only a group leader can be exclusive or pinned
6595 */
6596 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006597 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006598 }
6599
6600 if (output_event) {
6601 err = perf_event_set_output(event, output_event);
6602 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006603 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02006604 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006605
Al Viroea635c62010-05-26 17:40:29 -04006606 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event, O_RDWR);
6607 if (IS_ERR(event_file)) {
6608 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006609 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04006610 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006611
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006612 if (move_group) {
6613 struct perf_event_context *gctx = group_leader->ctx;
6614
6615 mutex_lock(&gctx->mutex);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006616 perf_remove_from_context(group_leader);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006617
6618 /*
6619 * Removing from the context ends up with disabled
6620 * event. What we want here is event in the initial
6621 * startup state, ready to be add into new context.
6622 */
6623 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006624 list_for_each_entry(sibling, &group_leader->sibling_list,
6625 group_entry) {
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006626 perf_remove_from_context(sibling);
Jiri Olsa0231bb52013-02-01 11:23:45 +01006627 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006628 put_ctx(gctx);
6629 }
6630 mutex_unlock(&gctx->mutex);
6631 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006632 }
6633
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006634 WARN_ON_ONCE(ctx->parent_ctx);
6635 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006636
6637 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08006638 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006639 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006640 get_ctx(ctx);
6641 list_for_each_entry(sibling, &group_leader->sibling_list,
6642 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006643 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006644 get_ctx(ctx);
6645 }
6646 }
6647
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08006648 perf_install_in_context(ctx, event, event->cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006649 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006650 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006651 mutex_unlock(&ctx->mutex);
6652
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006653 put_online_cpus();
6654
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006655 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01006656
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006657 mutex_lock(&current->perf_event_mutex);
6658 list_add_tail(&event->owner_entry, &current->perf_event_list);
6659 mutex_unlock(&current->perf_event_mutex);
6660
Peter Zijlstra8a495422010-05-27 15:47:49 +02006661 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006662 * Precalculate sample_data sizes
6663 */
6664 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02006665 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02006666
6667 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02006668 * Drop the reference on the group_event after placing the
6669 * new event on the sibling_list. This ensures destruction
6670 * of the group leader will find the pointer to itself in
6671 * perf_group_detach().
6672 */
Al Viro2903ff02012-08-28 12:52:22 -04006673 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04006674 fd_install(event_fd, event_file);
6675 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006676
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006677err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006678 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04006679 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02006680err_alloc:
6681 free_event(event);
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006682err_task:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08006683 put_online_cpus();
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02006684 if (task)
6685 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006686err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04006687 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04006688err_fd:
6689 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006690 return err;
6691}
6692
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006693/**
6694 * perf_event_create_kernel_counter
6695 *
6696 * @attr: attributes of the counter to create
6697 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07006698 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006699 */
6700struct perf_event *
6701perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07006702 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006703 perf_overflow_handler_t overflow_handler,
6704 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006705{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006706 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006707 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006708 int err;
6709
6710 /*
6711 * Get the target context (task or percpu):
6712 */
6713
Avi Kivity4dc0da82011-06-29 18:42:35 +03006714 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
6715 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006716 if (IS_ERR(event)) {
6717 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006718 goto err;
6719 }
6720
Matt Helsley38a81da2010-09-13 13:01:20 -07006721 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006722 if (IS_ERR(ctx)) {
6723 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006724 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006725 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006726
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006727 WARN_ON_ONCE(ctx->parent_ctx);
6728 mutex_lock(&ctx->mutex);
6729 perf_install_in_context(ctx, event, cpu);
6730 ++ctx->generation;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006731 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006732 mutex_unlock(&ctx->mutex);
6733
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006734 return event;
6735
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006736err_free:
6737 free_event(event);
6738err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01006739 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02006740}
6741EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
6742
Yan, Zheng0cda4c02012-06-15 14:31:33 +08006743void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
6744{
6745 struct perf_event_context *src_ctx;
6746 struct perf_event_context *dst_ctx;
6747 struct perf_event *event, *tmp;
6748 LIST_HEAD(events);
6749
6750 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
6751 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
6752
6753 mutex_lock(&src_ctx->mutex);
6754 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
6755 event_entry) {
6756 perf_remove_from_context(event);
6757 put_ctx(src_ctx);
6758 list_add(&event->event_entry, &events);
6759 }
6760 mutex_unlock(&src_ctx->mutex);
6761
6762 synchronize_rcu();
6763
6764 mutex_lock(&dst_ctx->mutex);
6765 list_for_each_entry_safe(event, tmp, &events, event_entry) {
6766 list_del(&event->event_entry);
6767 if (event->state >= PERF_EVENT_STATE_OFF)
6768 event->state = PERF_EVENT_STATE_INACTIVE;
6769 perf_install_in_context(dst_ctx, event, dst_cpu);
6770 get_ctx(dst_ctx);
6771 }
6772 mutex_unlock(&dst_ctx->mutex);
6773}
6774EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
6775
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006776static void sync_child_event(struct perf_event *child_event,
6777 struct task_struct *child)
6778{
6779 struct perf_event *parent_event = child_event->parent;
6780 u64 child_val;
6781
6782 if (child_event->attr.inherit_stat)
6783 perf_event_read_event(child_event, child);
6784
Peter Zijlstrab5e58792010-05-21 14:43:12 +02006785 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006786
6787 /*
6788 * Add back the child's count to the parent's count:
6789 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02006790 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006791 atomic64_add(child_event->total_time_enabled,
6792 &parent_event->child_total_time_enabled);
6793 atomic64_add(child_event->total_time_running,
6794 &parent_event->child_total_time_running);
6795
6796 /*
6797 * Remove this event from the parent's list
6798 */
6799 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
6800 mutex_lock(&parent_event->child_mutex);
6801 list_del_init(&child_event->child_list);
6802 mutex_unlock(&parent_event->child_mutex);
6803
6804 /*
6805 * Release the parent event, if this was the last
6806 * reference to it.
6807 */
Al Viroa6fa9412012-08-20 14:59:25 +01006808 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006809}
6810
6811static void
6812__perf_event_exit_task(struct perf_event *child_event,
6813 struct perf_event_context *child_ctx,
6814 struct task_struct *child)
6815{
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006816 if (child_event->parent) {
6817 raw_spin_lock_irq(&child_ctx->lock);
6818 perf_group_detach(child_event);
6819 raw_spin_unlock_irq(&child_ctx->lock);
6820 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006821
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01006822 perf_remove_from_context(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006823
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006824 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006825 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006826 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006827 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006828 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01006829 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006830 sync_child_event(child_event, child);
6831 free_event(child_event);
6832 }
6833}
6834
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006835static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006836{
6837 struct perf_event *child_event, *tmp;
6838 struct perf_event_context *child_ctx;
6839 unsigned long flags;
6840
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006841 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006842 perf_event_task(child, NULL, 0);
6843 return;
6844 }
6845
6846 local_irq_save(flags);
6847 /*
6848 * We can't reschedule here because interrupts are disabled,
6849 * and either child is current or it is a task that can't be
6850 * scheduled, so we are now safe from rescheduling changing
6851 * our context.
6852 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01006853 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006854
6855 /*
6856 * Take the context lock here so that if find_get_context is
6857 * reading child->perf_event_ctxp, we wait until it has
6858 * incremented the context's refcount before we do put_ctx below.
6859 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006860 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02006861 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006862 child->perf_event_ctxp[ctxn] = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006863 /*
6864 * If this context is a clone; unclone it so it can't get
6865 * swapped to another process while we're removing all
6866 * the events from it.
6867 */
6868 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01006869 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01006870 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006871
6872 /*
6873 * Report the task dead after unscheduling the events so that we
6874 * won't get any samples after PERF_RECORD_EXIT. We can however still
6875 * get a few PERF_RECORD_READ events.
6876 */
6877 perf_event_task(child, child_ctx, 0);
6878
6879 /*
6880 * We can recurse on the same lock type through:
6881 *
6882 * __perf_event_exit_task()
6883 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01006884 * put_event()
6885 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006886 *
6887 * But since its the parent context it won't be the same instance.
6888 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02006889 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006890
6891again:
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006892 list_for_each_entry_safe(child_event, tmp, &child_ctx->pinned_groups,
6893 group_entry)
6894 __perf_event_exit_task(child_event, child_ctx, child);
6895
6896 list_for_each_entry_safe(child_event, tmp, &child_ctx->flexible_groups,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006897 group_entry)
6898 __perf_event_exit_task(child_event, child_ctx, child);
6899
6900 /*
6901 * If the last event was a group event, it will have appended all
6902 * its siblings to the list, but we obtained 'tmp' before that which
6903 * will still point to the list head terminating the iteration.
6904 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006905 if (!list_empty(&child_ctx->pinned_groups) ||
6906 !list_empty(&child_ctx->flexible_groups))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006907 goto again;
6908
6909 mutex_unlock(&child_ctx->mutex);
6910
6911 put_ctx(child_ctx);
6912}
6913
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006914/*
6915 * When a child task exits, feed back event values to parent events.
6916 */
6917void perf_event_exit_task(struct task_struct *child)
6918{
Peter Zijlstra88821352010-11-09 19:01:43 +01006919 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006920 int ctxn;
6921
Peter Zijlstra88821352010-11-09 19:01:43 +01006922 mutex_lock(&child->perf_event_mutex);
6923 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
6924 owner_entry) {
6925 list_del_init(&event->owner_entry);
6926
6927 /*
6928 * Ensure the list deletion is visible before we clear
6929 * the owner, closes a race against perf_release() where
6930 * we need to serialize on the owner->perf_event_mutex.
6931 */
6932 smp_wmb();
6933 event->owner = NULL;
6934 }
6935 mutex_unlock(&child->perf_event_mutex);
6936
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006937 for_each_task_context_nr(ctxn)
6938 perf_event_exit_task_context(child, ctxn);
6939}
6940
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006941static void perf_free_event(struct perf_event *event,
6942 struct perf_event_context *ctx)
6943{
6944 struct perf_event *parent = event->parent;
6945
6946 if (WARN_ON_ONCE(!parent))
6947 return;
6948
6949 mutex_lock(&parent->child_mutex);
6950 list_del_init(&event->child_list);
6951 mutex_unlock(&parent->child_mutex);
6952
Al Viroa6fa9412012-08-20 14:59:25 +01006953 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006954
Peter Zijlstra8a495422010-05-27 15:47:49 +02006955 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01006956 list_del_event(event, ctx);
6957 free_event(event);
6958}
6959
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006960/*
6961 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006962 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006963 */
6964void perf_event_free_task(struct task_struct *task)
6965{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006966 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006967 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006968 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006969
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006970 for_each_task_context_nr(ctxn) {
6971 ctx = task->perf_event_ctxp[ctxn];
6972 if (!ctx)
6973 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006974
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006975 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006976again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006977 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
6978 group_entry)
6979 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006980
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006981 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
6982 group_entry)
6983 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006984
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006985 if (!list_empty(&ctx->pinned_groups) ||
6986 !list_empty(&ctx->flexible_groups))
6987 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006988
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006989 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006990
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006991 put_ctx(ctx);
6992 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006993}
6994
Peter Zijlstra4e231c72010-09-09 21:01:59 +02006995void perf_event_delayed_put(struct task_struct *task)
6996{
6997 int ctxn;
6998
6999 for_each_task_context_nr(ctxn)
7000 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7001}
7002
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007003/*
7004 * inherit a event from parent task to child task:
7005 */
7006static struct perf_event *
7007inherit_event(struct perf_event *parent_event,
7008 struct task_struct *parent,
7009 struct perf_event_context *parent_ctx,
7010 struct task_struct *child,
7011 struct perf_event *group_leader,
7012 struct perf_event_context *child_ctx)
7013{
7014 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007015 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007016
7017 /*
7018 * Instead of creating recursive hierarchies of events,
7019 * we link inherited events back to the original parent,
7020 * which has a filp for sure, which we use as the reference
7021 * count:
7022 */
7023 if (parent_event->parent)
7024 parent_event = parent_event->parent;
7025
7026 child_event = perf_event_alloc(&parent_event->attr,
7027 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007028 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007029 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007030 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007031 if (IS_ERR(child_event))
7032 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007033
7034 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7035 free_event(child_event);
7036 return NULL;
7037 }
7038
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007039 get_ctx(child_ctx);
7040
7041 /*
7042 * Make the child state follow the state of the parent event,
7043 * not its attr.disabled bit. We hold the parent's mutex,
7044 * so we won't race with perf_event_{en, dis}able_family.
7045 */
7046 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7047 child_event->state = PERF_EVENT_STATE_INACTIVE;
7048 else
7049 child_event->state = PERF_EVENT_STATE_OFF;
7050
7051 if (parent_event->attr.freq) {
7052 u64 sample_period = parent_event->hw.sample_period;
7053 struct hw_perf_event *hwc = &child_event->hw;
7054
7055 hwc->sample_period = sample_period;
7056 hwc->last_period = sample_period;
7057
7058 local64_set(&hwc->period_left, sample_period);
7059 }
7060
7061 child_event->ctx = child_ctx;
7062 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007063 child_event->overflow_handler_context
7064 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007065
7066 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007067 * Precalculate sample_data sizes
7068 */
7069 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007070 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007071
7072 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007073 * Link it up in the child's context:
7074 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007075 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007076 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007077 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007078
7079 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007080 * Link this into the parent event's child list
7081 */
7082 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7083 mutex_lock(&parent_event->child_mutex);
7084 list_add_tail(&child_event->child_list, &parent_event->child_list);
7085 mutex_unlock(&parent_event->child_mutex);
7086
7087 return child_event;
7088}
7089
7090static int inherit_group(struct perf_event *parent_event,
7091 struct task_struct *parent,
7092 struct perf_event_context *parent_ctx,
7093 struct task_struct *child,
7094 struct perf_event_context *child_ctx)
7095{
7096 struct perf_event *leader;
7097 struct perf_event *sub;
7098 struct perf_event *child_ctr;
7099
7100 leader = inherit_event(parent_event, parent, parent_ctx,
7101 child, NULL, child_ctx);
7102 if (IS_ERR(leader))
7103 return PTR_ERR(leader);
7104 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7105 child_ctr = inherit_event(sub, parent, parent_ctx,
7106 child, leader, child_ctx);
7107 if (IS_ERR(child_ctr))
7108 return PTR_ERR(child_ctr);
7109 }
7110 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007111}
7112
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007113static int
7114inherit_task_group(struct perf_event *event, struct task_struct *parent,
7115 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007116 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007117 int *inherited_all)
7118{
7119 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007120 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007121
7122 if (!event->attr.inherit) {
7123 *inherited_all = 0;
7124 return 0;
7125 }
7126
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007127 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007128 if (!child_ctx) {
7129 /*
7130 * This is executed from the parent task context, so
7131 * inherit events that have been marked for cloning.
7132 * First allocate and initialize a context for the
7133 * child.
7134 */
7135
Peter Zijlstraeb184472010-09-07 15:55:13 +02007136 child_ctx = alloc_perf_context(event->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007137 if (!child_ctx)
7138 return -ENOMEM;
7139
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007140 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007141 }
7142
7143 ret = inherit_group(event, parent, parent_ctx,
7144 child, child_ctx);
7145
7146 if (ret)
7147 *inherited_all = 0;
7148
7149 return ret;
7150}
7151
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007152/*
7153 * Initialize the perf_event context in task_struct
7154 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007155int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007156{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007157 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007158 struct perf_event_context *cloned_ctx;
7159 struct perf_event *event;
7160 struct task_struct *parent = current;
7161 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007162 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007163 int ret = 0;
7164
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007165 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007166 return 0;
7167
7168 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007169 * If the parent's context is a clone, pin it so it won't get
7170 * swapped under us.
7171 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007172 parent_ctx = perf_pin_task_context(parent, ctxn);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007173
7174 /*
7175 * No need to check if parent_ctx != NULL here; since we saw
7176 * it non-NULL earlier, the only reason for it to become NULL
7177 * is if we exit, and since we're currently in the middle of
7178 * a fork we can't be exiting at the same time.
7179 */
7180
7181 /*
7182 * Lock the parent list. No need to lock the child - not PID
7183 * hashed yet and not running, so nobody can access it.
7184 */
7185 mutex_lock(&parent_ctx->mutex);
7186
7187 /*
7188 * We dont have to disable NMIs - we are only looking at
7189 * the list, not manipulating it:
7190 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007191 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007192 ret = inherit_task_group(event, parent, parent_ctx,
7193 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007194 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007195 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007196 }
7197
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007198 /*
7199 * We can't hold ctx->lock when iterating the ->flexible_group list due
7200 * to allocations, but we need to prevent rotation because
7201 * rotate_ctx() will change the list from interrupt context.
7202 */
7203 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7204 parent_ctx->rotate_disable = 1;
7205 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7206
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007207 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007208 ret = inherit_task_group(event, parent, parent_ctx,
7209 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007210 if (ret)
7211 break;
7212 }
7213
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007214 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7215 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007216
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007217 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007218
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007219 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007220 /*
7221 * Mark the child context as a clone of the parent
7222 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007223 *
7224 * Note that if the parent is a clone, the holding of
7225 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007226 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007227 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007228 if (cloned_ctx) {
7229 child_ctx->parent_ctx = cloned_ctx;
7230 child_ctx->parent_gen = parent_ctx->parent_gen;
7231 } else {
7232 child_ctx->parent_ctx = parent_ctx;
7233 child_ctx->parent_gen = parent_ctx->generation;
7234 }
7235 get_ctx(child_ctx->parent_ctx);
7236 }
7237
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007238 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007239 mutex_unlock(&parent_ctx->mutex);
7240
7241 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007242 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007243
7244 return ret;
7245}
7246
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007247/*
7248 * Initialize the perf_event context in task_struct
7249 */
7250int perf_event_init_task(struct task_struct *child)
7251{
7252 int ctxn, ret;
7253
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007254 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7255 mutex_init(&child->perf_event_mutex);
7256 INIT_LIST_HEAD(&child->perf_event_list);
7257
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007258 for_each_task_context_nr(ctxn) {
7259 ret = perf_event_init_context(child, ctxn);
7260 if (ret)
7261 return ret;
7262 }
7263
7264 return 0;
7265}
7266
Paul Mackerras220b1402010-03-10 20:45:52 +11007267static void __init perf_event_init_all_cpus(void)
7268{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007269 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007270 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007271
7272 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007273 swhash = &per_cpu(swevent_htable, cpu);
7274 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007275 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007276 }
7277}
7278
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007279static void __cpuinit perf_event_init_cpu(int cpu)
7280{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007281 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007282
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007283 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007284 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007285 struct swevent_hlist *hlist;
7286
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007287 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7288 WARN_ON(!hlist);
7289 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007290 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007291 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007292}
7293
Peter Zijlstrac2774432010-12-08 15:29:02 +01007294#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007295static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007296{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007297 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7298
7299 WARN_ON(!irqs_disabled());
7300
7301 list_del_init(&cpuctx->rotation_list);
7302}
7303
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007304static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007305{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007306 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007307 struct perf_event *event, *tmp;
7308
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007309 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007310
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007311 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007312 __perf_remove_from_context(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007313 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups, group_entry)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007314 __perf_remove_from_context(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007315}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007316
7317static void perf_event_exit_cpu_context(int cpu)
7318{
7319 struct perf_event_context *ctx;
7320 struct pmu *pmu;
7321 int idx;
7322
7323 idx = srcu_read_lock(&pmus_srcu);
7324 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007325 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007326
7327 mutex_lock(&ctx->mutex);
7328 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7329 mutex_unlock(&ctx->mutex);
7330 }
7331 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007332}
7333
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007334static void perf_event_exit_cpu(int cpu)
7335{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007336 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007337
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007338 mutex_lock(&swhash->hlist_mutex);
7339 swevent_hlist_release(swhash);
7340 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007341
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007342 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007343}
7344#else
7345static inline void perf_event_exit_cpu(int cpu) { }
7346#endif
7347
Peter Zijlstrac2774432010-12-08 15:29:02 +01007348static int
7349perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
7350{
7351 int cpu;
7352
7353 for_each_online_cpu(cpu)
7354 perf_event_exit_cpu(cpu);
7355
7356 return NOTIFY_OK;
7357}
7358
7359/*
7360 * Run the perf reboot notifier at the very last possible moment so that
7361 * the generic watchdog code runs as long as possible.
7362 */
7363static struct notifier_block perf_reboot_notifier = {
7364 .notifier_call = perf_reboot,
7365 .priority = INT_MIN,
7366};
7367
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007368static int __cpuinit
7369perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
7370{
7371 unsigned int cpu = (long)hcpu;
7372
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007373 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007374
7375 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02007376 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007377 perf_event_init_cpu(cpu);
7378 break;
7379
Peter Zijlstra5e116372010-06-11 13:35:08 +02007380 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007381 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007382 perf_event_exit_cpu(cpu);
7383 break;
7384
7385 default:
7386 break;
7387 }
7388
7389 return NOTIFY_OK;
7390}
7391
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007392void __init perf_event_init(void)
7393{
Jason Wessel3c502e72010-11-04 17:33:01 -05007394 int ret;
7395
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007396 idr_init(&pmu_idr);
7397
Paul Mackerras220b1402010-03-10 20:45:52 +11007398 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007399 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007400 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
7401 perf_pmu_register(&perf_cpu_clock, NULL, -1);
7402 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007403 perf_tp_register();
7404 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01007405 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05007406
7407 ret = init_hw_breakpoint();
7408 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02007409
7410 /* do not patch jump label more than once per second */
7411 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01007412
7413 /*
7414 * Build time assertion that we keep the data_head at the intended
7415 * location. IOW, validation we got the __reserved[] size right.
7416 */
7417 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
7418 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007419}
Peter Zijlstraabe43402010-11-17 23:17:37 +01007420
7421static int __init perf_event_sysfs_init(void)
7422{
7423 struct pmu *pmu;
7424 int ret;
7425
7426 mutex_lock(&pmus_lock);
7427
7428 ret = bus_register(&pmu_bus);
7429 if (ret)
7430 goto unlock;
7431
7432 list_for_each_entry(pmu, &pmus, entry) {
7433 if (!pmu->name || pmu->type < 0)
7434 continue;
7435
7436 ret = pmu_dev_alloc(pmu);
7437 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
7438 }
7439 pmu_bus_running = 1;
7440 ret = 0;
7441
7442unlock:
7443 mutex_unlock(&pmus_lock);
7444
7445 return ret;
7446}
7447device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007448
7449#ifdef CONFIG_CGROUP_PERF
Tejun Heo92fb9742012-11-19 08:13:38 -08007450static struct cgroup_subsys_state *perf_cgroup_css_alloc(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007451{
7452 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02007453
Li Zefan1b15d052011-03-03 14:26:06 +08007454 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007455 if (!jc)
7456 return ERR_PTR(-ENOMEM);
7457
Stephane Eraniane5d13672011-02-14 11:20:01 +02007458 jc->info = alloc_percpu(struct perf_cgroup_info);
7459 if (!jc->info) {
7460 kfree(jc);
7461 return ERR_PTR(-ENOMEM);
7462 }
7463
Stephane Eraniane5d13672011-02-14 11:20:01 +02007464 return &jc->css;
7465}
7466
Tejun Heo92fb9742012-11-19 08:13:38 -08007467static void perf_cgroup_css_free(struct cgroup *cont)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007468{
7469 struct perf_cgroup *jc;
7470 jc = container_of(cgroup_subsys_state(cont, perf_subsys_id),
7471 struct perf_cgroup, css);
7472 free_percpu(jc->info);
7473 kfree(jc);
7474}
7475
7476static int __perf_cgroup_move(void *info)
7477{
7478 struct task_struct *task = info;
7479 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
7480 return 0;
7481}
7482
Li Zefan761b3ef2012-01-31 13:47:36 +08007483static void perf_cgroup_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007484{
Tejun Heobb9d97b2011-12-12 18:12:21 -08007485 struct task_struct *task;
7486
7487 cgroup_taskset_for_each(task, cgrp, tset)
7488 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007489}
7490
Li Zefan761b3ef2012-01-31 13:47:36 +08007491static void perf_cgroup_exit(struct cgroup *cgrp, struct cgroup *old_cgrp,
7492 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02007493{
7494 /*
7495 * cgroup_exit() is called in the copy_process() failure path.
7496 * Ignore this case since the task hasn't ran yet, this avoids
7497 * trying to poke a half freed task state from generic code.
7498 */
7499 if (!(task->flags & PF_EXITING))
7500 return;
7501
Tejun Heobb9d97b2011-12-12 18:12:21 -08007502 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02007503}
7504
7505struct cgroup_subsys perf_subsys = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007506 .name = "perf_event",
7507 .subsys_id = perf_subsys_id,
Tejun Heo92fb9742012-11-19 08:13:38 -08007508 .css_alloc = perf_cgroup_css_alloc,
7509 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02007510 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08007511 .attach = perf_cgroup_attach,
Tejun Heo8c7f6ed2012-09-13 12:20:58 -07007512
7513 /*
7514 * perf_event cgroup doesn't handle nesting correctly.
7515 * ctx->nr_cgroups adjustments should be propagated through the
7516 * cgroup hierarchy. Fix it and remove the following.
7517 */
7518 .broken_hierarchy = true,
Stephane Eraniane5d13672011-02-14 11:20:01 +02007519};
7520#endif /* CONFIG_CGROUP_PERF */