blob: 4d44e40a048308c4601ad5824ab51c4fcf20254b [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>
Frederic Weisbecker12351ef2013-04-20 15:48:22 +020021#include <linux/tick.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020022#include <linux/sysfs.h>
23#include <linux/dcache.h>
24#include <linux/percpu.h>
25#include <linux/ptrace.h>
Peter Zijlstrac2774432010-12-08 15:29:02 +010026#include <linux/reboot.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020027#include <linux/vmstat.h>
Peter Zijlstraabe43402010-11-17 23:17:37 +010028#include <linux/device.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040029#include <linux/export.h>
Peter Zijlstra906010b2009-09-21 16:08:49 +020030#include <linux/vmalloc.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020031#include <linux/hardirq.h>
32#include <linux/rculist.h>
33#include <linux/uaccess.h>
34#include <linux/syscalls.h>
35#include <linux/anon_inodes.h>
36#include <linux/kernel_stat.h>
37#include <linux/perf_event.h>
Li Zefan6fb29152009-10-15 11:21:42 +080038#include <linux/ftrace_event.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050039#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020040#include <linux/mm_types.h>
Li Zefan877c6852013-03-05 11:38:08 +080041#include <linux/cgroup.h>
Yan, Zhengc464c762014-03-18 16:56:41 +080042#include <linux/module.h>
Peter Zijlstraf972eb62014-05-19 15:13:47 -040043#include <linux/mman.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020044
Frederic Weisbecker76369132011-05-19 19:55:04 +020045#include "internal.h"
46
Ingo Molnarcdd6c482009-09-21 12:02:48 +020047#include <asm/irq_regs.h>
48
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010049struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020050 struct task_struct *p;
51 int (*func)(void *info);
52 void *info;
53 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010054};
55
56static void remote_function(void *data)
57{
58 struct remote_function_call *tfc = data;
59 struct task_struct *p = tfc->p;
60
61 if (p) {
62 tfc->ret = -EAGAIN;
63 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
64 return;
65 }
66
67 tfc->ret = tfc->func(tfc->info);
68}
69
70/**
71 * task_function_call - call a function on the cpu on which a task runs
72 * @p: the task to evaluate
73 * @func: the function to be called
74 * @info: the function call argument
75 *
76 * Calls the function @func when the task is currently running. This might
77 * be on the current CPU, which just calls the function directly
78 *
79 * returns: @func return value, or
80 * -ESRCH - when the process isn't running
81 * -EAGAIN - when the process moved away
82 */
83static int
84task_function_call(struct task_struct *p, int (*func) (void *info), void *info)
85{
86 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020087 .p = p,
88 .func = func,
89 .info = info,
90 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010091 };
92
93 if (task_curr(p))
94 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
95
96 return data.ret;
97}
98
99/**
100 * cpu_function_call - call a function on the cpu
101 * @func: the function to be called
102 * @info: the function call argument
103 *
104 * Calls the function @func on the remote cpu.
105 *
106 * returns: @func return value or -ENXIO when the cpu is offline
107 */
108static int cpu_function_call(int cpu, int (*func) (void *info), void *info)
109{
110 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200111 .p = NULL,
112 .func = func,
113 .info = info,
114 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100115 };
116
117 smp_call_function_single(cpu, remote_function, &data, 1);
118
119 return data.ret;
120}
121
Stephane Eraniane5d13672011-02-14 11:20:01 +0200122#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
123 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100124 PERF_FLAG_PID_CGROUP |\
125 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200126
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100127/*
128 * branch priv levels that need permission checks
129 */
130#define PERF_SAMPLE_BRANCH_PERM_PLM \
131 (PERF_SAMPLE_BRANCH_KERNEL |\
132 PERF_SAMPLE_BRANCH_HV)
133
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200134enum event_type_t {
135 EVENT_FLEXIBLE = 0x1,
136 EVENT_PINNED = 0x2,
137 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
138};
139
Stephane Eraniane5d13672011-02-14 11:20:01 +0200140/*
141 * perf_sched_events : >0 events exist
142 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
143 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100144struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200145static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Stephane Eraniand010b332012-02-09 23:21:00 +0100146static DEFINE_PER_CPU(atomic_t, perf_branch_stack_events);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200147
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200148static atomic_t nr_mmap_events __read_mostly;
149static atomic_t nr_comm_events __read_mostly;
150static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200151static atomic_t nr_freq_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200152
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200153static LIST_HEAD(pmus);
154static DEFINE_MUTEX(pmus_lock);
155static struct srcu_struct pmus_srcu;
156
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200157/*
158 * perf event paranoia level:
159 * -1 - not paranoid at all
160 * 0 - disallow raw tracepoint access for unpriv
161 * 1 - disallow cpu events for unpriv
162 * 2 - disallow kernel profiling for unpriv
163 */
164int sysctl_perf_event_paranoid __read_mostly = 1;
165
Frederic Weisbecker20443382011-03-31 03:33:29 +0200166/* Minimum for 512 kiB + 1 user control page */
167int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200168
169/*
170 * max perf event sample rate
171 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700172#define DEFAULT_MAX_SAMPLE_RATE 100000
173#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
174#define DEFAULT_CPU_TIME_MAX_PERCENT 25
175
176int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
177
178static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
179static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
180
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200181static int perf_sample_allowed_ns __read_mostly =
182 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700183
184void update_perf_cpu_limits(void)
185{
186 u64 tmp = perf_sample_period_ns;
187
188 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200189 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200190 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700191}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100192
Stephane Eranian9e630202013-04-03 14:21:33 +0200193static int perf_rotate_context(struct perf_cpu_context *cpuctx);
194
Peter Zijlstra163ec432011-02-16 11:22:34 +0100195int perf_proc_update_handler(struct ctl_table *table, int write,
196 void __user *buffer, size_t *lenp,
197 loff_t *ppos)
198{
Knut Petersen723478c2013-09-25 14:29:37 +0200199 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100200
201 if (ret || !write)
202 return ret;
203
204 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700205 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
206 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100207
208 return 0;
209}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200210
Dave Hansen14c63f12013-06-21 08:51:36 -0700211int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
212
213int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
214 void __user *buffer, size_t *lenp,
215 loff_t *ppos)
216{
217 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
218
219 if (ret || !write)
220 return ret;
221
222 update_perf_cpu_limits();
223
224 return 0;
225}
226
227/*
228 * perf samples are done in some very critical code paths (NMIs).
229 * If they take too much CPU time, the system can lock up and not
230 * get any real work done. This will drop the sample rate when
231 * we detect that events are taking too long.
232 */
233#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200234static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700235
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100236static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700237{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100238 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700239 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200240 u64 local_samples_len;
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100241
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500242 local_samples_len = __this_cpu_read(running_sample_length);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100243 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
244
245 printk_ratelimited(KERN_WARNING
246 "perf interrupt took too long (%lld > %lld), lowering "
247 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100248 avg_local_sample_len, allowed_ns >> 1,
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100249 sysctl_perf_event_sample_rate);
250}
251
252static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
253
254void perf_sample_event_took(u64 sample_len_ns)
255{
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200256 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100257 u64 avg_local_sample_len;
258 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700259
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200260 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700261 return;
262
263 /* decay the counter by 1 average sample */
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500264 local_samples_len = __this_cpu_read(running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700265 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
266 local_samples_len += sample_len_ns;
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500267 __this_cpu_write(running_sample_length, local_samples_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700268
269 /*
270 * note: this will be biased artifically low until we have
271 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
272 * from having to maintain a count.
273 */
274 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
275
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200276 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700277 return;
278
279 if (max_samples_per_tick <= 1)
280 return;
281
282 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
283 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
284 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
285
Dave Hansen14c63f12013-06-21 08:51:36 -0700286 update_perf_cpu_limits();
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100287
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100288 if (!irq_work_queue(&perf_duration_work)) {
289 early_printk("perf interrupt took too long (%lld > %lld), lowering "
290 "kernel.perf_event_max_sample_rate to %d\n",
291 avg_local_sample_len, allowed_ns >> 1,
292 sysctl_perf_event_sample_rate);
293 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700294}
295
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200296static atomic64_t perf_event_id;
297
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200298static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
299 enum event_type_t event_type);
300
301static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200302 enum event_type_t event_type,
303 struct task_struct *task);
304
305static void update_context_time(struct perf_event_context *ctx);
306static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200307
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200308void __weak perf_event_print_debug(void) { }
309
Matt Fleming84c79912010-10-03 21:41:13 +0100310extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200311{
Matt Fleming84c79912010-10-03 21:41:13 +0100312 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200313}
314
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200315static inline u64 perf_clock(void)
316{
317 return local_clock();
318}
319
Stephane Eraniane5d13672011-02-14 11:20:01 +0200320static inline struct perf_cpu_context *
321__get_cpu_context(struct perf_event_context *ctx)
322{
323 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
324}
325
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200326static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
327 struct perf_event_context *ctx)
328{
329 raw_spin_lock(&cpuctx->ctx.lock);
330 if (ctx)
331 raw_spin_lock(&ctx->lock);
332}
333
334static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
335 struct perf_event_context *ctx)
336{
337 if (ctx)
338 raw_spin_unlock(&ctx->lock);
339 raw_spin_unlock(&cpuctx->ctx.lock);
340}
341
Stephane Eraniane5d13672011-02-14 11:20:01 +0200342#ifdef CONFIG_CGROUP_PERF
343
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200344/*
Li Zefan877c6852013-03-05 11:38:08 +0800345 * perf_cgroup_info keeps track of time_enabled for a cgroup.
346 * This is a per-cpu dynamically allocated data structure.
347 */
348struct perf_cgroup_info {
349 u64 time;
350 u64 timestamp;
351};
352
353struct perf_cgroup {
354 struct cgroup_subsys_state css;
Namhyung Kim86e213e2013-03-18 18:56:34 +0900355 struct perf_cgroup_info __percpu *info;
Li Zefan877c6852013-03-05 11:38:08 +0800356};
357
358/*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200359 * Must ensure cgroup is pinned (css_get) before calling
360 * this function. In other words, we cannot call this function
361 * if there is no cgroup event for the current CPU context.
362 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200363static inline struct perf_cgroup *
364perf_cgroup_from_task(struct task_struct *task)
365{
Tejun Heo073219e2014-02-08 10:36:58 -0500366 return container_of(task_css(task, perf_event_cgrp_id),
Tejun Heo8af01f52013-08-08 20:11:22 -0400367 struct perf_cgroup, css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200368}
369
370static inline bool
371perf_cgroup_match(struct perf_event *event)
372{
373 struct perf_event_context *ctx = event->ctx;
374 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
375
Tejun Heoef824fa2013-04-08 19:00:38 -0700376 /* @event doesn't care about cgroup */
377 if (!event->cgrp)
378 return true;
379
380 /* wants specific cgroup scope but @cpuctx isn't associated with any */
381 if (!cpuctx->cgrp)
382 return false;
383
384 /*
385 * Cgroup scoping is recursive. An event enabled for a cgroup is
386 * also enabled for all its descendant cgroups. If @cpuctx's
387 * cgroup is a descendant of @event's (the test covers identity
388 * case), it's a match.
389 */
390 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
391 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200392}
393
Stephane Eraniane5d13672011-02-14 11:20:01 +0200394static inline void perf_put_cgroup(struct perf_event *event)
395{
396 css_put(&event->cgrp->css);
397}
398
399static inline void perf_detach_cgroup(struct perf_event *event)
400{
401 perf_put_cgroup(event);
402 event->cgrp = NULL;
403}
404
405static inline int is_cgroup_event(struct perf_event *event)
406{
407 return event->cgrp != NULL;
408}
409
410static inline u64 perf_cgroup_event_time(struct perf_event *event)
411{
412 struct perf_cgroup_info *t;
413
414 t = per_cpu_ptr(event->cgrp->info, event->cpu);
415 return t->time;
416}
417
418static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
419{
420 struct perf_cgroup_info *info;
421 u64 now;
422
423 now = perf_clock();
424
425 info = this_cpu_ptr(cgrp->info);
426
427 info->time += now - info->timestamp;
428 info->timestamp = now;
429}
430
431static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
432{
433 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
434 if (cgrp_out)
435 __update_cgrp_time(cgrp_out);
436}
437
438static inline void update_cgrp_time_from_event(struct perf_event *event)
439{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200440 struct perf_cgroup *cgrp;
441
Stephane Eraniane5d13672011-02-14 11:20:01 +0200442 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200443 * ensure we access cgroup data only when needed and
444 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200445 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200446 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200447 return;
448
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200449 cgrp = perf_cgroup_from_task(current);
450 /*
451 * Do not update time when cgroup is not active
452 */
453 if (cgrp == event->cgrp)
454 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200455}
456
457static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200458perf_cgroup_set_timestamp(struct task_struct *task,
459 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200460{
461 struct perf_cgroup *cgrp;
462 struct perf_cgroup_info *info;
463
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200464 /*
465 * ctx->lock held by caller
466 * ensure we do not access cgroup data
467 * unless we have the cgroup pinned (css_get)
468 */
469 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200470 return;
471
472 cgrp = perf_cgroup_from_task(task);
473 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200474 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200475}
476
477#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
478#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
479
480/*
481 * reschedule events based on the cgroup constraint of task.
482 *
483 * mode SWOUT : schedule out everything
484 * mode SWIN : schedule in based on cgroup for next
485 */
486void perf_cgroup_switch(struct task_struct *task, int mode)
487{
488 struct perf_cpu_context *cpuctx;
489 struct pmu *pmu;
490 unsigned long flags;
491
492 /*
493 * disable interrupts to avoid geting nr_cgroup
494 * changes via __perf_event_disable(). Also
495 * avoids preemption.
496 */
497 local_irq_save(flags);
498
499 /*
500 * we reschedule only in the presence of cgroup
501 * constrained events.
502 */
503 rcu_read_lock();
504
505 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200506 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200507 if (cpuctx->unique_pmu != pmu)
508 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200509
Stephane Eraniane5d13672011-02-14 11:20:01 +0200510 /*
511 * perf_cgroup_events says at least one
512 * context on this CPU has cgroup events.
513 *
514 * ctx->nr_cgroups reports the number of cgroup
515 * events for a context.
516 */
517 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200518 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
519 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200520
521 if (mode & PERF_CGROUP_SWOUT) {
522 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
523 /*
524 * must not be done before ctxswout due
525 * to event_filter_match() in event_sched_out()
526 */
527 cpuctx->cgrp = NULL;
528 }
529
530 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200531 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200532 /*
533 * set cgrp before ctxsw in to allow
534 * event_filter_match() to not have to pass
535 * task around
Stephane Eraniane5d13672011-02-14 11:20:01 +0200536 */
537 cpuctx->cgrp = perf_cgroup_from_task(task);
538 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
539 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200540 perf_pmu_enable(cpuctx->ctx.pmu);
541 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200542 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200543 }
544
545 rcu_read_unlock();
546
547 local_irq_restore(flags);
548}
549
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200550static inline void perf_cgroup_sched_out(struct task_struct *task,
551 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200552{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200553 struct perf_cgroup *cgrp1;
554 struct perf_cgroup *cgrp2 = NULL;
555
556 /*
557 * we come here when we know perf_cgroup_events > 0
558 */
559 cgrp1 = perf_cgroup_from_task(task);
560
561 /*
562 * next is NULL when called from perf_event_enable_on_exec()
563 * that will systematically cause a cgroup_switch()
564 */
565 if (next)
566 cgrp2 = perf_cgroup_from_task(next);
567
568 /*
569 * only schedule out current cgroup events if we know
570 * that we are switching to a different cgroup. Otherwise,
571 * do no touch the cgroup events.
572 */
573 if (cgrp1 != cgrp2)
574 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200575}
576
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200577static inline void perf_cgroup_sched_in(struct task_struct *prev,
578 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200579{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200580 struct perf_cgroup *cgrp1;
581 struct perf_cgroup *cgrp2 = NULL;
582
583 /*
584 * we come here when we know perf_cgroup_events > 0
585 */
586 cgrp1 = perf_cgroup_from_task(task);
587
588 /* prev can never be NULL */
589 cgrp2 = perf_cgroup_from_task(prev);
590
591 /*
592 * only need to schedule in cgroup events if we are changing
593 * cgroup during ctxsw. Cgroup events were not scheduled
594 * out of ctxsw out if that was not the case.
595 */
596 if (cgrp1 != cgrp2)
597 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200598}
599
600static inline int perf_cgroup_connect(int fd, struct perf_event *event,
601 struct perf_event_attr *attr,
602 struct perf_event *group_leader)
603{
604 struct perf_cgroup *cgrp;
605 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400606 struct fd f = fdget(fd);
607 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200608
Al Viro2903ff02012-08-28 12:52:22 -0400609 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200610 return -EBADF;
611
Tejun Heoec903c02014-05-13 12:11:01 -0400612 css = css_tryget_online_from_dir(f.file->f_dentry,
613 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800614 if (IS_ERR(css)) {
615 ret = PTR_ERR(css);
616 goto out;
617 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200618
619 cgrp = container_of(css, struct perf_cgroup, css);
620 event->cgrp = cgrp;
621
622 /*
623 * all events in a group must monitor
624 * the same cgroup because a task belongs
625 * to only one perf cgroup at a time
626 */
627 if (group_leader && group_leader->cgrp != cgrp) {
628 perf_detach_cgroup(event);
629 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200630 }
Li Zefan3db272c2011-03-03 14:25:37 +0800631out:
Al Viro2903ff02012-08-28 12:52:22 -0400632 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200633 return ret;
634}
635
636static inline void
637perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
638{
639 struct perf_cgroup_info *t;
640 t = per_cpu_ptr(event->cgrp->info, event->cpu);
641 event->shadow_ctx_time = now - t->timestamp;
642}
643
644static inline void
645perf_cgroup_defer_enabled(struct perf_event *event)
646{
647 /*
648 * when the current task's perf cgroup does not match
649 * the event's, we need to remember to call the
650 * perf_mark_enable() function the first time a task with
651 * a matching perf cgroup is scheduled in.
652 */
653 if (is_cgroup_event(event) && !perf_cgroup_match(event))
654 event->cgrp_defer_enabled = 1;
655}
656
657static inline void
658perf_cgroup_mark_enabled(struct perf_event *event,
659 struct perf_event_context *ctx)
660{
661 struct perf_event *sub;
662 u64 tstamp = perf_event_time(event);
663
664 if (!event->cgrp_defer_enabled)
665 return;
666
667 event->cgrp_defer_enabled = 0;
668
669 event->tstamp_enabled = tstamp - event->total_time_enabled;
670 list_for_each_entry(sub, &event->sibling_list, group_entry) {
671 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
672 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
673 sub->cgrp_defer_enabled = 0;
674 }
675 }
676}
677#else /* !CONFIG_CGROUP_PERF */
678
679static inline bool
680perf_cgroup_match(struct perf_event *event)
681{
682 return true;
683}
684
685static inline void perf_detach_cgroup(struct perf_event *event)
686{}
687
688static inline int is_cgroup_event(struct perf_event *event)
689{
690 return 0;
691}
692
693static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
694{
695 return 0;
696}
697
698static inline void update_cgrp_time_from_event(struct perf_event *event)
699{
700}
701
702static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
703{
704}
705
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200706static inline void perf_cgroup_sched_out(struct task_struct *task,
707 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200708{
709}
710
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200711static inline void perf_cgroup_sched_in(struct task_struct *prev,
712 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200713{
714}
715
716static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
717 struct perf_event_attr *attr,
718 struct perf_event *group_leader)
719{
720 return -EINVAL;
721}
722
723static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200724perf_cgroup_set_timestamp(struct task_struct *task,
725 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200726{
727}
728
729void
730perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
731{
732}
733
734static inline void
735perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
736{
737}
738
739static inline u64 perf_cgroup_event_time(struct perf_event *event)
740{
741 return 0;
742}
743
744static inline void
745perf_cgroup_defer_enabled(struct perf_event *event)
746{
747}
748
749static inline void
750perf_cgroup_mark_enabled(struct perf_event *event,
751 struct perf_event_context *ctx)
752{
753}
754#endif
755
Stephane Eranian9e630202013-04-03 14:21:33 +0200756/*
757 * set default to be dependent on timer tick just
758 * like original code
759 */
760#define PERF_CPU_HRTIMER (1000 / HZ)
761/*
762 * function must be called with interrupts disbled
763 */
764static enum hrtimer_restart perf_cpu_hrtimer_handler(struct hrtimer *hr)
765{
766 struct perf_cpu_context *cpuctx;
767 enum hrtimer_restart ret = HRTIMER_NORESTART;
768 int rotations = 0;
769
770 WARN_ON(!irqs_disabled());
771
772 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
773
774 rotations = perf_rotate_context(cpuctx);
775
776 /*
777 * arm timer if needed
778 */
779 if (rotations) {
780 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
781 ret = HRTIMER_RESTART;
782 }
783
784 return ret;
785}
786
787/* CPU is going down */
788void perf_cpu_hrtimer_cancel(int cpu)
789{
790 struct perf_cpu_context *cpuctx;
791 struct pmu *pmu;
792 unsigned long flags;
793
794 if (WARN_ON(cpu != smp_processor_id()))
795 return;
796
797 local_irq_save(flags);
798
799 rcu_read_lock();
800
801 list_for_each_entry_rcu(pmu, &pmus, entry) {
802 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
803
804 if (pmu->task_ctx_nr == perf_sw_context)
805 continue;
806
807 hrtimer_cancel(&cpuctx->hrtimer);
808 }
809
810 rcu_read_unlock();
811
812 local_irq_restore(flags);
813}
814
815static void __perf_cpu_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
816{
817 struct hrtimer *hr = &cpuctx->hrtimer;
818 struct pmu *pmu = cpuctx->ctx.pmu;
Stephane Eranian62b85632013-04-03 14:21:34 +0200819 int timer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200820
821 /* no multiplexing needed for SW PMU */
822 if (pmu->task_ctx_nr == perf_sw_context)
823 return;
824
Stephane Eranian62b85632013-04-03 14:21:34 +0200825 /*
826 * check default is sane, if not set then force to
827 * default interval (1/tick)
828 */
829 timer = pmu->hrtimer_interval_ms;
830 if (timer < 1)
831 timer = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
832
833 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200834
835 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
836 hr->function = perf_cpu_hrtimer_handler;
837}
838
839static void perf_cpu_hrtimer_restart(struct perf_cpu_context *cpuctx)
840{
841 struct hrtimer *hr = &cpuctx->hrtimer;
842 struct pmu *pmu = cpuctx->ctx.pmu;
843
844 /* not for SW PMU */
845 if (pmu->task_ctx_nr == perf_sw_context)
846 return;
847
848 if (hrtimer_active(hr))
849 return;
850
851 if (!hrtimer_callback_running(hr))
852 __hrtimer_start_range_ns(hr, cpuctx->hrtimer_interval,
853 0, HRTIMER_MODE_REL_PINNED, 0);
854}
855
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200856void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200857{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200858 int *count = this_cpu_ptr(pmu->pmu_disable_count);
859 if (!(*count)++)
860 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200861}
862
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200863void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200864{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200865 int *count = this_cpu_ptr(pmu->pmu_disable_count);
866 if (!--(*count))
867 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200868}
869
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200870static DEFINE_PER_CPU(struct list_head, rotation_list);
871
872/*
873 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
874 * because they're strictly cpu affine and rotate_start is called with IRQs
875 * disabled, while rotate_context is called from IRQ context.
876 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200877static void perf_pmu_rotate_start(struct pmu *pmu)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200878{
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200879 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500880 struct list_head *head = this_cpu_ptr(&rotation_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200881
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200882 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200883
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +0200884 if (list_empty(&cpuctx->rotation_list))
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200885 list_add(&cpuctx->rotation_list, head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200886}
887
888static void get_ctx(struct perf_event_context *ctx)
889{
890 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
891}
892
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200893static void put_ctx(struct perf_event_context *ctx)
894{
895 if (atomic_dec_and_test(&ctx->refcount)) {
896 if (ctx->parent_ctx)
897 put_ctx(ctx->parent_ctx);
898 if (ctx->task)
899 put_task_struct(ctx->task);
Lai Jiangshancb796ff2011-03-18 12:07:41 +0800900 kfree_rcu(ctx, rcu_head);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200901 }
902}
903
904static void unclone_ctx(struct perf_event_context *ctx)
905{
906 if (ctx->parent_ctx) {
907 put_ctx(ctx->parent_ctx);
908 ctx->parent_ctx = NULL;
909 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +0200910 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200911}
912
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -0200913static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
914{
915 /*
916 * only top level events have the pid namespace they were created in
917 */
918 if (event->parent)
919 event = event->parent;
920
921 return task_tgid_nr_ns(p, event->ns);
922}
923
924static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
925{
926 /*
927 * only top level events have the pid namespace they were created in
928 */
929 if (event->parent)
930 event = event->parent;
931
932 return task_pid_nr_ns(p, event->ns);
933}
934
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200935/*
936 * If we inherit events we want to return the parent event id
937 * to userspace.
938 */
939static u64 primary_event_id(struct perf_event *event)
940{
941 u64 id = event->id;
942
943 if (event->parent)
944 id = event->parent->id;
945
946 return id;
947}
948
949/*
950 * Get the perf_event_context for a task and lock it.
951 * This has to cope with with the fact that until it is locked,
952 * the context could get moved to another task.
953 */
954static struct perf_event_context *
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200955perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200956{
957 struct perf_event_context *ctx;
958
Peter Zijlstra9ed60602010-06-11 17:36:35 +0200959retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200960 /*
961 * One of the few rules of preemptible RCU is that one cannot do
962 * rcu_read_unlock() while holding a scheduler (or nested) lock when
963 * part of the read side critical section was preemptible -- see
964 * rcu_read_unlock_special().
965 *
966 * Since ctx->lock nests under rq->lock we must ensure the entire read
967 * side critical section is non-preemptible.
968 */
969 preempt_disable();
970 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200971 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200972 if (ctx) {
973 /*
974 * If this context is a clone of another, it might
975 * get swapped for another underneath us by
976 * perf_event_task_sched_out, though the
977 * rcu_read_lock() protects us from any context
978 * getting freed. Lock the context and check if it
979 * got swapped before we could get the lock, and retry
980 * if so. If we locked the right context, then it
981 * can't get swapped on us any more.
982 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100983 raw_spin_lock_irqsave(&ctx->lock, *flags);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +0200984 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100985 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200986 rcu_read_unlock();
987 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200988 goto retry;
989 }
990
991 if (!atomic_inc_not_zero(&ctx->refcount)) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +0100992 raw_spin_unlock_irqrestore(&ctx->lock, *flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200993 ctx = NULL;
994 }
995 }
996 rcu_read_unlock();
Peter Zijlstra058ebd02013-07-12 11:08:33 +0200997 preempt_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200998 return ctx;
999}
1000
1001/*
1002 * Get the context for a task and increment its pin_count so it
1003 * can't get swapped to another task. This also increments its
1004 * reference count so that the context can't get freed.
1005 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001006static struct perf_event_context *
1007perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001008{
1009 struct perf_event_context *ctx;
1010 unsigned long flags;
1011
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02001012 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001013 if (ctx) {
1014 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001015 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001016 }
1017 return ctx;
1018}
1019
1020static void perf_unpin_context(struct perf_event_context *ctx)
1021{
1022 unsigned long flags;
1023
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001024 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001025 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001026 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001027}
1028
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001029/*
1030 * Update the record of the current time in a context.
1031 */
1032static void update_context_time(struct perf_event_context *ctx)
1033{
1034 u64 now = perf_clock();
1035
1036 ctx->time += now - ctx->timestamp;
1037 ctx->timestamp = now;
1038}
1039
Stephane Eranian41587552011-01-03 18:20:01 +02001040static u64 perf_event_time(struct perf_event *event)
1041{
1042 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001043
1044 if (is_cgroup_event(event))
1045 return perf_cgroup_event_time(event);
1046
Stephane Eranian41587552011-01-03 18:20:01 +02001047 return ctx ? ctx->time : 0;
1048}
1049
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001050/*
1051 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001052 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001053 */
1054static void update_event_times(struct perf_event *event)
1055{
1056 struct perf_event_context *ctx = event->ctx;
1057 u64 run_end;
1058
1059 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1060 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1061 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001062 /*
1063 * in cgroup mode, time_enabled represents
1064 * the time the event was enabled AND active
1065 * tasks were in the monitored cgroup. This is
1066 * independent of the activity of the context as
1067 * there may be a mix of cgroup and non-cgroup events.
1068 *
1069 * That is why we treat cgroup events differently
1070 * here.
1071 */
1072 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001073 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001074 else if (ctx->is_active)
1075 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001076 else
1077 run_end = event->tstamp_stopped;
1078
1079 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001080
1081 if (event->state == PERF_EVENT_STATE_INACTIVE)
1082 run_end = event->tstamp_stopped;
1083 else
Stephane Eranian41587552011-01-03 18:20:01 +02001084 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001085
1086 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001087
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001088}
1089
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001090/*
1091 * Update total_time_enabled and total_time_running for all events in a group.
1092 */
1093static void update_group_times(struct perf_event *leader)
1094{
1095 struct perf_event *event;
1096
1097 update_event_times(leader);
1098 list_for_each_entry(event, &leader->sibling_list, group_entry)
1099 update_event_times(event);
1100}
1101
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001102static struct list_head *
1103ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1104{
1105 if (event->attr.pinned)
1106 return &ctx->pinned_groups;
1107 else
1108 return &ctx->flexible_groups;
1109}
1110
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001111/*
1112 * Add a event from the lists for its context.
1113 * Must be called with ctx->mutex and ctx->lock held.
1114 */
1115static void
1116list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1117{
Peter Zijlstra8a495422010-05-27 15:47:49 +02001118 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1119 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001120
1121 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001122 * If we're a stand alone event or group leader, we go to the context
1123 * list, group events are kept attached to the group so that
1124 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001125 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001126 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001127 struct list_head *list;
1128
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001129 if (is_software_event(event))
1130 event->group_flags |= PERF_GROUP_SOFTWARE;
1131
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001132 list = ctx_group_list(event, ctx);
1133 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001134 }
1135
Peter Zijlstra08309372011-03-03 11:31:20 +01001136 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001137 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001138
Stephane Eraniand010b332012-02-09 23:21:00 +01001139 if (has_branch_stack(event))
1140 ctx->nr_branch_stack++;
1141
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001142 list_add_rcu(&event->event_entry, &ctx->event_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02001143 if (!ctx->nr_events)
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001144 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001145 ctx->nr_events++;
1146 if (event->attr.inherit_stat)
1147 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001148
1149 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001150}
1151
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001152/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001153 * Initialize event state based on the perf_event_attr::disabled.
1154 */
1155static inline void perf_event__state_init(struct perf_event *event)
1156{
1157 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1158 PERF_EVENT_STATE_INACTIVE;
1159}
1160
1161/*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001162 * Called at perf_event creation and when events are attached/detached from a
1163 * group.
1164 */
1165static void perf_event__read_size(struct perf_event *event)
1166{
1167 int entry = sizeof(u64); /* value */
1168 int size = 0;
1169 int nr = 1;
1170
1171 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1172 size += sizeof(u64);
1173
1174 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1175 size += sizeof(u64);
1176
1177 if (event->attr.read_format & PERF_FORMAT_ID)
1178 entry += sizeof(u64);
1179
1180 if (event->attr.read_format & PERF_FORMAT_GROUP) {
1181 nr += event->group_leader->nr_siblings;
1182 size += sizeof(u64);
1183 }
1184
1185 size += entry * nr;
1186 event->read_size = size;
1187}
1188
1189static void perf_event__header_size(struct perf_event *event)
1190{
1191 struct perf_sample_data *data;
1192 u64 sample_type = event->attr.sample_type;
1193 u16 size = 0;
1194
1195 perf_event__read_size(event);
1196
1197 if (sample_type & PERF_SAMPLE_IP)
1198 size += sizeof(data->ip);
1199
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001200 if (sample_type & PERF_SAMPLE_ADDR)
1201 size += sizeof(data->addr);
1202
1203 if (sample_type & PERF_SAMPLE_PERIOD)
1204 size += sizeof(data->period);
1205
Andi Kleenc3feedf2013-01-24 16:10:28 +01001206 if (sample_type & PERF_SAMPLE_WEIGHT)
1207 size += sizeof(data->weight);
1208
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001209 if (sample_type & PERF_SAMPLE_READ)
1210 size += event->read_size;
1211
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001212 if (sample_type & PERF_SAMPLE_DATA_SRC)
1213 size += sizeof(data->data_src.val);
1214
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001215 if (sample_type & PERF_SAMPLE_TRANSACTION)
1216 size += sizeof(data->txn);
1217
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001218 event->header_size = size;
1219}
1220
1221static void perf_event__id_header_size(struct perf_event *event)
1222{
1223 struct perf_sample_data *data;
1224 u64 sample_type = event->attr.sample_type;
1225 u16 size = 0;
1226
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001227 if (sample_type & PERF_SAMPLE_TID)
1228 size += sizeof(data->tid_entry);
1229
1230 if (sample_type & PERF_SAMPLE_TIME)
1231 size += sizeof(data->time);
1232
Adrian Hunterff3d5272013-08-27 11:23:07 +03001233 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1234 size += sizeof(data->id);
1235
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001236 if (sample_type & PERF_SAMPLE_ID)
1237 size += sizeof(data->id);
1238
1239 if (sample_type & PERF_SAMPLE_STREAM_ID)
1240 size += sizeof(data->stream_id);
1241
1242 if (sample_type & PERF_SAMPLE_CPU)
1243 size += sizeof(data->cpu_entry);
1244
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001245 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001246}
1247
Peter Zijlstra8a495422010-05-27 15:47:49 +02001248static void perf_group_attach(struct perf_event *event)
1249{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001250 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001251
Peter Zijlstra74c33372010-10-15 11:40:29 +02001252 /*
1253 * We can have double attach due to group movement in perf_event_open.
1254 */
1255 if (event->attach_state & PERF_ATTACH_GROUP)
1256 return;
1257
Peter Zijlstra8a495422010-05-27 15:47:49 +02001258 event->attach_state |= PERF_ATTACH_GROUP;
1259
1260 if (group_leader == event)
1261 return;
1262
1263 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1264 !is_software_event(event))
1265 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1266
1267 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1268 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001269
1270 perf_event__header_size(group_leader);
1271
1272 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1273 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001274}
1275
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001276/*
1277 * Remove a event from the lists for its context.
1278 * Must be called with ctx->mutex and ctx->lock held.
1279 */
1280static void
1281list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1282{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001283 struct perf_cpu_context *cpuctx;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001284 /*
1285 * We can have double detach due to exit/hot-unplug + close.
1286 */
1287 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001288 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001289
1290 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1291
Stephane Eranian68cacd22011-03-23 16:03:06 +01001292 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001293 ctx->nr_cgroups--;
Stephane Eranian68cacd22011-03-23 16:03:06 +01001294 cpuctx = __get_cpu_context(ctx);
1295 /*
1296 * if there are no more cgroup events
1297 * then cler cgrp to avoid stale pointer
1298 * in update_cgrp_time_from_cpuctx()
1299 */
1300 if (!ctx->nr_cgroups)
1301 cpuctx->cgrp = NULL;
1302 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001303
Stephane Eraniand010b332012-02-09 23:21:00 +01001304 if (has_branch_stack(event))
1305 ctx->nr_branch_stack--;
1306
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001307 ctx->nr_events--;
1308 if (event->attr.inherit_stat)
1309 ctx->nr_stat--;
1310
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001311 list_del_rcu(&event->event_entry);
1312
Peter Zijlstra8a495422010-05-27 15:47:49 +02001313 if (event->group_leader == event)
1314 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001315
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001316 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001317
1318 /*
1319 * If event was in error state, then keep it
1320 * that way, otherwise bogus counts will be
1321 * returned on read(). The only way to get out
1322 * of error state is by explicit re-enabling
1323 * of the event
1324 */
1325 if (event->state > PERF_EVENT_STATE_OFF)
1326 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001327
1328 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001329}
1330
Peter Zijlstra8a495422010-05-27 15:47:49 +02001331static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001332{
1333 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001334 struct list_head *list = NULL;
1335
1336 /*
1337 * We can have double detach due to exit/hot-unplug + close.
1338 */
1339 if (!(event->attach_state & PERF_ATTACH_GROUP))
1340 return;
1341
1342 event->attach_state &= ~PERF_ATTACH_GROUP;
1343
1344 /*
1345 * If this is a sibling, remove it from its group.
1346 */
1347 if (event->group_leader != event) {
1348 list_del_init(&event->group_entry);
1349 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001350 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001351 }
1352
1353 if (!list_empty(&event->group_entry))
1354 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001355
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001356 /*
1357 * If this was a group event with sibling events then
1358 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001359 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001360 */
1361 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001362 if (list)
1363 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001364 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001365
1366 /* Inherit group flags from the previous leader */
1367 sibling->group_flags = event->group_flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001368 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001369
1370out:
1371 perf_event__header_size(event->group_leader);
1372
1373 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1374 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001375}
1376
Stephane Eranianfa66f072010-08-26 16:40:01 +02001377static inline int
1378event_filter_match(struct perf_event *event)
1379{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001380 return (event->cpu == -1 || event->cpu == smp_processor_id())
1381 && perf_cgroup_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001382}
1383
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001384static void
1385event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001386 struct perf_cpu_context *cpuctx,
1387 struct perf_event_context *ctx)
1388{
Stephane Eranian41587552011-01-03 18:20:01 +02001389 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001390 u64 delta;
1391 /*
1392 * An event which could not be activated because of
1393 * filter mismatch still needs to have its timings
1394 * maintained, otherwise bogus information is return
1395 * via read() for time_enabled, time_running:
1396 */
1397 if (event->state == PERF_EVENT_STATE_INACTIVE
1398 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001399 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001400 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001401 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001402 }
1403
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001404 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001405 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001406
Alexander Shishkin44377272013-12-16 14:17:36 +02001407 perf_pmu_disable(event->pmu);
1408
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001409 event->state = PERF_EVENT_STATE_INACTIVE;
1410 if (event->pending_disable) {
1411 event->pending_disable = 0;
1412 event->state = PERF_EVENT_STATE_OFF;
1413 }
Stephane Eranian41587552011-01-03 18:20:01 +02001414 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001415 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001416 event->oncpu = -1;
1417
1418 if (!is_software_event(event))
1419 cpuctx->active_oncpu--;
1420 ctx->nr_active--;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001421 if (event->attr.freq && event->attr.sample_freq)
1422 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423 if (event->attr.exclusive || !cpuctx->active_oncpu)
1424 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001425
1426 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001427}
1428
1429static void
1430group_sched_out(struct perf_event *group_event,
1431 struct perf_cpu_context *cpuctx,
1432 struct perf_event_context *ctx)
1433{
1434 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001435 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001436
1437 event_sched_out(group_event, cpuctx, ctx);
1438
1439 /*
1440 * Schedule out siblings (if any):
1441 */
1442 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1443 event_sched_out(event, cpuctx, ctx);
1444
Stephane Eranianfa66f072010-08-26 16:40:01 +02001445 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001446 cpuctx->exclusive = 0;
1447}
1448
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001449struct remove_event {
1450 struct perf_event *event;
1451 bool detach_group;
1452};
1453
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001454/*
1455 * Cross CPU call to remove a performance event
1456 *
1457 * We disable the event on the hardware level first. After that we
1458 * remove it from the context list.
1459 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001460static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001461{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001462 struct remove_event *re = info;
1463 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001464 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001465 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001466
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001467 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001468 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001469 if (re->detach_group)
1470 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001471 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001472 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1473 ctx->is_active = 0;
1474 cpuctx->task_ctx = NULL;
1475 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001476 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001477
1478 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001479}
1480
1481
1482/*
1483 * Remove the event from a task's (or a CPU's) list of events.
1484 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001485 * CPU events are removed with a smp call. For task events we only
1486 * call when the task is on a CPU.
1487 *
1488 * If event->ctx is a cloned context, callers must make sure that
1489 * every task struct that event->ctx->task could possibly point to
1490 * remains valid. This is OK when called from perf_release since
1491 * that only calls us on the top-level context, which can't be a clone.
1492 * When called from perf_event_exit_task, it's OK because the
1493 * context has been detached from its task.
1494 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001495static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001496{
1497 struct perf_event_context *ctx = event->ctx;
1498 struct task_struct *task = ctx->task;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001499 struct remove_event re = {
1500 .event = event,
1501 .detach_group = detach_group,
1502 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001503
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001504 lockdep_assert_held(&ctx->mutex);
1505
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001506 if (!task) {
1507 /*
1508 * Per cpu events are removed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001509 * the removal is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001510 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001511 cpu_function_call(event->cpu, __perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001512 return;
1513 }
1514
1515retry:
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001516 if (!task_function_call(task, __perf_remove_from_context, &re))
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001517 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001518
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001519 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001520 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001521 * If we failed to find a running task, but find the context active now
1522 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001523 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001524 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001525 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001526 goto retry;
1527 }
1528
1529 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001530 * Since the task isn't running, its safe to remove the event, us
1531 * holding the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001532 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001533 if (detach_group)
1534 perf_group_detach(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001535 list_del_event(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001536 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001537}
1538
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001539/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001540 * Cross CPU call to disable a performance event
1541 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301542int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001543{
1544 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001545 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001546 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001547
1548 /*
1549 * If this is a per-task event, need to check whether this
1550 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001551 *
1552 * Can trigger due to concurrent perf_event_context_sched_out()
1553 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001554 */
1555 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001556 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001557
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001558 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001559
1560 /*
1561 * If the event is on, turn it off.
1562 * If it is in error state, leave it in error state.
1563 */
1564 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1565 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001566 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001567 update_group_times(event);
1568 if (event == event->group_leader)
1569 group_sched_out(event, cpuctx, ctx);
1570 else
1571 event_sched_out(event, cpuctx, ctx);
1572 event->state = PERF_EVENT_STATE_OFF;
1573 }
1574
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001575 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001576
1577 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001578}
1579
1580/*
1581 * Disable a event.
1582 *
1583 * If event->ctx is a cloned context, callers must make sure that
1584 * every task struct that event->ctx->task could possibly point to
1585 * remains valid. This condition is satisifed when called through
1586 * perf_event_for_each_child or perf_event_for_each because they
1587 * hold the top-level event's child_mutex, so any descendant that
1588 * goes to exit will block in sync_child_event.
1589 * When called from perf_pending_event it's OK because event->ctx
1590 * is the current context on this CPU and preemption is disabled,
1591 * hence we can't get into perf_event_task_sched_out for this context.
1592 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01001593void perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001594{
1595 struct perf_event_context *ctx = event->ctx;
1596 struct task_struct *task = ctx->task;
1597
1598 if (!task) {
1599 /*
1600 * Disable the event on the cpu that it's on
1601 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001602 cpu_function_call(event->cpu, __perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001603 return;
1604 }
1605
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001606retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001607 if (!task_function_call(task, __perf_event_disable, event))
1608 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001609
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001610 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001611 /*
1612 * If the event is still active, we need to retry the cross-call.
1613 */
1614 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001615 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001616 /*
1617 * Reload the task pointer, it might have been changed by
1618 * a concurrent perf_event_context_sched_out().
1619 */
1620 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001621 goto retry;
1622 }
1623
1624 /*
1625 * Since we have the lock this context can't be scheduled
1626 * in, so we can change the state safely.
1627 */
1628 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1629 update_group_times(event);
1630 event->state = PERF_EVENT_STATE_OFF;
1631 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001632 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001633}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001634EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001635
Stephane Eraniane5d13672011-02-14 11:20:01 +02001636static void perf_set_shadow_time(struct perf_event *event,
1637 struct perf_event_context *ctx,
1638 u64 tstamp)
1639{
1640 /*
1641 * use the correct time source for the time snapshot
1642 *
1643 * We could get by without this by leveraging the
1644 * fact that to get to this function, the caller
1645 * has most likely already called update_context_time()
1646 * and update_cgrp_time_xx() and thus both timestamp
1647 * are identical (or very close). Given that tstamp is,
1648 * already adjusted for cgroup, we could say that:
1649 * tstamp - ctx->timestamp
1650 * is equivalent to
1651 * tstamp - cgrp->timestamp.
1652 *
1653 * Then, in perf_output_read(), the calculation would
1654 * work with no changes because:
1655 * - event is guaranteed scheduled in
1656 * - no scheduled out in between
1657 * - thus the timestamp would be the same
1658 *
1659 * But this is a bit hairy.
1660 *
1661 * So instead, we have an explicit cgroup call to remain
1662 * within the time time source all along. We believe it
1663 * is cleaner and simpler to understand.
1664 */
1665 if (is_cgroup_event(event))
1666 perf_cgroup_set_shadow_time(event, tstamp);
1667 else
1668 event->shadow_ctx_time = tstamp - ctx->timestamp;
1669}
1670
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001671#define MAX_INTERRUPTS (~0ULL)
1672
1673static void perf_log_throttle(struct perf_event *event, int enable);
1674
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001675static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001676event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001677 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001678 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001679{
Stephane Eranian41587552011-01-03 18:20:01 +02001680 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001681 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001682
Peter Zijlstra63342412014-05-05 11:49:16 +02001683 lockdep_assert_held(&ctx->lock);
1684
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001685 if (event->state <= PERF_EVENT_STATE_OFF)
1686 return 0;
1687
1688 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001689 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001690
1691 /*
1692 * Unthrottle events, since we scheduled we might have missed several
1693 * ticks already, also for a heavily scheduling task there is little
1694 * guarantee it'll get a tick in a timely manner.
1695 */
1696 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1697 perf_log_throttle(event, 1);
1698 event->hw.interrupts = 0;
1699 }
1700
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001701 /*
1702 * The new state must be visible before we turn it on in the hardware:
1703 */
1704 smp_wmb();
1705
Alexander Shishkin44377272013-12-16 14:17:36 +02001706 perf_pmu_disable(event->pmu);
1707
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001708 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001709 event->state = PERF_EVENT_STATE_INACTIVE;
1710 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001711 ret = -EAGAIN;
1712 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001713 }
1714
Stephane Eranian41587552011-01-03 18:20:01 +02001715 event->tstamp_running += tstamp - event->tstamp_stopped;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001716
Stephane Eraniane5d13672011-02-14 11:20:01 +02001717 perf_set_shadow_time(event, ctx, tstamp);
Stephane Eranianeed01522010-10-26 16:08:01 +02001718
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001719 if (!is_software_event(event))
1720 cpuctx->active_oncpu++;
1721 ctx->nr_active++;
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001722 if (event->attr.freq && event->attr.sample_freq)
1723 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001724
1725 if (event->attr.exclusive)
1726 cpuctx->exclusive = 1;
1727
Alexander Shishkin44377272013-12-16 14:17:36 +02001728out:
1729 perf_pmu_enable(event->pmu);
1730
1731 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001732}
1733
1734static int
1735group_sched_in(struct perf_event *group_event,
1736 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001737 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001738{
Lin Ming6bde9b62010-04-23 13:56:00 +08001739 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001740 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001741 u64 now = ctx->time;
1742 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743
1744 if (group_event->state == PERF_EVENT_STATE_OFF)
1745 return 0;
1746
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001747 pmu->start_txn(pmu);
Lin Ming6bde9b62010-04-23 13:56:00 +08001748
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001749 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001750 pmu->cancel_txn(pmu);
Stephane Eranian9e630202013-04-03 14:21:33 +02001751 perf_cpu_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001752 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001753 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001754
1755 /*
1756 * Schedule in siblings as one group (if any):
1757 */
1758 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001759 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001760 partial_group = event;
1761 goto group_error;
1762 }
1763 }
1764
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001765 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001766 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001767
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001768group_error:
1769 /*
1770 * Groups can be scheduled in as one unit only, so undo any
1771 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001772 * The events up to the failed event are scheduled out normally,
1773 * tstamp_stopped will be updated.
1774 *
1775 * The failed events and the remaining siblings need to have
1776 * their timings updated as if they had gone thru event_sched_in()
1777 * and event_sched_out(). This is required to get consistent timings
1778 * across the group. This also takes care of the case where the group
1779 * could never be scheduled by ensuring tstamp_stopped is set to mark
1780 * the time the event was actually stopped, such that time delta
1781 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001782 */
1783 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1784 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001785 simulate = true;
1786
1787 if (simulate) {
1788 event->tstamp_running += now - event->tstamp_stopped;
1789 event->tstamp_stopped = now;
1790 } else {
1791 event_sched_out(event, cpuctx, ctx);
1792 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001793 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001794 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001795
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001796 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001797
Stephane Eranian9e630202013-04-03 14:21:33 +02001798 perf_cpu_hrtimer_restart(cpuctx);
1799
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001800 return -EAGAIN;
1801}
1802
1803/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001804 * Work out whether we can put this event group on the CPU now.
1805 */
1806static int group_can_go_on(struct perf_event *event,
1807 struct perf_cpu_context *cpuctx,
1808 int can_add_hw)
1809{
1810 /*
1811 * Groups consisting entirely of software events can always go on.
1812 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001813 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001814 return 1;
1815 /*
1816 * If an exclusive group is already on, no other hardware
1817 * events can go on.
1818 */
1819 if (cpuctx->exclusive)
1820 return 0;
1821 /*
1822 * If this group is exclusive and there are already
1823 * events on the CPU, it can't go on.
1824 */
1825 if (event->attr.exclusive && cpuctx->active_oncpu)
1826 return 0;
1827 /*
1828 * Otherwise, try to add it if all previous groups were able
1829 * to go on.
1830 */
1831 return can_add_hw;
1832}
1833
1834static void add_event_to_ctx(struct perf_event *event,
1835 struct perf_event_context *ctx)
1836{
Stephane Eranian41587552011-01-03 18:20:01 +02001837 u64 tstamp = perf_event_time(event);
1838
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001839 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001840 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02001841 event->tstamp_enabled = tstamp;
1842 event->tstamp_running = tstamp;
1843 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001844}
1845
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001846static void task_ctx_sched_out(struct perf_event_context *ctx);
1847static void
1848ctx_sched_in(struct perf_event_context *ctx,
1849 struct perf_cpu_context *cpuctx,
1850 enum event_type_t event_type,
1851 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001852
Peter Zijlstradce58552011-04-09 21:17:46 +02001853static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
1854 struct perf_event_context *ctx,
1855 struct task_struct *task)
1856{
1857 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
1858 if (ctx)
1859 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
1860 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
1861 if (ctx)
1862 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
1863}
1864
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001865/*
1866 * Cross CPU call to install and enable a performance event
1867 *
1868 * Must be called with ctx->mutex held
1869 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001870static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001871{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 struct perf_event *event = info;
1873 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001874 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001875 struct perf_event_context *task_ctx = cpuctx->task_ctx;
1876 struct task_struct *task = current;
1877
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001878 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001879 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001880
1881 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001882 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001883 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001884 if (task_ctx)
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001885 task_ctx_sched_out(task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001886
1887 /*
1888 * If the context we're installing events in is not the
1889 * active task_ctx, flip them.
1890 */
1891 if (ctx->task && task_ctx != ctx) {
1892 if (task_ctx)
1893 raw_spin_unlock(&task_ctx->lock);
1894 raw_spin_lock(&ctx->lock);
1895 task_ctx = ctx;
1896 }
1897
1898 if (task_ctx) {
1899 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001900 task = task_ctx->task;
1901 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02001902
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001903 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001904
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001905 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001906 /*
1907 * update cgrp time only if current cgrp
1908 * matches event->cgrp. Must be done before
1909 * calling add_event_to_ctx()
1910 */
1911 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001912
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001913 add_event_to_ctx(event, ctx);
1914
1915 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001916 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001917 */
Peter Zijlstradce58552011-04-09 21:17:46 +02001918 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001919
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02001920 perf_pmu_enable(cpuctx->ctx.pmu);
1921 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001922
1923 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001924}
1925
1926/*
1927 * Attach a performance event to a context
1928 *
1929 * First we add the event to the list with the hardware enable bit
1930 * in event->hw_config cleared.
1931 *
1932 * If the event is attached to a task which is on a CPU we use a smp
1933 * call to enable it in the task context. The task might have been
1934 * scheduled away, but we check this in the smp call again.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001935 */
1936static void
1937perf_install_in_context(struct perf_event_context *ctx,
1938 struct perf_event *event,
1939 int cpu)
1940{
1941 struct task_struct *task = ctx->task;
1942
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001943 lockdep_assert_held(&ctx->mutex);
1944
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001945 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08001946 if (event->cpu != -1)
1947 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02001948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001949 if (!task) {
1950 /*
1951 * Per cpu events are installed via an smp call and
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001952 * the install is always successful.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001953 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001954 cpu_function_call(cpu, __perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001955 return;
1956 }
1957
1958retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001959 if (!task_function_call(task, __perf_install_in_context, event))
1960 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001961
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001962 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001963 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001964 * If we failed to find a running task, but find the context active now
1965 * that we've acquired the ctx->lock, retry.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001966 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001967 if (ctx->is_active) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001968 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001969 goto retry;
1970 }
1971
1972 /*
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001973 * Since the task isn't running, its safe to add the event, us holding
1974 * the ctx->lock ensures the task won't get scheduled in.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001975 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001976 add_event_to_ctx(event, ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001977 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001978}
1979
1980/*
1981 * Put a event into inactive state and update time fields.
1982 * Enabling the leader of a group effectively enables all
1983 * the group members that aren't explicitly disabled, so we
1984 * have to update their ->tstamp_enabled also.
1985 * Note: this works for group members as well as group leaders
1986 * since the non-leader members' sibling_lists will be empty.
1987 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01001988static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001989{
1990 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02001991 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001992
1993 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02001994 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001995 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02001996 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
1997 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001998 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001999}
2000
2001/*
2002 * Cross CPU call to enable a performance event
2003 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002004static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002005{
2006 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007 struct perf_event_context *ctx = event->ctx;
2008 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002009 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002010 int err;
2011
Jiri Olsa06f41792013-07-09 17:44:11 +02002012 /*
2013 * There's a time window between 'ctx->is_active' check
2014 * in perf_event_enable function and this place having:
2015 * - IRQs on
2016 * - ctx->lock unlocked
2017 *
2018 * where the task could be killed and 'ctx' deactivated
2019 * by perf_event_exit_task.
2020 */
2021 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002022 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002023
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002024 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002025 update_context_time(ctx);
2026
2027 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2028 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002029
2030 /*
2031 * set current task's cgroup time reference point
2032 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002033 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002034
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002035 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002036
Stephane Eraniane5d13672011-02-14 11:20:01 +02002037 if (!event_filter_match(event)) {
2038 if (is_cgroup_event(event))
2039 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002040 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002041 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002042
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002043 /*
2044 * If the event is in a group and isn't the group leader,
2045 * then don't put it on unless the group is on.
2046 */
2047 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2048 goto unlock;
2049
2050 if (!group_can_go_on(event, cpuctx, 1)) {
2051 err = -EEXIST;
2052 } else {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002053 if (event == leader)
Peter Zijlstra6e377382010-02-11 13:21:58 +01002054 err = group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002055 else
Peter Zijlstra6e377382010-02-11 13:21:58 +01002056 err = event_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002057 }
2058
2059 if (err) {
2060 /*
2061 * If this event can't go on and it's part of a
2062 * group, then the whole group has to come off.
2063 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002064 if (leader != event) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002065 group_sched_out(leader, cpuctx, ctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02002066 perf_cpu_hrtimer_restart(cpuctx);
2067 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002068 if (leader->attr.pinned) {
2069 update_group_times(leader);
2070 leader->state = PERF_EVENT_STATE_ERROR;
2071 }
2072 }
2073
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002074unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002075 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002076
2077 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002078}
2079
2080/*
2081 * Enable a event.
2082 *
2083 * If event->ctx is a cloned context, callers must make sure that
2084 * every task struct that event->ctx->task could possibly point to
2085 * remains valid. This condition is satisfied when called through
2086 * perf_event_for_each_child or perf_event_for_each as described
2087 * for perf_event_disable.
2088 */
Frederic Weisbecker44234ad2009-12-09 09:25:48 +01002089void perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002090{
2091 struct perf_event_context *ctx = event->ctx;
2092 struct task_struct *task = ctx->task;
2093
2094 if (!task) {
2095 /*
2096 * Enable the event on the cpu that it's on
2097 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002098 cpu_function_call(event->cpu, __perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002099 return;
2100 }
2101
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002102 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002103 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2104 goto out;
2105
2106 /*
2107 * If the event is in error state, clear that first.
2108 * That way, if we see the event in error state below, we
2109 * know that it has gone back into error state, as distinct
2110 * from the task having been scheduled away before the
2111 * cross-call arrived.
2112 */
2113 if (event->state == PERF_EVENT_STATE_ERROR)
2114 event->state = PERF_EVENT_STATE_OFF;
2115
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002116retry:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002117 if (!ctx->is_active) {
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002118 __perf_event_mark_enabled(event);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002119 goto out;
2120 }
2121
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002122 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002123
2124 if (!task_function_call(task, __perf_event_enable, event))
2125 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002126
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002127 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002128
2129 /*
2130 * If the context is active and the event is still off,
2131 * we need to retry the cross-call.
2132 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002133 if (ctx->is_active && event->state == PERF_EVENT_STATE_OFF) {
2134 /*
2135 * task could have been flipped by a concurrent
2136 * perf_event_context_sched_out()
2137 */
2138 task = ctx->task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002139 goto retry;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002140 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002142out:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002143 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002144}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002145EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002146
Avi Kivity26ca5c12011-06-29 18:42:37 +03002147int perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002148{
2149 /*
2150 * not supported on inherited events
2151 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002152 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002153 return -EINVAL;
2154
2155 atomic_add(refresh, &event->event_limit);
2156 perf_event_enable(event);
2157
2158 return 0;
2159}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002160EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002161
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002162static void ctx_sched_out(struct perf_event_context *ctx,
2163 struct perf_cpu_context *cpuctx,
2164 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002165{
2166 struct perf_event *event;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002167 int is_active = ctx->is_active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002168
Peter Zijlstradb24d332011-04-09 21:17:45 +02002169 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002170 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002171 return;
2172
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002174 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002175 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002176 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002177
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002178 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002179 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002180 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2181 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002182 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002183
Peter Zijlstradb24d332011-04-09 21:17:45 +02002184 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002185 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002186 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002187 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002188 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002189}
2190
2191/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002192 * Test whether two contexts are equivalent, i.e. whether they have both been
2193 * cloned from the same version of the same context.
2194 *
2195 * Equivalence is measured using a generation number in the context that is
2196 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2197 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002198 */
2199static int context_equiv(struct perf_event_context *ctx1,
2200 struct perf_event_context *ctx2)
2201{
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002202 /* Pinning disables the swap optimization */
2203 if (ctx1->pin_count || ctx2->pin_count)
2204 return 0;
2205
2206 /* If ctx1 is the parent of ctx2 */
2207 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2208 return 1;
2209
2210 /* If ctx2 is the parent of ctx1 */
2211 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2212 return 1;
2213
2214 /*
2215 * If ctx1 and ctx2 have the same parent; we flatten the parent
2216 * hierarchy, see perf_event_init_context().
2217 */
2218 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2219 ctx1->parent_gen == ctx2->parent_gen)
2220 return 1;
2221
2222 /* Unmatched */
2223 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002224}
2225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002226static void __perf_event_sync_stat(struct perf_event *event,
2227 struct perf_event *next_event)
2228{
2229 u64 value;
2230
2231 if (!event->attr.inherit_stat)
2232 return;
2233
2234 /*
2235 * Update the event value, we cannot use perf_event_read()
2236 * because we're in the middle of a context switch and have IRQs
2237 * disabled, which upsets smp_call_function_single(), however
2238 * we know the event must be on the current CPU, therefore we
2239 * don't need to use it.
2240 */
2241 switch (event->state) {
2242 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002243 event->pmu->read(event);
2244 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002245
2246 case PERF_EVENT_STATE_INACTIVE:
2247 update_event_times(event);
2248 break;
2249
2250 default:
2251 break;
2252 }
2253
2254 /*
2255 * In order to keep per-task stats reliable we need to flip the event
2256 * values when we flip the contexts.
2257 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002258 value = local64_read(&next_event->count);
2259 value = local64_xchg(&event->count, value);
2260 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002261
2262 swap(event->total_time_enabled, next_event->total_time_enabled);
2263 swap(event->total_time_running, next_event->total_time_running);
2264
2265 /*
2266 * Since we swizzled the values, update the user visible data too.
2267 */
2268 perf_event_update_userpage(event);
2269 perf_event_update_userpage(next_event);
2270}
2271
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002272static void perf_event_sync_stat(struct perf_event_context *ctx,
2273 struct perf_event_context *next_ctx)
2274{
2275 struct perf_event *event, *next_event;
2276
2277 if (!ctx->nr_stat)
2278 return;
2279
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002280 update_context_time(ctx);
2281
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002282 event = list_first_entry(&ctx->event_list,
2283 struct perf_event, event_entry);
2284
2285 next_event = list_first_entry(&next_ctx->event_list,
2286 struct perf_event, event_entry);
2287
2288 while (&event->event_entry != &ctx->event_list &&
2289 &next_event->event_entry != &next_ctx->event_list) {
2290
2291 __perf_event_sync_stat(event, next_event);
2292
2293 event = list_next_entry(event, event_entry);
2294 next_event = list_next_entry(next_event, event_entry);
2295 }
2296}
2297
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002298static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2299 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002300{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002301 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002302 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002303 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002304 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002305 int do_switch = 1;
2306
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002307 if (likely(!ctx))
2308 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002309
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002310 cpuctx = __get_cpu_context(ctx);
2311 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002312 return;
2313
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002314 rcu_read_lock();
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002315 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002316 if (!next_ctx)
2317 goto unlock;
2318
2319 parent = rcu_dereference(ctx->parent_ctx);
2320 next_parent = rcu_dereference(next_ctx->parent_ctx);
2321
2322 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa1f9a7262014-06-24 10:20:25 +02002323 if (!parent || !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002324 goto unlock;
2325
2326 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002327 /*
2328 * Looks like the two contexts are clones, so we might be
2329 * able to optimize the context switch. We lock both
2330 * contexts and check that they are clones under the
2331 * lock (including re-checking that neither has been
2332 * uncloned in the meantime). It doesn't matter which
2333 * order we take the locks because no other cpu could
2334 * be trying to lock both of these tasks.
2335 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002336 raw_spin_lock(&ctx->lock);
2337 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002338 if (context_equiv(ctx, next_ctx)) {
2339 /*
2340 * XXX do we need a memory barrier of sorts
2341 * wrt to rcu_dereference() of perf_event_ctxp
2342 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002343 task->perf_event_ctxp[ctxn] = next_ctx;
2344 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002345 ctx->task = next;
2346 next_ctx->task = task;
2347 do_switch = 0;
2348
2349 perf_event_sync_stat(ctx, next_ctx);
2350 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002351 raw_spin_unlock(&next_ctx->lock);
2352 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002353 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002354unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002355 rcu_read_unlock();
2356
2357 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002358 raw_spin_lock(&ctx->lock);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002359 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360 cpuctx->task_ctx = NULL;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002361 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002362 }
2363}
2364
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002365#define for_each_task_context_nr(ctxn) \
2366 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2367
2368/*
2369 * Called from scheduler to remove the events of the current task,
2370 * with interrupts disabled.
2371 *
2372 * We stop each event and update the event value in event->count.
2373 *
2374 * This does not protect us against NMI, but disable()
2375 * sets the disabled bit in the control field of event _before_
2376 * accessing the event control register. If a NMI hits, then it will
2377 * not restart the event.
2378 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002379void __perf_event_task_sched_out(struct task_struct *task,
2380 struct task_struct *next)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002381{
2382 int ctxn;
2383
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002384 for_each_task_context_nr(ctxn)
2385 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002386
2387 /*
2388 * if cgroup events exist on this CPU, then we need
2389 * to check if we have to switch out PMU state.
2390 * cgroup event are system-wide mode only
2391 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002392 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002393 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002394}
2395
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002396static void task_ctx_sched_out(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002397{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002398 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002399
2400 if (!cpuctx->task_ctx)
2401 return;
2402
2403 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2404 return;
2405
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002406 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002407 cpuctx->task_ctx = NULL;
2408}
2409
2410/*
2411 * Called with IRQs disabled
2412 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002413static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2414 enum event_type_t event_type)
2415{
2416 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002417}
2418
2419static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002420ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002421 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002422{
2423 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002424
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002425 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2426 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002427 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002428 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002429 continue;
2430
Stephane Eraniane5d13672011-02-14 11:20:01 +02002431 /* may need to reset tstamp_enabled */
2432 if (is_cgroup_event(event))
2433 perf_cgroup_mark_enabled(event, ctx);
2434
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002435 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002436 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002437
2438 /*
2439 * If this pinned group hasn't been scheduled,
2440 * put it in error state.
2441 */
2442 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2443 update_group_times(event);
2444 event->state = PERF_EVENT_STATE_ERROR;
2445 }
2446 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002447}
2448
2449static void
2450ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002451 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002452{
2453 struct perf_event *event;
2454 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002455
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002456 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2457 /* Ignore events in OFF or ERROR state */
2458 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002459 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002460 /*
2461 * Listen to the 'cpu' scheduling filter constraint
2462 * of events:
2463 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002464 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002465 continue;
2466
Stephane Eraniane5d13672011-02-14 11:20:01 +02002467 /* may need to reset tstamp_enabled */
2468 if (is_cgroup_event(event))
2469 perf_cgroup_mark_enabled(event, ctx);
2470
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002471 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002472 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002473 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002474 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002475 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002476}
2477
2478static void
2479ctx_sched_in(struct perf_event_context *ctx,
2480 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002481 enum event_type_t event_type,
2482 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002483{
Stephane Eraniane5d13672011-02-14 11:20:01 +02002484 u64 now;
Peter Zijlstradb24d332011-04-09 21:17:45 +02002485 int is_active = ctx->is_active;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002486
Peter Zijlstradb24d332011-04-09 21:17:45 +02002487 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002488 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002489 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002490
Stephane Eraniane5d13672011-02-14 11:20:01 +02002491 now = perf_clock();
2492 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002493 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002494 /*
2495 * First go through the list and put on any pinned groups
2496 * in order to give them the best chance of going on.
2497 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002498 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002499 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002500
2501 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002502 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002503 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002504}
2505
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002506static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002507 enum event_type_t event_type,
2508 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002509{
2510 struct perf_event_context *ctx = &cpuctx->ctx;
2511
Stephane Eraniane5d13672011-02-14 11:20:01 +02002512 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002513}
2514
Stephane Eraniane5d13672011-02-14 11:20:01 +02002515static void perf_event_context_sched_in(struct perf_event_context *ctx,
2516 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002517{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002518 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002519
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002520 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002521 if (cpuctx->task_ctx == ctx)
2522 return;
2523
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002524 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002525 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002526 /*
2527 * We want to keep the following priority order:
2528 * cpu pinned (that don't need to move), task pinned,
2529 * cpu flexible, task flexible.
2530 */
2531 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2532
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002533 if (ctx->nr_events)
2534 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002535
Gleb Natapov86b47c22011-11-22 16:08:21 +02002536 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2537
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002538 perf_pmu_enable(ctx->pmu);
2539 perf_ctx_unlock(cpuctx, ctx);
2540
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002541 /*
2542 * Since these rotations are per-cpu, we need to ensure the
2543 * cpu-context we got scheduled on is actually rotating.
2544 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002545 perf_pmu_rotate_start(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002546}
2547
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002548/*
Stephane Eraniand010b332012-02-09 23:21:00 +01002549 * When sampling the branck stack in system-wide, it may be necessary
2550 * to flush the stack on context switch. This happens when the branch
2551 * stack does not tag its entries with the pid of the current task.
2552 * Otherwise it becomes impossible to associate a branch entry with a
2553 * task. This ambiguity is more likely to appear when the branch stack
2554 * supports priv level filtering and the user sets it to monitor only
2555 * at the user level (which could be a useful measurement in system-wide
2556 * mode). In that case, the risk is high of having a branch stack with
2557 * branch from multiple tasks. Flushing may mean dropping the existing
2558 * entries or stashing them somewhere in the PMU specific code layer.
2559 *
2560 * This function provides the context switch callback to the lower code
2561 * layer. It is invoked ONLY when there is at least one system-wide context
2562 * with at least one active event using taken branch sampling.
2563 */
2564static void perf_branch_stack_sched_in(struct task_struct *prev,
2565 struct task_struct *task)
2566{
2567 struct perf_cpu_context *cpuctx;
2568 struct pmu *pmu;
2569 unsigned long flags;
2570
2571 /* no need to flush branch stack if not changing task */
2572 if (prev == task)
2573 return;
2574
2575 local_irq_save(flags);
2576
2577 rcu_read_lock();
2578
2579 list_for_each_entry_rcu(pmu, &pmus, entry) {
2580 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2581
2582 /*
2583 * check if the context has at least one
2584 * event using PERF_SAMPLE_BRANCH_STACK
2585 */
2586 if (cpuctx->ctx.nr_branch_stack > 0
2587 && pmu->flush_branch_stack) {
2588
Stephane Eraniand010b332012-02-09 23:21:00 +01002589 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2590
2591 perf_pmu_disable(pmu);
2592
2593 pmu->flush_branch_stack();
2594
2595 perf_pmu_enable(pmu);
2596
2597 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2598 }
2599 }
2600
2601 rcu_read_unlock();
2602
2603 local_irq_restore(flags);
2604}
2605
2606/*
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002607 * Called from scheduler to add the events of the current task
2608 * with interrupts disabled.
2609 *
2610 * We restore the event value and then enable it.
2611 *
2612 * This does not protect us against NMI, but enable()
2613 * sets the enabled bit in the control field of event _before_
2614 * accessing the event control register. If a NMI hits, then it will
2615 * keep the event running.
2616 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002617void __perf_event_task_sched_in(struct task_struct *prev,
2618 struct task_struct *task)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002619{
2620 struct perf_event_context *ctx;
2621 int ctxn;
2622
2623 for_each_task_context_nr(ctxn) {
2624 ctx = task->perf_event_ctxp[ctxn];
2625 if (likely(!ctx))
2626 continue;
2627
Stephane Eraniane5d13672011-02-14 11:20:01 +02002628 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002629 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02002630 /*
2631 * if cgroup events exist on this CPU, then we need
2632 * to check if we have to switch in PMU state.
2633 * cgroup event are system-wide mode only
2634 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002635 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002636 perf_cgroup_sched_in(prev, task);
Stephane Eraniand010b332012-02-09 23:21:00 +01002637
2638 /* check for system-wide branch_stack events */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002639 if (atomic_read(this_cpu_ptr(&perf_branch_stack_events)))
Stephane Eraniand010b332012-02-09 23:21:00 +01002640 perf_branch_stack_sched_in(prev, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002641}
2642
Peter Zijlstraabd50712010-01-26 18:50:16 +01002643static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2644{
2645 u64 frequency = event->attr.sample_freq;
2646 u64 sec = NSEC_PER_SEC;
2647 u64 divisor, dividend;
2648
2649 int count_fls, nsec_fls, frequency_fls, sec_fls;
2650
2651 count_fls = fls64(count);
2652 nsec_fls = fls64(nsec);
2653 frequency_fls = fls64(frequency);
2654 sec_fls = 30;
2655
2656 /*
2657 * We got @count in @nsec, with a target of sample_freq HZ
2658 * the target period becomes:
2659 *
2660 * @count * 10^9
2661 * period = -------------------
2662 * @nsec * sample_freq
2663 *
2664 */
2665
2666 /*
2667 * Reduce accuracy by one bit such that @a and @b converge
2668 * to a similar magnitude.
2669 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002670#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002671do { \
2672 if (a##_fls > b##_fls) { \
2673 a >>= 1; \
2674 a##_fls--; \
2675 } else { \
2676 b >>= 1; \
2677 b##_fls--; \
2678 } \
2679} while (0)
2680
2681 /*
2682 * Reduce accuracy until either term fits in a u64, then proceed with
2683 * the other, so that finally we can do a u64/u64 division.
2684 */
2685 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2686 REDUCE_FLS(nsec, frequency);
2687 REDUCE_FLS(sec, count);
2688 }
2689
2690 if (count_fls + sec_fls > 64) {
2691 divisor = nsec * frequency;
2692
2693 while (count_fls + sec_fls > 64) {
2694 REDUCE_FLS(count, sec);
2695 divisor >>= 1;
2696 }
2697
2698 dividend = count * sec;
2699 } else {
2700 dividend = count * sec;
2701
2702 while (nsec_fls + frequency_fls > 64) {
2703 REDUCE_FLS(nsec, frequency);
2704 dividend >>= 1;
2705 }
2706
2707 divisor = nsec * frequency;
2708 }
2709
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002710 if (!divisor)
2711 return dividend;
2712
Peter Zijlstraabd50712010-01-26 18:50:16 +01002713 return div64_u64(dividend, divisor);
2714}
2715
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002716static DEFINE_PER_CPU(int, perf_throttled_count);
2717static DEFINE_PER_CPU(u64, perf_throttled_seq);
2718
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002719static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002720{
2721 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91a2010-06-04 15:18:01 +02002722 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002723 s64 delta;
2724
Peter Zijlstraabd50712010-01-26 18:50:16 +01002725 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002726
2727 delta = (s64)(period - hwc->sample_period);
2728 delta = (delta + 7) / 8; /* low pass filter */
2729
2730 sample_period = hwc->sample_period + delta;
2731
2732 if (!sample_period)
2733 sample_period = 1;
2734
2735 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002736
Peter Zijlstrae7850592010-05-21 14:43:08 +02002737 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002738 if (disable)
2739 event->pmu->stop(event, PERF_EF_UPDATE);
2740
Peter Zijlstrae7850592010-05-21 14:43:08 +02002741 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002742
2743 if (disable)
2744 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002745 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002746}
2747
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002748/*
2749 * combine freq adjustment with unthrottling to avoid two passes over the
2750 * events. At the same time, make sure, having freq events does not change
2751 * the rate of unthrottling as that would introduce bias.
2752 */
2753static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2754 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002755{
2756 struct perf_event *event;
2757 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002758 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002759 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002760
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002761 /*
2762 * only need to iterate over all events iff:
2763 * - context have events in frequency mode (needs freq adjust)
2764 * - there are events to unthrottle on this cpu
2765 */
2766 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002767 return;
2768
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002769 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002770 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002771
Paul Mackerras03541f82009-10-14 16:58:03 +11002772 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002773 if (event->state != PERF_EVENT_STATE_ACTIVE)
2774 continue;
2775
Stephane Eranian5632ab12011-01-03 18:20:01 +02002776 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002777 continue;
2778
Alexander Shishkin44377272013-12-16 14:17:36 +02002779 perf_pmu_disable(event->pmu);
2780
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002781 hwc = &event->hw;
2782
Jiri Olsaae23bff2013-08-24 16:45:54 +02002783 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002784 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002785 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002786 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002787 }
2788
2789 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002790 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002791
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002792 /*
2793 * stop the event and update event->count
2794 */
2795 event->pmu->stop(event, PERF_EF_UPDATE);
2796
Peter Zijlstrae7850592010-05-21 14:43:08 +02002797 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002798 delta = now - hwc->freq_count_stamp;
2799 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002800
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002801 /*
2802 * restart the event
2803 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002804 * we have stopped the event so tell that
2805 * to perf_adjust_period() to avoid stopping it
2806 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002807 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002808 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002809 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002810
2811 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02002812 next:
2813 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002814 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002815
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002816 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002817 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002818}
2819
2820/*
2821 * Round-robin a context's events:
2822 */
2823static void rotate_ctx(struct perf_event_context *ctx)
2824{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002825 /*
2826 * Rotate the first entry last of non-pinned groups. Rotation might be
2827 * disabled by the inheritance code.
2828 */
2829 if (!ctx->rotate_disable)
2830 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002831}
2832
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002833/*
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002834 * perf_pmu_rotate_start() and perf_rotate_context() are fully serialized
2835 * because they're strictly cpu affine and rotate_start is called with IRQs
2836 * disabled, while rotate_context is called from IRQ context.
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002837 */
Stephane Eranian9e630202013-04-03 14:21:33 +02002838static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002839{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002840 struct perf_event_context *ctx = NULL;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002841 int rotate = 0, remove = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002842
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002843 if (cpuctx->ctx.nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002844 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002845 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
2846 rotate = 1;
2847 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002848
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002849 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002850 if (ctx && ctx->nr_events) {
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002851 remove = 0;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002852 if (ctx->nr_events != ctx->nr_active)
2853 rotate = 1;
2854 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002855
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002856 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002857 goto done;
2858
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002859 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002860 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002861
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002862 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2863 if (ctx)
2864 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01002865
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002866 rotate_ctx(&cpuctx->ctx);
2867 if (ctx)
2868 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002869
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002870 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002871
2872 perf_pmu_enable(cpuctx->ctx.pmu);
2873 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02002874done:
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002875 if (remove)
2876 list_del_init(&cpuctx->rotation_list);
Stephane Eranian9e630202013-04-03 14:21:33 +02002877
2878 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002879}
2880
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002881#ifdef CONFIG_NO_HZ_FULL
2882bool perf_event_can_stop_tick(void)
2883{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02002884 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002885 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002886 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02002887 else
2888 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02002889}
2890#endif
2891
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002892void perf_event_task_tick(void)
2893{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002894 struct list_head *head = this_cpu_ptr(&rotation_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002895 struct perf_cpu_context *cpuctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002896 struct perf_event_context *ctx;
2897 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002898
2899 WARN_ON(!irqs_disabled());
2900
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002901 __this_cpu_inc(perf_throttled_seq);
2902 throttled = __this_cpu_xchg(perf_throttled_count, 0);
2903
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002904 list_for_each_entry_safe(cpuctx, tmp, head, rotation_list) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002905 ctx = &cpuctx->ctx;
2906 perf_adjust_freq_unthr_context(ctx, throttled);
2907
2908 ctx = cpuctx->task_ctx;
2909 if (ctx)
2910 perf_adjust_freq_unthr_context(ctx, throttled);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02002911 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002912}
2913
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002914static int event_enable_on_exec(struct perf_event *event,
2915 struct perf_event_context *ctx)
2916{
2917 if (!event->attr.enable_on_exec)
2918 return 0;
2919
2920 event->attr.enable_on_exec = 0;
2921 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2922 return 0;
2923
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002924 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002925
2926 return 1;
2927}
2928
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002929/*
2930 * Enable all of a task's events that have been marked enable-on-exec.
2931 * This expects task == current.
2932 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02002933static void perf_event_enable_on_exec(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002934{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002935 struct perf_event *event;
2936 unsigned long flags;
2937 int enabled = 0;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002938 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002939
2940 local_irq_save(flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002941 if (!ctx || !ctx->nr_events)
2942 goto out;
2943
Stephane Eraniane566b762011-04-06 02:54:54 +02002944 /*
2945 * We must ctxsw out cgroup events to avoid conflict
2946 * when invoking perf_task_event_sched_in() later on
2947 * in this function. Otherwise we end up trying to
2948 * ctxswin cgroup events which are already scheduled
2949 * in.
2950 */
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002951 perf_cgroup_sched_out(current, NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002952
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002953 raw_spin_lock(&ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002954 task_ctx_sched_out(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002955
Peter Zijlstrab79387e2011-11-22 11:25:43 +01002956 list_for_each_entry(event, &ctx->event_list, event_entry) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002957 ret = event_enable_on_exec(event, ctx);
2958 if (ret)
2959 enabled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002960 }
2961
2962 /*
2963 * Unclone this context if we enabled any event.
2964 */
2965 if (enabled)
2966 unclone_ctx(ctx);
2967
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002968 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002969
Stephane Eraniane566b762011-04-06 02:54:54 +02002970 /*
2971 * Also calls ctxswin for cgroup events, if any:
2972 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02002973 perf_event_context_sched_in(ctx, ctx->task);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002974out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002975 local_irq_restore(flags);
2976}
2977
Peter Zijlstrae041e322014-05-21 17:32:19 +02002978void perf_event_exec(void)
2979{
2980 struct perf_event_context *ctx;
2981 int ctxn;
2982
2983 rcu_read_lock();
2984 for_each_task_context_nr(ctxn) {
2985 ctx = current->perf_event_ctxp[ctxn];
2986 if (!ctx)
2987 continue;
2988
2989 perf_event_enable_on_exec(ctx);
2990 }
2991 rcu_read_unlock();
2992}
2993
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002994/*
2995 * Cross CPU call to read the hardware event
2996 */
2997static void __perf_event_read(void *info)
2998{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002999 struct perf_event *event = info;
3000 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003001 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003002
3003 /*
3004 * If this is a task context, we need to check whether it is
3005 * the current task context of this cpu. If not it has been
3006 * scheduled out before the smp call arrived. In that case
3007 * event->count would have been updated to a recent sample
3008 * when the event was scheduled out.
3009 */
3010 if (ctx->task && cpuctx->task_ctx != ctx)
3011 return;
3012
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003013 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003014 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003015 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003016 update_cgrp_time_from_event(event);
3017 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003018 update_event_times(event);
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003019 if (event->state == PERF_EVENT_STATE_ACTIVE)
3020 event->pmu->read(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003021 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003022}
3023
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003024static inline u64 perf_event_count(struct perf_event *event)
3025{
Peter Zijlstrae7850592010-05-21 14:43:08 +02003026 return local64_read(&event->count) + atomic64_read(&event->child_count);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003027}
3028
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003029static u64 perf_event_read(struct perf_event *event)
3030{
3031 /*
3032 * If event is enabled and currently active on a CPU, update the
3033 * value in the event structure:
3034 */
3035 if (event->state == PERF_EVENT_STATE_ACTIVE) {
3036 smp_call_function_single(event->oncpu,
3037 __perf_event_read, event, 1);
3038 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003039 struct perf_event_context *ctx = event->ctx;
3040 unsigned long flags;
3041
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003042 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003043 /*
3044 * may read while context is not active
3045 * (e.g., thread is blocked), in that case
3046 * we cannot update context time
3047 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003048 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003049 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003050 update_cgrp_time_from_event(event);
3051 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003052 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003053 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003054 }
3055
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003056 return perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003057}
3058
3059/*
3060 * Initialize the perf_event context in a task_struct:
3061 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003062static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003063{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003064 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003065 mutex_init(&ctx->mutex);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003066 INIT_LIST_HEAD(&ctx->pinned_groups);
3067 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003068 INIT_LIST_HEAD(&ctx->event_list);
3069 atomic_set(&ctx->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003070}
3071
Peter Zijlstraeb184472010-09-07 15:55:13 +02003072static struct perf_event_context *
3073alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003074{
3075 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003076
3077 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3078 if (!ctx)
3079 return NULL;
3080
3081 __perf_event_init_context(ctx);
3082 if (task) {
3083 ctx->task = task;
3084 get_task_struct(task);
3085 }
3086 ctx->pmu = pmu;
3087
3088 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003089}
3090
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003091static struct task_struct *
3092find_lively_task_by_vpid(pid_t vpid)
3093{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003094 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003095 int err;
3096
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003097 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003098 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003099 task = current;
3100 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003101 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102 if (task)
3103 get_task_struct(task);
3104 rcu_read_unlock();
3105
3106 if (!task)
3107 return ERR_PTR(-ESRCH);
3108
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003109 /* Reuse ptrace permission checks for now. */
3110 err = -EACCES;
3111 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3112 goto errout;
3113
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003114 return task;
3115errout:
3116 put_task_struct(task);
3117 return ERR_PTR(err);
3118
3119}
3120
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003121/*
3122 * Returns a matching context with refcount and pincount.
3123 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003124static struct perf_event_context *
Matt Helsley38a81da2010-09-13 13:01:20 -07003125find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003126{
3127 struct perf_event_context *ctx;
3128 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003129 unsigned long flags;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003130 int ctxn, err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003131
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003132 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003133 /* Must be root to operate on a CPU event: */
3134 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3135 return ERR_PTR(-EACCES);
3136
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003137 /*
3138 * We could be clever and allow to attach a event to an
3139 * offline CPU and activate it when the CPU comes up, but
3140 * that's for later.
3141 */
3142 if (!cpu_online(cpu))
3143 return ERR_PTR(-ENODEV);
3144
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003145 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003146 ctx = &cpuctx->ctx;
3147 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003148 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003149
3150 return ctx;
3151 }
3152
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003153 err = -EINVAL;
3154 ctxn = pmu->task_ctx_nr;
3155 if (ctxn < 0)
3156 goto errout;
3157
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003158retry:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02003159 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003160 if (ctx) {
3161 unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003162 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003163 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003164 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003165 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003166 err = -ENOMEM;
3167 if (!ctx)
3168 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003169
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003170 err = 0;
3171 mutex_lock(&task->perf_event_mutex);
3172 /*
3173 * If it has already passed perf_event_exit_task().
3174 * we must see PF_EXITING, it takes this mutex too.
3175 */
3176 if (task->flags & PF_EXITING)
3177 err = -ESRCH;
3178 else if (task->perf_event_ctxp[ctxn])
3179 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003180 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003181 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003182 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003183 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003184 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003185 mutex_unlock(&task->perf_event_mutex);
3186
3187 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003188 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003189
3190 if (err == -EAGAIN)
3191 goto retry;
3192 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003193 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003194 }
3195
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003196 return ctx;
3197
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003198errout:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003199 return ERR_PTR(err);
3200}
3201
Li Zefan6fb29152009-10-15 11:21:42 +08003202static void perf_event_free_filter(struct perf_event *event);
3203
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003204static void free_event_rcu(struct rcu_head *head)
3205{
3206 struct perf_event *event;
3207
3208 event = container_of(head, struct perf_event, rcu_head);
3209 if (event->ns)
3210 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003211 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003212 kfree(event);
3213}
3214
Frederic Weisbecker76369132011-05-19 19:55:04 +02003215static void ring_buffer_put(struct ring_buffer *rb);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003216static void ring_buffer_attach(struct perf_event *event,
3217 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003218
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003219static void unaccount_event_cpu(struct perf_event *event, int cpu)
3220{
3221 if (event->parent)
3222 return;
3223
3224 if (has_branch_stack(event)) {
3225 if (!(event->attach_state & PERF_ATTACH_TASK))
3226 atomic_dec(&per_cpu(perf_branch_stack_events, cpu));
3227 }
3228 if (is_cgroup_event(event))
3229 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3230}
3231
3232static void unaccount_event(struct perf_event *event)
3233{
3234 if (event->parent)
3235 return;
3236
3237 if (event->attach_state & PERF_ATTACH_TASK)
3238 static_key_slow_dec_deferred(&perf_sched_events);
3239 if (event->attr.mmap || event->attr.mmap_data)
3240 atomic_dec(&nr_mmap_events);
3241 if (event->attr.comm)
3242 atomic_dec(&nr_comm_events);
3243 if (event->attr.task)
3244 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003245 if (event->attr.freq)
3246 atomic_dec(&nr_freq_events);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003247 if (is_cgroup_event(event))
3248 static_key_slow_dec_deferred(&perf_sched_events);
3249 if (has_branch_stack(event))
3250 static_key_slow_dec_deferred(&perf_sched_events);
3251
3252 unaccount_event_cpu(event, event->cpu);
3253}
3254
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003255static void __free_event(struct perf_event *event)
3256{
3257 if (!event->parent) {
3258 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3259 put_callchain_buffers();
3260 }
3261
3262 if (event->destroy)
3263 event->destroy(event);
3264
3265 if (event->ctx)
3266 put_ctx(event->ctx);
3267
Yan, Zhengc464c762014-03-18 16:56:41 +08003268 if (event->pmu)
3269 module_put(event->pmu->module);
3270
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003271 call_rcu(&event->rcu_head, free_event_rcu);
3272}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003273
3274static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003275{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003276 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003277
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003278 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003279
Frederic Weisbecker76369132011-05-19 19:55:04 +02003280 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003281 /*
3282 * Can happen when we close an event with re-directed output.
3283 *
3284 * Since we have a 0 refcount, perf_mmap_close() will skip
3285 * over us; possibly making our ring_buffer_put() the last.
3286 */
3287 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003288 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003289 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003290 }
3291
Stephane Eraniane5d13672011-02-14 11:20:01 +02003292 if (is_cgroup_event(event))
3293 perf_detach_cgroup(event);
3294
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003295 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003296}
3297
Peter Zijlstra683ede42014-05-05 12:11:24 +02003298/*
3299 * Used to free events which have a known refcount of 1, such as in error paths
3300 * where the event isn't exposed yet and inherited events.
3301 */
3302static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003303{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003304 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3305 "unexpected event refcount: %ld; ptr=%p\n",
3306 atomic_long_read(&event->refcount), event)) {
3307 /* leak to avoid use-after-free */
3308 return;
3309 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003310
Peter Zijlstra683ede42014-05-05 12:11:24 +02003311 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003312}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003313
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003314/*
3315 * Called when the last reference to the file is gone.
3316 */
Al Viroa6fa9412012-08-20 14:59:25 +01003317static void put_event(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003318{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003319 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra88821352010-11-09 19:01:43 +01003320 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003321
Al Viroa6fa9412012-08-20 14:59:25 +01003322 if (!atomic_long_dec_and_test(&event->refcount))
3323 return;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003324
Peter Zijlstra88821352010-11-09 19:01:43 +01003325 rcu_read_lock();
3326 owner = ACCESS_ONCE(event->owner);
3327 /*
3328 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3329 * !owner it means the list deletion is complete and we can indeed
3330 * free this event, otherwise we need to serialize on
3331 * owner->perf_event_mutex.
3332 */
3333 smp_read_barrier_depends();
3334 if (owner) {
3335 /*
3336 * Since delayed_put_task_struct() also drops the last
3337 * task reference we can safely take a new reference
3338 * while holding the rcu_read_lock().
3339 */
3340 get_task_struct(owner);
3341 }
3342 rcu_read_unlock();
3343
3344 if (owner) {
3345 mutex_lock(&owner->perf_event_mutex);
3346 /*
3347 * We have to re-check the event->owner field, if it is cleared
3348 * we raced with perf_event_exit_task(), acquiring the mutex
3349 * ensured they're done, and we can proceed with freeing the
3350 * event.
3351 */
3352 if (event->owner)
3353 list_del_init(&event->owner_entry);
3354 mutex_unlock(&owner->perf_event_mutex);
3355 put_task_struct(owner);
3356 }
3357
Peter Zijlstra683ede42014-05-05 12:11:24 +02003358 WARN_ON_ONCE(ctx->parent_ctx);
3359 /*
3360 * There are two ways this annotation is useful:
3361 *
3362 * 1) there is a lock recursion from perf_event_exit_task
3363 * see the comment there.
3364 *
3365 * 2) there is a lock-inversion with mmap_sem through
3366 * perf_event_read_group(), which takes faults while
3367 * holding ctx->mutex, however this is called after
3368 * the last filedesc died, so there is no possibility
3369 * to trigger the AB-BA case.
3370 */
3371 mutex_lock_nested(&ctx->mutex, SINGLE_DEPTH_NESTING);
3372 perf_remove_from_context(event, true);
3373 mutex_unlock(&ctx->mutex);
3374
3375 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003376}
3377
Peter Zijlstra683ede42014-05-05 12:11:24 +02003378int perf_event_release_kernel(struct perf_event *event)
3379{
3380 put_event(event);
3381 return 0;
3382}
3383EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3384
Al Viroa6fa9412012-08-20 14:59:25 +01003385static int perf_release(struct inode *inode, struct file *file)
3386{
3387 put_event(file->private_data);
3388 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003389}
3390
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003391u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003392{
3393 struct perf_event *child;
3394 u64 total = 0;
3395
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003396 *enabled = 0;
3397 *running = 0;
3398
Peter Zijlstra6f105812009-11-20 22:19:56 +01003399 mutex_lock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003400 total += perf_event_read(event);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003401 *enabled += event->total_time_enabled +
3402 atomic64_read(&event->child_total_time_enabled);
3403 *running += event->total_time_running +
3404 atomic64_read(&event->child_total_time_running);
3405
3406 list_for_each_entry(child, &event->child_list, child_list) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003407 total += perf_event_read(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003408 *enabled += child->total_time_enabled;
3409 *running += child->total_time_running;
3410 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003411 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003412
3413 return total;
3414}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003415EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003416
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003417static int perf_event_read_group(struct perf_event *event,
3418 u64 read_format, char __user *buf)
3419{
3420 struct perf_event *leader = event->group_leader, *sub;
Peter Zijlstra6f105812009-11-20 22:19:56 +01003421 int n = 0, size = 0, ret = -EFAULT;
3422 struct perf_event_context *ctx = leader->ctx;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003423 u64 values[5];
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003424 u64 count, enabled, running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003425
Peter Zijlstra6f105812009-11-20 22:19:56 +01003426 mutex_lock(&ctx->mutex);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003427 count = perf_event_read_value(leader, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003428
3429 values[n++] = 1 + leader->nr_siblings;
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003430 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3431 values[n++] = enabled;
3432 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3433 values[n++] = running;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003434 values[n++] = count;
3435 if (read_format & PERF_FORMAT_ID)
3436 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003437
3438 size = n * sizeof(u64);
3439
3440 if (copy_to_user(buf, values, size))
Peter Zijlstra6f105812009-11-20 22:19:56 +01003441 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003442
Peter Zijlstra6f105812009-11-20 22:19:56 +01003443 ret = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003444
3445 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstraabf48682009-11-20 22:19:49 +01003446 n = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003447
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003448 values[n++] = perf_event_read_value(sub, &enabled, &running);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003449 if (read_format & PERF_FORMAT_ID)
3450 values[n++] = primary_event_id(sub);
3451
3452 size = n * sizeof(u64);
3453
Stephane Eranian184d3da2009-11-23 21:40:49 -08003454 if (copy_to_user(buf + ret, values, size)) {
Peter Zijlstra6f105812009-11-20 22:19:56 +01003455 ret = -EFAULT;
3456 goto unlock;
3457 }
Peter Zijlstraabf48682009-11-20 22:19:49 +01003458
3459 ret += size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003460 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003461unlock:
3462 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003463
Peter Zijlstraabf48682009-11-20 22:19:49 +01003464 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003465}
3466
3467static int perf_event_read_one(struct perf_event *event,
3468 u64 read_format, char __user *buf)
3469{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003470 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003471 u64 values[4];
3472 int n = 0;
3473
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003474 values[n++] = perf_event_read_value(event, &enabled, &running);
3475 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3476 values[n++] = enabled;
3477 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3478 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003479 if (read_format & PERF_FORMAT_ID)
3480 values[n++] = primary_event_id(event);
3481
3482 if (copy_to_user(buf, values, n * sizeof(u64)))
3483 return -EFAULT;
3484
3485 return n * sizeof(u64);
3486}
3487
3488/*
3489 * Read the performance event - simple non blocking version for now
3490 */
3491static ssize_t
3492perf_read_hw(struct perf_event *event, char __user *buf, size_t count)
3493{
3494 u64 read_format = event->attr.read_format;
3495 int ret;
3496
3497 /*
3498 * Return end-of-file for a read on a event that is in
3499 * error state (i.e. because it was pinned but it couldn't be
3500 * scheduled on to the CPU at some point).
3501 */
3502 if (event->state == PERF_EVENT_STATE_ERROR)
3503 return 0;
3504
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003505 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003506 return -ENOSPC;
3507
3508 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003509 if (read_format & PERF_FORMAT_GROUP)
3510 ret = perf_event_read_group(event, read_format, buf);
3511 else
3512 ret = perf_event_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003513
3514 return ret;
3515}
3516
3517static ssize_t
3518perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3519{
3520 struct perf_event *event = file->private_data;
3521
3522 return perf_read_hw(event, buf, count);
3523}
3524
3525static unsigned int perf_poll(struct file *file, poll_table *wait)
3526{
3527 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003528 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003529 unsigned int events = POLL_HUP;
3530
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003531 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003532 * Pin the event->rb by taking event->mmap_mutex; otherwise
3533 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003534 */
3535 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003536 rb = event->rb;
3537 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02003538 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003539 mutex_unlock(&event->mmap_mutex);
3540
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003541 poll_wait(file, &event->waitq, wait);
3542
3543 return events;
3544}
3545
3546static void perf_event_reset(struct perf_event *event)
3547{
3548 (void)perf_event_read(event);
Peter Zijlstrae7850592010-05-21 14:43:08 +02003549 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003550 perf_event_update_userpage(event);
3551}
3552
3553/*
3554 * Holding the top-level event's child_mutex means that any
3555 * descendant process that has inherited this event will block
3556 * in sync_child_event if it goes to exit, thus satisfying the
3557 * task existence requirements of perf_event_enable/disable.
3558 */
3559static void perf_event_for_each_child(struct perf_event *event,
3560 void (*func)(struct perf_event *))
3561{
3562 struct perf_event *child;
3563
3564 WARN_ON_ONCE(event->ctx->parent_ctx);
3565 mutex_lock(&event->child_mutex);
3566 func(event);
3567 list_for_each_entry(child, &event->child_list, child_list)
3568 func(child);
3569 mutex_unlock(&event->child_mutex);
3570}
3571
3572static void perf_event_for_each(struct perf_event *event,
3573 void (*func)(struct perf_event *))
3574{
3575 struct perf_event_context *ctx = event->ctx;
3576 struct perf_event *sibling;
3577
3578 WARN_ON_ONCE(ctx->parent_ctx);
3579 mutex_lock(&ctx->mutex);
3580 event = event->group_leader;
3581
3582 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003583 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10003584 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003585 mutex_unlock(&ctx->mutex);
3586}
3587
3588static int perf_event_period(struct perf_event *event, u64 __user *arg)
3589{
3590 struct perf_event_context *ctx = event->ctx;
Peter Zijlstrabad71922013-11-27 13:54:38 +00003591 int ret = 0, active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003592 u64 value;
3593
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01003594 if (!is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003595 return -EINVAL;
3596
John Blackwoodad0cf342010-09-28 18:03:11 -04003597 if (copy_from_user(&value, arg, sizeof(value)))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003598 return -EFAULT;
3599
3600 if (!value)
3601 return -EINVAL;
3602
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003603 raw_spin_lock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003604 if (event->attr.freq) {
3605 if (value > sysctl_perf_event_sample_rate) {
3606 ret = -EINVAL;
3607 goto unlock;
3608 }
3609
3610 event->attr.sample_freq = value;
3611 } else {
3612 event->attr.sample_period = value;
3613 event->hw.sample_period = value;
3614 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00003615
3616 active = (event->state == PERF_EVENT_STATE_ACTIVE);
3617 if (active) {
3618 perf_pmu_disable(ctx->pmu);
3619 event->pmu->stop(event, PERF_EF_UPDATE);
3620 }
3621
3622 local64_set(&event->hw.period_left, 0);
3623
3624 if (active) {
3625 event->pmu->start(event, PERF_EF_RELOAD);
3626 perf_pmu_enable(ctx->pmu);
3627 }
3628
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003629unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003630 raw_spin_unlock_irq(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003631
3632 return ret;
3633}
3634
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003635static const struct file_operations perf_fops;
3636
Al Viro2903ff02012-08-28 12:52:22 -04003637static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003638{
Al Viro2903ff02012-08-28 12:52:22 -04003639 struct fd f = fdget(fd);
3640 if (!f.file)
3641 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003642
Al Viro2903ff02012-08-28 12:52:22 -04003643 if (f.file->f_op != &perf_fops) {
3644 fdput(f);
3645 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003646 }
Al Viro2903ff02012-08-28 12:52:22 -04003647 *p = f;
3648 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003649}
3650
3651static int perf_event_set_output(struct perf_event *event,
3652 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08003653static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003654
3655static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3656{
3657 struct perf_event *event = file->private_data;
3658 void (*func)(struct perf_event *);
3659 u32 flags = arg;
3660
3661 switch (cmd) {
3662 case PERF_EVENT_IOC_ENABLE:
3663 func = perf_event_enable;
3664 break;
3665 case PERF_EVENT_IOC_DISABLE:
3666 func = perf_event_disable;
3667 break;
3668 case PERF_EVENT_IOC_RESET:
3669 func = perf_event_reset;
3670 break;
3671
3672 case PERF_EVENT_IOC_REFRESH:
3673 return perf_event_refresh(event, arg);
3674
3675 case PERF_EVENT_IOC_PERIOD:
3676 return perf_event_period(event, (u64 __user *)arg);
3677
Jiri Olsacf4957f2012-10-24 13:37:58 +02003678 case PERF_EVENT_IOC_ID:
3679 {
3680 u64 id = primary_event_id(event);
3681
3682 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
3683 return -EFAULT;
3684 return 0;
3685 }
3686
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003687 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003688 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003689 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003690 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04003691 struct perf_event *output_event;
3692 struct fd output;
3693 ret = perf_fget_light(arg, &output);
3694 if (ret)
3695 return ret;
3696 output_event = output.file->private_data;
3697 ret = perf_event_set_output(event, output_event);
3698 fdput(output);
3699 } else {
3700 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003701 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003702 return ret;
3703 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003704
Li Zefan6fb29152009-10-15 11:21:42 +08003705 case PERF_EVENT_IOC_SET_FILTER:
3706 return perf_event_set_filter(event, (void __user *)arg);
3707
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003708 default:
3709 return -ENOTTY;
3710 }
3711
3712 if (flags & PERF_IOC_FLAG_GROUP)
3713 perf_event_for_each(event, func);
3714 else
3715 perf_event_for_each_child(event, func);
3716
3717 return 0;
3718}
3719
3720int perf_event_task_enable(void)
3721{
3722 struct perf_event *event;
3723
3724 mutex_lock(&current->perf_event_mutex);
3725 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3726 perf_event_for_each_child(event, perf_event_enable);
3727 mutex_unlock(&current->perf_event_mutex);
3728
3729 return 0;
3730}
3731
3732int perf_event_task_disable(void)
3733{
3734 struct perf_event *event;
3735
3736 mutex_lock(&current->perf_event_mutex);
3737 list_for_each_entry(event, &current->perf_event_list, owner_entry)
3738 perf_event_for_each_child(event, perf_event_disable);
3739 mutex_unlock(&current->perf_event_mutex);
3740
3741 return 0;
3742}
3743
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003744static int perf_event_index(struct perf_event *event)
3745{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02003746 if (event->hw.state & PERF_HES_STOPPED)
3747 return 0;
3748
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003749 if (event->state != PERF_EVENT_STATE_ACTIVE)
3750 return 0;
3751
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01003752 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003753}
3754
Eric B Munsonc4794292011-06-23 16:34:38 -04003755static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003756 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04003757 u64 *enabled,
3758 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04003759{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003760 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04003761
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003762 *now = perf_clock();
3763 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04003764 *enabled = ctx_time - event->tstamp_enabled;
3765 *running = ctx_time - event->tstamp_running;
3766}
3767
Peter Zijlstrafa731582013-09-19 10:16:42 +02003768static void perf_event_init_userpage(struct perf_event *event)
3769{
3770 struct perf_event_mmap_page *userpg;
3771 struct ring_buffer *rb;
3772
3773 rcu_read_lock();
3774 rb = rcu_dereference(event->rb);
3775 if (!rb)
3776 goto unlock;
3777
3778 userpg = rb->user_page;
3779
3780 /* Allow new userspace to detect that bit 0 is deprecated */
3781 userpg->cap_bit0_is_deprecated = 1;
3782 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
3783
3784unlock:
3785 rcu_read_unlock();
3786}
3787
Peter Zijlstrac7206202012-03-22 17:26:36 +01003788void __weak arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003789{
3790}
3791
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003792/*
3793 * Callers need to ensure there can be no nesting of this function, otherwise
3794 * the seqlock logic goes bad. We can not serialize this because the arch
3795 * code calls this from NMI context.
3796 */
3797void perf_event_update_userpage(struct perf_event *event)
3798{
3799 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003800 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003801 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003802
3803 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02003804 rb = rcu_dereference(event->rb);
3805 if (!rb)
3806 goto unlock;
3807
Eric B Munson0d641202011-06-24 12:26:26 -04003808 /*
3809 * compute total_time_enabled, total_time_running
3810 * based on snapshot values taken when the event
3811 * was last scheduled in.
3812 *
3813 * we cannot simply called update_context_time()
3814 * because of locking issue as we can be called in
3815 * NMI context
3816 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003817 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003818
Frederic Weisbecker76369132011-05-19 19:55:04 +02003819 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003820 /*
3821 * Disable preemption so as to not let the corresponding user-space
3822 * spin too long if we get preempted.
3823 */
3824 preempt_disable();
3825 ++userpg->lock;
3826 barrier();
3827 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003828 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01003829 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02003830 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003831
Eric B Munson0d641202011-06-24 12:26:26 -04003832 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003833 atomic64_read(&event->child_total_time_enabled);
3834
Eric B Munson0d641202011-06-24 12:26:26 -04003835 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003836 atomic64_read(&event->child_total_time_running);
3837
Peter Zijlstrac7206202012-03-22 17:26:36 +01003838 arch_perf_update_userpage(userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01003839
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003840 barrier();
3841 ++userpg->lock;
3842 preempt_enable();
3843unlock:
3844 rcu_read_unlock();
3845}
3846
Peter Zijlstra906010b2009-09-21 16:08:49 +02003847static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
3848{
3849 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003850 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003851 int ret = VM_FAULT_SIGBUS;
3852
3853 if (vmf->flags & FAULT_FLAG_MKWRITE) {
3854 if (vmf->pgoff == 0)
3855 ret = 0;
3856 return ret;
3857 }
3858
3859 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003860 rb = rcu_dereference(event->rb);
3861 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003862 goto unlock;
3863
3864 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
3865 goto unlock;
3866
Frederic Weisbecker76369132011-05-19 19:55:04 +02003867 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02003868 if (!vmf->page)
3869 goto unlock;
3870
3871 get_page(vmf->page);
3872 vmf->page->mapping = vma->vm_file->f_mapping;
3873 vmf->page->index = vmf->pgoff;
3874
3875 ret = 0;
3876unlock:
3877 rcu_read_unlock();
3878
3879 return ret;
3880}
3881
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003882static void ring_buffer_attach(struct perf_event *event,
3883 struct ring_buffer *rb)
3884{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003885 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003886 unsigned long flags;
3887
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003888 if (event->rb) {
3889 /*
3890 * Should be impossible, we set this when removing
3891 * event->rb_entry and wait/clear when adding event->rb_entry.
3892 */
3893 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003894
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003895 old_rb = event->rb;
3896 event->rcu_batches = get_state_synchronize_rcu();
3897 event->rcu_pending = 1;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003898
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003899 spin_lock_irqsave(&old_rb->event_lock, flags);
3900 list_del_rcu(&event->rb_entry);
3901 spin_unlock_irqrestore(&old_rb->event_lock, flags);
3902 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003903
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003904 if (event->rcu_pending && rb) {
3905 cond_synchronize_rcu(event->rcu_batches);
3906 event->rcu_pending = 0;
3907 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003908
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003909 if (rb) {
3910 spin_lock_irqsave(&rb->event_lock, flags);
3911 list_add_rcu(&event->rb_entry, &rb->event_list);
3912 spin_unlock_irqrestore(&rb->event_lock, flags);
3913 }
3914
3915 rcu_assign_pointer(event->rb, rb);
3916
3917 if (old_rb) {
3918 ring_buffer_put(old_rb);
3919 /*
3920 * Since we detached before setting the new rb, so that we
3921 * could attach the new rb, we could have missed a wakeup.
3922 * Provide it now.
3923 */
3924 wake_up_all(&event->waitq);
3925 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003926}
3927
3928static void ring_buffer_wakeup(struct perf_event *event)
3929{
3930 struct ring_buffer *rb;
3931
3932 rcu_read_lock();
3933 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003934 if (rb) {
3935 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
3936 wake_up_all(&event->waitq);
3937 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003938 rcu_read_unlock();
3939}
3940
Frederic Weisbecker76369132011-05-19 19:55:04 +02003941static void rb_free_rcu(struct rcu_head *rcu_head)
Peter Zijlstra906010b2009-09-21 16:08:49 +02003942{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003943 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02003944
Frederic Weisbecker76369132011-05-19 19:55:04 +02003945 rb = container_of(rcu_head, struct ring_buffer, rcu_head);
3946 rb_free(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003947}
3948
Frederic Weisbecker76369132011-05-19 19:55:04 +02003949static struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003950{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003951 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003952
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003953 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02003954 rb = rcu_dereference(event->rb);
3955 if (rb) {
3956 if (!atomic_inc_not_zero(&rb->refcount))
3957 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003958 }
3959 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003960
Frederic Weisbecker76369132011-05-19 19:55:04 +02003961 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003962}
3963
Frederic Weisbecker76369132011-05-19 19:55:04 +02003964static void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003965{
Frederic Weisbecker76369132011-05-19 19:55:04 +02003966 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02003967 return;
3968
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003969 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01003970
Frederic Weisbecker76369132011-05-19 19:55:04 +02003971 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003972}
3973
3974static void perf_mmap_open(struct vm_area_struct *vma)
3975{
3976 struct perf_event *event = vma->vm_file->private_data;
3977
3978 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003979 atomic_inc(&event->rb->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003980}
3981
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003982/*
3983 * A buffer can be mmap()ed multiple times; either directly through the same
3984 * event, or through other events by use of perf_event_set_output().
3985 *
3986 * In order to undo the VM accounting done by perf_mmap() we need to destroy
3987 * the buffer here, where we still have a VM context. This means we need
3988 * to detach all events redirecting to us.
3989 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003990static void perf_mmap_close(struct vm_area_struct *vma)
3991{
3992 struct perf_event *event = vma->vm_file->private_data;
3993
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003994 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003995 struct user_struct *mmap_user = rb->mmap_user;
3996 int mmap_locked = rb->mmap_locked;
3997 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003998
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003999 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004000
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004001 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004002 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004003
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004004 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004005 mutex_unlock(&event->mmap_mutex);
4006
4007 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004008 if (atomic_read(&rb->mmap_count))
4009 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004010
4011 /*
4012 * No other mmap()s, detach from all other events that might redirect
4013 * into the now unreachable buffer. Somewhat complicated by the
4014 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4015 */
4016again:
4017 rcu_read_lock();
4018 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4019 if (!atomic_long_inc_not_zero(&event->refcount)) {
4020 /*
4021 * This event is en-route to free_event() which will
4022 * detach it and remove it from the list.
4023 */
4024 continue;
4025 }
4026 rcu_read_unlock();
4027
4028 mutex_lock(&event->mmap_mutex);
4029 /*
4030 * Check we didn't race with perf_event_set_output() which can
4031 * swizzle the rb from under us while we were waiting to
4032 * acquire mmap_mutex.
4033 *
4034 * If we find a different rb; ignore this event, a next
4035 * iteration will no longer find it on the list. We have to
4036 * still restart the iteration to make sure we're not now
4037 * iterating the wrong list.
4038 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004039 if (event->rb == rb)
4040 ring_buffer_attach(event, NULL);
4041
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004042 mutex_unlock(&event->mmap_mutex);
4043 put_event(event);
4044
4045 /*
4046 * Restart the iteration; either we're on the wrong list or
4047 * destroyed its integrity by doing a deletion.
4048 */
4049 goto again;
4050 }
4051 rcu_read_unlock();
4052
4053 /*
4054 * It could be there's still a few 0-ref events on the list; they'll
4055 * get cleaned up by free_event() -- they'll also still have their
4056 * ref on the rb and will free it whenever they are done with it.
4057 *
4058 * Aside from that, this buffer is 'fully' detached and unmapped,
4059 * undo the VM accounting.
4060 */
4061
4062 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4063 vma->vm_mm->pinned_vm -= mmap_locked;
4064 free_uid(mmap_user);
4065
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004066out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004067 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004068}
4069
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04004070static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004071 .open = perf_mmap_open,
4072 .close = perf_mmap_close,
4073 .fault = perf_mmap_fault,
4074 .page_mkwrite = perf_mmap_fault,
4075};
4076
4077static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4078{
4079 struct perf_event *event = file->private_data;
4080 unsigned long user_locked, user_lock_limit;
4081 struct user_struct *user = current_user();
4082 unsigned long locked, lock_limit;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004083 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004084 unsigned long vma_size;
4085 unsigned long nr_pages;
4086 long user_extra, extra;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004087 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004088
Peter Zijlstrac7920612010-05-18 10:33:24 +02004089 /*
4090 * Don't allow mmap() of inherited per-task counters. This would
4091 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004092 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004093 */
4094 if (event->cpu == -1 && event->attr.inherit)
4095 return -EINVAL;
4096
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004097 if (!(vma->vm_flags & VM_SHARED))
4098 return -EINVAL;
4099
4100 vma_size = vma->vm_end - vma->vm_start;
4101 nr_pages = (vma_size / PAGE_SIZE) - 1;
4102
4103 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004104 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004105 * can do bitmasks instead of modulo.
4106 */
4107 if (nr_pages != 0 && !is_power_of_2(nr_pages))
4108 return -EINVAL;
4109
4110 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4111 return -EINVAL;
4112
4113 if (vma->vm_pgoff != 0)
4114 return -EINVAL;
4115
4116 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004117again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004118 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004119 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004120 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004121 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004122 goto unlock;
4123 }
4124
4125 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4126 /*
4127 * Raced against perf_mmap_close() through
4128 * perf_event_set_output(). Try again, hope for better
4129 * luck.
4130 */
4131 mutex_unlock(&event->mmap_mutex);
4132 goto again;
4133 }
4134
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004135 goto unlock;
4136 }
4137
4138 user_extra = nr_pages + 1;
4139 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4140
4141 /*
4142 * Increase the limit linearly with more CPUs:
4143 */
4144 user_lock_limit *= num_online_cpus();
4145
4146 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4147
4148 extra = 0;
4149 if (user_locked > user_lock_limit)
4150 extra = user_locked - user_lock_limit;
4151
Jiri Slaby78d7d402010-03-05 13:42:54 -08004152 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004153 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004154 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004155
4156 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4157 !capable(CAP_IPC_LOCK)) {
4158 ret = -EPERM;
4159 goto unlock;
4160 }
4161
Frederic Weisbecker76369132011-05-19 19:55:04 +02004162 WARN_ON(event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004163
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004164 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004165 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004166
Vince Weaver4ec83632011-06-01 15:15:36 -04004167 rb = rb_alloc(nr_pages,
4168 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4169 event->cpu, flags);
4170
Frederic Weisbecker76369132011-05-19 19:55:04 +02004171 if (!rb) {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004172 ret = -ENOMEM;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173 goto unlock;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004174 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004175
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004176 atomic_set(&rb->mmap_count, 1);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004177 rb->mmap_locked = extra;
4178 rb->mmap_user = get_current_user();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004179
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004180 atomic_long_add(user_extra, &user->locked_vm);
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004181 vma->vm_mm->pinned_vm += extra;
4182
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004183 ring_buffer_attach(event, rb);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004184
Peter Zijlstrafa731582013-09-19 10:16:42 +02004185 perf_event_init_userpage(event);
Peter Zijlstra9a0f05c2011-11-21 15:13:29 +01004186 perf_event_update_userpage(event);
4187
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004188unlock:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004189 if (!ret)
4190 atomic_inc(&event->mmap_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004191 mutex_unlock(&event->mmap_mutex);
4192
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004193 /*
4194 * Since pinned accounting is per vm we cannot allow fork() to copy our
4195 * vma.
4196 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004197 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004198 vma->vm_ops = &perf_mmap_vmops;
4199
4200 return ret;
4201}
4202
4203static int perf_fasync(int fd, struct file *filp, int on)
4204{
Al Viro496ad9a2013-01-23 17:07:38 -05004205 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004206 struct perf_event *event = filp->private_data;
4207 int retval;
4208
4209 mutex_lock(&inode->i_mutex);
4210 retval = fasync_helper(fd, filp, on, &event->fasync);
4211 mutex_unlock(&inode->i_mutex);
4212
4213 if (retval < 0)
4214 return retval;
4215
4216 return 0;
4217}
4218
4219static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004220 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004221 .release = perf_release,
4222 .read = perf_read,
4223 .poll = perf_poll,
4224 .unlocked_ioctl = perf_ioctl,
4225 .compat_ioctl = perf_ioctl,
4226 .mmap = perf_mmap,
4227 .fasync = perf_fasync,
4228};
4229
4230/*
4231 * Perf event wakeup
4232 *
4233 * If there's data, ensure we set the poll() state and publish everything
4234 * to user-space before waking everybody up.
4235 */
4236
4237void perf_event_wakeup(struct perf_event *event)
4238{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004239 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004240
4241 if (event->pending_kill) {
4242 kill_fasync(&event->fasync, SIGIO, event->pending_kill);
4243 event->pending_kill = 0;
4244 }
4245}
4246
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004247static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004248{
4249 struct perf_event *event = container_of(entry,
4250 struct perf_event, pending);
4251
4252 if (event->pending_disable) {
4253 event->pending_disable = 0;
4254 __perf_event_disable(event);
4255 }
4256
4257 if (event->pending_wakeup) {
4258 event->pending_wakeup = 0;
4259 perf_event_wakeup(event);
4260 }
4261}
4262
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004263/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004264 * We assume there is only KVM supporting the callbacks.
4265 * Later on, we might change it to a list if there is
4266 * another virtualization implementation supporting the callbacks.
4267 */
4268struct perf_guest_info_callbacks *perf_guest_cbs;
4269
4270int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4271{
4272 perf_guest_cbs = cbs;
4273 return 0;
4274}
4275EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4276
4277int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4278{
4279 perf_guest_cbs = NULL;
4280 return 0;
4281}
4282EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4283
Jiri Olsa40189942012-08-07 15:20:37 +02004284static void
4285perf_output_sample_regs(struct perf_output_handle *handle,
4286 struct pt_regs *regs, u64 mask)
4287{
4288 int bit;
4289
4290 for_each_set_bit(bit, (const unsigned long *) &mask,
4291 sizeof(mask) * BITS_PER_BYTE) {
4292 u64 val;
4293
4294 val = perf_reg_value(regs, bit);
4295 perf_output_put(handle, val);
4296 }
4297}
4298
4299static void perf_sample_regs_user(struct perf_regs_user *regs_user,
4300 struct pt_regs *regs)
4301{
4302 if (!user_mode(regs)) {
4303 if (current->mm)
4304 regs = task_pt_regs(current);
4305 else
4306 regs = NULL;
4307 }
4308
4309 if (regs) {
4310 regs_user->regs = regs;
4311 regs_user->abi = perf_reg_abi(current);
4312 }
4313}
4314
Jiri Olsac5ebced2012-08-07 15:20:40 +02004315/*
4316 * Get remaining task size from user stack pointer.
4317 *
4318 * It'd be better to take stack vma map and limit this more
4319 * precisly, but there's no way to get it safely under interrupt,
4320 * so using TASK_SIZE as limit.
4321 */
4322static u64 perf_ustack_task_size(struct pt_regs *regs)
4323{
4324 unsigned long addr = perf_user_stack_pointer(regs);
4325
4326 if (!addr || addr >= TASK_SIZE)
4327 return 0;
4328
4329 return TASK_SIZE - addr;
4330}
4331
4332static u16
4333perf_sample_ustack_size(u16 stack_size, u16 header_size,
4334 struct pt_regs *regs)
4335{
4336 u64 task_size;
4337
4338 /* No regs, no stack pointer, no dump. */
4339 if (!regs)
4340 return 0;
4341
4342 /*
4343 * Check if we fit in with the requested stack size into the:
4344 * - TASK_SIZE
4345 * If we don't, we limit the size to the TASK_SIZE.
4346 *
4347 * - remaining sample size
4348 * If we don't, we customize the stack size to
4349 * fit in to the remaining sample size.
4350 */
4351
4352 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
4353 stack_size = min(stack_size, (u16) task_size);
4354
4355 /* Current header size plus static size and dynamic size. */
4356 header_size += 2 * sizeof(u64);
4357
4358 /* Do we fit in with the current stack dump size? */
4359 if ((u16) (header_size + stack_size) < header_size) {
4360 /*
4361 * If we overflow the maximum size for the sample,
4362 * we customize the stack dump size to fit in.
4363 */
4364 stack_size = USHRT_MAX - header_size - sizeof(u64);
4365 stack_size = round_up(stack_size, sizeof(u64));
4366 }
4367
4368 return stack_size;
4369}
4370
4371static void
4372perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
4373 struct pt_regs *regs)
4374{
4375 /* Case of a kernel thread, nothing to dump */
4376 if (!regs) {
4377 u64 size = 0;
4378 perf_output_put(handle, size);
4379 } else {
4380 unsigned long sp;
4381 unsigned int rem;
4382 u64 dyn_size;
4383
4384 /*
4385 * We dump:
4386 * static size
4387 * - the size requested by user or the best one we can fit
4388 * in to the sample max size
4389 * data
4390 * - user stack dump data
4391 * dynamic size
4392 * - the actual dumped size
4393 */
4394
4395 /* Static size. */
4396 perf_output_put(handle, dump_size);
4397
4398 /* Data. */
4399 sp = perf_user_stack_pointer(regs);
4400 rem = __output_copy_user(handle, (void *) sp, dump_size);
4401 dyn_size = dump_size - rem;
4402
4403 perf_output_skip(handle, rem);
4404
4405 /* Dynamic size. */
4406 perf_output_put(handle, dyn_size);
4407 }
4408}
4409
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004410static void __perf_event_header__init_id(struct perf_event_header *header,
4411 struct perf_sample_data *data,
4412 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004413{
4414 u64 sample_type = event->attr.sample_type;
4415
4416 data->type = sample_type;
4417 header->size += event->id_header_size;
4418
4419 if (sample_type & PERF_SAMPLE_TID) {
4420 /* namespace issues */
4421 data->tid_entry.pid = perf_event_pid(event, current);
4422 data->tid_entry.tid = perf_event_tid(event, current);
4423 }
4424
4425 if (sample_type & PERF_SAMPLE_TIME)
4426 data->time = perf_clock();
4427
Adrian Hunterff3d5272013-08-27 11:23:07 +03004428 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004429 data->id = primary_event_id(event);
4430
4431 if (sample_type & PERF_SAMPLE_STREAM_ID)
4432 data->stream_id = event->id;
4433
4434 if (sample_type & PERF_SAMPLE_CPU) {
4435 data->cpu_entry.cpu = raw_smp_processor_id();
4436 data->cpu_entry.reserved = 0;
4437 }
4438}
4439
Frederic Weisbecker76369132011-05-19 19:55:04 +02004440void perf_event_header__init_id(struct perf_event_header *header,
4441 struct perf_sample_data *data,
4442 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004443{
4444 if (event->attr.sample_id_all)
4445 __perf_event_header__init_id(header, data, event);
4446}
4447
4448static void __perf_event__output_id_sample(struct perf_output_handle *handle,
4449 struct perf_sample_data *data)
4450{
4451 u64 sample_type = data->type;
4452
4453 if (sample_type & PERF_SAMPLE_TID)
4454 perf_output_put(handle, data->tid_entry);
4455
4456 if (sample_type & PERF_SAMPLE_TIME)
4457 perf_output_put(handle, data->time);
4458
4459 if (sample_type & PERF_SAMPLE_ID)
4460 perf_output_put(handle, data->id);
4461
4462 if (sample_type & PERF_SAMPLE_STREAM_ID)
4463 perf_output_put(handle, data->stream_id);
4464
4465 if (sample_type & PERF_SAMPLE_CPU)
4466 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03004467
4468 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4469 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004470}
4471
Frederic Weisbecker76369132011-05-19 19:55:04 +02004472void perf_event__output_id_sample(struct perf_event *event,
4473 struct perf_output_handle *handle,
4474 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004475{
4476 if (event->attr.sample_id_all)
4477 __perf_event__output_id_sample(handle, sample);
4478}
4479
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004480static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004481 struct perf_event *event,
4482 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004483{
4484 u64 read_format = event->attr.read_format;
4485 u64 values[4];
4486 int n = 0;
4487
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004488 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004489 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004490 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004491 atomic64_read(&event->child_total_time_enabled);
4492 }
4493 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02004494 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004495 atomic64_read(&event->child_total_time_running);
4496 }
4497 if (read_format & PERF_FORMAT_ID)
4498 values[n++] = primary_event_id(event);
4499
Frederic Weisbecker76369132011-05-19 19:55:04 +02004500 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004501}
4502
4503/*
4504 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
4505 */
4506static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02004507 struct perf_event *event,
4508 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004509{
4510 struct perf_event *leader = event->group_leader, *sub;
4511 u64 read_format = event->attr.read_format;
4512 u64 values[5];
4513 int n = 0;
4514
4515 values[n++] = 1 + leader->nr_siblings;
4516
4517 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02004518 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004519
4520 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02004521 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004522
4523 if (leader != event)
4524 leader->pmu->read(leader);
4525
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004526 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004527 if (read_format & PERF_FORMAT_ID)
4528 values[n++] = primary_event_id(leader);
4529
Frederic Weisbecker76369132011-05-19 19:55:04 +02004530 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004531
4532 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
4533 n = 0;
4534
Jiri Olsa6f5ab002012-10-15 20:13:45 +02004535 if ((sub != event) &&
4536 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004537 sub->pmu->read(sub);
4538
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004539 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004540 if (read_format & PERF_FORMAT_ID)
4541 values[n++] = primary_event_id(sub);
4542
Frederic Weisbecker76369132011-05-19 19:55:04 +02004543 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004544 }
4545}
4546
Stephane Eranianeed01522010-10-26 16:08:01 +02004547#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
4548 PERF_FORMAT_TOTAL_TIME_RUNNING)
4549
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004550static void perf_output_read(struct perf_output_handle *handle,
4551 struct perf_event *event)
4552{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004553 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02004554 u64 read_format = event->attr.read_format;
4555
4556 /*
4557 * compute total_time_enabled, total_time_running
4558 * based on snapshot values taken when the event
4559 * was last scheduled in.
4560 *
4561 * we cannot simply called update_context_time()
4562 * because of locking issue as we are called in
4563 * NMI context
4564 */
Eric B Munsonc4794292011-06-23 16:34:38 -04004565 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004566 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02004567
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004568 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02004569 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004570 else
Stephane Eranianeed01522010-10-26 16:08:01 +02004571 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004572}
4573
4574void perf_output_sample(struct perf_output_handle *handle,
4575 struct perf_event_header *header,
4576 struct perf_sample_data *data,
4577 struct perf_event *event)
4578{
4579 u64 sample_type = data->type;
4580
4581 perf_output_put(handle, *header);
4582
Adrian Hunterff3d5272013-08-27 11:23:07 +03004583 if (sample_type & PERF_SAMPLE_IDENTIFIER)
4584 perf_output_put(handle, data->id);
4585
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004586 if (sample_type & PERF_SAMPLE_IP)
4587 perf_output_put(handle, data->ip);
4588
4589 if (sample_type & PERF_SAMPLE_TID)
4590 perf_output_put(handle, data->tid_entry);
4591
4592 if (sample_type & PERF_SAMPLE_TIME)
4593 perf_output_put(handle, data->time);
4594
4595 if (sample_type & PERF_SAMPLE_ADDR)
4596 perf_output_put(handle, data->addr);
4597
4598 if (sample_type & PERF_SAMPLE_ID)
4599 perf_output_put(handle, data->id);
4600
4601 if (sample_type & PERF_SAMPLE_STREAM_ID)
4602 perf_output_put(handle, data->stream_id);
4603
4604 if (sample_type & PERF_SAMPLE_CPU)
4605 perf_output_put(handle, data->cpu_entry);
4606
4607 if (sample_type & PERF_SAMPLE_PERIOD)
4608 perf_output_put(handle, data->period);
4609
4610 if (sample_type & PERF_SAMPLE_READ)
4611 perf_output_read(handle, event);
4612
4613 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4614 if (data->callchain) {
4615 int size = 1;
4616
4617 if (data->callchain)
4618 size += data->callchain->nr;
4619
4620 size *= sizeof(u64);
4621
Frederic Weisbecker76369132011-05-19 19:55:04 +02004622 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004623 } else {
4624 u64 nr = 0;
4625 perf_output_put(handle, nr);
4626 }
4627 }
4628
4629 if (sample_type & PERF_SAMPLE_RAW) {
4630 if (data->raw) {
4631 perf_output_put(handle, data->raw->size);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004632 __output_copy(handle, data->raw->data,
4633 data->raw->size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004634 } else {
4635 struct {
4636 u32 size;
4637 u32 data;
4638 } raw = {
4639 .size = sizeof(u32),
4640 .data = 0,
4641 };
4642 perf_output_put(handle, raw);
4643 }
4644 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004645
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004646 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4647 if (data->br_stack) {
4648 size_t size;
4649
4650 size = data->br_stack->nr
4651 * sizeof(struct perf_branch_entry);
4652
4653 perf_output_put(handle, data->br_stack->nr);
4654 perf_output_copy(handle, data->br_stack->entries, size);
4655 } else {
4656 /*
4657 * we always store at least the value of nr
4658 */
4659 u64 nr = 0;
4660 perf_output_put(handle, nr);
4661 }
4662 }
Jiri Olsa40189942012-08-07 15:20:37 +02004663
4664 if (sample_type & PERF_SAMPLE_REGS_USER) {
4665 u64 abi = data->regs_user.abi;
4666
4667 /*
4668 * If there are no regs to dump, notice it through
4669 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
4670 */
4671 perf_output_put(handle, abi);
4672
4673 if (abi) {
4674 u64 mask = event->attr.sample_regs_user;
4675 perf_output_sample_regs(handle,
4676 data->regs_user.regs,
4677 mask);
4678 }
4679 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004680
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004681 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02004682 perf_output_sample_ustack(handle,
4683 data->stack_user_size,
4684 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004685 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01004686
4687 if (sample_type & PERF_SAMPLE_WEIGHT)
4688 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01004689
4690 if (sample_type & PERF_SAMPLE_DATA_SRC)
4691 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004692
Andi Kleenfdfbbd02013-09-20 07:40:39 -07004693 if (sample_type & PERF_SAMPLE_TRANSACTION)
4694 perf_output_put(handle, data->txn);
4695
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02004696 if (!event->attr.watermark) {
4697 int wakeup_events = event->attr.wakeup_events;
4698
4699 if (wakeup_events) {
4700 struct ring_buffer *rb = handle->rb;
4701 int events = local_inc_return(&rb->events);
4702
4703 if (events >= wakeup_events) {
4704 local_sub(wakeup_events, &rb->events);
4705 local_inc(&rb->wakeup);
4706 }
4707 }
4708 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004709}
4710
4711void perf_prepare_sample(struct perf_event_header *header,
4712 struct perf_sample_data *data,
4713 struct perf_event *event,
4714 struct pt_regs *regs)
4715{
4716 u64 sample_type = event->attr.sample_type;
4717
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004718 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004719 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004720
4721 header->misc = 0;
4722 header->misc |= perf_misc_flags(regs);
4723
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004724 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02004725
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004726 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004727 data->ip = perf_instruction_pointer(regs);
4728
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
4730 int size = 1;
4731
Andrew Vagine6dab5f2012-07-11 18:14:58 +04004732 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004733
4734 if (data->callchain)
4735 size += data->callchain->nr;
4736
4737 header->size += size * sizeof(u64);
4738 }
4739
4740 if (sample_type & PERF_SAMPLE_RAW) {
4741 int size = sizeof(u32);
4742
4743 if (data->raw)
4744 size += data->raw->size;
4745 else
4746 size += sizeof(u32);
4747
4748 WARN_ON_ONCE(size & (sizeof(u64)-1));
4749 header->size += size;
4750 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01004751
4752 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
4753 int size = sizeof(u64); /* nr */
4754 if (data->br_stack) {
4755 size += data->br_stack->nr
4756 * sizeof(struct perf_branch_entry);
4757 }
4758 header->size += size;
4759 }
Jiri Olsa40189942012-08-07 15:20:37 +02004760
4761 if (sample_type & PERF_SAMPLE_REGS_USER) {
4762 /* regs dump ABI info */
4763 int size = sizeof(u64);
4764
4765 perf_sample_regs_user(&data->regs_user, regs);
4766
4767 if (data->regs_user.regs) {
4768 u64 mask = event->attr.sample_regs_user;
4769 size += hweight64(mask) * sizeof(u64);
4770 }
4771
4772 header->size += size;
4773 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02004774
4775 if (sample_type & PERF_SAMPLE_STACK_USER) {
4776 /*
4777 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
4778 * processed as the last one or have additional check added
4779 * in case new sample type is added, because we could eat
4780 * up the rest of the sample size.
4781 */
4782 struct perf_regs_user *uregs = &data->regs_user;
4783 u16 stack_size = event->attr.sample_stack_user;
4784 u16 size = sizeof(u64);
4785
4786 if (!uregs->abi)
4787 perf_sample_regs_user(uregs, regs);
4788
4789 stack_size = perf_sample_ustack_size(stack_size, header->size,
4790 uregs->regs);
4791
4792 /*
4793 * If there is something to dump, add space for the dump
4794 * itself and for the field that tells the dynamic size,
4795 * which is how many have been actually dumped.
4796 */
4797 if (stack_size)
4798 size += sizeof(u64) + stack_size;
4799
4800 data->stack_user_size = stack_size;
4801 header->size += size;
4802 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004803}
4804
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02004805static void perf_event_output(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004806 struct perf_sample_data *data,
4807 struct pt_regs *regs)
4808{
4809 struct perf_output_handle handle;
4810 struct perf_event_header header;
4811
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004812 /* protect the callchain buffers */
4813 rcu_read_lock();
4814
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004815 perf_prepare_sample(&header, data, event, regs);
4816
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004817 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004818 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004819
4820 perf_output_sample(&handle, &header, data, event);
4821
4822 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02004823
4824exit:
4825 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004826}
4827
4828/*
4829 * read event_id
4830 */
4831
4832struct perf_read_event {
4833 struct perf_event_header header;
4834
4835 u32 pid;
4836 u32 tid;
4837};
4838
4839static void
4840perf_event_read_event(struct perf_event *event,
4841 struct task_struct *task)
4842{
4843 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004844 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004845 struct perf_read_event read_event = {
4846 .header = {
4847 .type = PERF_RECORD_READ,
4848 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02004849 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004850 },
4851 .pid = perf_event_pid(event, task),
4852 .tid = perf_event_tid(event, task),
4853 };
4854 int ret;
4855
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004856 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004857 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004858 if (ret)
4859 return;
4860
4861 perf_output_put(&handle, read_event);
4862 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004863 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004864
4865 perf_output_end(&handle);
4866}
4867
Jiri Olsa52d857a2013-05-06 18:27:18 +02004868typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
4869
4870static void
4871perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004872 perf_event_aux_output_cb output,
4873 void *data)
4874{
4875 struct perf_event *event;
4876
4877 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
4878 if (event->state < PERF_EVENT_STATE_INACTIVE)
4879 continue;
4880 if (!event_filter_match(event))
4881 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02004882 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004883 }
4884}
4885
4886static void
Jiri Olsa67516842013-07-09 18:56:31 +02004887perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004888 struct perf_event_context *task_ctx)
4889{
4890 struct perf_cpu_context *cpuctx;
4891 struct perf_event_context *ctx;
4892 struct pmu *pmu;
4893 int ctxn;
4894
4895 rcu_read_lock();
4896 list_for_each_entry_rcu(pmu, &pmus, entry) {
4897 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
4898 if (cpuctx->unique_pmu != pmu)
4899 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02004900 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004901 if (task_ctx)
4902 goto next;
4903 ctxn = pmu->task_ctx_nr;
4904 if (ctxn < 0)
4905 goto next;
4906 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
4907 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02004908 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004909next:
4910 put_cpu_ptr(pmu->pmu_cpu_context);
4911 }
4912
4913 if (task_ctx) {
4914 preempt_disable();
Jiri Olsa67516842013-07-09 18:56:31 +02004915 perf_event_aux_ctx(task_ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02004916 preempt_enable();
4917 }
4918 rcu_read_unlock();
4919}
4920
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004921/*
4922 * task tracking -- fork/exit
4923 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02004924 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004925 */
4926
4927struct perf_task_event {
4928 struct task_struct *task;
4929 struct perf_event_context *task_ctx;
4930
4931 struct {
4932 struct perf_event_header header;
4933
4934 u32 pid;
4935 u32 ppid;
4936 u32 tid;
4937 u32 ptid;
4938 u64 time;
4939 } event_id;
4940};
4941
Jiri Olsa67516842013-07-09 18:56:31 +02004942static int perf_event_task_match(struct perf_event *event)
4943{
Stephane Eranian13d7a242013-08-21 12:10:24 +02004944 return event->attr.comm || event->attr.mmap ||
4945 event->attr.mmap2 || event->attr.mmap_data ||
4946 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02004947}
4948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004949static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02004950 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004951{
Jiri Olsa52d857a2013-05-06 18:27:18 +02004952 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004953 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004954 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004955 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004956 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01004957
Jiri Olsa67516842013-07-09 18:56:31 +02004958 if (!perf_event_task_match(event))
4959 return;
4960
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004961 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004962
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004963 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02004964 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02004965 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004966 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004967
4968 task_event->event_id.pid = perf_event_pid(event, task);
4969 task_event->event_id.ppid = perf_event_pid(event, current);
4970
4971 task_event->event_id.tid = perf_event_tid(event, task);
4972 task_event->event_id.ptid = perf_event_tid(event, current);
4973
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004974 perf_output_put(&handle, task_event->event_id);
4975
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004976 perf_event__output_id_sample(event, &handle, &sample);
4977
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004978 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02004979out:
4980 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004981}
4982
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004983static void perf_event_task(struct task_struct *task,
4984 struct perf_event_context *task_ctx,
4985 int new)
4986{
4987 struct perf_task_event task_event;
4988
4989 if (!atomic_read(&nr_comm_events) &&
4990 !atomic_read(&nr_mmap_events) &&
4991 !atomic_read(&nr_task_events))
4992 return;
4993
4994 task_event = (struct perf_task_event){
4995 .task = task,
4996 .task_ctx = task_ctx,
4997 .event_id = {
4998 .header = {
4999 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5000 .misc = 0,
5001 .size = sizeof(task_event.event_id),
5002 },
5003 /* .pid */
5004 /* .ppid */
5005 /* .tid */
5006 /* .ptid */
Peter Zijlstra6f93d0a2010-02-14 11:12:04 +01005007 .time = perf_clock(),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005008 },
5009 };
5010
Jiri Olsa67516842013-07-09 18:56:31 +02005011 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005012 &task_event,
5013 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005014}
5015
5016void perf_event_fork(struct task_struct *task)
5017{
5018 perf_event_task(task, NULL, 1);
5019}
5020
5021/*
5022 * comm tracking
5023 */
5024
5025struct perf_comm_event {
5026 struct task_struct *task;
5027 char *comm;
5028 int comm_size;
5029
5030 struct {
5031 struct perf_event_header header;
5032
5033 u32 pid;
5034 u32 tid;
5035 } event_id;
5036};
5037
Jiri Olsa67516842013-07-09 18:56:31 +02005038static int perf_event_comm_match(struct perf_event *event)
5039{
5040 return event->attr.comm;
5041}
5042
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005043static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005044 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005045{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005046 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005047 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005048 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005049 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005050 int ret;
5051
Jiri Olsa67516842013-07-09 18:56:31 +02005052 if (!perf_event_comm_match(event))
5053 return;
5054
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005055 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5056 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005057 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005058
5059 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005060 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005061
5062 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5063 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5064
5065 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005066 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005067 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005068
5069 perf_event__output_id_sample(event, &handle, &sample);
5070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005071 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005072out:
5073 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005074}
5075
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005076static void perf_event_comm_event(struct perf_comm_event *comm_event)
5077{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005078 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005079 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005080
5081 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005082 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005083 size = ALIGN(strlen(comm)+1, sizeof(u64));
5084
5085 comm_event->comm = comm;
5086 comm_event->comm_size = size;
5087
5088 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02005089
Jiri Olsa67516842013-07-09 18:56:31 +02005090 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005091 comm_event,
5092 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005093}
5094
Adrian Hunter82b89772014-05-28 11:45:04 +03005095void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005096{
5097 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005098
5099 if (!atomic_read(&nr_comm_events))
5100 return;
5101
5102 comm_event = (struct perf_comm_event){
5103 .task = task,
5104 /* .comm */
5105 /* .comm_size */
5106 .event_id = {
5107 .header = {
5108 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005109 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005110 /* .size */
5111 },
5112 /* .pid */
5113 /* .tid */
5114 },
5115 };
5116
5117 perf_event_comm_event(&comm_event);
5118}
5119
5120/*
5121 * mmap tracking
5122 */
5123
5124struct perf_mmap_event {
5125 struct vm_area_struct *vma;
5126
5127 const char *file_name;
5128 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005129 int maj, min;
5130 u64 ino;
5131 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005132 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005133
5134 struct {
5135 struct perf_event_header header;
5136
5137 u32 pid;
5138 u32 tid;
5139 u64 start;
5140 u64 len;
5141 u64 pgoff;
5142 } event_id;
5143};
5144
Jiri Olsa67516842013-07-09 18:56:31 +02005145static int perf_event_mmap_match(struct perf_event *event,
5146 void *data)
5147{
5148 struct perf_mmap_event *mmap_event = data;
5149 struct vm_area_struct *vma = mmap_event->vma;
5150 int executable = vma->vm_flags & VM_EXEC;
5151
5152 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005153 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005154}
5155
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005156static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005157 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005158{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005159 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005160 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005161 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005163 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005164
Jiri Olsa67516842013-07-09 18:56:31 +02005165 if (!perf_event_mmap_match(event, data))
5166 return;
5167
Stephane Eranian13d7a242013-08-21 12:10:24 +02005168 if (event->attr.mmap2) {
5169 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5170 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5171 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5172 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005173 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005174 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5175 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005176 }
5177
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005178 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5179 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005180 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005181 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005182 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005183
5184 mmap_event->event_id.pid = perf_event_pid(event, current);
5185 mmap_event->event_id.tid = perf_event_tid(event, current);
5186
5187 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005188
5189 if (event->attr.mmap2) {
5190 perf_output_put(&handle, mmap_event->maj);
5191 perf_output_put(&handle, mmap_event->min);
5192 perf_output_put(&handle, mmap_event->ino);
5193 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005194 perf_output_put(&handle, mmap_event->prot);
5195 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005196 }
5197
Frederic Weisbecker76369132011-05-19 19:55:04 +02005198 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005199 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005200
5201 perf_event__output_id_sample(event, &handle, &sample);
5202
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005203 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005204out:
5205 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005206}
5207
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005208static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5209{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005210 struct vm_area_struct *vma = mmap_event->vma;
5211 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005212 int maj = 0, min = 0;
5213 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005214 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005215 unsigned int size;
5216 char tmp[16];
5217 char *buf = NULL;
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005218 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005219
5220 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005221 struct inode *inode;
5222 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005223
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005224 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005225 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005226 name = "//enomem";
5227 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005228 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005229 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005230 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231 * need to add enough zero bytes after the string to handle
5232 * the 64bit alignment we do later.
5233 */
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005234 name = d_path(&file->f_path, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005235 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005236 name = "//toolong";
5237 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005238 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005239 inode = file_inode(vma->vm_file);
5240 dev = inode->i_sb->s_dev;
5241 ino = inode->i_ino;
5242 gen = inode->i_generation;
5243 maj = MAJOR(dev);
5244 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005245
5246 if (vma->vm_flags & VM_READ)
5247 prot |= PROT_READ;
5248 if (vma->vm_flags & VM_WRITE)
5249 prot |= PROT_WRITE;
5250 if (vma->vm_flags & VM_EXEC)
5251 prot |= PROT_EXEC;
5252
5253 if (vma->vm_flags & VM_MAYSHARE)
5254 flags = MAP_SHARED;
5255 else
5256 flags = MAP_PRIVATE;
5257
5258 if (vma->vm_flags & VM_DENYWRITE)
5259 flags |= MAP_DENYWRITE;
5260 if (vma->vm_flags & VM_MAYEXEC)
5261 flags |= MAP_EXECUTABLE;
5262 if (vma->vm_flags & VM_LOCKED)
5263 flags |= MAP_LOCKED;
5264 if (vma->vm_flags & VM_HUGETLB)
5265 flags |= MAP_HUGETLB;
5266
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005267 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005268 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005269 if (vma->vm_ops && vma->vm_ops->name) {
5270 name = (char *) vma->vm_ops->name(vma);
5271 if (name)
5272 goto cpy_name;
5273 }
5274
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005275 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005276 if (name)
5277 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005278
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005279 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005280 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005281 name = "[heap]";
5282 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005283 }
5284 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005285 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005286 name = "[stack]";
5287 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005288 }
5289
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005290 name = "//anon";
5291 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005292 }
5293
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005294cpy_name:
5295 strlcpy(tmp, name, sizeof(tmp));
5296 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005297got_name:
Peter Zijlstra2c42cfb2013-10-17 00:06:46 +02005298 /*
5299 * Since our buffer works in 8 byte units we need to align our string
5300 * size to a multiple of 8. However, we must guarantee the tail end is
5301 * zero'd out to avoid leaking random bits to userspace.
5302 */
5303 size = strlen(name)+1;
5304 while (!IS_ALIGNED(size, sizeof(u64)))
5305 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005306
5307 mmap_event->file_name = name;
5308 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005309 mmap_event->maj = maj;
5310 mmap_event->min = min;
5311 mmap_event->ino = ino;
5312 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005313 mmap_event->prot = prot;
5314 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005315
Stephane Eranian2fe85422013-01-24 16:10:39 +01005316 if (!(vma->vm_flags & VM_EXEC))
5317 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
5318
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005319 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
5320
Jiri Olsa67516842013-07-09 18:56:31 +02005321 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005322 mmap_event,
5323 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005324
5325 kfree(buf);
5326}
5327
Eric B Munson3af9e852010-05-18 15:30:49 +01005328void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005329{
5330 struct perf_mmap_event mmap_event;
5331
5332 if (!atomic_read(&nr_mmap_events))
5333 return;
5334
5335 mmap_event = (struct perf_mmap_event){
5336 .vma = vma,
5337 /* .file_name */
5338 /* .file_size */
5339 .event_id = {
5340 .header = {
5341 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08005342 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005343 /* .size */
5344 },
5345 /* .pid */
5346 /* .tid */
5347 .start = vma->vm_start,
5348 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01005349 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005350 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02005351 /* .maj (attr_mmap2 only) */
5352 /* .min (attr_mmap2 only) */
5353 /* .ino (attr_mmap2 only) */
5354 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005355 /* .prot (attr_mmap2 only) */
5356 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005357 };
5358
5359 perf_event_mmap_event(&mmap_event);
5360}
5361
5362/*
5363 * IRQ throttle logging
5364 */
5365
5366static void perf_log_throttle(struct perf_event *event, int enable)
5367{
5368 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005369 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005370 int ret;
5371
5372 struct {
5373 struct perf_event_header header;
5374 u64 time;
5375 u64 id;
5376 u64 stream_id;
5377 } throttle_event = {
5378 .header = {
5379 .type = PERF_RECORD_THROTTLE,
5380 .misc = 0,
5381 .size = sizeof(throttle_event),
5382 },
5383 .time = perf_clock(),
5384 .id = primary_event_id(event),
5385 .stream_id = event->id,
5386 };
5387
5388 if (enable)
5389 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
5390
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005391 perf_event_header__init_id(&throttle_event.header, &sample, event);
5392
5393 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005394 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005395 if (ret)
5396 return;
5397
5398 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005399 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005400 perf_output_end(&handle);
5401}
5402
5403/*
5404 * Generic event overflow handling, sampling.
5405 */
5406
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005407static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005408 int throttle, struct perf_sample_data *data,
5409 struct pt_regs *regs)
5410{
5411 int events = atomic_read(&event->event_limit);
5412 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005413 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005414 int ret = 0;
5415
Peter Zijlstra96398822010-11-24 18:55:29 +01005416 /*
5417 * Non-sampling counters might still use the PMI to fold short
5418 * hardware counters, ignore those.
5419 */
5420 if (unlikely(!is_sampling_event(event)))
5421 return 0;
5422
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005423 seq = __this_cpu_read(perf_throttled_seq);
5424 if (seq != hwc->interrupts_seq) {
5425 hwc->interrupts_seq = seq;
5426 hwc->interrupts = 1;
5427 } else {
5428 hwc->interrupts++;
5429 if (unlikely(throttle
5430 && hwc->interrupts >= max_samples_per_tick)) {
5431 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01005432 hwc->interrupts = MAX_INTERRUPTS;
5433 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02005434 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005435 ret = 1;
5436 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01005437 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005438
5439 if (event->attr.freq) {
5440 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01005441 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005442
Peter Zijlstraabd50712010-01-26 18:50:16 +01005443 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005444
Peter Zijlstraabd50712010-01-26 18:50:16 +01005445 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01005446 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005447 }
5448
5449 /*
5450 * XXX event_limit might not quite work as expected on inherited
5451 * events
5452 */
5453
5454 event->pending_kill = POLL_IN;
5455 if (events && atomic_dec_and_test(&event->event_limit)) {
5456 ret = 1;
5457 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005458 event->pending_disable = 1;
5459 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005460 }
5461
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005462 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005463 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005464 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005465 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01005466
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005467 if (event->fasync && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005468 event->pending_wakeup = 1;
5469 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02005470 }
5471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005472 return ret;
5473}
5474
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005475int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005476 struct perf_sample_data *data,
5477 struct pt_regs *regs)
5478{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005479 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005480}
5481
5482/*
5483 * Generic software event infrastructure
5484 */
5485
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005486struct swevent_htable {
5487 struct swevent_hlist *swevent_hlist;
5488 struct mutex hlist_mutex;
5489 int hlist_refcount;
5490
5491 /* Recursion avoidance in each contexts */
5492 int recursion[PERF_NR_CONTEXTS];
Jiri Olsa39af6b12014-04-07 11:04:08 +02005493
5494 /* Keeps track of cpu being initialized/exited */
5495 bool online;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005496};
5497
5498static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
5499
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005500/*
5501 * We directly increment event->count and keep a second value in
5502 * event->hw.period_left to count intervals. This period event
5503 * is kept in the range [-sample_period, 0] so that we can use the
5504 * sign as trigger.
5505 */
5506
Jiri Olsaab573842013-05-01 17:25:44 +02005507u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005508{
5509 struct hw_perf_event *hwc = &event->hw;
5510 u64 period = hwc->last_period;
5511 u64 nr, offset;
5512 s64 old, val;
5513
5514 hwc->last_period = hwc->sample_period;
5515
5516again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02005517 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005518 if (val < 0)
5519 return 0;
5520
5521 nr = div64_u64(period + val, period);
5522 offset = nr * period;
5523 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02005524 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005525 goto again;
5526
5527 return nr;
5528}
5529
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005530static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005531 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005532 struct pt_regs *regs)
5533{
5534 struct hw_perf_event *hwc = &event->hw;
5535 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005536
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005537 if (!overflow)
5538 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005539
5540 if (hwc->interrupts == MAX_INTERRUPTS)
5541 return;
5542
5543 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005544 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005545 data, regs)) {
5546 /*
5547 * We inhibit the overflow from happening when
5548 * hwc->interrupts == MAX_INTERRUPTS.
5549 */
5550 break;
5551 }
5552 throttle = 1;
5553 }
5554}
5555
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005556static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005557 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005558 struct pt_regs *regs)
5559{
5560 struct hw_perf_event *hwc = &event->hw;
5561
Peter Zijlstrae7850592010-05-21 14:43:08 +02005562 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005563
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005564 if (!regs)
5565 return;
5566
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005567 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005568 return;
5569
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03005570 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
5571 data->period = nr;
5572 return perf_swevent_overflow(event, 1, data, regs);
5573 } else
5574 data->period = event->hw.last_period;
5575
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005576 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005577 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005578
Peter Zijlstrae7850592010-05-21 14:43:08 +02005579 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01005580 return;
5581
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005582 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005583}
5584
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005585static int perf_exclude_event(struct perf_event *event,
5586 struct pt_regs *regs)
5587{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005588 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01005589 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005590
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005591 if (regs) {
5592 if (event->attr.exclude_user && user_mode(regs))
5593 return 1;
5594
5595 if (event->attr.exclude_kernel && !user_mode(regs))
5596 return 1;
5597 }
5598
5599 return 0;
5600}
5601
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005602static int perf_swevent_match(struct perf_event *event,
5603 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08005604 u32 event_id,
5605 struct perf_sample_data *data,
5606 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005607{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005608 if (event->attr.type != type)
5609 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005610
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005611 if (event->attr.config != event_id)
5612 return 0;
5613
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01005614 if (perf_exclude_event(event, regs))
5615 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005616
5617 return 1;
5618}
5619
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005620static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005621{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005622 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005623
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005624 return hash_64(val, SWEVENT_HLIST_BITS);
5625}
5626
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005627static inline struct hlist_head *
5628__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005629{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005630 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005631
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005632 return &hlist->heads[hash];
5633}
5634
5635/* For the read side: events when they trigger */
5636static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005637find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005638{
5639 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005640
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005641 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005642 if (!hlist)
5643 return NULL;
5644
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005645 return __find_swevent_head(hlist, type, event_id);
5646}
5647
5648/* For the event head insertion and removal in the hlist */
5649static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005650find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005651{
5652 struct swevent_hlist *hlist;
5653 u32 event_id = event->attr.config;
5654 u64 type = event->attr.type;
5655
5656 /*
5657 * Event scheduling is always serialized against hlist allocation
5658 * and release. Which makes the protected version suitable here.
5659 * The context lock guarantees that.
5660 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005661 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005662 lockdep_is_held(&event->ctx->lock));
5663 if (!hlist)
5664 return NULL;
5665
5666 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005667}
5668
5669static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005670 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005671 struct perf_sample_data *data,
5672 struct pt_regs *regs)
5673{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05005674 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005675 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005676 struct hlist_head *head;
5677
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005678 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005679 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005680 if (!head)
5681 goto end;
5682
Sasha Levinb67bfe02013-02-27 17:06:00 -08005683 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08005684 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005685 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005686 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005687end:
5688 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005689}
5690
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005691int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005692{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05005693 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005694
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005695 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005696}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01005697EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005698
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01005699inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005700{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05005701 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005702
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005703 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01005704}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005705
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005706void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005707{
Ingo Molnara4234bf2009-11-23 10:57:59 +01005708 struct perf_sample_data data;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005709 int rctx;
5710
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005711 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005712 rctx = perf_swevent_get_recursion_context();
5713 if (rctx < 0)
5714 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005715
Robert Richterfd0d0002012-04-02 20:19:08 +02005716 perf_sample_data_init(&data, addr, 0);
Ingo Molnara4234bf2009-11-23 10:57:59 +01005717
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005718 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01005719
5720 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005721 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005722}
5723
5724static void perf_swevent_read(struct perf_event *event)
5725{
5726}
5727
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005728static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005729{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05005730 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005731 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005732 struct hlist_head *head;
5733
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01005734 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005735 hwc->last_period = hwc->sample_period;
5736 perf_swevent_set_period(event);
5737 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005738
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005739 hwc->state = !(flags & PERF_EF_START);
5740
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005741 head = find_swevent_head(swhash, event);
Jiri Olsa39af6b12014-04-07 11:04:08 +02005742 if (!head) {
5743 /*
5744 * We can race with cpu hotplug code. Do not
5745 * WARN if the cpu just got unplugged.
5746 */
5747 WARN_ON_ONCE(swhash->online);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005748 return -EINVAL;
Jiri Olsa39af6b12014-04-07 11:04:08 +02005749 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005750
5751 hlist_add_head_rcu(&event->hlist_entry, head);
5752
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005753 return 0;
5754}
5755
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005756static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005757{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005758 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005759}
5760
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005761static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005762{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005763 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005764}
5765
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005766static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005767{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005768 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02005769}
5770
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005771/* Deref the hlist from the update side */
5772static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005773swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005774{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005775 return rcu_dereference_protected(swhash->swevent_hlist,
5776 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005777}
5778
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005779static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005780{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005781 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005782
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02005783 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005784 return;
5785
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005786 rcu_assign_pointer(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08005787 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005788}
5789
5790static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
5791{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005792 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005793
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005794 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005795
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005796 if (!--swhash->hlist_refcount)
5797 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005798
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005799 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005800}
5801
5802static void swevent_hlist_put(struct perf_event *event)
5803{
5804 int cpu;
5805
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005806 for_each_possible_cpu(cpu)
5807 swevent_hlist_put_cpu(event, cpu);
5808}
5809
5810static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
5811{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005812 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005813 int err = 0;
5814
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005815 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005816
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005817 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005818 struct swevent_hlist *hlist;
5819
5820 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
5821 if (!hlist) {
5822 err = -ENOMEM;
5823 goto exit;
5824 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005825 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005826 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005827 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005828exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02005829 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005830
5831 return err;
5832}
5833
5834static int swevent_hlist_get(struct perf_event *event)
5835{
5836 int err;
5837 int cpu, failed_cpu;
5838
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005839 get_online_cpus();
5840 for_each_possible_cpu(cpu) {
5841 err = swevent_hlist_get_cpu(event, cpu);
5842 if (err) {
5843 failed_cpu = cpu;
5844 goto fail;
5845 }
5846 }
5847 put_online_cpus();
5848
5849 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02005850fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02005851 for_each_possible_cpu(cpu) {
5852 if (cpu == failed_cpu)
5853 break;
5854 swevent_hlist_put_cpu(event, cpu);
5855 }
5856
5857 put_online_cpus();
5858 return err;
5859}
5860
Ingo Molnarc5905af2012-02-24 08:31:31 +01005861struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005862
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005863static void sw_perf_event_destroy(struct perf_event *event)
5864{
5865 u64 event_id = event->attr.config;
5866
5867 WARN_ON(event->parent);
5868
Ingo Molnarc5905af2012-02-24 08:31:31 +01005869 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005870 swevent_hlist_put(event);
5871}
5872
5873static int perf_swevent_init(struct perf_event *event)
5874{
Tommi Rantala8176cce2013-04-13 22:49:14 +03005875 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005876
5877 if (event->attr.type != PERF_TYPE_SOFTWARE)
5878 return -ENOENT;
5879
Stephane Eranian2481c5f2012-02-09 23:20:59 +01005880 /*
5881 * no branch sampling for software events
5882 */
5883 if (has_branch_stack(event))
5884 return -EOPNOTSUPP;
5885
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005886 switch (event_id) {
5887 case PERF_COUNT_SW_CPU_CLOCK:
5888 case PERF_COUNT_SW_TASK_CLOCK:
5889 return -ENOENT;
5890
5891 default:
5892 break;
5893 }
5894
Dan Carpenterce677832010-10-24 21:50:42 +02005895 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005896 return -ENOENT;
5897
5898 if (!event->parent) {
5899 int err;
5900
5901 err = swevent_hlist_get(event);
5902 if (err)
5903 return err;
5904
Ingo Molnarc5905af2012-02-24 08:31:31 +01005905 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005906 event->destroy = sw_perf_event_destroy;
5907 }
5908
5909 return 0;
5910}
5911
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005912static int perf_swevent_event_idx(struct perf_event *event)
5913{
5914 return 0;
5915}
5916
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005917static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02005918 .task_ctx_nr = perf_sw_context,
5919
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005920 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02005921 .add = perf_swevent_add,
5922 .del = perf_swevent_del,
5923 .start = perf_swevent_start,
5924 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005925 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01005926
5927 .event_idx = perf_swevent_event_idx,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005928};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005929
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02005930#ifdef CONFIG_EVENT_TRACING
5931
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005932static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02005933 struct perf_sample_data *data)
5934{
5935 void *record = data->raw->data;
5936
5937 if (likely(!event->filter) || filter_match_preds(event->filter, record))
5938 return 1;
5939 return 0;
5940}
5941
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005942static int perf_tp_event_match(struct perf_event *event,
5943 struct perf_sample_data *data,
5944 struct pt_regs *regs)
5945{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01005946 if (event->hw.state & PERF_HES_STOPPED)
5947 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02005948 /*
5949 * All tracepoints are from kernel-space.
5950 */
5951 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005952 return 0;
5953
5954 if (!perf_tp_filter_match(event, data))
5955 return 0;
5956
5957 return 1;
5958}
5959
5960void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005961 struct pt_regs *regs, struct hlist_head *head, int rctx,
5962 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005963{
5964 struct perf_sample_data data;
5965 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005966
5967 struct perf_raw_record raw = {
5968 .size = entry_size,
5969 .data = record,
5970 };
5971
Robert Richterfd0d0002012-04-02 20:19:08 +02005972 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005973 data.raw = &raw;
5974
Sasha Levinb67bfe02013-02-27 17:06:00 -08005975 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005976 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02005977 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02005978 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02005979
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005980 /*
5981 * If we got specified a target task, also iterate its context and
5982 * deliver this event there too.
5983 */
5984 if (task && task != current) {
5985 struct perf_event_context *ctx;
5986 struct trace_entry *entry = record;
5987
5988 rcu_read_lock();
5989 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
5990 if (!ctx)
5991 goto unlock;
5992
5993 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5994 if (event->attr.type != PERF_TYPE_TRACEPOINT)
5995 continue;
5996 if (event->attr.config != entry->type)
5997 continue;
5998 if (perf_tp_event_match(event, &data, regs))
5999 perf_swevent_event(event, count, &data, regs);
6000 }
6001unlock:
6002 rcu_read_unlock();
6003 }
6004
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006005 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006006}
6007EXPORT_SYMBOL_GPL(perf_tp_event);
6008
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006009static void tp_perf_event_destroy(struct perf_event *event)
6010{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006011 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006012}
6013
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006014static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006015{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006016 int err;
6017
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006018 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6019 return -ENOENT;
6020
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006021 /*
6022 * no branch sampling for tracepoint events
6023 */
6024 if (has_branch_stack(event))
6025 return -EOPNOTSUPP;
6026
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006027 err = perf_trace_init(event);
6028 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006029 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006030
6031 event->destroy = tp_perf_event_destroy;
6032
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006033 return 0;
6034}
6035
6036static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006037 .task_ctx_nr = perf_sw_context,
6038
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006039 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006040 .add = perf_trace_add,
6041 .del = perf_trace_del,
6042 .start = perf_swevent_start,
6043 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006044 .read = perf_swevent_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006045
6046 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006047};
6048
6049static inline void perf_tp_register(void)
6050{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006051 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006052}
Li Zefan6fb29152009-10-15 11:21:42 +08006053
6054static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6055{
6056 char *filter_str;
6057 int ret;
6058
6059 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6060 return -EINVAL;
6061
6062 filter_str = strndup_user(arg, PAGE_SIZE);
6063 if (IS_ERR(filter_str))
6064 return PTR_ERR(filter_str);
6065
6066 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6067
6068 kfree(filter_str);
6069 return ret;
6070}
6071
6072static void perf_event_free_filter(struct perf_event *event)
6073{
6074 ftrace_profile_free_filter(event);
6075}
6076
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006077#else
Li Zefan6fb29152009-10-15 11:21:42 +08006078
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006079static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006080{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006081}
Li Zefan6fb29152009-10-15 11:21:42 +08006082
6083static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6084{
6085 return -ENOENT;
6086}
6087
6088static void perf_event_free_filter(struct perf_event *event)
6089{
6090}
6091
Li Zefan07b139c2009-12-21 14:27:35 +08006092#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006093
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006094#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006095void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006096{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006097 struct perf_sample_data sample;
6098 struct pt_regs *regs = data;
6099
Robert Richterfd0d0002012-04-02 20:19:08 +02006100 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006101
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006102 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006103 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02006104}
6105#endif
6106
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006107/*
6108 * hrtimer based swevent callback
6109 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006110
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006111static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006112{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006113 enum hrtimer_restart ret = HRTIMER_RESTART;
6114 struct perf_sample_data data;
6115 struct pt_regs *regs;
6116 struct perf_event *event;
6117 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006118
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006119 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006120
6121 if (event->state != PERF_EVENT_STATE_ACTIVE)
6122 return HRTIMER_NORESTART;
6123
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006124 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006125
Robert Richterfd0d0002012-04-02 20:19:08 +02006126 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006127 regs = get_irq_regs();
6128
6129 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08006130 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02006131 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006132 ret = HRTIMER_NORESTART;
6133 }
6134
6135 period = max_t(u64, 10000, event->hw.sample_period);
6136 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
6137
6138 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006139}
6140
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006141static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006142{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006143 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006144 s64 period;
6145
6146 if (!is_sampling_event(event))
6147 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006148
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006149 period = local64_read(&hwc->period_left);
6150 if (period) {
6151 if (period < 0)
6152 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006153
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01006154 local64_set(&hwc->period_left, 0);
6155 } else {
6156 period = max_t(u64, 10000, hwc->sample_period);
6157 }
6158 __hrtimer_start_range_ns(&hwc->hrtimer,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006159 ns_to_ktime(period), 0,
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02006160 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006161}
6162
6163static void perf_swevent_cancel_hrtimer(struct perf_event *event)
6164{
6165 struct hw_perf_event *hwc = &event->hw;
6166
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006167 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006168 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02006169 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006170
6171 hrtimer_cancel(&hwc->hrtimer);
6172 }
6173}
6174
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006175static void perf_swevent_init_hrtimer(struct perf_event *event)
6176{
6177 struct hw_perf_event *hwc = &event->hw;
6178
6179 if (!is_sampling_event(event))
6180 return;
6181
6182 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
6183 hwc->hrtimer.function = perf_swevent_hrtimer;
6184
6185 /*
6186 * Since hrtimers have a fixed rate, we can do a static freq->period
6187 * mapping and avoid the whole period adjust feedback stuff.
6188 */
6189 if (event->attr.freq) {
6190 long freq = event->attr.sample_freq;
6191
6192 event->attr.sample_period = NSEC_PER_SEC / freq;
6193 hwc->sample_period = event->attr.sample_period;
6194 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09006195 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006196 event->attr.freq = 0;
6197 }
6198}
6199
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006200/*
6201 * Software event: cpu wall time clock
6202 */
6203
6204static void cpu_clock_event_update(struct perf_event *event)
6205{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006206 s64 prev;
6207 u64 now;
6208
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006209 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006210 prev = local64_xchg(&event->hw.prev_count, now);
6211 local64_add(now - prev, &event->count);
6212}
6213
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006214static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006215{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006216 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006217 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006218}
6219
6220static void cpu_clock_event_stop(struct perf_event *event, int flags)
6221{
6222 perf_swevent_cancel_hrtimer(event);
6223 cpu_clock_event_update(event);
6224}
6225
6226static int cpu_clock_event_add(struct perf_event *event, int flags)
6227{
6228 if (flags & PERF_EF_START)
6229 cpu_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006230
6231 return 0;
6232}
6233
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006234static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006235{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006236 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006237}
6238
6239static void cpu_clock_event_read(struct perf_event *event)
6240{
6241 cpu_clock_event_update(event);
6242}
6243
6244static int cpu_clock_event_init(struct perf_event *event)
6245{
6246 if (event->attr.type != PERF_TYPE_SOFTWARE)
6247 return -ENOENT;
6248
6249 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
6250 return -ENOENT;
6251
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006252 /*
6253 * no branch sampling for software events
6254 */
6255 if (has_branch_stack(event))
6256 return -EOPNOTSUPP;
6257
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006258 perf_swevent_init_hrtimer(event);
6259
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006260 return 0;
6261}
6262
6263static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006264 .task_ctx_nr = perf_sw_context,
6265
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006266 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006267 .add = cpu_clock_event_add,
6268 .del = cpu_clock_event_del,
6269 .start = cpu_clock_event_start,
6270 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006271 .read = cpu_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006272
6273 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006274};
6275
6276/*
6277 * Software event: task time clock
6278 */
6279
6280static void task_clock_event_update(struct perf_event *event, u64 now)
6281{
6282 u64 prev;
6283 s64 delta;
6284
6285 prev = local64_xchg(&event->hw.prev_count, now);
6286 delta = now - prev;
6287 local64_add(delta, &event->count);
6288}
6289
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006290static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006291{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006292 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006293 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006294}
6295
6296static void task_clock_event_stop(struct perf_event *event, int flags)
6297{
6298 perf_swevent_cancel_hrtimer(event);
6299 task_clock_event_update(event, event->ctx->time);
6300}
6301
6302static int task_clock_event_add(struct perf_event *event, int flags)
6303{
6304 if (flags & PERF_EF_START)
6305 task_clock_event_start(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006306
6307 return 0;
6308}
6309
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006310static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006311{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006312 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006313}
6314
6315static void task_clock_event_read(struct perf_event *event)
6316{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01006317 u64 now = perf_clock();
6318 u64 delta = now - event->ctx->timestamp;
6319 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006320
6321 task_clock_event_update(event, time);
6322}
6323
6324static int task_clock_event_init(struct perf_event *event)
6325{
6326 if (event->attr.type != PERF_TYPE_SOFTWARE)
6327 return -ENOENT;
6328
6329 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
6330 return -ENOENT;
6331
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006332 /*
6333 * no branch sampling for software events
6334 */
6335 if (has_branch_stack(event))
6336 return -EOPNOTSUPP;
6337
Peter Zijlstraba3dd362011-02-15 12:41:46 +01006338 perf_swevent_init_hrtimer(event);
6339
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006340 return 0;
6341}
6342
6343static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006344 .task_ctx_nr = perf_sw_context,
6345
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006346 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006347 .add = task_clock_event_add,
6348 .del = task_clock_event_del,
6349 .start = task_clock_event_start,
6350 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006351 .read = task_clock_event_read,
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006352
6353 .event_idx = perf_swevent_event_idx,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006354};
6355
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006356static void perf_pmu_nop_void(struct pmu *pmu)
6357{
6358}
6359
6360static int perf_pmu_nop_int(struct pmu *pmu)
6361{
6362 return 0;
6363}
6364
6365static void perf_pmu_start_txn(struct pmu *pmu)
6366{
6367 perf_pmu_disable(pmu);
6368}
6369
6370static int perf_pmu_commit_txn(struct pmu *pmu)
6371{
6372 perf_pmu_enable(pmu);
6373 return 0;
6374}
6375
6376static void perf_pmu_cancel_txn(struct pmu *pmu)
6377{
6378 perf_pmu_enable(pmu);
6379}
6380
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006381static int perf_event_idx_default(struct perf_event *event)
6382{
6383 return event->hw.idx + 1;
6384}
6385
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006386/*
6387 * Ensures all contexts with the same task_ctx_nr have the same
6388 * pmu_cpu_context too.
6389 */
Mark Rutland9e317042014-02-10 17:44:18 +00006390static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006391{
6392 struct pmu *pmu;
6393
6394 if (ctxn < 0)
6395 return NULL;
6396
6397 list_for_each_entry(pmu, &pmus, entry) {
6398 if (pmu->task_ctx_nr == ctxn)
6399 return pmu->pmu_cpu_context;
6400 }
6401
6402 return NULL;
6403}
6404
Peter Zijlstra51676952010-12-07 14:18:20 +01006405static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006406{
Peter Zijlstra51676952010-12-07 14:18:20 +01006407 int cpu;
6408
6409 for_each_possible_cpu(cpu) {
6410 struct perf_cpu_context *cpuctx;
6411
6412 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6413
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006414 if (cpuctx->unique_pmu == old_pmu)
6415 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01006416 }
6417}
6418
6419static void free_pmu_context(struct pmu *pmu)
6420{
6421 struct pmu *i;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006422
6423 mutex_lock(&pmus_lock);
6424 /*
6425 * Like a real lame refcount.
6426 */
Peter Zijlstra51676952010-12-07 14:18:20 +01006427 list_for_each_entry(i, &pmus, entry) {
6428 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
6429 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006430 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01006431 }
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006432 }
6433
Peter Zijlstra51676952010-12-07 14:18:20 +01006434 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006435out:
6436 mutex_unlock(&pmus_lock);
6437}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006438static struct idr pmu_idr;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006439
Peter Zijlstraabe43402010-11-17 23:17:37 +01006440static ssize_t
6441type_show(struct device *dev, struct device_attribute *attr, char *page)
6442{
6443 struct pmu *pmu = dev_get_drvdata(dev);
6444
6445 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
6446}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006447static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006448
Stephane Eranian62b85632013-04-03 14:21:34 +02006449static ssize_t
6450perf_event_mux_interval_ms_show(struct device *dev,
6451 struct device_attribute *attr,
6452 char *page)
6453{
6454 struct pmu *pmu = dev_get_drvdata(dev);
6455
6456 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
6457}
6458
6459static ssize_t
6460perf_event_mux_interval_ms_store(struct device *dev,
6461 struct device_attribute *attr,
6462 const char *buf, size_t count)
6463{
6464 struct pmu *pmu = dev_get_drvdata(dev);
6465 int timer, cpu, ret;
6466
6467 ret = kstrtoint(buf, 0, &timer);
6468 if (ret)
6469 return ret;
6470
6471 if (timer < 1)
6472 return -EINVAL;
6473
6474 /* same value, noting to do */
6475 if (timer == pmu->hrtimer_interval_ms)
6476 return count;
6477
6478 pmu->hrtimer_interval_ms = timer;
6479
6480 /* update all cpuctx for this PMU */
6481 for_each_possible_cpu(cpu) {
6482 struct perf_cpu_context *cpuctx;
6483 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
6484 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
6485
6486 if (hrtimer_active(&cpuctx->hrtimer))
6487 hrtimer_forward_now(&cpuctx->hrtimer, cpuctx->hrtimer_interval);
6488 }
6489
6490 return count;
6491}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006492static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02006493
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006494static struct attribute *pmu_dev_attrs[] = {
6495 &dev_attr_type.attr,
6496 &dev_attr_perf_event_mux_interval_ms.attr,
6497 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006498};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006499ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006500
6501static int pmu_bus_running;
6502static struct bus_type pmu_bus = {
6503 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07006504 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01006505};
6506
6507static void pmu_dev_release(struct device *dev)
6508{
6509 kfree(dev);
6510}
6511
6512static int pmu_dev_alloc(struct pmu *pmu)
6513{
6514 int ret = -ENOMEM;
6515
6516 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
6517 if (!pmu->dev)
6518 goto out;
6519
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01006520 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01006521 device_initialize(pmu->dev);
6522 ret = dev_set_name(pmu->dev, "%s", pmu->name);
6523 if (ret)
6524 goto free_dev;
6525
6526 dev_set_drvdata(pmu->dev, pmu);
6527 pmu->dev->bus = &pmu_bus;
6528 pmu->dev->release = pmu_dev_release;
6529 ret = device_add(pmu->dev);
6530 if (ret)
6531 goto free_dev;
6532
6533out:
6534 return ret;
6535
6536free_dev:
6537 put_device(pmu->dev);
6538 goto out;
6539}
6540
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006541static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006542static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006543
Mischa Jonker03d8e802013-06-04 11:45:48 +02006544int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006545{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006546 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006547
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006548 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006549 ret = -ENOMEM;
6550 pmu->pmu_disable_count = alloc_percpu(int);
6551 if (!pmu->pmu_disable_count)
6552 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006553
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006554 pmu->type = -1;
6555 if (!name)
6556 goto skip_type;
6557 pmu->name = name;
6558
6559 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08006560 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
6561 if (type < 0) {
6562 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006563 goto free_pdc;
6564 }
6565 }
6566 pmu->type = type;
6567
Peter Zijlstraabe43402010-11-17 23:17:37 +01006568 if (pmu_bus_running) {
6569 ret = pmu_dev_alloc(pmu);
6570 if (ret)
6571 goto free_idr;
6572 }
6573
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006574skip_type:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006575 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
6576 if (pmu->pmu_cpu_context)
6577 goto got_cpu_context;
6578
Wei Yongjunc4814202013-04-12 11:05:54 +08006579 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006580 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
6581 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01006582 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006583
6584 for_each_possible_cpu(cpu) {
6585 struct perf_cpu_context *cpuctx;
6586
6587 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02006588 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01006589 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02006590 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02006591 cpuctx->ctx.type = cpu_context;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006592 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02006593
6594 __perf_cpu_hrtimer_init(cpuctx, cpu);
6595
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02006596 INIT_LIST_HEAD(&cpuctx->rotation_list);
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02006597 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006598 }
6599
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02006600got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02006601 if (!pmu->start_txn) {
6602 if (pmu->pmu_enable) {
6603 /*
6604 * If we have pmu_enable/pmu_disable calls, install
6605 * transaction stubs that use that to try and batch
6606 * hardware accesses.
6607 */
6608 pmu->start_txn = perf_pmu_start_txn;
6609 pmu->commit_txn = perf_pmu_commit_txn;
6610 pmu->cancel_txn = perf_pmu_cancel_txn;
6611 } else {
6612 pmu->start_txn = perf_pmu_nop_void;
6613 pmu->commit_txn = perf_pmu_nop_int;
6614 pmu->cancel_txn = perf_pmu_nop_void;
6615 }
6616 }
6617
6618 if (!pmu->pmu_enable) {
6619 pmu->pmu_enable = perf_pmu_nop_void;
6620 pmu->pmu_disable = perf_pmu_nop_void;
6621 }
6622
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01006623 if (!pmu->event_idx)
6624 pmu->event_idx = perf_event_idx_default;
6625
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006626 list_add_rcu(&pmu->entry, &pmus);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006627 ret = 0;
6628unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006629 mutex_unlock(&pmus_lock);
6630
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006631 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006632
Peter Zijlstraabe43402010-11-17 23:17:37 +01006633free_dev:
6634 device_del(pmu->dev);
6635 put_device(pmu->dev);
6636
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006637free_idr:
6638 if (pmu->type >= PERF_TYPE_MAX)
6639 idr_remove(&pmu_idr, pmu->type);
6640
Peter Zijlstra108b02c2010-09-06 14:32:03 +02006641free_pdc:
6642 free_percpu(pmu->pmu_disable_count);
6643 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006644}
Yan, Zhengc464c762014-03-18 16:56:41 +08006645EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006646
6647void perf_pmu_unregister(struct pmu *pmu)
6648{
6649 mutex_lock(&pmus_lock);
6650 list_del_rcu(&pmu->entry);
6651 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006652
6653 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02006654 * We dereference the pmu list under both SRCU and regular RCU, so
6655 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006656 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006657 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02006658 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006659
Peter Zijlstra33696fc2010-06-14 08:49:00 +02006660 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006661 if (pmu->type >= PERF_TYPE_MAX)
6662 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01006663 device_del(pmu->dev);
6664 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01006665 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006666}
Yan, Zhengc464c762014-03-18 16:56:41 +08006667EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006668
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006669struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006670{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006671 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006672 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08006673 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006674
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006675 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006676
6677 rcu_read_lock();
6678 pmu = idr_find(&pmu_idr, event->attr.type);
6679 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08006680 if (pmu) {
Yan, Zhengc464c762014-03-18 16:56:41 +08006681 if (!try_module_get(pmu->module)) {
6682 pmu = ERR_PTR(-ENODEV);
6683 goto unlock;
6684 }
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006685 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006686 ret = pmu->event_init(event);
6687 if (ret)
6688 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006689 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08006690 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006691
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006692 list_for_each_entry_rcu(pmu, &pmus, entry) {
Yan, Zhengc464c762014-03-18 16:56:41 +08006693 if (!try_module_get(pmu->module)) {
6694 pmu = ERR_PTR(-ENODEV);
6695 goto unlock;
6696 }
Mark Rutland7e5b2a02011-08-11 12:31:20 +01006697 event->pmu = pmu;
Lin Ming940c5b22011-02-27 21:13:31 +08006698 ret = pmu->event_init(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006699 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006700 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006701
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006702 if (ret != -ENOENT) {
6703 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006704 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006705 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006706 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02006707 pmu = ERR_PTR(-ENOENT);
6708unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006709 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006710
6711 return pmu;
6712}
6713
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006714static void account_event_cpu(struct perf_event *event, int cpu)
6715{
6716 if (event->parent)
6717 return;
6718
6719 if (has_branch_stack(event)) {
6720 if (!(event->attach_state & PERF_ATTACH_TASK))
6721 atomic_inc(&per_cpu(perf_branch_stack_events, cpu));
6722 }
6723 if (is_cgroup_event(event))
6724 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
6725}
6726
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006727static void account_event(struct perf_event *event)
6728{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006729 if (event->parent)
6730 return;
6731
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006732 if (event->attach_state & PERF_ATTACH_TASK)
6733 static_key_slow_inc(&perf_sched_events.key);
6734 if (event->attr.mmap || event->attr.mmap_data)
6735 atomic_inc(&nr_mmap_events);
6736 if (event->attr.comm)
6737 atomic_inc(&nr_comm_events);
6738 if (event->attr.task)
6739 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02006740 if (event->attr.freq) {
6741 if (atomic_inc_return(&nr_freq_events) == 1)
6742 tick_nohz_full_kick_all();
6743 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006744 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006745 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006746 if (is_cgroup_event(event))
6747 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006748
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02006749 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02006750}
6751
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006752/*
6753 * Allocate and initialize a event structure
6754 */
6755static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006756perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006757 struct task_struct *task,
6758 struct perf_event *group_leader,
6759 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03006760 perf_overflow_handler_t overflow_handler,
6761 void *context)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006762{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02006763 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006764 struct perf_event *event;
6765 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006766 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006767
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006768 if ((unsigned)cpu >= nr_cpu_ids) {
6769 if (!task || cpu != -1)
6770 return ERR_PTR(-EINVAL);
6771 }
6772
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02006773 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006774 if (!event)
6775 return ERR_PTR(-ENOMEM);
6776
6777 /*
6778 * Single events are their own group leaders, with an
6779 * empty sibling list:
6780 */
6781 if (!group_leader)
6782 group_leader = event;
6783
6784 mutex_init(&event->child_mutex);
6785 INIT_LIST_HEAD(&event->child_list);
6786
6787 INIT_LIST_HEAD(&event->group_entry);
6788 INIT_LIST_HEAD(&event->event_entry);
6789 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006790 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01006791 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01006792 INIT_HLIST_NODE(&event->hlist_entry);
6793
Peter Zijlstra10c6db12011-11-26 02:47:31 +01006794
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006795 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08006796 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006797
6798 mutex_init(&event->mmap_mutex);
6799
Al Viroa6fa9412012-08-20 14:59:25 +01006800 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006801 event->cpu = cpu;
6802 event->attr = *attr;
6803 event->group_leader = group_leader;
6804 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006805 event->oncpu = -1;
6806
6807 event->parent = parent_event;
6808
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08006809 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006810 event->id = atomic64_inc_return(&perf_event_id);
6811
6812 event->state = PERF_EVENT_STATE_INACTIVE;
6813
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006814 if (task) {
6815 event->attach_state = PERF_ATTACH_TASK;
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006816
6817 if (attr->type == PERF_TYPE_TRACEPOINT)
6818 event->hw.tp_target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006819#ifdef CONFIG_HAVE_HW_BREAKPOINT
6820 /*
6821 * hw_breakpoint is a bit difficult here..
6822 */
Oleg Nesterovf22c1bb2013-02-02 16:27:52 +01006823 else if (attr->type == PERF_TYPE_BREAKPOINT)
Peter Zijlstrad580ff82010-10-14 17:43:23 +02006824 event->hw.bp_target = task;
6825#endif
6826 }
6827
Avi Kivity4dc0da82011-06-29 18:42:35 +03006828 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006829 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006830 context = parent_event->overflow_handler_context;
6831 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01006832
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01006833 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03006834 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02006835
Jiri Olsa0231bb52013-02-01 11:23:45 +01006836 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006837
6838 pmu = NULL;
6839
6840 hwc = &event->hw;
6841 hwc->sample_period = attr->sample_period;
6842 if (attr->freq && attr->sample_freq)
6843 hwc->sample_period = 1;
6844 hwc->last_period = hwc->sample_period;
6845
Peter Zijlstrae7850592010-05-21 14:43:08 +02006846 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006847
6848 /*
6849 * we currently do not support PERF_FORMAT_GROUP on inherited events
6850 */
6851 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006852 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006853
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006854 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006855 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006856 goto err_ns;
6857 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006858 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006859 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006860 }
6861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006862 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006863 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
6864 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006865 if (err)
6866 goto err_pmu;
Stephane Eraniand010b332012-02-09 23:21:00 +01006867 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006868 }
6869
6870 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006871
6872err_pmu:
6873 if (event->destroy)
6874 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08006875 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02006876err_ns:
6877 if (event->ns)
6878 put_pid_ns(event->ns);
6879 kfree(event);
6880
6881 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006882}
6883
6884static int perf_copy_attr(struct perf_event_attr __user *uattr,
6885 struct perf_event_attr *attr)
6886{
6887 u32 size;
6888 int ret;
6889
6890 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
6891 return -EFAULT;
6892
6893 /*
6894 * zero the full structure, so that a short copy will be nice.
6895 */
6896 memset(attr, 0, sizeof(*attr));
6897
6898 ret = get_user(size, &uattr->size);
6899 if (ret)
6900 return ret;
6901
6902 if (size > PAGE_SIZE) /* silly large */
6903 goto err_size;
6904
6905 if (!size) /* abi compat */
6906 size = PERF_ATTR_SIZE_VER0;
6907
6908 if (size < PERF_ATTR_SIZE_VER0)
6909 goto err_size;
6910
6911 /*
6912 * If we're handed a bigger struct than we know of,
6913 * ensure all the unknown bits are 0 - i.e. new
6914 * user-space does not rely on any kernel feature
6915 * extensions we dont know about yet.
6916 */
6917 if (size > sizeof(*attr)) {
6918 unsigned char __user *addr;
6919 unsigned char __user *end;
6920 unsigned char val;
6921
6922 addr = (void __user *)uattr + sizeof(*attr);
6923 end = (void __user *)uattr + size;
6924
6925 for (; addr < end; addr++) {
6926 ret = get_user(val, addr);
6927 if (ret)
6928 return ret;
6929 if (val)
6930 goto err_size;
6931 }
6932 size = sizeof(*attr);
6933 }
6934
6935 ret = copy_from_user(attr, uattr, size);
6936 if (ret)
6937 return -EFAULT;
6938
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05306939 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006940 return -EINVAL;
6941
6942 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
6943 return -EINVAL;
6944
6945 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
6946 return -EINVAL;
6947
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006948 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
6949 u64 mask = attr->branch_sample_type;
6950
6951 /* only using defined bits */
6952 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
6953 return -EINVAL;
6954
6955 /* at least one branch bit must be set */
6956 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
6957 return -EINVAL;
6958
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006959 /* propagate priv level, when not set for branch */
6960 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
6961
6962 /* exclude_kernel checked on syscall entry */
6963 if (!attr->exclude_kernel)
6964 mask |= PERF_SAMPLE_BRANCH_KERNEL;
6965
6966 if (!attr->exclude_user)
6967 mask |= PERF_SAMPLE_BRANCH_USER;
6968
6969 if (!attr->exclude_hv)
6970 mask |= PERF_SAMPLE_BRANCH_HV;
6971 /*
6972 * adjust user setting (for HW filter setup)
6973 */
6974 attr->branch_sample_type = mask;
6975 }
Stephane Eraniane7122092013-06-06 11:02:04 +02006976 /* privileged levels capture (kernel, hv): check permissions */
6977 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02006978 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
6979 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01006980 }
Jiri Olsa40189942012-08-07 15:20:37 +02006981
Jiri Olsac5ebced2012-08-07 15:20:40 +02006982 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02006983 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02006984 if (ret)
6985 return ret;
6986 }
6987
6988 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
6989 if (!arch_perf_have_user_stack_dump())
6990 return -ENOSYS;
6991
6992 /*
6993 * We have __u32 type for the size, but so far
6994 * we can only use __u16 as maximum due to the
6995 * __u16 sample size limit.
6996 */
6997 if (attr->sample_stack_user >= USHRT_MAX)
6998 ret = -EINVAL;
6999 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
7000 ret = -EINVAL;
7001 }
Jiri Olsa40189942012-08-07 15:20:37 +02007002
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007003out:
7004 return ret;
7005
7006err_size:
7007 put_user(sizeof(*attr), &uattr->size);
7008 ret = -E2BIG;
7009 goto out;
7010}
7011
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007012static int
7013perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007014{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007015 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007016 int ret = -EINVAL;
7017
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007018 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007019 goto set;
7020
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007021 /* don't allow circular references */
7022 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007023 goto out;
7024
Peter Zijlstra0f139302010-05-20 14:35:15 +02007025 /*
7026 * Don't allow cross-cpu buffers
7027 */
7028 if (output_event->cpu != event->cpu)
7029 goto out;
7030
7031 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02007032 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02007033 */
7034 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
7035 goto out;
7036
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007037set:
7038 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007039 /* Can't redirect output if we've got an active mmap() */
7040 if (atomic_read(&event->mmap_count))
7041 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007042
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007043 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02007044 /* get the rb we want to redirect to */
7045 rb = ring_buffer_get(output_event);
7046 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007047 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007048 }
7049
Peter Zijlstrab69cf532014-03-14 10:50:33 +01007050 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02007051
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007052 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007053unlock:
7054 mutex_unlock(&event->mmap_mutex);
7055
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007056out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007057 return ret;
7058}
7059
7060/**
7061 * sys_perf_event_open - open a performance event, associate it to a task/cpu
7062 *
7063 * @attr_uptr: event_id type attributes for monitoring/sampling
7064 * @pid: target pid
7065 * @cpu: target cpu
7066 * @group_fd: group leader event fd
7067 */
7068SYSCALL_DEFINE5(perf_event_open,
7069 struct perf_event_attr __user *, attr_uptr,
7070 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
7071{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007072 struct perf_event *group_leader = NULL, *output_event = NULL;
7073 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007074 struct perf_event_attr attr;
7075 struct perf_event_context *ctx;
7076 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04007077 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07007078 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007079 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04007080 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007081 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007082 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01007083 int f_flags = O_RDWR;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007084
7085 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02007086 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007087 return -EINVAL;
7088
7089 err = perf_copy_attr(attr_uptr, &attr);
7090 if (err)
7091 return err;
7092
7093 if (!attr.exclude_kernel) {
7094 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7095 return -EACCES;
7096 }
7097
7098 if (attr.freq) {
7099 if (attr.sample_freq > sysctl_perf_event_sample_rate)
7100 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02007101 } else {
7102 if (attr.sample_period & (1ULL << 63))
7103 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007104 }
7105
Stephane Eraniane5d13672011-02-14 11:20:01 +02007106 /*
7107 * In cgroup mode, the pid argument is used to pass the fd
7108 * opened to the cgroup directory in cgroupfs. The cpu argument
7109 * designates the cpu on which to monitor threads from that
7110 * cgroup.
7111 */
7112 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
7113 return -EINVAL;
7114
Yann Droneauda21b0b32014-01-05 21:36:33 +01007115 if (flags & PERF_FLAG_FD_CLOEXEC)
7116 f_flags |= O_CLOEXEC;
7117
7118 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007119 if (event_fd < 0)
7120 return event_fd;
7121
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007122 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04007123 err = perf_fget_light(group_fd, &group);
7124 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007125 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04007126 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007127 if (flags & PERF_FLAG_FD_OUTPUT)
7128 output_event = group_leader;
7129 if (flags & PERF_FLAG_FD_NO_GROUP)
7130 group_leader = NULL;
7131 }
7132
Stephane Eraniane5d13672011-02-14 11:20:01 +02007133 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007134 task = find_lively_task_by_vpid(pid);
7135 if (IS_ERR(task)) {
7136 err = PTR_ERR(task);
7137 goto err_group_fd;
7138 }
7139 }
7140
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007141 if (task && group_leader &&
7142 group_leader->attr.inherit != attr.inherit) {
7143 err = -EINVAL;
7144 goto err_task;
7145 }
7146
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007147 get_online_cpus();
7148
Avi Kivity4dc0da82011-06-29 18:42:35 +03007149 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
7150 NULL, NULL);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007151 if (IS_ERR(event)) {
7152 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007153 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02007154 }
7155
Stephane Eraniane5d13672011-02-14 11:20:01 +02007156 if (flags & PERF_FLAG_PID_CGROUP) {
7157 err = perf_cgroup_connect(pid, event, &attr, group_leader);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007158 if (err) {
7159 __free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007160 goto err_cpus;
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007161 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02007162 }
7163
Vince Weaver53b25332014-05-16 17:12:12 -04007164 if (is_sampling_event(event)) {
7165 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
7166 err = -ENOTSUPP;
7167 goto err_alloc;
7168 }
7169 }
7170
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007171 account_event(event);
7172
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007173 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007174 * Special case software events and allow them to be part of
7175 * any hardware group.
7176 */
7177 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007178
7179 if (group_leader &&
7180 (is_software_event(event) != is_software_event(group_leader))) {
7181 if (is_software_event(event)) {
7182 /*
7183 * If event and group_leader are not both a software
7184 * event, and event is, then group leader is not.
7185 *
7186 * Allow the addition of software events to !software
7187 * groups, this is safe because software events never
7188 * fail to schedule.
7189 */
7190 pmu = group_leader->pmu;
7191 } else if (is_software_event(group_leader) &&
7192 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
7193 /*
7194 * In case the group is a pure software group, and we
7195 * try to add a hardware event, move the whole group to
7196 * the hardware context.
7197 */
7198 move_group = 1;
7199 }
7200 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007201
7202 /*
7203 * Get the target context (task or percpu):
7204 */
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007205 ctx = find_get_context(pmu, task, event->cpu);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007206 if (IS_ERR(ctx)) {
7207 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007208 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007209 }
7210
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02007211 if (task) {
7212 put_task_struct(task);
7213 task = NULL;
7214 }
7215
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007216 /*
7217 * Look up the group leader (we will attach this event to it):
7218 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007219 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007220 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007221
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007222 /*
7223 * Do not allow a recursive hierarchy (this new sibling
7224 * becoming part of another group-sibling):
7225 */
7226 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007227 goto err_context;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007228 /*
7229 * Do not allow to attach to a group in a different
7230 * task or CPU context:
7231 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007232 if (move_group) {
7233 if (group_leader->ctx->type != ctx->type)
7234 goto err_context;
7235 } else {
7236 if (group_leader->ctx != ctx)
7237 goto err_context;
7238 }
7239
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007240 /*
7241 * Only a group leader can be exclusive or pinned
7242 */
7243 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007244 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007245 }
7246
7247 if (output_event) {
7248 err = perf_event_set_output(event, output_event);
7249 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007250 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02007251 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007252
Yann Droneauda21b0b32014-01-05 21:36:33 +01007253 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
7254 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04007255 if (IS_ERR(event_file)) {
7256 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007257 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04007258 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007259
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007260 if (move_group) {
7261 struct perf_event_context *gctx = group_leader->ctx;
7262
7263 mutex_lock(&gctx->mutex);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007264 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007265
7266 /*
7267 * Removing from the context ends up with disabled
7268 * event. What we want here is event in the initial
7269 * startup state, ready to be add into new context.
7270 */
7271 perf_event__state_init(group_leader);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007272 list_for_each_entry(sibling, &group_leader->sibling_list,
7273 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007274 perf_remove_from_context(sibling, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01007275 perf_event__state_init(sibling);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007276 put_ctx(gctx);
7277 }
7278 mutex_unlock(&gctx->mutex);
7279 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007280 }
7281
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007282 WARN_ON_ONCE(ctx->parent_ctx);
7283 mutex_lock(&ctx->mutex);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007284
7285 if (move_group) {
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007286 synchronize_rcu();
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007287 perf_install_in_context(ctx, group_leader, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007288 get_ctx(ctx);
7289 list_for_each_entry(sibling, &group_leader->sibling_list,
7290 group_entry) {
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007291 perf_install_in_context(ctx, sibling, event->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02007292 get_ctx(ctx);
7293 }
7294 }
7295
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08007296 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007297 perf_unpin_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007298 mutex_unlock(&ctx->mutex);
7299
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007300 put_online_cpus();
7301
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007302 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01007303
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007304 mutex_lock(&current->perf_event_mutex);
7305 list_add_tail(&event->owner_entry, &current->perf_event_list);
7306 mutex_unlock(&current->perf_event_mutex);
7307
Peter Zijlstra8a495422010-05-27 15:47:49 +02007308 /*
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007309 * Precalculate sample_data sizes
7310 */
7311 perf_event__header_size(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007312 perf_event__id_header_size(event);
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02007313
7314 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02007315 * Drop the reference on the group_event after placing the
7316 * new event on the sibling_list. This ensures destruction
7317 * of the group leader will find the pointer to itself in
7318 * perf_group_detach().
7319 */
Al Viro2903ff02012-08-28 12:52:22 -04007320 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007321 fd_install(event_fd, event_file);
7322 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007323
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007324err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007325 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04007326 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02007327err_alloc:
7328 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007329err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08007330 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02007331err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02007332 if (task)
7333 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007334err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04007335 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04007336err_fd:
7337 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007338 return err;
7339}
7340
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007341/**
7342 * perf_event_create_kernel_counter
7343 *
7344 * @attr: attributes of the counter to create
7345 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07007346 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007347 */
7348struct perf_event *
7349perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07007350 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007351 perf_overflow_handler_t overflow_handler,
7352 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007353{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007354 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007355 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007356 int err;
7357
7358 /*
7359 * Get the target context (task or percpu):
7360 */
7361
Avi Kivity4dc0da82011-06-29 18:42:35 +03007362 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
7363 overflow_handler, context);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007364 if (IS_ERR(event)) {
7365 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007366 goto err;
7367 }
7368
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007369 account_event(event);
7370
Matt Helsley38a81da2010-09-13 13:01:20 -07007371 ctx = find_get_context(event->pmu, task, cpu);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007372 if (IS_ERR(ctx)) {
7373 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007374 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007375 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007376
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007377 WARN_ON_ONCE(ctx->parent_ctx);
7378 mutex_lock(&ctx->mutex);
7379 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007380 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007381 mutex_unlock(&ctx->mutex);
7382
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007383 return event;
7384
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007385err_free:
7386 free_event(event);
7387err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01007388 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02007389}
7390EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
7391
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007392void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
7393{
7394 struct perf_event_context *src_ctx;
7395 struct perf_event_context *dst_ctx;
7396 struct perf_event *event, *tmp;
7397 LIST_HEAD(events);
7398
7399 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
7400 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
7401
7402 mutex_lock(&src_ctx->mutex);
7403 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
7404 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007405 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007406 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007407 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02007408 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007409 }
7410 mutex_unlock(&src_ctx->mutex);
7411
7412 synchronize_rcu();
7413
7414 mutex_lock(&dst_ctx->mutex);
Peter Zijlstra98861672013-10-03 16:02:23 +02007415 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
7416 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007417 if (event->state >= PERF_EVENT_STATE_OFF)
7418 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02007419 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08007420 perf_install_in_context(dst_ctx, event, dst_cpu);
7421 get_ctx(dst_ctx);
7422 }
7423 mutex_unlock(&dst_ctx->mutex);
7424}
7425EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
7426
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007427static void sync_child_event(struct perf_event *child_event,
7428 struct task_struct *child)
7429{
7430 struct perf_event *parent_event = child_event->parent;
7431 u64 child_val;
7432
7433 if (child_event->attr.inherit_stat)
7434 perf_event_read_event(child_event, child);
7435
Peter Zijlstrab5e58792010-05-21 14:43:12 +02007436 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007437
7438 /*
7439 * Add back the child's count to the parent's count:
7440 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02007441 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007442 atomic64_add(child_event->total_time_enabled,
7443 &parent_event->child_total_time_enabled);
7444 atomic64_add(child_event->total_time_running,
7445 &parent_event->child_total_time_running);
7446
7447 /*
7448 * Remove this event from the parent's list
7449 */
7450 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7451 mutex_lock(&parent_event->child_mutex);
7452 list_del_init(&child_event->child_list);
7453 mutex_unlock(&parent_event->child_mutex);
7454
7455 /*
7456 * Release the parent event, if this was the last
7457 * reference to it.
7458 */
Al Viroa6fa9412012-08-20 14:59:25 +01007459 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007460}
7461
7462static void
7463__perf_event_exit_task(struct perf_event *child_event,
7464 struct perf_event_context *child_ctx,
7465 struct task_struct *child)
7466{
Peter Zijlstra1903d502014-07-15 17:27:27 +02007467 /*
7468 * Do not destroy the 'original' grouping; because of the context
7469 * switch optimization the original events could've ended up in a
7470 * random child task.
7471 *
7472 * If we were to destroy the original group, all group related
7473 * operations would cease to function properly after this random
7474 * child dies.
7475 *
7476 * Do destroy all inherited groups, we don't care about those
7477 * and being thorough is better.
7478 */
7479 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007480
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007481 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007482 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007483 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007484 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007485 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01007486 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007487 sync_child_event(child_event, child);
7488 free_event(child_event);
7489 }
7490}
7491
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007492static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007493{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02007494 struct perf_event *child_event, *next;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007495 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007496 unsigned long flags;
7497
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007498 if (likely(!child->perf_event_ctxp[ctxn])) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007499 perf_event_task(child, NULL, 0);
7500 return;
7501 }
7502
7503 local_irq_save(flags);
7504 /*
7505 * We can't reschedule here because interrupts are disabled,
7506 * and either child is current or it is a task that can't be
7507 * scheduled, so we are now safe from rescheduling changing
7508 * our context.
7509 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01007510 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007511
7512 /*
7513 * Take the context lock here so that if find_get_context is
7514 * reading child->perf_event_ctxp, we wait until it has
7515 * incremented the context's refcount before we do put_ctx below.
7516 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007517 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02007518 task_ctx_sched_out(child_ctx);
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007519 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007520
7521 /*
7522 * In order to avoid freeing: child_ctx->parent_ctx->task
7523 * under perf_event_context::lock, grab another reference.
7524 */
7525 parent_ctx = child_ctx->parent_ctx;
7526 if (parent_ctx)
7527 get_ctx(parent_ctx);
7528
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007529 /*
7530 * If this context is a clone; unclone it so it can't get
7531 * swapped to another process while we're removing all
7532 * the events from it.
7533 */
7534 unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01007535 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01007536 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007537
7538 /*
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02007539 * Now that we no longer hold perf_event_context::lock, drop
7540 * our extra child_ctx->parent_ctx reference.
7541 */
7542 if (parent_ctx)
7543 put_ctx(parent_ctx);
7544
7545 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007546 * Report the task dead after unscheduling the events so that we
7547 * won't get any samples after PERF_RECORD_EXIT. We can however still
7548 * get a few PERF_RECORD_READ events.
7549 */
7550 perf_event_task(child, child_ctx, 0);
7551
7552 /*
7553 * We can recurse on the same lock type through:
7554 *
7555 * __perf_event_exit_task()
7556 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01007557 * put_event()
7558 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007559 *
7560 * But since its the parent context it won't be the same instance.
7561 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02007562 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007563
Peter Zijlstraebf905f2014-05-29 19:00:24 +02007564 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007565 __perf_event_exit_task(child_event, child_ctx, child);
7566
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007567 mutex_unlock(&child_ctx->mutex);
7568
7569 put_ctx(child_ctx);
7570}
7571
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007572/*
7573 * When a child task exits, feed back event values to parent events.
7574 */
7575void perf_event_exit_task(struct task_struct *child)
7576{
Peter Zijlstra88821352010-11-09 19:01:43 +01007577 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007578 int ctxn;
7579
Peter Zijlstra88821352010-11-09 19:01:43 +01007580 mutex_lock(&child->perf_event_mutex);
7581 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
7582 owner_entry) {
7583 list_del_init(&event->owner_entry);
7584
7585 /*
7586 * Ensure the list deletion is visible before we clear
7587 * the owner, closes a race against perf_release() where
7588 * we need to serialize on the owner->perf_event_mutex.
7589 */
7590 smp_wmb();
7591 event->owner = NULL;
7592 }
7593 mutex_unlock(&child->perf_event_mutex);
7594
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007595 for_each_task_context_nr(ctxn)
7596 perf_event_exit_task_context(child, ctxn);
7597}
7598
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007599static void perf_free_event(struct perf_event *event,
7600 struct perf_event_context *ctx)
7601{
7602 struct perf_event *parent = event->parent;
7603
7604 if (WARN_ON_ONCE(!parent))
7605 return;
7606
7607 mutex_lock(&parent->child_mutex);
7608 list_del_init(&event->child_list);
7609 mutex_unlock(&parent->child_mutex);
7610
Al Viroa6fa9412012-08-20 14:59:25 +01007611 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007612
Peter Zijlstra8a495422010-05-27 15:47:49 +02007613 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007614 list_del_event(event, ctx);
7615 free_event(event);
7616}
7617
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007618/*
7619 * free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007620 * perf_event_init_task below, used by fork() in case of fail.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007621 */
7622void perf_event_free_task(struct task_struct *task)
7623{
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007624 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007625 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007626 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007627
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007628 for_each_task_context_nr(ctxn) {
7629 ctx = task->perf_event_ctxp[ctxn];
7630 if (!ctx)
7631 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007632
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007633 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007634again:
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007635 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
7636 group_entry)
7637 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007638
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007639 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
7640 group_entry)
7641 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007642
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007643 if (!list_empty(&ctx->pinned_groups) ||
7644 !list_empty(&ctx->flexible_groups))
7645 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007646
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007647 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007648
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007649 put_ctx(ctx);
7650 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007651}
7652
Peter Zijlstra4e231c72010-09-09 21:01:59 +02007653void perf_event_delayed_put(struct task_struct *task)
7654{
7655 int ctxn;
7656
7657 for_each_task_context_nr(ctxn)
7658 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
7659}
7660
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007661/*
7662 * inherit a event from parent task to child task:
7663 */
7664static struct perf_event *
7665inherit_event(struct perf_event *parent_event,
7666 struct task_struct *parent,
7667 struct perf_event_context *parent_ctx,
7668 struct task_struct *child,
7669 struct perf_event *group_leader,
7670 struct perf_event_context *child_ctx)
7671{
7672 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02007673 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007674
7675 /*
7676 * Instead of creating recursive hierarchies of events,
7677 * we link inherited events back to the original parent,
7678 * which has a filp for sure, which we use as the reference
7679 * count:
7680 */
7681 if (parent_event->parent)
7682 parent_event = parent_event->parent;
7683
7684 child_event = perf_event_alloc(&parent_event->attr,
7685 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007686 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007687 group_leader, parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007688 NULL, NULL);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007689 if (IS_ERR(child_event))
7690 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01007691
7692 if (!atomic_long_inc_not_zero(&parent_event->refcount)) {
7693 free_event(child_event);
7694 return NULL;
7695 }
7696
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007697 get_ctx(child_ctx);
7698
7699 /*
7700 * Make the child state follow the state of the parent event,
7701 * not its attr.disabled bit. We hold the parent's mutex,
7702 * so we won't race with perf_event_{en, dis}able_family.
7703 */
7704 if (parent_event->state >= PERF_EVENT_STATE_INACTIVE)
7705 child_event->state = PERF_EVENT_STATE_INACTIVE;
7706 else
7707 child_event->state = PERF_EVENT_STATE_OFF;
7708
7709 if (parent_event->attr.freq) {
7710 u64 sample_period = parent_event->hw.sample_period;
7711 struct hw_perf_event *hwc = &child_event->hw;
7712
7713 hwc->sample_period = sample_period;
7714 hwc->last_period = sample_period;
7715
7716 local64_set(&hwc->period_left, sample_period);
7717 }
7718
7719 child_event->ctx = child_ctx;
7720 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007721 child_event->overflow_handler_context
7722 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007723
7724 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02007725 * Precalculate sample_data sizes
7726 */
7727 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02007728 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02007729
7730 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007731 * Link it up in the child's context:
7732 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02007733 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007734 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02007735 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007736
7737 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02007738 * Link this into the parent event's child list
7739 */
7740 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
7741 mutex_lock(&parent_event->child_mutex);
7742 list_add_tail(&child_event->child_list, &parent_event->child_list);
7743 mutex_unlock(&parent_event->child_mutex);
7744
7745 return child_event;
7746}
7747
7748static int inherit_group(struct perf_event *parent_event,
7749 struct task_struct *parent,
7750 struct perf_event_context *parent_ctx,
7751 struct task_struct *child,
7752 struct perf_event_context *child_ctx)
7753{
7754 struct perf_event *leader;
7755 struct perf_event *sub;
7756 struct perf_event *child_ctr;
7757
7758 leader = inherit_event(parent_event, parent, parent_ctx,
7759 child, NULL, child_ctx);
7760 if (IS_ERR(leader))
7761 return PTR_ERR(leader);
7762 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
7763 child_ctr = inherit_event(sub, parent, parent_ctx,
7764 child, leader, child_ctx);
7765 if (IS_ERR(child_ctr))
7766 return PTR_ERR(child_ctr);
7767 }
7768 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007769}
7770
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007771static int
7772inherit_task_group(struct perf_event *event, struct task_struct *parent,
7773 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007774 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007775 int *inherited_all)
7776{
7777 int ret;
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007778 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007779
7780 if (!event->attr.inherit) {
7781 *inherited_all = 0;
7782 return 0;
7783 }
7784
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007785 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007786 if (!child_ctx) {
7787 /*
7788 * This is executed from the parent task context, so
7789 * inherit events that have been marked for cloning.
7790 * First allocate and initialize a context for the
7791 * child.
7792 */
7793
Jiri Olsa734df5a2013-07-09 17:44:10 +02007794 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007795 if (!child_ctx)
7796 return -ENOMEM;
7797
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007798 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007799 }
7800
7801 ret = inherit_group(event, parent, parent_ctx,
7802 child, child_ctx);
7803
7804 if (ret)
7805 *inherited_all = 0;
7806
7807 return ret;
7808}
7809
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007810/*
7811 * Initialize the perf_event context in task_struct
7812 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02007813static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007814{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007815 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007816 struct perf_event_context *cloned_ctx;
7817 struct perf_event *event;
7818 struct task_struct *parent = current;
7819 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007820 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007821 int ret = 0;
7822
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007823 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007824 return 0;
7825
7826 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007827 * If the parent's context is a clone, pin it so it won't get
7828 * swapped under us.
7829 */
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007830 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02007831 if (!parent_ctx)
7832 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007833
7834 /*
7835 * No need to check if parent_ctx != NULL here; since we saw
7836 * it non-NULL earlier, the only reason for it to become NULL
7837 * is if we exit, and since we're currently in the middle of
7838 * a fork we can't be exiting at the same time.
7839 */
7840
7841 /*
7842 * Lock the parent list. No need to lock the child - not PID
7843 * hashed yet and not running, so nobody can access it.
7844 */
7845 mutex_lock(&parent_ctx->mutex);
7846
7847 /*
7848 * We dont have to disable NMIs - we are only looking at
7849 * the list, not manipulating it:
7850 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007851 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007852 ret = inherit_task_group(event, parent, parent_ctx,
7853 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007854 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007855 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007856 }
7857
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007858 /*
7859 * We can't hold ctx->lock when iterating the ->flexible_group list due
7860 * to allocations, but we need to prevent rotation because
7861 * rotate_ctx() will change the list from interrupt context.
7862 */
7863 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7864 parent_ctx->rotate_disable = 1;
7865 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
7866
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007867 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007868 ret = inherit_task_group(event, parent, parent_ctx,
7869 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007870 if (ret)
7871 break;
7872 }
7873
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007874 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
7875 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01007876
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007877 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01007878
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01007879 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007880 /*
7881 * Mark the child context as a clone of the parent
7882 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007883 *
7884 * Note that if the parent is a clone, the holding of
7885 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007886 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007887 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007888 if (cloned_ctx) {
7889 child_ctx->parent_ctx = cloned_ctx;
7890 child_ctx->parent_gen = parent_ctx->parent_gen;
7891 } else {
7892 child_ctx->parent_ctx = parent_ctx;
7893 child_ctx->parent_gen = parent_ctx->generation;
7894 }
7895 get_ctx(child_ctx->parent_ctx);
7896 }
7897
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01007898 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007899 mutex_unlock(&parent_ctx->mutex);
7900
7901 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01007902 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007903
7904 return ret;
7905}
7906
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007907/*
7908 * Initialize the perf_event context in task_struct
7909 */
7910int perf_event_init_task(struct task_struct *child)
7911{
7912 int ctxn, ret;
7913
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01007914 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
7915 mutex_init(&child->perf_event_mutex);
7916 INIT_LIST_HEAD(&child->perf_event_list);
7917
Peter Zijlstra8dc85d52010-09-02 16:50:03 +02007918 for_each_task_context_nr(ctxn) {
7919 ret = perf_event_init_context(child, ctxn);
7920 if (ret)
7921 return ret;
7922 }
7923
7924 return 0;
7925}
7926
Paul Mackerras220b1402010-03-10 20:45:52 +11007927static void __init perf_event_init_all_cpus(void)
7928{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007929 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11007930 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11007931
7932 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007933 swhash = &per_cpu(swevent_htable, cpu);
7934 mutex_init(&swhash->hlist_mutex);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007935 INIT_LIST_HEAD(&per_cpu(rotation_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11007936 }
7937}
7938
Paul Gortmaker0db06282013-06-19 14:53:51 -04007939static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007940{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007941 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007942
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007943 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02007944 swhash->online = true;
Linus Torvalds4536e4d2011-11-03 07:44:04 -07007945 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007946 struct swevent_hlist *hlist;
7947
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007948 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
7949 WARN_ON(!hlist);
7950 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007951 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007952 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007953}
7954
Peter Zijlstrac2774432010-12-08 15:29:02 +01007955#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007956static void perf_pmu_rotate_stop(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007957{
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02007958 struct perf_cpu_context *cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
7959
7960 WARN_ON(!irqs_disabled());
7961
7962 list_del_init(&cpuctx->rotation_list);
7963}
7964
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007965static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007966{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007967 struct remove_event re = { .detach_group = false };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007968 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007969
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007970 perf_pmu_rotate_stop(ctx->pmu);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02007971
Peter Zijlstrae3703f82014-02-24 12:06:12 +01007972 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02007973 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
7974 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01007975 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007976}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007977
7978static void perf_event_exit_cpu_context(int cpu)
7979{
7980 struct perf_event_context *ctx;
7981 struct pmu *pmu;
7982 int idx;
7983
7984 idx = srcu_read_lock(&pmus_srcu);
7985 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02007986 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007987
7988 mutex_lock(&ctx->mutex);
7989 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
7990 mutex_unlock(&ctx->mutex);
7991 }
7992 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007993}
7994
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007995static void perf_event_exit_cpu(int cpu)
7996{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02007997 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007998
Peter Zijlstrae3703f82014-02-24 12:06:12 +01007999 perf_event_exit_cpu_context(cpu);
8000
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008001 mutex_lock(&swhash->hlist_mutex);
Jiri Olsa39af6b12014-04-07 11:04:08 +02008002 swhash->online = false;
Peter Zijlstrab28ab832010-09-06 14:48:15 +02008003 swevent_hlist_release(swhash);
8004 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008005}
8006#else
8007static inline void perf_event_exit_cpu(int cpu) { }
8008#endif
8009
Peter Zijlstrac2774432010-12-08 15:29:02 +01008010static int
8011perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
8012{
8013 int cpu;
8014
8015 for_each_online_cpu(cpu)
8016 perf_event_exit_cpu(cpu);
8017
8018 return NOTIFY_OK;
8019}
8020
8021/*
8022 * Run the perf reboot notifier at the very last possible moment so that
8023 * the generic watchdog code runs as long as possible.
8024 */
8025static struct notifier_block perf_reboot_notifier = {
8026 .notifier_call = perf_reboot,
8027 .priority = INT_MIN,
8028};
8029
Paul Gortmaker0db06282013-06-19 14:53:51 -04008030static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008031perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
8032{
8033 unsigned int cpu = (long)hcpu;
8034
Linus Torvalds4536e4d2011-11-03 07:44:04 -07008035 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008036
8037 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02008038 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008039 perf_event_init_cpu(cpu);
8040 break;
8041
Peter Zijlstra5e116372010-06-11 13:35:08 +02008042 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008043 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008044 perf_event_exit_cpu(cpu);
8045 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008046 default:
8047 break;
8048 }
8049
8050 return NOTIFY_OK;
8051}
8052
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008053void __init perf_event_init(void)
8054{
Jason Wessel3c502e72010-11-04 17:33:01 -05008055 int ret;
8056
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008057 idr_init(&pmu_idr);
8058
Paul Mackerras220b1402010-03-10 20:45:52 +11008059 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008060 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01008061 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
8062 perf_pmu_register(&perf_cpu_clock, NULL, -1);
8063 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02008064 perf_tp_register();
8065 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01008066 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05008067
8068 ret = init_hw_breakpoint();
8069 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02008070
8071 /* do not patch jump label more than once per second */
8072 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01008073
8074 /*
8075 * Build time assertion that we keep the data_head at the intended
8076 * location. IOW, validation we got the __reserved[] size right.
8077 */
8078 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
8079 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008080}
Peter Zijlstraabe43402010-11-17 23:17:37 +01008081
8082static int __init perf_event_sysfs_init(void)
8083{
8084 struct pmu *pmu;
8085 int ret;
8086
8087 mutex_lock(&pmus_lock);
8088
8089 ret = bus_register(&pmu_bus);
8090 if (ret)
8091 goto unlock;
8092
8093 list_for_each_entry(pmu, &pmus, entry) {
8094 if (!pmu->name || pmu->type < 0)
8095 continue;
8096
8097 ret = pmu_dev_alloc(pmu);
8098 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
8099 }
8100 pmu_bus_running = 1;
8101 ret = 0;
8102
8103unlock:
8104 mutex_unlock(&pmus_lock);
8105
8106 return ret;
8107}
8108device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008109
8110#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04008111static struct cgroup_subsys_state *
8112perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008113{
8114 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02008115
Li Zefan1b15d052011-03-03 14:26:06 +08008116 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008117 if (!jc)
8118 return ERR_PTR(-ENOMEM);
8119
Stephane Eraniane5d13672011-02-14 11:20:01 +02008120 jc->info = alloc_percpu(struct perf_cgroup_info);
8121 if (!jc->info) {
8122 kfree(jc);
8123 return ERR_PTR(-ENOMEM);
8124 }
8125
Stephane Eraniane5d13672011-02-14 11:20:01 +02008126 return &jc->css;
8127}
8128
Tejun Heoeb954192013-08-08 20:11:23 -04008129static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008130{
Tejun Heoeb954192013-08-08 20:11:23 -04008131 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
8132
Stephane Eraniane5d13672011-02-14 11:20:01 +02008133 free_percpu(jc->info);
8134 kfree(jc);
8135}
8136
8137static int __perf_cgroup_move(void *info)
8138{
8139 struct task_struct *task = info;
8140 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
8141 return 0;
8142}
8143
Tejun Heoeb954192013-08-08 20:11:23 -04008144static void perf_cgroup_attach(struct cgroup_subsys_state *css,
8145 struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008146{
Tejun Heobb9d97b2011-12-12 18:12:21 -08008147 struct task_struct *task;
8148
Tejun Heo924f0d92014-02-13 06:58:41 -05008149 cgroup_taskset_for_each(task, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08008150 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008151}
8152
Tejun Heoeb954192013-08-08 20:11:23 -04008153static void perf_cgroup_exit(struct cgroup_subsys_state *css,
8154 struct cgroup_subsys_state *old_css,
Li Zefan761b3ef2012-01-31 13:47:36 +08008155 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +02008156{
8157 /*
8158 * cgroup_exit() is called in the copy_process() failure path.
8159 * Ignore this case since the task hasn't ran yet, this avoids
8160 * trying to poke a half freed task state from generic code.
8161 */
8162 if (!(task->flags & PF_EXITING))
8163 return;
8164
Tejun Heobb9d97b2011-12-12 18:12:21 -08008165 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02008166}
8167
Tejun Heo073219e2014-02-08 10:36:58 -05008168struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08008169 .css_alloc = perf_cgroup_css_alloc,
8170 .css_free = perf_cgroup_css_free,
Ingo Molnare7e7ee22011-05-04 08:42:29 +02008171 .exit = perf_cgroup_exit,
Tejun Heobb9d97b2011-12-12 18:12:21 -08008172 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02008173};
8174#endif /* CONFIG_CGROUP_PERF */