blob: 079eb9fcaaa8a622449747435934cb002b777010 [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
Peter Zijlstra90eec102015-11-16 11:08:45 +01006 * Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra
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>
Matt Fleming39bed6c2015-01-23 18:45:40 +000037#include <linux/cgroup.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020038#include <linux/perf_event.h>
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -040039#include <linux/trace_events.h>
Jason Wessel3c502e72010-11-04 17:33:01 -050040#include <linux/hw_breakpoint.h>
Jiri Olsac5ebced2012-08-07 15:20:40 +020041#include <linux/mm_types.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>
Pawel Mollb3f20782014-06-13 16:03:32 +010044#include <linux/compat.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070045#include <linux/bpf.h>
46#include <linux/filter.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020047
Frederic Weisbecker76369132011-05-19 19:55:04 +020048#include "internal.h"
49
Ingo Molnarcdd6c482009-09-21 12:02:48 +020050#include <asm/irq_regs.h>
51
Jiri Olsafadfe7b2014-08-01 14:33:02 +020052static struct workqueue_struct *perf_wq;
53
Peter Zijlstra272325c2015-04-15 11:41:58 +020054typedef int (*remote_function_f)(void *);
55
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010056struct remote_function_call {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020057 struct task_struct *p;
Peter Zijlstra272325c2015-04-15 11:41:58 +020058 remote_function_f func;
Ingo Molnare7e7ee22011-05-04 08:42:29 +020059 void *info;
60 int ret;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010061};
62
63static void remote_function(void *data)
64{
65 struct remote_function_call *tfc = data;
66 struct task_struct *p = tfc->p;
67
68 if (p) {
69 tfc->ret = -EAGAIN;
70 if (task_cpu(p) != smp_processor_id() || !task_curr(p))
71 return;
72 }
73
74 tfc->ret = tfc->func(tfc->info);
75}
76
77/**
78 * task_function_call - call a function on the cpu on which a task runs
79 * @p: the task to evaluate
80 * @func: the function to be called
81 * @info: the function call argument
82 *
83 * Calls the function @func when the task is currently running. This might
84 * be on the current CPU, which just calls the function directly
85 *
86 * returns: @func return value, or
87 * -ESRCH - when the process isn't running
88 * -EAGAIN - when the process moved away
89 */
90static int
Peter Zijlstra272325c2015-04-15 11:41:58 +020091task_function_call(struct task_struct *p, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010092{
93 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +020094 .p = p,
95 .func = func,
96 .info = info,
97 .ret = -ESRCH, /* No such (running) process */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +010098 };
99
100 if (task_curr(p))
101 smp_call_function_single(task_cpu(p), remote_function, &data, 1);
102
103 return data.ret;
104}
105
106/**
107 * cpu_function_call - call a function on the cpu
108 * @func: the function to be called
109 * @info: the function call argument
110 *
111 * Calls the function @func on the remote cpu.
112 *
113 * returns: @func return value or -ENXIO when the cpu is offline
114 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200115static int cpu_function_call(int cpu, remote_function_f func, void *info)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100116{
117 struct remote_function_call data = {
Ingo Molnare7e7ee22011-05-04 08:42:29 +0200118 .p = NULL,
119 .func = func,
120 .info = info,
121 .ret = -ENXIO, /* No such CPU */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +0100122 };
123
124 smp_call_function_single(cpu, remote_function, &data, 1);
125
126 return data.ret;
127}
128
Peter Zijlstra00179602015-11-30 16:26:35 +0100129static void event_function_call(struct perf_event *event,
130 int (*active)(void *),
131 void (*inactive)(void *),
132 void *data)
133{
134 struct perf_event_context *ctx = event->ctx;
135 struct task_struct *task = ctx->task;
136
137 if (!task) {
138 cpu_function_call(event->cpu, active, data);
139 return;
140 }
141
142again:
143 if (!task_function_call(task, active, data))
144 return;
145
146 raw_spin_lock_irq(&ctx->lock);
147 if (ctx->is_active) {
148 /*
149 * Reload the task pointer, it might have been changed by
150 * a concurrent perf_event_context_sched_out().
151 */
152 task = ctx->task;
153 raw_spin_unlock_irq(&ctx->lock);
154 goto again;
155 }
156 inactive(data);
157 raw_spin_unlock_irq(&ctx->lock);
158}
159
Jiri Olsaf8697762014-08-01 14:33:01 +0200160#define EVENT_OWNER_KERNEL ((void *) -1)
161
162static bool is_kernel_event(struct perf_event *event)
163{
164 return event->owner == EVENT_OWNER_KERNEL;
165}
166
Stephane Eraniane5d13672011-02-14 11:20:01 +0200167#define PERF_FLAG_ALL (PERF_FLAG_FD_NO_GROUP |\
168 PERF_FLAG_FD_OUTPUT |\
Yann Droneauda21b0b32014-01-05 21:36:33 +0100169 PERF_FLAG_PID_CGROUP |\
170 PERF_FLAG_FD_CLOEXEC)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200171
Stephane Eranianbce38cd2012-02-09 23:20:51 +0100172/*
173 * branch priv levels that need permission checks
174 */
175#define PERF_SAMPLE_BRANCH_PERM_PLM \
176 (PERF_SAMPLE_BRANCH_KERNEL |\
177 PERF_SAMPLE_BRANCH_HV)
178
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200179enum event_type_t {
180 EVENT_FLEXIBLE = 0x1,
181 EVENT_PINNED = 0x2,
182 EVENT_ALL = EVENT_FLEXIBLE | EVENT_PINNED,
183};
184
Stephane Eraniane5d13672011-02-14 11:20:01 +0200185/*
186 * perf_sched_events : >0 events exist
187 * perf_cgroup_events: >0 per-cpu cgroup events exist on this cpu
188 */
Ingo Molnarc5905af2012-02-24 08:31:31 +0100189struct static_key_deferred perf_sched_events __read_mostly;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200190static DEFINE_PER_CPU(atomic_t, perf_cgroup_events);
Yan, Zhengba532502014-11-04 21:55:58 -0500191static DEFINE_PER_CPU(int, perf_sched_cb_usages);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200192
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200193static atomic_t nr_mmap_events __read_mostly;
194static atomic_t nr_comm_events __read_mostly;
195static atomic_t nr_task_events __read_mostly;
Frederic Weisbecker948b26b2013-08-02 18:29:55 +0200196static atomic_t nr_freq_events __read_mostly;
Adrian Hunter45ac1402015-07-21 12:44:02 +0300197static atomic_t nr_switch_events __read_mostly;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200198
Peter Zijlstra108b02c2010-09-06 14:32:03 +0200199static LIST_HEAD(pmus);
200static DEFINE_MUTEX(pmus_lock);
201static struct srcu_struct pmus_srcu;
202
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200203/*
204 * perf event paranoia level:
205 * -1 - not paranoid at all
206 * 0 - disallow raw tracepoint access for unpriv
207 * 1 - disallow cpu events for unpriv
208 * 2 - disallow kernel profiling for unpriv
209 */
210int sysctl_perf_event_paranoid __read_mostly = 1;
211
Frederic Weisbecker20443382011-03-31 03:33:29 +0200212/* Minimum for 512 kiB + 1 user control page */
213int sysctl_perf_event_mlock __read_mostly = 512 + (PAGE_SIZE / 1024); /* 'free' kiB per user */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200214
215/*
216 * max perf event sample rate
217 */
Dave Hansen14c63f12013-06-21 08:51:36 -0700218#define DEFAULT_MAX_SAMPLE_RATE 100000
219#define DEFAULT_SAMPLE_PERIOD_NS (NSEC_PER_SEC / DEFAULT_MAX_SAMPLE_RATE)
220#define DEFAULT_CPU_TIME_MAX_PERCENT 25
221
222int sysctl_perf_event_sample_rate __read_mostly = DEFAULT_MAX_SAMPLE_RATE;
223
224static int max_samples_per_tick __read_mostly = DIV_ROUND_UP(DEFAULT_MAX_SAMPLE_RATE, HZ);
225static int perf_sample_period_ns __read_mostly = DEFAULT_SAMPLE_PERIOD_NS;
226
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200227static int perf_sample_allowed_ns __read_mostly =
228 DEFAULT_SAMPLE_PERIOD_NS * DEFAULT_CPU_TIME_MAX_PERCENT / 100;
Dave Hansen14c63f12013-06-21 08:51:36 -0700229
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800230static void update_perf_cpu_limits(void)
Dave Hansen14c63f12013-06-21 08:51:36 -0700231{
232 u64 tmp = perf_sample_period_ns;
233
234 tmp *= sysctl_perf_cpu_time_max_percent;
Stephane Eraniane5302922013-07-05 00:30:11 +0200235 do_div(tmp, 100);
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200236 ACCESS_ONCE(perf_sample_allowed_ns) = tmp;
Dave Hansen14c63f12013-06-21 08:51:36 -0700237}
Peter Zijlstra163ec432011-02-16 11:22:34 +0100238
Stephane Eranian9e630202013-04-03 14:21:33 +0200239static int perf_rotate_context(struct perf_cpu_context *cpuctx);
240
Peter Zijlstra163ec432011-02-16 11:22:34 +0100241int perf_proc_update_handler(struct ctl_table *table, int write,
242 void __user *buffer, size_t *lenp,
243 loff_t *ppos)
244{
Knut Petersen723478c2013-09-25 14:29:37 +0200245 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra163ec432011-02-16 11:22:34 +0100246
247 if (ret || !write)
248 return ret;
249
250 max_samples_per_tick = DIV_ROUND_UP(sysctl_perf_event_sample_rate, HZ);
Dave Hansen14c63f12013-06-21 08:51:36 -0700251 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
252 update_perf_cpu_limits();
Peter Zijlstra163ec432011-02-16 11:22:34 +0100253
254 return 0;
255}
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200256
Dave Hansen14c63f12013-06-21 08:51:36 -0700257int sysctl_perf_cpu_time_max_percent __read_mostly = DEFAULT_CPU_TIME_MAX_PERCENT;
258
259int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
260 void __user *buffer, size_t *lenp,
261 loff_t *ppos)
262{
263 int ret = proc_dointvec(table, write, buffer, lenp, ppos);
264
265 if (ret || !write)
266 return ret;
267
268 update_perf_cpu_limits();
269
270 return 0;
271}
272
273/*
274 * perf samples are done in some very critical code paths (NMIs).
275 * If they take too much CPU time, the system can lock up and not
276 * get any real work done. This will drop the sample rate when
277 * we detect that events are taking too long.
278 */
279#define NR_ACCUMULATED_SAMPLES 128
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200280static DEFINE_PER_CPU(u64, running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700281
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100282static void perf_duration_warn(struct irq_work *w)
Dave Hansen14c63f12013-06-21 08:51:36 -0700283{
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100284 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Dave Hansen14c63f12013-06-21 08:51:36 -0700285 u64 avg_local_sample_len;
Stephane Eraniane5302922013-07-05 00:30:11 +0200286 u64 local_samples_len;
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100287
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500288 local_samples_len = __this_cpu_read(running_sample_length);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100289 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
290
291 printk_ratelimited(KERN_WARNING
292 "perf interrupt took too long (%lld > %lld), lowering "
293 "kernel.perf_event_max_sample_rate to %d\n",
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100294 avg_local_sample_len, allowed_ns >> 1,
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100295 sysctl_perf_event_sample_rate);
296}
297
298static DEFINE_IRQ_WORK(perf_duration_work, perf_duration_warn);
299
300void perf_sample_event_took(u64 sample_len_ns)
301{
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200302 u64 allowed_ns = ACCESS_ONCE(perf_sample_allowed_ns);
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100303 u64 avg_local_sample_len;
304 u64 local_samples_len;
Dave Hansen14c63f12013-06-21 08:51:36 -0700305
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200306 if (allowed_ns == 0)
Dave Hansen14c63f12013-06-21 08:51:36 -0700307 return;
308
309 /* decay the counter by 1 average sample */
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500310 local_samples_len = __this_cpu_read(running_sample_length);
Dave Hansen14c63f12013-06-21 08:51:36 -0700311 local_samples_len -= local_samples_len/NR_ACCUMULATED_SAMPLES;
312 local_samples_len += sample_len_ns;
Christoph Lameter4a32fea2014-08-17 12:30:27 -0500313 __this_cpu_write(running_sample_length, local_samples_len);
Dave Hansen14c63f12013-06-21 08:51:36 -0700314
315 /*
316 * note: this will be biased artifically low until we have
317 * seen NR_ACCUMULATED_SAMPLES. Doing it this way keeps us
318 * from having to maintain a count.
319 */
320 avg_local_sample_len = local_samples_len/NR_ACCUMULATED_SAMPLES;
321
Peter Zijlstrad9494cb2013-10-17 15:36:19 +0200322 if (avg_local_sample_len <= allowed_ns)
Dave Hansen14c63f12013-06-21 08:51:36 -0700323 return;
324
325 if (max_samples_per_tick <= 1)
326 return;
327
328 max_samples_per_tick = DIV_ROUND_UP(max_samples_per_tick, 2);
329 sysctl_perf_event_sample_rate = max_samples_per_tick * HZ;
330 perf_sample_period_ns = NSEC_PER_SEC / sysctl_perf_event_sample_rate;
331
Dave Hansen14c63f12013-06-21 08:51:36 -0700332 update_perf_cpu_limits();
Peter Zijlstra6a02ad662014-02-03 18:11:08 +0100333
Peter Zijlstracd578ab2014-02-11 16:01:16 +0100334 if (!irq_work_queue(&perf_duration_work)) {
335 early_printk("perf interrupt took too long (%lld > %lld), lowering "
336 "kernel.perf_event_max_sample_rate to %d\n",
337 avg_local_sample_len, allowed_ns >> 1,
338 sysctl_perf_event_sample_rate);
339 }
Dave Hansen14c63f12013-06-21 08:51:36 -0700340}
341
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200342static atomic64_t perf_event_id;
343
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200344static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
345 enum event_type_t event_type);
346
347static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +0200348 enum event_type_t event_type,
349 struct task_struct *task);
350
351static void update_context_time(struct perf_event_context *ctx);
352static u64 perf_event_time(struct perf_event *event);
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200353
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200354void __weak perf_event_print_debug(void) { }
355
Matt Fleming84c79912010-10-03 21:41:13 +0100356extern __weak const char *perf_pmu_name(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200357{
Matt Fleming84c79912010-10-03 21:41:13 +0100358 return "pmu";
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200359}
360
Stephane Eranian0b3fcf12011-01-03 18:20:01 +0200361static inline u64 perf_clock(void)
362{
363 return local_clock();
364}
365
Peter Zijlstra34f43922015-02-20 14:05:38 +0100366static inline u64 perf_event_clock(struct perf_event *event)
367{
368 return event->clock();
369}
370
Stephane Eraniane5d13672011-02-14 11:20:01 +0200371static inline struct perf_cpu_context *
372__get_cpu_context(struct perf_event_context *ctx)
373{
374 return this_cpu_ptr(ctx->pmu->pmu_cpu_context);
375}
376
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200377static void perf_ctx_lock(struct perf_cpu_context *cpuctx,
378 struct perf_event_context *ctx)
379{
380 raw_spin_lock(&cpuctx->ctx.lock);
381 if (ctx)
382 raw_spin_lock(&ctx->lock);
383}
384
385static void perf_ctx_unlock(struct perf_cpu_context *cpuctx,
386 struct perf_event_context *ctx)
387{
388 if (ctx)
389 raw_spin_unlock(&ctx->lock);
390 raw_spin_unlock(&cpuctx->ctx.lock);
391}
392
Stephane Eraniane5d13672011-02-14 11:20:01 +0200393#ifdef CONFIG_CGROUP_PERF
394
Stephane Eraniane5d13672011-02-14 11:20:01 +0200395static inline bool
396perf_cgroup_match(struct perf_event *event)
397{
398 struct perf_event_context *ctx = event->ctx;
399 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
400
Tejun Heoef824fa2013-04-08 19:00:38 -0700401 /* @event doesn't care about cgroup */
402 if (!event->cgrp)
403 return true;
404
405 /* wants specific cgroup scope but @cpuctx isn't associated with any */
406 if (!cpuctx->cgrp)
407 return false;
408
409 /*
410 * Cgroup scoping is recursive. An event enabled for a cgroup is
411 * also enabled for all its descendant cgroups. If @cpuctx's
412 * cgroup is a descendant of @event's (the test covers identity
413 * case), it's a match.
414 */
415 return cgroup_is_descendant(cpuctx->cgrp->css.cgroup,
416 event->cgrp->css.cgroup);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200417}
418
Stephane Eraniane5d13672011-02-14 11:20:01 +0200419static inline void perf_detach_cgroup(struct perf_event *event)
420{
Zefan Li4e2ba652014-09-19 16:53:14 +0800421 css_put(&event->cgrp->css);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200422 event->cgrp = NULL;
423}
424
425static inline int is_cgroup_event(struct perf_event *event)
426{
427 return event->cgrp != NULL;
428}
429
430static inline u64 perf_cgroup_event_time(struct perf_event *event)
431{
432 struct perf_cgroup_info *t;
433
434 t = per_cpu_ptr(event->cgrp->info, event->cpu);
435 return t->time;
436}
437
438static inline void __update_cgrp_time(struct perf_cgroup *cgrp)
439{
440 struct perf_cgroup_info *info;
441 u64 now;
442
443 now = perf_clock();
444
445 info = this_cpu_ptr(cgrp->info);
446
447 info->time += now - info->timestamp;
448 info->timestamp = now;
449}
450
451static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
452{
453 struct perf_cgroup *cgrp_out = cpuctx->cgrp;
454 if (cgrp_out)
455 __update_cgrp_time(cgrp_out);
456}
457
458static inline void update_cgrp_time_from_event(struct perf_event *event)
459{
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200460 struct perf_cgroup *cgrp;
461
Stephane Eraniane5d13672011-02-14 11:20:01 +0200462 /*
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200463 * ensure we access cgroup data only when needed and
464 * when we know the cgroup is pinned (css_get)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200465 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200466 if (!is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +0200467 return;
468
Stephane Eranian614e4c42015-11-12 11:00:04 +0100469 cgrp = perf_cgroup_from_task(current, event->ctx);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200470 /*
471 * Do not update time when cgroup is not active
472 */
473 if (cgrp == event->cgrp)
474 __update_cgrp_time(event->cgrp);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200475}
476
477static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200478perf_cgroup_set_timestamp(struct task_struct *task,
479 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200480{
481 struct perf_cgroup *cgrp;
482 struct perf_cgroup_info *info;
483
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200484 /*
485 * ctx->lock held by caller
486 * ensure we do not access cgroup data
487 * unless we have the cgroup pinned (css_get)
488 */
489 if (!task || !ctx->nr_cgroups)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200490 return;
491
Stephane Eranian614e4c42015-11-12 11:00:04 +0100492 cgrp = perf_cgroup_from_task(task, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200493 info = this_cpu_ptr(cgrp->info);
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200494 info->timestamp = ctx->timestamp;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200495}
496
497#define PERF_CGROUP_SWOUT 0x1 /* cgroup switch out every event */
498#define PERF_CGROUP_SWIN 0x2 /* cgroup switch in events based on task */
499
500/*
501 * reschedule events based on the cgroup constraint of task.
502 *
503 * mode SWOUT : schedule out everything
504 * mode SWIN : schedule in based on cgroup for next
505 */
Geliang Tang18ab2cd2015-09-27 23:25:50 +0800506static void perf_cgroup_switch(struct task_struct *task, int mode)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200507{
508 struct perf_cpu_context *cpuctx;
509 struct pmu *pmu;
510 unsigned long flags;
511
512 /*
513 * disable interrupts to avoid geting nr_cgroup
514 * changes via __perf_event_disable(). Also
515 * avoids preemption.
516 */
517 local_irq_save(flags);
518
519 /*
520 * we reschedule only in the presence of cgroup
521 * constrained events.
522 */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200523
524 list_for_each_entry_rcu(pmu, &pmus, entry) {
Stephane Eraniane5d13672011-02-14 11:20:01 +0200525 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200526 if (cpuctx->unique_pmu != pmu)
527 continue; /* ensure we process each cpuctx once */
Stephane Eraniane5d13672011-02-14 11:20:01 +0200528
Stephane Eraniane5d13672011-02-14 11:20:01 +0200529 /*
530 * perf_cgroup_events says at least one
531 * context on this CPU has cgroup events.
532 *
533 * ctx->nr_cgroups reports the number of cgroup
534 * events for a context.
535 */
536 if (cpuctx->ctx.nr_cgroups > 0) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200537 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
538 perf_pmu_disable(cpuctx->ctx.pmu);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200539
540 if (mode & PERF_CGROUP_SWOUT) {
541 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
542 /*
543 * must not be done before ctxswout due
544 * to event_filter_match() in event_sched_out()
545 */
546 cpuctx->cgrp = NULL;
547 }
548
549 if (mode & PERF_CGROUP_SWIN) {
Stephane Eraniane566b762011-04-06 02:54:54 +0200550 WARN_ON_ONCE(cpuctx->cgrp);
Peter Zijlstra95cf59e2012-10-02 15:41:23 +0200551 /*
552 * set cgrp before ctxsw in to allow
553 * event_filter_match() to not have to pass
554 * task around
Stephane Eranian614e4c42015-11-12 11:00:04 +0100555 * we pass the cpuctx->ctx to perf_cgroup_from_task()
556 * because cgorup events are only per-cpu
Stephane Eraniane5d13672011-02-14 11:20:01 +0200557 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100558 cpuctx->cgrp = perf_cgroup_from_task(task, &cpuctx->ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200559 cpu_ctx_sched_in(cpuctx, EVENT_ALL, task);
560 }
Peter Zijlstrafacc4302011-04-09 21:17:42 +0200561 perf_pmu_enable(cpuctx->ctx.pmu);
562 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200563 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200564 }
565
Stephane Eraniane5d13672011-02-14 11:20:01 +0200566 local_irq_restore(flags);
567}
568
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200569static inline void perf_cgroup_sched_out(struct task_struct *task,
570 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200571{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200572 struct perf_cgroup *cgrp1;
573 struct perf_cgroup *cgrp2 = NULL;
574
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100575 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200576 /*
577 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100578 * we do not need to pass the ctx here because we know
579 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200580 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100581 cgrp1 = perf_cgroup_from_task(task, NULL);
Peter Zijlstra70a01652016-01-08 09:29:16 +0100582 cgrp2 = perf_cgroup_from_task(next, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200583
584 /*
585 * only schedule out current cgroup events if we know
586 * that we are switching to a different cgroup. Otherwise,
587 * do no touch the cgroup events.
588 */
589 if (cgrp1 != cgrp2)
590 perf_cgroup_switch(task, PERF_CGROUP_SWOUT);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100591
592 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200593}
594
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200595static inline void perf_cgroup_sched_in(struct task_struct *prev,
596 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200597{
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200598 struct perf_cgroup *cgrp1;
599 struct perf_cgroup *cgrp2 = NULL;
600
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100601 rcu_read_lock();
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200602 /*
603 * we come here when we know perf_cgroup_events > 0
Stephane Eranian614e4c42015-11-12 11:00:04 +0100604 * we do not need to pass the ctx here because we know
605 * we are holding the rcu lock
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200606 */
Stephane Eranian614e4c42015-11-12 11:00:04 +0100607 cgrp1 = perf_cgroup_from_task(task, NULL);
Stephane Eranian614e4c42015-11-12 11:00:04 +0100608 cgrp2 = perf_cgroup_from_task(prev, NULL);
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200609
610 /*
611 * only need to schedule in cgroup events if we are changing
612 * cgroup during ctxsw. Cgroup events were not scheduled
613 * out of ctxsw out if that was not the case.
614 */
615 if (cgrp1 != cgrp2)
616 perf_cgroup_switch(task, PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +0100617
618 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +0200619}
620
621static inline int perf_cgroup_connect(int fd, struct perf_event *event,
622 struct perf_event_attr *attr,
623 struct perf_event *group_leader)
624{
625 struct perf_cgroup *cgrp;
626 struct cgroup_subsys_state *css;
Al Viro2903ff02012-08-28 12:52:22 -0400627 struct fd f = fdget(fd);
628 int ret = 0;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200629
Al Viro2903ff02012-08-28 12:52:22 -0400630 if (!f.file)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200631 return -EBADF;
632
Al Virob5830432014-10-31 01:22:04 -0400633 css = css_tryget_online_from_dir(f.file->f_path.dentry,
Tejun Heoec903c02014-05-13 12:11:01 -0400634 &perf_event_cgrp_subsys);
Li Zefan3db272c2011-03-03 14:25:37 +0800635 if (IS_ERR(css)) {
636 ret = PTR_ERR(css);
637 goto out;
638 }
Stephane Eraniane5d13672011-02-14 11:20:01 +0200639
640 cgrp = container_of(css, struct perf_cgroup, css);
641 event->cgrp = cgrp;
642
643 /*
644 * all events in a group must monitor
645 * the same cgroup because a task belongs
646 * to only one perf cgroup at a time
647 */
648 if (group_leader && group_leader->cgrp != cgrp) {
649 perf_detach_cgroup(event);
650 ret = -EINVAL;
Stephane Eraniane5d13672011-02-14 11:20:01 +0200651 }
Li Zefan3db272c2011-03-03 14:25:37 +0800652out:
Al Viro2903ff02012-08-28 12:52:22 -0400653 fdput(f);
Stephane Eraniane5d13672011-02-14 11:20:01 +0200654 return ret;
655}
656
657static inline void
658perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
659{
660 struct perf_cgroup_info *t;
661 t = per_cpu_ptr(event->cgrp->info, event->cpu);
662 event->shadow_ctx_time = now - t->timestamp;
663}
664
665static inline void
666perf_cgroup_defer_enabled(struct perf_event *event)
667{
668 /*
669 * when the current task's perf cgroup does not match
670 * the event's, we need to remember to call the
671 * perf_mark_enable() function the first time a task with
672 * a matching perf cgroup is scheduled in.
673 */
674 if (is_cgroup_event(event) && !perf_cgroup_match(event))
675 event->cgrp_defer_enabled = 1;
676}
677
678static inline void
679perf_cgroup_mark_enabled(struct perf_event *event,
680 struct perf_event_context *ctx)
681{
682 struct perf_event *sub;
683 u64 tstamp = perf_event_time(event);
684
685 if (!event->cgrp_defer_enabled)
686 return;
687
688 event->cgrp_defer_enabled = 0;
689
690 event->tstamp_enabled = tstamp - event->total_time_enabled;
691 list_for_each_entry(sub, &event->sibling_list, group_entry) {
692 if (sub->state >= PERF_EVENT_STATE_INACTIVE) {
693 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
694 sub->cgrp_defer_enabled = 0;
695 }
696 }
697}
698#else /* !CONFIG_CGROUP_PERF */
699
700static inline bool
701perf_cgroup_match(struct perf_event *event)
702{
703 return true;
704}
705
706static inline void perf_detach_cgroup(struct perf_event *event)
707{}
708
709static inline int is_cgroup_event(struct perf_event *event)
710{
711 return 0;
712}
713
714static inline u64 perf_cgroup_event_cgrp_time(struct perf_event *event)
715{
716 return 0;
717}
718
719static inline void update_cgrp_time_from_event(struct perf_event *event)
720{
721}
722
723static inline void update_cgrp_time_from_cpuctx(struct perf_cpu_context *cpuctx)
724{
725}
726
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200727static inline void perf_cgroup_sched_out(struct task_struct *task,
728 struct task_struct *next)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200729{
730}
731
Stephane Eraniana8d757e2011-08-25 15:58:03 +0200732static inline void perf_cgroup_sched_in(struct task_struct *prev,
733 struct task_struct *task)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200734{
735}
736
737static inline int perf_cgroup_connect(pid_t pid, struct perf_event *event,
738 struct perf_event_attr *attr,
739 struct perf_event *group_leader)
740{
741 return -EINVAL;
742}
743
744static inline void
Stephane Eranian3f7cce32011-02-18 14:40:01 +0200745perf_cgroup_set_timestamp(struct task_struct *task,
746 struct perf_event_context *ctx)
Stephane Eraniane5d13672011-02-14 11:20:01 +0200747{
748}
749
750void
751perf_cgroup_switch(struct task_struct *task, struct task_struct *next)
752{
753}
754
755static inline void
756perf_cgroup_set_shadow_time(struct perf_event *event, u64 now)
757{
758}
759
760static inline u64 perf_cgroup_event_time(struct perf_event *event)
761{
762 return 0;
763}
764
765static inline void
766perf_cgroup_defer_enabled(struct perf_event *event)
767{
768}
769
770static inline void
771perf_cgroup_mark_enabled(struct perf_event *event,
772 struct perf_event_context *ctx)
773{
774}
775#endif
776
Stephane Eranian9e630202013-04-03 14:21:33 +0200777/*
778 * set default to be dependent on timer tick just
779 * like original code
780 */
781#define PERF_CPU_HRTIMER (1000 / HZ)
782/*
783 * function must be called with interrupts disbled
784 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200785static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr)
Stephane Eranian9e630202013-04-03 14:21:33 +0200786{
787 struct perf_cpu_context *cpuctx;
Stephane Eranian9e630202013-04-03 14:21:33 +0200788 int rotations = 0;
789
790 WARN_ON(!irqs_disabled());
791
792 cpuctx = container_of(hr, struct perf_cpu_context, hrtimer);
Stephane Eranian9e630202013-04-03 14:21:33 +0200793 rotations = perf_rotate_context(cpuctx);
794
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200795 raw_spin_lock(&cpuctx->hrtimer_lock);
796 if (rotations)
Stephane Eranian9e630202013-04-03 14:21:33 +0200797 hrtimer_forward_now(hr, cpuctx->hrtimer_interval);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200798 else
799 cpuctx->hrtimer_active = 0;
800 raw_spin_unlock(&cpuctx->hrtimer_lock);
Stephane Eranian9e630202013-04-03 14:21:33 +0200801
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200802 return rotations ? HRTIMER_RESTART : HRTIMER_NORESTART;
Stephane Eranian9e630202013-04-03 14:21:33 +0200803}
804
Peter Zijlstra272325c2015-04-15 11:41:58 +0200805static void __perf_mux_hrtimer_init(struct perf_cpu_context *cpuctx, int cpu)
Stephane Eranian9e630202013-04-03 14:21:33 +0200806{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200807 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200808 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra272325c2015-04-15 11:41:58 +0200809 u64 interval;
Stephane Eranian9e630202013-04-03 14:21:33 +0200810
811 /* no multiplexing needed for SW PMU */
812 if (pmu->task_ctx_nr == perf_sw_context)
813 return;
814
Stephane Eranian62b85632013-04-03 14:21:34 +0200815 /*
816 * check default is sane, if not set then force to
817 * default interval (1/tick)
818 */
Peter Zijlstra272325c2015-04-15 11:41:58 +0200819 interval = pmu->hrtimer_interval_ms;
820 if (interval < 1)
821 interval = pmu->hrtimer_interval_ms = PERF_CPU_HRTIMER;
Stephane Eranian62b85632013-04-03 14:21:34 +0200822
Peter Zijlstra272325c2015-04-15 11:41:58 +0200823 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * interval);
Stephane Eranian9e630202013-04-03 14:21:33 +0200824
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200825 raw_spin_lock_init(&cpuctx->hrtimer_lock);
826 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra272325c2015-04-15 11:41:58 +0200827 timer->function = perf_mux_hrtimer_handler;
Stephane Eranian9e630202013-04-03 14:21:33 +0200828}
829
Peter Zijlstra272325c2015-04-15 11:41:58 +0200830static int perf_mux_hrtimer_restart(struct perf_cpu_context *cpuctx)
Stephane Eranian9e630202013-04-03 14:21:33 +0200831{
Peter Zijlstra272325c2015-04-15 11:41:58 +0200832 struct hrtimer *timer = &cpuctx->hrtimer;
Stephane Eranian9e630202013-04-03 14:21:33 +0200833 struct pmu *pmu = cpuctx->ctx.pmu;
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200834 unsigned long flags;
Stephane Eranian9e630202013-04-03 14:21:33 +0200835
836 /* not for SW PMU */
837 if (pmu->task_ctx_nr == perf_sw_context)
Peter Zijlstra272325c2015-04-15 11:41:58 +0200838 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200839
Peter Zijlstra4cfafd32015-05-14 12:23:11 +0200840 raw_spin_lock_irqsave(&cpuctx->hrtimer_lock, flags);
841 if (!cpuctx->hrtimer_active) {
842 cpuctx->hrtimer_active = 1;
843 hrtimer_forward_now(timer, cpuctx->hrtimer_interval);
844 hrtimer_start_expires(timer, HRTIMER_MODE_ABS_PINNED);
845 }
846 raw_spin_unlock_irqrestore(&cpuctx->hrtimer_lock, flags);
Stephane Eranian9e630202013-04-03 14:21:33 +0200847
Peter Zijlstra272325c2015-04-15 11:41:58 +0200848 return 0;
Stephane Eranian9e630202013-04-03 14:21:33 +0200849}
850
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200851void perf_pmu_disable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200852{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200853 int *count = this_cpu_ptr(pmu->pmu_disable_count);
854 if (!(*count)++)
855 pmu->pmu_disable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200856}
857
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200858void perf_pmu_enable(struct pmu *pmu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200859{
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200860 int *count = this_cpu_ptr(pmu->pmu_disable_count);
861 if (!--(*count))
862 pmu->pmu_enable(pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200863}
864
Mark Rutland2fde4f92015-01-07 15:01:54 +0000865static DEFINE_PER_CPU(struct list_head, active_ctx_list);
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200866
867/*
Mark Rutland2fde4f92015-01-07 15:01:54 +0000868 * perf_event_ctx_activate(), perf_event_ctx_deactivate(), and
869 * perf_event_task_tick() are fully serialized because they're strictly cpu
870 * affine and perf_event_ctx{activate,deactivate} are called with IRQs
871 * disabled, while perf_event_task_tick is called from IRQ context.
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200872 */
Mark Rutland2fde4f92015-01-07 15:01:54 +0000873static void perf_event_ctx_activate(struct perf_event_context *ctx)
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200874{
Mark Rutland2fde4f92015-01-07 15:01:54 +0000875 struct list_head *head = this_cpu_ptr(&active_ctx_list);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200876
Peter Zijlstrae9d2b062010-09-17 11:28:50 +0200877 WARN_ON(!irqs_disabled());
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +0200878
Mark Rutland2fde4f92015-01-07 15:01:54 +0000879 WARN_ON(!list_empty(&ctx->active_ctx_list));
880
881 list_add(&ctx->active_ctx_list, head);
882}
883
884static void perf_event_ctx_deactivate(struct perf_event_context *ctx)
885{
886 WARN_ON(!irqs_disabled());
887
888 WARN_ON(list_empty(&ctx->active_ctx_list));
889
890 list_del_init(&ctx->active_ctx_list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200891}
892
893static void get_ctx(struct perf_event_context *ctx)
894{
895 WARN_ON(!atomic_inc_not_zero(&ctx->refcount));
896}
897
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500898static void free_ctx(struct rcu_head *head)
899{
900 struct perf_event_context *ctx;
901
902 ctx = container_of(head, struct perf_event_context, rcu_head);
903 kfree(ctx->task_ctx_data);
904 kfree(ctx);
905}
906
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200907static void put_ctx(struct perf_event_context *ctx)
908{
909 if (atomic_dec_and_test(&ctx->refcount)) {
910 if (ctx->parent_ctx)
911 put_ctx(ctx->parent_ctx);
912 if (ctx->task)
913 put_task_struct(ctx->task);
Yan, Zheng4af57ef2014-11-04 21:56:01 -0500914 call_rcu(&ctx->rcu_head, free_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200915 }
916}
917
Peter Zijlstra211de6e2014-09-30 19:23:08 +0200918/*
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100919 * Because of perf_event::ctx migration in sys_perf_event_open::move_group and
920 * perf_pmu_migrate_context() we need some magic.
921 *
922 * Those places that change perf_event::ctx will hold both
923 * perf_event_ctx::mutex of the 'old' and 'new' ctx value.
924 *
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +0200925 * Lock ordering is by mutex address. There are two other sites where
926 * perf_event_context::mutex nests and those are:
927 *
928 * - perf_event_exit_task_context() [ child , 0 ]
929 * __perf_event_exit_task()
930 * sync_child_event()
931 * put_event() [ parent, 1 ]
932 *
933 * - perf_event_init_context() [ parent, 0 ]
934 * inherit_task_group()
935 * inherit_group()
936 * inherit_event()
937 * perf_event_alloc()
938 * perf_init_event()
939 * perf_try_init_event() [ child , 1 ]
940 *
941 * While it appears there is an obvious deadlock here -- the parent and child
942 * nesting levels are inverted between the two. This is in fact safe because
943 * life-time rules separate them. That is an exiting task cannot fork, and a
944 * spawning task cannot (yet) exit.
945 *
946 * But remember that that these are parent<->child context relations, and
947 * migration does not affect children, therefore these two orderings should not
948 * interact.
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100949 *
950 * The change in perf_event::ctx does not affect children (as claimed above)
951 * because the sys_perf_event_open() case will install a new event and break
952 * the ctx parent<->child relation, and perf_pmu_migrate_context() is only
953 * concerned with cpuctx and that doesn't have children.
954 *
955 * The places that change perf_event::ctx will issue:
956 *
957 * perf_remove_from_context();
958 * synchronize_rcu();
959 * perf_install_in_context();
960 *
961 * to affect the change. The remove_from_context() + synchronize_rcu() should
962 * quiesce the event, after which we can install it in the new location. This
963 * means that only external vectors (perf_fops, prctl) can perturb the event
964 * while in transit. Therefore all such accessors should also acquire
965 * perf_event_context::mutex to serialize against this.
966 *
967 * However; because event->ctx can change while we're waiting to acquire
968 * ctx->mutex we must be careful and use the below perf_event_ctx_lock()
969 * function.
970 *
971 * Lock order:
972 * task_struct::perf_event_mutex
973 * perf_event_context::mutex
974 * perf_event_context::lock
975 * perf_event::child_mutex;
976 * perf_event::mmap_mutex
977 * mmap_sem
978 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100979static struct perf_event_context *
980perf_event_ctx_lock_nested(struct perf_event *event, int nesting)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100981{
982 struct perf_event_context *ctx;
983
984again:
985 rcu_read_lock();
986 ctx = ACCESS_ONCE(event->ctx);
987 if (!atomic_inc_not_zero(&ctx->refcount)) {
988 rcu_read_unlock();
989 goto again;
990 }
991 rcu_read_unlock();
992
Peter Zijlstraa83fe282015-01-29 14:44:34 +0100993 mutex_lock_nested(&ctx->mutex, nesting);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +0100994 if (event->ctx != ctx) {
995 mutex_unlock(&ctx->mutex);
996 put_ctx(ctx);
997 goto again;
998 }
999
1000 return ctx;
1001}
1002
Peter Zijlstraa83fe282015-01-29 14:44:34 +01001003static inline struct perf_event_context *
1004perf_event_ctx_lock(struct perf_event *event)
1005{
1006 return perf_event_ctx_lock_nested(event, 0);
1007}
1008
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001009static void perf_event_ctx_unlock(struct perf_event *event,
1010 struct perf_event_context *ctx)
1011{
1012 mutex_unlock(&ctx->mutex);
1013 put_ctx(ctx);
1014}
1015
1016/*
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001017 * This must be done under the ctx->lock, such as to serialize against
1018 * context_equiv(), therefore we cannot call put_ctx() since that might end up
1019 * calling scheduler related locks and ctx->lock nests inside those.
1020 */
1021static __must_check struct perf_event_context *
1022unclone_ctx(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001023{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001024 struct perf_event_context *parent_ctx = ctx->parent_ctx;
1025
1026 lockdep_assert_held(&ctx->lock);
1027
1028 if (parent_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001029 ctx->parent_ctx = NULL;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001030 ctx->generation++;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02001031
1032 return parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001033}
1034
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001035static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
1036{
1037 /*
1038 * only top level events have the pid namespace they were created in
1039 */
1040 if (event->parent)
1041 event = event->parent;
1042
1043 return task_tgid_nr_ns(p, event->ns);
1044}
1045
1046static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
1047{
1048 /*
1049 * only top level events have the pid namespace they were created in
1050 */
1051 if (event->parent)
1052 event = event->parent;
1053
1054 return task_pid_nr_ns(p, event->ns);
1055}
1056
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001057/*
1058 * If we inherit events we want to return the parent event id
1059 * to userspace.
1060 */
1061static u64 primary_event_id(struct perf_event *event)
1062{
1063 u64 id = event->id;
1064
1065 if (event->parent)
1066 id = event->parent->id;
1067
1068 return id;
1069}
1070
1071/*
1072 * Get the perf_event_context for a task and lock it.
1073 * This has to cope with with the fact that until it is locked,
1074 * the context could get moved to another task.
1075 */
1076static struct perf_event_context *
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001077perf_lock_task_context(struct task_struct *task, int ctxn, unsigned long *flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001078{
1079 struct perf_event_context *ctx;
1080
Peter Zijlstra9ed60602010-06-11 17:36:35 +02001081retry:
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001082 /*
1083 * One of the few rules of preemptible RCU is that one cannot do
1084 * rcu_read_unlock() while holding a scheduler (or nested) lock when
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001085 * part of the read side critical section was irqs-enabled -- see
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001086 * rcu_read_unlock_special().
1087 *
1088 * Since ctx->lock nests under rq->lock we must ensure the entire read
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001089 * side critical section has interrupts disabled.
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001090 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001091 local_irq_save(*flags);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001092 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001093 ctx = rcu_dereference(task->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001094 if (ctx) {
1095 /*
1096 * If this context is a clone of another, it might
1097 * get swapped for another underneath us by
1098 * perf_event_task_sched_out, though the
1099 * rcu_read_lock() protects us from any context
1100 * getting freed. Lock the context and check if it
1101 * got swapped before we could get the lock, and retry
1102 * if so. If we locked the right context, then it
1103 * can't get swapped on us any more.
1104 */
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001105 raw_spin_lock(&ctx->lock);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001106 if (ctx != rcu_dereference(task->perf_event_ctxp[ctxn])) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001107 raw_spin_unlock(&ctx->lock);
Peter Zijlstra058ebd02013-07-12 11:08:33 +02001108 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001109 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001110 goto retry;
1111 }
1112
1113 if (!atomic_inc_not_zero(&ctx->refcount)) {
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001114 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001115 ctx = NULL;
1116 }
1117 }
1118 rcu_read_unlock();
Paul E. McKenney2fd59072015-11-04 05:48:38 -08001119 if (!ctx)
1120 local_irq_restore(*flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001121 return ctx;
1122}
1123
1124/*
1125 * Get the context for a task and increment its pin_count so it
1126 * can't get swapped to another task. This also increments its
1127 * reference count so that the context can't get freed.
1128 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001129static struct perf_event_context *
1130perf_pin_task_context(struct task_struct *task, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001131{
1132 struct perf_event_context *ctx;
1133 unsigned long flags;
1134
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02001135 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001136 if (ctx) {
1137 ++ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001138 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001139 }
1140 return ctx;
1141}
1142
1143static void perf_unpin_context(struct perf_event_context *ctx)
1144{
1145 unsigned long flags;
1146
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001147 raw_spin_lock_irqsave(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001148 --ctx->pin_count;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001149 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001150}
1151
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001152/*
1153 * Update the record of the current time in a context.
1154 */
1155static void update_context_time(struct perf_event_context *ctx)
1156{
1157 u64 now = perf_clock();
1158
1159 ctx->time += now - ctx->timestamp;
1160 ctx->timestamp = now;
1161}
1162
Stephane Eranian41587552011-01-03 18:20:01 +02001163static u64 perf_event_time(struct perf_event *event)
1164{
1165 struct perf_event_context *ctx = event->ctx;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001166
1167 if (is_cgroup_event(event))
1168 return perf_cgroup_event_time(event);
1169
Stephane Eranian41587552011-01-03 18:20:01 +02001170 return ctx ? ctx->time : 0;
1171}
1172
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001173/*
1174 * Update the total_time_enabled and total_time_running fields for a event.
Eric B Munsonb7526f02011-06-23 16:34:37 -04001175 * The caller of this function needs to hold the ctx->lock.
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001176 */
1177static void update_event_times(struct perf_event *event)
1178{
1179 struct perf_event_context *ctx = event->ctx;
1180 u64 run_end;
1181
1182 if (event->state < PERF_EVENT_STATE_INACTIVE ||
1183 event->group_leader->state < PERF_EVENT_STATE_INACTIVE)
1184 return;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001185 /*
1186 * in cgroup mode, time_enabled represents
1187 * the time the event was enabled AND active
1188 * tasks were in the monitored cgroup. This is
1189 * independent of the activity of the context as
1190 * there may be a mix of cgroup and non-cgroup events.
1191 *
1192 * That is why we treat cgroup events differently
1193 * here.
1194 */
1195 if (is_cgroup_event(event))
Namhyung Kim46cd6a7f2012-01-20 10:12:46 +09001196 run_end = perf_cgroup_event_time(event);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001197 else if (ctx->is_active)
1198 run_end = ctx->time;
Peter Zijlstraacd1d7c2009-11-23 15:00:36 +01001199 else
1200 run_end = event->tstamp_stopped;
1201
1202 event->total_time_enabled = run_end - event->tstamp_enabled;
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001203
1204 if (event->state == PERF_EVENT_STATE_INACTIVE)
1205 run_end = event->tstamp_stopped;
1206 else
Stephane Eranian41587552011-01-03 18:20:01 +02001207 run_end = perf_event_time(event);
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001208
1209 event->total_time_running = run_end - event->tstamp_running;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001210
Peter Zijlstraf67218c2009-11-23 11:37:27 +01001211}
1212
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001213/*
1214 * Update total_time_enabled and total_time_running for all events in a group.
1215 */
1216static void update_group_times(struct perf_event *leader)
1217{
1218 struct perf_event *event;
1219
1220 update_event_times(leader);
1221 list_for_each_entry(event, &leader->sibling_list, group_entry)
1222 update_event_times(event);
1223}
1224
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001225static struct list_head *
1226ctx_group_list(struct perf_event *event, struct perf_event_context *ctx)
1227{
1228 if (event->attr.pinned)
1229 return &ctx->pinned_groups;
1230 else
1231 return &ctx->flexible_groups;
1232}
1233
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001234/*
1235 * Add a event from the lists for its context.
1236 * Must be called with ctx->mutex and ctx->lock held.
1237 */
1238static void
1239list_add_event(struct perf_event *event, struct perf_event_context *ctx)
1240{
Peter Zijlstrac994d612016-01-08 09:20:23 +01001241 lockdep_assert_held(&ctx->lock);
1242
Peter Zijlstra8a495422010-05-27 15:47:49 +02001243 WARN_ON_ONCE(event->attach_state & PERF_ATTACH_CONTEXT);
1244 event->attach_state |= PERF_ATTACH_CONTEXT;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001245
1246 /*
Peter Zijlstra8a495422010-05-27 15:47:49 +02001247 * If we're a stand alone event or group leader, we go to the context
1248 * list, group events are kept attached to the group so that
1249 * perf_group_detach can, at all times, locate all siblings.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001250 */
Peter Zijlstra8a495422010-05-27 15:47:49 +02001251 if (event->group_leader == event) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001252 struct list_head *list;
1253
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001254 if (is_software_event(event))
1255 event->group_flags |= PERF_GROUP_SOFTWARE;
1256
Frederic Weisbecker889ff012010-01-09 20:04:47 +01001257 list = ctx_group_list(event, ctx);
1258 list_add_tail(&event->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001259 }
1260
Peter Zijlstra08309372011-03-03 11:31:20 +01001261 if (is_cgroup_event(event))
Stephane Eraniane5d13672011-02-14 11:20:01 +02001262 ctx->nr_cgroups++;
Stephane Eraniane5d13672011-02-14 11:20:01 +02001263
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001264 list_add_rcu(&event->event_entry, &ctx->event_list);
1265 ctx->nr_events++;
1266 if (event->attr.inherit_stat)
1267 ctx->nr_stat++;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001268
1269 ctx->generation++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001270}
1271
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001272/*
Jiri Olsa0231bb52013-02-01 11:23:45 +01001273 * Initialize event state based on the perf_event_attr::disabled.
1274 */
1275static inline void perf_event__state_init(struct perf_event *event)
1276{
1277 event->state = event->attr.disabled ? PERF_EVENT_STATE_OFF :
1278 PERF_EVENT_STATE_INACTIVE;
1279}
1280
Peter Zijlstraa7239682015-09-09 19:06:33 +02001281static void __perf_event_read_size(struct perf_event *event, int nr_siblings)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001282{
1283 int entry = sizeof(u64); /* value */
1284 int size = 0;
1285 int nr = 1;
1286
1287 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
1288 size += sizeof(u64);
1289
1290 if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
1291 size += sizeof(u64);
1292
1293 if (event->attr.read_format & PERF_FORMAT_ID)
1294 entry += sizeof(u64);
1295
1296 if (event->attr.read_format & PERF_FORMAT_GROUP) {
Peter Zijlstraa7239682015-09-09 19:06:33 +02001297 nr += nr_siblings;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001298 size += sizeof(u64);
1299 }
1300
1301 size += entry * nr;
1302 event->read_size = size;
1303}
1304
Peter Zijlstraa7239682015-09-09 19:06:33 +02001305static void __perf_event_header_size(struct perf_event *event, u64 sample_type)
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001306{
1307 struct perf_sample_data *data;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001308 u16 size = 0;
1309
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001310 if (sample_type & PERF_SAMPLE_IP)
1311 size += sizeof(data->ip);
1312
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001313 if (sample_type & PERF_SAMPLE_ADDR)
1314 size += sizeof(data->addr);
1315
1316 if (sample_type & PERF_SAMPLE_PERIOD)
1317 size += sizeof(data->period);
1318
Andi Kleenc3feedf2013-01-24 16:10:28 +01001319 if (sample_type & PERF_SAMPLE_WEIGHT)
1320 size += sizeof(data->weight);
1321
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001322 if (sample_type & PERF_SAMPLE_READ)
1323 size += event->read_size;
1324
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01001325 if (sample_type & PERF_SAMPLE_DATA_SRC)
1326 size += sizeof(data->data_src.val);
1327
Andi Kleenfdfbbd02013-09-20 07:40:39 -07001328 if (sample_type & PERF_SAMPLE_TRANSACTION)
1329 size += sizeof(data->txn);
1330
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001331 event->header_size = size;
1332}
1333
Peter Zijlstraa7239682015-09-09 19:06:33 +02001334/*
1335 * Called at perf_event creation and when events are attached/detached from a
1336 * group.
1337 */
1338static void perf_event__header_size(struct perf_event *event)
1339{
1340 __perf_event_read_size(event,
1341 event->group_leader->nr_siblings);
1342 __perf_event_header_size(event, event->attr.sample_type);
1343}
1344
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001345static void perf_event__id_header_size(struct perf_event *event)
1346{
1347 struct perf_sample_data *data;
1348 u64 sample_type = event->attr.sample_type;
1349 u16 size = 0;
1350
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001351 if (sample_type & PERF_SAMPLE_TID)
1352 size += sizeof(data->tid_entry);
1353
1354 if (sample_type & PERF_SAMPLE_TIME)
1355 size += sizeof(data->time);
1356
Adrian Hunterff3d5272013-08-27 11:23:07 +03001357 if (sample_type & PERF_SAMPLE_IDENTIFIER)
1358 size += sizeof(data->id);
1359
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001360 if (sample_type & PERF_SAMPLE_ID)
1361 size += sizeof(data->id);
1362
1363 if (sample_type & PERF_SAMPLE_STREAM_ID)
1364 size += sizeof(data->stream_id);
1365
1366 if (sample_type & PERF_SAMPLE_CPU)
1367 size += sizeof(data->cpu_entry);
1368
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02001369 event->id_header_size = size;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001370}
1371
Peter Zijlstraa7239682015-09-09 19:06:33 +02001372static bool perf_event_validate_size(struct perf_event *event)
1373{
1374 /*
1375 * The values computed here will be over-written when we actually
1376 * attach the event.
1377 */
1378 __perf_event_read_size(event, event->group_leader->nr_siblings + 1);
1379 __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ);
1380 perf_event__id_header_size(event);
1381
1382 /*
1383 * Sum the lot; should not exceed the 64k limit we have on records.
1384 * Conservative limit to allow for callchains and other variable fields.
1385 */
1386 if (event->read_size + event->header_size +
1387 event->id_header_size + sizeof(struct perf_event_header) >= 16*1024)
1388 return false;
1389
1390 return true;
1391}
1392
Peter Zijlstra8a495422010-05-27 15:47:49 +02001393static void perf_group_attach(struct perf_event *event)
1394{
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001395 struct perf_event *group_leader = event->group_leader, *pos;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001396
Peter Zijlstra74c33372010-10-15 11:40:29 +02001397 /*
1398 * We can have double attach due to group movement in perf_event_open.
1399 */
1400 if (event->attach_state & PERF_ATTACH_GROUP)
1401 return;
1402
Peter Zijlstra8a495422010-05-27 15:47:49 +02001403 event->attach_state |= PERF_ATTACH_GROUP;
1404
1405 if (group_leader == event)
1406 return;
1407
Peter Zijlstra652884f2015-01-23 11:20:10 +01001408 WARN_ON_ONCE(group_leader->ctx != event->ctx);
1409
Peter Zijlstra8a495422010-05-27 15:47:49 +02001410 if (group_leader->group_flags & PERF_GROUP_SOFTWARE &&
1411 !is_software_event(event))
1412 group_leader->group_flags &= ~PERF_GROUP_SOFTWARE;
1413
1414 list_add_tail(&event->group_entry, &group_leader->sibling_list);
1415 group_leader->nr_siblings++;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001416
1417 perf_event__header_size(group_leader);
1418
1419 list_for_each_entry(pos, &group_leader->sibling_list, group_entry)
1420 perf_event__header_size(pos);
Peter Zijlstra8a495422010-05-27 15:47:49 +02001421}
1422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423/*
1424 * Remove a event from the lists for its context.
1425 * Must be called with ctx->mutex and ctx->lock held.
1426 */
1427static void
1428list_del_event(struct perf_event *event, struct perf_event_context *ctx)
1429{
Stephane Eranian68cacd22011-03-23 16:03:06 +01001430 struct perf_cpu_context *cpuctx;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001431
1432 WARN_ON_ONCE(event->ctx != ctx);
1433 lockdep_assert_held(&ctx->lock);
1434
Peter Zijlstra8a495422010-05-27 15:47:49 +02001435 /*
1436 * We can have double detach due to exit/hot-unplug + close.
1437 */
1438 if (!(event->attach_state & PERF_ATTACH_CONTEXT))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001439 return;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001440
1441 event->attach_state &= ~PERF_ATTACH_CONTEXT;
1442
Stephane Eranian68cacd22011-03-23 16:03:06 +01001443 if (is_cgroup_event(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001444 ctx->nr_cgroups--;
Peter Zijlstra70a01652016-01-08 09:29:16 +01001445 /*
1446 * Because cgroup events are always per-cpu events, this will
1447 * always be called from the right CPU.
1448 */
Stephane Eranian68cacd22011-03-23 16:03:06 +01001449 cpuctx = __get_cpu_context(ctx);
1450 /*
Peter Zijlstra70a01652016-01-08 09:29:16 +01001451 * If there are no more cgroup events then clear cgrp to avoid
1452 * stale pointer in update_cgrp_time_from_cpuctx().
Stephane Eranian68cacd22011-03-23 16:03:06 +01001453 */
1454 if (!ctx->nr_cgroups)
1455 cpuctx->cgrp = NULL;
1456 }
Stephane Eraniane5d13672011-02-14 11:20:01 +02001457
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001458 ctx->nr_events--;
1459 if (event->attr.inherit_stat)
1460 ctx->nr_stat--;
1461
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001462 list_del_rcu(&event->event_entry);
1463
Peter Zijlstra8a495422010-05-27 15:47:49 +02001464 if (event->group_leader == event)
1465 list_del_init(&event->group_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001466
Peter Zijlstra96c21a42010-05-11 16:19:10 +02001467 update_group_times(event);
Stephane Eranianb2e74a22009-11-26 09:24:30 -08001468
1469 /*
1470 * If event was in error state, then keep it
1471 * that way, otherwise bogus counts will be
1472 * returned on read(). The only way to get out
1473 * of error state is by explicit re-enabling
1474 * of the event
1475 */
1476 if (event->state > PERF_EVENT_STATE_OFF)
1477 event->state = PERF_EVENT_STATE_OFF;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02001478
1479 ctx->generation++;
Peter Zijlstra050735b2010-05-11 11:51:53 +02001480}
1481
Peter Zijlstra8a495422010-05-27 15:47:49 +02001482static void perf_group_detach(struct perf_event *event)
Peter Zijlstra050735b2010-05-11 11:51:53 +02001483{
1484 struct perf_event *sibling, *tmp;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001485 struct list_head *list = NULL;
1486
1487 /*
1488 * We can have double detach due to exit/hot-unplug + close.
1489 */
1490 if (!(event->attach_state & PERF_ATTACH_GROUP))
1491 return;
1492
1493 event->attach_state &= ~PERF_ATTACH_GROUP;
1494
1495 /*
1496 * If this is a sibling, remove it from its group.
1497 */
1498 if (event->group_leader != event) {
1499 list_del_init(&event->group_entry);
1500 event->group_leader->nr_siblings--;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001501 goto out;
Peter Zijlstra8a495422010-05-27 15:47:49 +02001502 }
1503
1504 if (!list_empty(&event->group_entry))
1505 list = &event->group_entry;
Peter Zijlstra2e2af502009-11-23 11:37:25 +01001506
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001507 /*
1508 * If this was a group event with sibling events then
1509 * upgrade the siblings to singleton events by adding them
Peter Zijlstra8a495422010-05-27 15:47:49 +02001510 * to whatever list we are on.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001511 */
1512 list_for_each_entry_safe(sibling, tmp, &event->sibling_list, group_entry) {
Peter Zijlstra8a495422010-05-27 15:47:49 +02001513 if (list)
1514 list_move_tail(&sibling->group_entry, list);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001515 sibling->group_leader = sibling;
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01001516
1517 /* Inherit group flags from the previous leader */
1518 sibling->group_flags = event->group_flags;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001519
1520 WARN_ON_ONCE(sibling->ctx != event->ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001521 }
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02001522
1523out:
1524 perf_event__header_size(event->group_leader);
1525
1526 list_for_each_entry(tmp, &event->group_leader->sibling_list, group_entry)
1527 perf_event__header_size(tmp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001528}
1529
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001530/*
1531 * User event without the task.
1532 */
1533static bool is_orphaned_event(struct perf_event *event)
1534{
1535 return event && !is_kernel_event(event) && !event->owner;
1536}
1537
1538/*
1539 * Event has a parent but parent's task finished and it's
1540 * alive only because of children holding refference.
1541 */
1542static bool is_orphaned_child(struct perf_event *event)
1543{
1544 return is_orphaned_event(event->parent);
1545}
1546
1547static void orphans_remove_work(struct work_struct *work);
1548
1549static void schedule_orphans_remove(struct perf_event_context *ctx)
1550{
1551 if (!ctx->task || ctx->orphans_remove_sched || !perf_wq)
1552 return;
1553
1554 if (queue_delayed_work(perf_wq, &ctx->orphans_remove, 1)) {
1555 get_ctx(ctx);
1556 ctx->orphans_remove_sched = true;
1557 }
1558}
1559
1560static int __init perf_workqueue_init(void)
1561{
1562 perf_wq = create_singlethread_workqueue("perf");
1563 WARN(!perf_wq, "failed to create perf workqueue\n");
1564 return perf_wq ? 0 : -1;
1565}
1566
1567core_initcall(perf_workqueue_init);
1568
Mark Rutland66eb5792015-05-13 17:12:23 +01001569static inline int pmu_filter_match(struct perf_event *event)
1570{
1571 struct pmu *pmu = event->pmu;
1572 return pmu->filter_match ? pmu->filter_match(event) : 1;
1573}
1574
Stephane Eranianfa66f072010-08-26 16:40:01 +02001575static inline int
1576event_filter_match(struct perf_event *event)
1577{
Stephane Eraniane5d13672011-02-14 11:20:01 +02001578 return (event->cpu == -1 || event->cpu == smp_processor_id())
Mark Rutland66eb5792015-05-13 17:12:23 +01001579 && perf_cgroup_match(event) && pmu_filter_match(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001580}
1581
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001582static void
1583event_sched_out(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001584 struct perf_cpu_context *cpuctx,
1585 struct perf_event_context *ctx)
1586{
Stephane Eranian41587552011-01-03 18:20:01 +02001587 u64 tstamp = perf_event_time(event);
Stephane Eranianfa66f072010-08-26 16:40:01 +02001588 u64 delta;
Peter Zijlstra652884f2015-01-23 11:20:10 +01001589
1590 WARN_ON_ONCE(event->ctx != ctx);
1591 lockdep_assert_held(&ctx->lock);
1592
Stephane Eranianfa66f072010-08-26 16:40:01 +02001593 /*
1594 * An event which could not be activated because of
1595 * filter mismatch still needs to have its timings
1596 * maintained, otherwise bogus information is return
1597 * via read() for time_enabled, time_running:
1598 */
1599 if (event->state == PERF_EVENT_STATE_INACTIVE
1600 && !event_filter_match(event)) {
Stephane Eraniane5d13672011-02-14 11:20:01 +02001601 delta = tstamp - event->tstamp_stopped;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001602 event->tstamp_running += delta;
Stephane Eranian41587552011-01-03 18:20:01 +02001603 event->tstamp_stopped = tstamp;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001604 }
1605
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001606 if (event->state != PERF_EVENT_STATE_ACTIVE)
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001607 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001608
Alexander Shishkin44377272013-12-16 14:17:36 +02001609 perf_pmu_disable(event->pmu);
1610
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001611 event->state = PERF_EVENT_STATE_INACTIVE;
1612 if (event->pending_disable) {
1613 event->pending_disable = 0;
1614 event->state = PERF_EVENT_STATE_OFF;
1615 }
Stephane Eranian41587552011-01-03 18:20:01 +02001616 event->tstamp_stopped = tstamp;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001617 event->pmu->del(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001618 event->oncpu = -1;
1619
1620 if (!is_software_event(event))
1621 cpuctx->active_oncpu--;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001622 if (!--ctx->nr_active)
1623 perf_event_ctx_deactivate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001624 if (event->attr.freq && event->attr.sample_freq)
1625 ctx->nr_freq--;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001626 if (event->attr.exclusive || !cpuctx->active_oncpu)
1627 cpuctx->exclusive = 0;
Alexander Shishkin44377272013-12-16 14:17:36 +02001628
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001629 if (is_orphaned_child(event))
1630 schedule_orphans_remove(ctx);
1631
Alexander Shishkin44377272013-12-16 14:17:36 +02001632 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001633}
1634
1635static void
1636group_sched_out(struct perf_event *group_event,
1637 struct perf_cpu_context *cpuctx,
1638 struct perf_event_context *ctx)
1639{
1640 struct perf_event *event;
Stephane Eranianfa66f072010-08-26 16:40:01 +02001641 int state = group_event->state;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001642
1643 event_sched_out(group_event, cpuctx, ctx);
1644
1645 /*
1646 * Schedule out siblings (if any):
1647 */
1648 list_for_each_entry(event, &group_event->sibling_list, group_entry)
1649 event_sched_out(event, cpuctx, ctx);
1650
Stephane Eranianfa66f072010-08-26 16:40:01 +02001651 if (state == PERF_EVENT_STATE_ACTIVE && group_event->attr.exclusive)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001652 cpuctx->exclusive = 0;
1653}
1654
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001655struct remove_event {
1656 struct perf_event *event;
1657 bool detach_group;
1658};
1659
Peter Zijlstra00179602015-11-30 16:26:35 +01001660static void ___perf_remove_from_context(void *info)
1661{
1662 struct remove_event *re = info;
1663 struct perf_event *event = re->event;
1664 struct perf_event_context *ctx = event->ctx;
1665
1666 if (re->detach_group)
1667 perf_group_detach(event);
1668 list_del_event(event, ctx);
1669}
1670
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001671/*
1672 * Cross CPU call to remove a performance event
1673 *
1674 * We disable the event on the hardware level first. After that we
1675 * remove it from the context list.
1676 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001677static int __perf_remove_from_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001678{
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001679 struct remove_event *re = info;
1680 struct perf_event *event = re->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001681 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001682 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001683
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001684 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001685 event_sched_out(event, cpuctx, ctx);
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001686 if (re->detach_group)
1687 perf_group_detach(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001688 list_del_event(event, ctx);
Peter Zijlstra64ce3122011-04-09 21:17:48 +02001689 if (!ctx->nr_events && cpuctx->task_ctx == ctx) {
1690 ctx->is_active = 0;
1691 cpuctx->task_ctx = NULL;
1692 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001693 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001694
1695 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001696}
1697
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001698/*
1699 * Remove the event from a task's (or a CPU's) list of events.
1700 *
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001701 * CPU events are removed with a smp call. For task events we only
1702 * call when the task is on a CPU.
1703 *
1704 * If event->ctx is a cloned context, callers must make sure that
1705 * every task struct that event->ctx->task could possibly point to
1706 * remains valid. This is OK when called from perf_release since
1707 * that only calls us on the top-level context, which can't be a clone.
1708 * When called from perf_event_exit_task, it's OK because the
1709 * context has been detached from its task.
1710 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001711static void perf_remove_from_context(struct perf_event *event, bool detach_group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001712{
1713 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02001714 struct remove_event re = {
1715 .event = event,
1716 .detach_group = detach_group,
1717 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001718
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001719 lockdep_assert_held(&ctx->mutex);
1720
Peter Zijlstra00179602015-11-30 16:26:35 +01001721 event_function_call(event, __perf_remove_from_context,
1722 ___perf_remove_from_context, &re);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001723}
1724
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001725/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001726 * Cross CPU call to disable a performance event
1727 */
K.Prasad500ad2d2012-08-02 13:46:35 +05301728int __perf_event_disable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001729{
1730 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001731 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02001732 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001733
1734 /*
1735 * If this is a per-task event, need to check whether this
1736 * event's task is the current task on this cpu.
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001737 *
1738 * Can trigger due to concurrent perf_event_context_sched_out()
1739 * flipping contexts around.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001740 */
1741 if (ctx->task && cpuctx->task_ctx != ctx)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001742 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001743
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001744 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001745
1746 /*
1747 * If the event is on, turn it off.
1748 * If it is in error state, leave it in error state.
1749 */
1750 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
1751 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02001752 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001753 update_group_times(event);
1754 if (event == event->group_leader)
1755 group_sched_out(event, cpuctx, ctx);
1756 else
1757 event_sched_out(event, cpuctx, ctx);
1758 event->state = PERF_EVENT_STATE_OFF;
1759 }
1760
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001761 raw_spin_unlock(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01001762
1763 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001764}
1765
Peter Zijlstra7b648012015-12-03 18:35:21 +01001766void ___perf_event_disable(void *info)
1767{
1768 struct perf_event *event = info;
1769
1770 /*
1771 * Since we have the lock this context can't be scheduled
1772 * in, so we can change the state safely.
1773 */
1774 if (event->state == PERF_EVENT_STATE_INACTIVE) {
1775 update_group_times(event);
1776 event->state = PERF_EVENT_STATE_OFF;
1777 }
1778}
1779
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001780/*
1781 * Disable a event.
1782 *
1783 * If event->ctx is a cloned context, callers must make sure that
1784 * every task struct that event->ctx->task could possibly point to
1785 * remains valid. This condition is satisifed when called through
1786 * perf_event_for_each_child or perf_event_for_each because they
1787 * hold the top-level event's child_mutex, so any descendant that
1788 * goes to exit will block in sync_child_event.
1789 * When called from perf_pending_event it's OK because event->ctx
1790 * is the current context on this CPU and preemption is disabled,
1791 * hence we can't get into perf_event_task_sched_out for this context.
1792 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001793static void _perf_event_disable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001794{
1795 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001796
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001797 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001798 if (event->state <= PERF_EVENT_STATE_OFF) {
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001799 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001800 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001801 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01001802 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01001803
1804 event_function_call(event, __perf_event_disable,
1805 ___perf_event_disable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001806}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01001807
1808/*
1809 * Strictly speaking kernel users cannot create groups and therefore this
1810 * interface does not need the perf_event_ctx_lock() magic.
1811 */
1812void perf_event_disable(struct perf_event *event)
1813{
1814 struct perf_event_context *ctx;
1815
1816 ctx = perf_event_ctx_lock(event);
1817 _perf_event_disable(event);
1818 perf_event_ctx_unlock(event, ctx);
1819}
Robert Richterdcfce4a2011-10-11 17:11:08 +02001820EXPORT_SYMBOL_GPL(perf_event_disable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001821
Stephane Eraniane5d13672011-02-14 11:20:01 +02001822static void perf_set_shadow_time(struct perf_event *event,
1823 struct perf_event_context *ctx,
1824 u64 tstamp)
1825{
1826 /*
1827 * use the correct time source for the time snapshot
1828 *
1829 * We could get by without this by leveraging the
1830 * fact that to get to this function, the caller
1831 * has most likely already called update_context_time()
1832 * and update_cgrp_time_xx() and thus both timestamp
1833 * are identical (or very close). Given that tstamp is,
1834 * already adjusted for cgroup, we could say that:
1835 * tstamp - ctx->timestamp
1836 * is equivalent to
1837 * tstamp - cgrp->timestamp.
1838 *
1839 * Then, in perf_output_read(), the calculation would
1840 * work with no changes because:
1841 * - event is guaranteed scheduled in
1842 * - no scheduled out in between
1843 * - thus the timestamp would be the same
1844 *
1845 * But this is a bit hairy.
1846 *
1847 * So instead, we have an explicit cgroup call to remain
1848 * within the time time source all along. We believe it
1849 * is cleaner and simpler to understand.
1850 */
1851 if (is_cgroup_event(event))
1852 perf_cgroup_set_shadow_time(event, tstamp);
1853 else
1854 event->shadow_ctx_time = tstamp - ctx->timestamp;
1855}
1856
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001857#define MAX_INTERRUPTS (~0ULL)
1858
1859static void perf_log_throttle(struct perf_event *event, int enable);
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001860static void perf_log_itrace_start(struct perf_event *event);
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001862static int
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001863event_sched_in(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001864 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001865 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001866{
Stephane Eranian41587552011-01-03 18:20:01 +02001867 u64 tstamp = perf_event_time(event);
Alexander Shishkin44377272013-12-16 14:17:36 +02001868 int ret = 0;
Stephane Eranian41587552011-01-03 18:20:01 +02001869
Peter Zijlstra63342412014-05-05 11:49:16 +02001870 lockdep_assert_held(&ctx->lock);
1871
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001872 if (event->state <= PERF_EVENT_STATE_OFF)
1873 return 0;
1874
1875 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001876 event->oncpu = smp_processor_id();
Peter Zijlstra4fe757d2011-02-15 22:26:07 +01001877
1878 /*
1879 * Unthrottle events, since we scheduled we might have missed several
1880 * ticks already, also for a heavily scheduling task there is little
1881 * guarantee it'll get a tick in a timely manner.
1882 */
1883 if (unlikely(event->hw.interrupts == MAX_INTERRUPTS)) {
1884 perf_log_throttle(event, 1);
1885 event->hw.interrupts = 0;
1886 }
1887
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001888 /*
1889 * The new state must be visible before we turn it on in the hardware:
1890 */
1891 smp_wmb();
1892
Alexander Shishkin44377272013-12-16 14:17:36 +02001893 perf_pmu_disable(event->pmu);
1894
Shaohua Li72f669c2015-02-05 15:55:31 -08001895 perf_set_shadow_time(event, ctx, tstamp);
1896
Alexander Shishkinec0d7722015-01-14 14:18:23 +02001897 perf_log_itrace_start(event);
1898
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001899 if (event->pmu->add(event, PERF_EF_START)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001900 event->state = PERF_EVENT_STATE_INACTIVE;
1901 event->oncpu = -1;
Alexander Shishkin44377272013-12-16 14:17:36 +02001902 ret = -EAGAIN;
1903 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001904 }
1905
Peter Zijlstra00a29162015-07-27 10:35:07 +02001906 event->tstamp_running += tstamp - event->tstamp_stopped;
1907
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001908 if (!is_software_event(event))
1909 cpuctx->active_oncpu++;
Mark Rutland2fde4f92015-01-07 15:01:54 +00001910 if (!ctx->nr_active++)
1911 perf_event_ctx_activate(ctx);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01001912 if (event->attr.freq && event->attr.sample_freq)
1913 ctx->nr_freq++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001914
1915 if (event->attr.exclusive)
1916 cpuctx->exclusive = 1;
1917
Jiri Olsafadfe7b2014-08-01 14:33:02 +02001918 if (is_orphaned_child(event))
1919 schedule_orphans_remove(ctx);
1920
Alexander Shishkin44377272013-12-16 14:17:36 +02001921out:
1922 perf_pmu_enable(event->pmu);
1923
1924 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001925}
1926
1927static int
1928group_sched_in(struct perf_event *group_event,
1929 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001930 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001931{
Lin Ming6bde9b62010-04-23 13:56:00 +08001932 struct perf_event *event, *partial_group = NULL;
Peter Zijlstra4a234592014-02-24 12:43:31 +01001933 struct pmu *pmu = ctx->pmu;
Stephane Eraniand7842da2010-10-20 15:25:01 +02001934 u64 now = ctx->time;
1935 bool simulate = false;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001936
1937 if (group_event->state == PERF_EVENT_STATE_OFF)
1938 return 0;
1939
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001940 pmu->start_txn(pmu, PERF_PMU_TXN_ADD);
Lin Ming6bde9b62010-04-23 13:56:00 +08001941
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001942 if (event_sched_in(group_event, cpuctx, ctx)) {
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001943 pmu->cancel_txn(pmu);
Peter Zijlstra272325c2015-04-15 11:41:58 +02001944 perf_mux_hrtimer_restart(cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001945 return -EAGAIN;
Stephane Eranian90151c352010-05-25 16:23:10 +02001946 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001947
1948 /*
1949 * Schedule in siblings as one group (if any):
1950 */
1951 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001952 if (event_sched_in(event, cpuctx, ctx)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001953 partial_group = event;
1954 goto group_error;
1955 }
1956 }
1957
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001958 if (!pmu->commit_txn(pmu))
Paul Mackerras6e851582010-05-08 20:58:00 +10001959 return 0;
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001960
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001961group_error:
1962 /*
1963 * Groups can be scheduled in as one unit only, so undo any
1964 * partial group before returning:
Stephane Eraniand7842da2010-10-20 15:25:01 +02001965 * The events up to the failed event are scheduled out normally,
1966 * tstamp_stopped will be updated.
1967 *
1968 * The failed events and the remaining siblings need to have
1969 * their timings updated as if they had gone thru event_sched_in()
1970 * and event_sched_out(). This is required to get consistent timings
1971 * across the group. This also takes care of the case where the group
1972 * could never be scheduled by ensuring tstamp_stopped is set to mark
1973 * the time the event was actually stopped, such that time delta
1974 * calculation in update_event_times() is correct.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001975 */
1976 list_for_each_entry(event, &group_event->sibling_list, group_entry) {
1977 if (event == partial_group)
Stephane Eraniand7842da2010-10-20 15:25:01 +02001978 simulate = true;
1979
1980 if (simulate) {
1981 event->tstamp_running += now - event->tstamp_stopped;
1982 event->tstamp_stopped = now;
1983 } else {
1984 event_sched_out(event, cpuctx, ctx);
1985 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001986 }
Stephane Eranian9ffcfa62010-10-20 15:25:01 +02001987 event_sched_out(group_event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001988
Peter Zijlstraad5133b2010-06-15 12:22:39 +02001989 pmu->cancel_txn(pmu);
Stephane Eranian90151c352010-05-25 16:23:10 +02001990
Peter Zijlstra272325c2015-04-15 11:41:58 +02001991 perf_mux_hrtimer_restart(cpuctx);
Stephane Eranian9e630202013-04-03 14:21:33 +02001992
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001993 return -EAGAIN;
1994}
1995
1996/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001997 * Work out whether we can put this event group on the CPU now.
1998 */
1999static int group_can_go_on(struct perf_event *event,
2000 struct perf_cpu_context *cpuctx,
2001 int can_add_hw)
2002{
2003 /*
2004 * Groups consisting entirely of software events can always go on.
2005 */
Frederic Weisbeckerd6f962b2010-01-10 01:25:51 +01002006 if (event->group_flags & PERF_GROUP_SOFTWARE)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002007 return 1;
2008 /*
2009 * If an exclusive group is already on, no other hardware
2010 * events can go on.
2011 */
2012 if (cpuctx->exclusive)
2013 return 0;
2014 /*
2015 * If this group is exclusive and there are already
2016 * events on the CPU, it can't go on.
2017 */
2018 if (event->attr.exclusive && cpuctx->active_oncpu)
2019 return 0;
2020 /*
2021 * Otherwise, try to add it if all previous groups were able
2022 * to go on.
2023 */
2024 return can_add_hw;
2025}
2026
2027static void add_event_to_ctx(struct perf_event *event,
2028 struct perf_event_context *ctx)
2029{
Stephane Eranian41587552011-01-03 18:20:01 +02002030 u64 tstamp = perf_event_time(event);
2031
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002032 list_add_event(event, ctx);
Peter Zijlstra8a495422010-05-27 15:47:49 +02002033 perf_group_attach(event);
Stephane Eranian41587552011-01-03 18:20:01 +02002034 event->tstamp_enabled = tstamp;
2035 event->tstamp_running = tstamp;
2036 event->tstamp_stopped = tstamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002037}
2038
Peter Zijlstra3e349502016-01-08 10:01:18 +01002039static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2040 struct perf_event_context *ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002041static void
2042ctx_sched_in(struct perf_event_context *ctx,
2043 struct perf_cpu_context *cpuctx,
2044 enum event_type_t event_type,
2045 struct task_struct *task);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002046
Peter Zijlstradce58552011-04-09 21:17:46 +02002047static void perf_event_sched_in(struct perf_cpu_context *cpuctx,
2048 struct perf_event_context *ctx,
2049 struct task_struct *task)
2050{
2051 cpu_ctx_sched_in(cpuctx, EVENT_PINNED, task);
2052 if (ctx)
2053 ctx_sched_in(ctx, cpuctx, EVENT_PINNED, task);
2054 cpu_ctx_sched_in(cpuctx, EVENT_FLEXIBLE, task);
2055 if (ctx)
2056 ctx_sched_in(ctx, cpuctx, EVENT_FLEXIBLE, task);
2057}
2058
Peter Zijlstra00179602015-11-30 16:26:35 +01002059static void ___perf_install_in_context(void *info)
2060{
2061 struct perf_event *event = info;
2062 struct perf_event_context *ctx = event->ctx;
2063
2064 /*
2065 * Since the task isn't running, its safe to add the event, us holding
2066 * the ctx->lock ensures the task won't get scheduled in.
2067 */
2068 add_event_to_ctx(event, ctx);
2069}
2070
Peter Zijlstra3e349502016-01-08 10:01:18 +01002071static void ctx_resched(struct perf_cpu_context *cpuctx,
2072 struct perf_event_context *task_ctx)
2073{
2074 perf_pmu_disable(cpuctx->ctx.pmu);
2075 if (task_ctx)
2076 task_ctx_sched_out(cpuctx, task_ctx);
2077 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
2078 perf_event_sched_in(cpuctx, task_ctx, current);
2079 perf_pmu_enable(cpuctx->ctx.pmu);
2080}
2081
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002082/*
2083 * Cross CPU call to install and enable a performance event
2084 *
2085 * Must be called with ctx->mutex held
2086 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002087static int __perf_install_in_context(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002088{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002089 struct perf_event *event = info;
2090 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002091 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002092 struct perf_event_context *task_ctx = cpuctx->task_ctx;
2093 struct task_struct *task = current;
2094
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002095 perf_ctx_lock(cpuctx, task_ctx);
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002096 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002097
2098 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002099 * If there was an active task_ctx schedule it out.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002100 */
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002101 if (task_ctx)
Peter Zijlstra3e349502016-01-08 10:01:18 +01002102 task_ctx_sched_out(cpuctx, task_ctx);
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002103
2104 /*
2105 * If the context we're installing events in is not the
2106 * active task_ctx, flip them.
2107 */
2108 if (ctx->task && task_ctx != ctx) {
2109 if (task_ctx)
2110 raw_spin_unlock(&task_ctx->lock);
2111 raw_spin_lock(&ctx->lock);
2112 task_ctx = ctx;
2113 }
2114
2115 if (task_ctx) {
2116 cpuctx->task_ctx = task_ctx;
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002117 task = task_ctx->task;
2118 }
Peter Zijlstrab58f6b02011-06-07 00:23:28 +02002119
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002120 cpu_ctx_sched_out(cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002121
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002122 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002123 /*
2124 * update cgrp time only if current cgrp
2125 * matches event->cgrp. Must be done before
2126 * calling add_event_to_ctx()
2127 */
2128 update_cgrp_time_from_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002129
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002130 add_event_to_ctx(event, ctx);
2131
2132 /*
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002133 * Schedule everything back in
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002134 */
Peter Zijlstradce58552011-04-09 21:17:46 +02002135 perf_event_sched_in(cpuctx, task_ctx, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002136
Peter Zijlstra2c29ef02011-04-09 21:17:44 +02002137 perf_pmu_enable(cpuctx->ctx.pmu);
2138 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002139
2140 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002141}
2142
2143/*
2144 * Attach a performance event to a context
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002145 */
2146static void
2147perf_install_in_context(struct perf_event_context *ctx,
2148 struct perf_event *event,
2149 int cpu)
2150{
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002151 lockdep_assert_held(&ctx->mutex);
2152
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002153 event->ctx = ctx;
Yan, Zheng0cda4c02012-06-15 14:31:33 +08002154 if (event->cpu != -1)
2155 event->cpu = cpu;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02002156
Peter Zijlstra00179602015-11-30 16:26:35 +01002157 event_function_call(event, __perf_install_in_context,
2158 ___perf_install_in_context, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002159}
2160
2161/*
2162 * Put a event into inactive state and update time fields.
2163 * Enabling the leader of a group effectively enables all
2164 * the group members that aren't explicitly disabled, so we
2165 * have to update their ->tstamp_enabled also.
2166 * Note: this works for group members as well as group leaders
2167 * since the non-leader members' sibling_lists will be empty.
2168 */
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002169static void __perf_event_mark_enabled(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002170{
2171 struct perf_event *sub;
Stephane Eranian41587552011-01-03 18:20:01 +02002172 u64 tstamp = perf_event_time(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002173
2174 event->state = PERF_EVENT_STATE_INACTIVE;
Stephane Eranian41587552011-01-03 18:20:01 +02002175 event->tstamp_enabled = tstamp - event->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002176 list_for_each_entry(sub, &event->sibling_list, group_entry) {
Stephane Eranian41587552011-01-03 18:20:01 +02002177 if (sub->state >= PERF_EVENT_STATE_INACTIVE)
2178 sub->tstamp_enabled = tstamp - sub->total_time_enabled;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002179 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002180}
2181
2182/*
2183 * Cross CPU call to enable a performance event
2184 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002185static int __perf_event_enable(void *info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002186{
2187 struct perf_event *event = info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002188 struct perf_event_context *ctx = event->ctx;
2189 struct perf_event *leader = event->group_leader;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002190 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002191 struct perf_event_context *task_ctx = cpuctx->task_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002192
Jiri Olsa06f41792013-07-09 17:44:11 +02002193 /*
2194 * There's a time window between 'ctx->is_active' check
2195 * in perf_event_enable function and this place having:
2196 * - IRQs on
2197 * - ctx->lock unlocked
2198 *
2199 * where the task could be killed and 'ctx' deactivated
2200 * by perf_event_exit_task.
2201 */
2202 if (!ctx->is_active)
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002203 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002204
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002205 perf_ctx_lock(cpuctx, task_ctx);
2206 WARN_ON_ONCE(&cpuctx->ctx != ctx && task_ctx != ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002207 update_context_time(ctx);
2208
2209 if (event->state >= PERF_EVENT_STATE_INACTIVE)
2210 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002211
2212 /*
2213 * set current task's cgroup time reference point
2214 */
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002215 perf_cgroup_set_timestamp(current, ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002216
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01002217 __perf_event_mark_enabled(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002218
Stephane Eraniane5d13672011-02-14 11:20:01 +02002219 if (!event_filter_match(event)) {
2220 if (is_cgroup_event(event))
2221 perf_cgroup_defer_enabled(event);
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002222 goto unlock;
Stephane Eraniane5d13672011-02-14 11:20:01 +02002223 }
Peter Zijlstraf4c41762009-12-16 17:55:54 +01002224
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002225 /*
2226 * If the event is in a group and isn't the group leader,
2227 * then don't put it on unless the group is on.
2228 */
2229 if (leader != event && leader->state != PERF_EVENT_STATE_ACTIVE)
2230 goto unlock;
2231
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002232 ctx_resched(cpuctx, task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002233
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002234unlock:
Peter Zijlstraaee7dbc2016-01-08 10:45:11 +01002235 perf_ctx_unlock(cpuctx, task_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002236
2237 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002238}
2239
Peter Zijlstra7b648012015-12-03 18:35:21 +01002240void ___perf_event_enable(void *info)
2241{
2242 __perf_event_mark_enabled((struct perf_event *)info);
2243}
2244
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002245/*
2246 * Enable a event.
2247 *
2248 * If event->ctx is a cloned context, callers must make sure that
2249 * every task struct that event->ctx->task could possibly point to
2250 * remains valid. This condition is satisfied when called through
2251 * perf_event_for_each_child or perf_event_for_each as described
2252 * for perf_event_disable.
2253 */
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002254static void _perf_event_enable(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002255{
2256 struct perf_event_context *ctx = event->ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002257
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002258 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra7b648012015-12-03 18:35:21 +01002259 if (event->state >= PERF_EVENT_STATE_INACTIVE) {
2260 raw_spin_unlock_irq(&ctx->lock);
2261 return;
2262 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002263
2264 /*
2265 * If the event is in error state, clear that first.
Peter Zijlstra7b648012015-12-03 18:35:21 +01002266 *
2267 * That way, if we see the event in error state below, we know that it
2268 * has gone back into error state, as distinct from the task having
2269 * been scheduled away before the cross-call arrived.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002270 */
2271 if (event->state == PERF_EVENT_STATE_ERROR)
2272 event->state = PERF_EVENT_STATE_OFF;
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002273 raw_spin_unlock_irq(&ctx->lock);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002274
Peter Zijlstra7b648012015-12-03 18:35:21 +01002275 event_function_call(event, __perf_event_enable,
2276 ___perf_event_enable, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002277}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002278
2279/*
2280 * See perf_event_disable();
2281 */
2282void perf_event_enable(struct perf_event *event)
2283{
2284 struct perf_event_context *ctx;
2285
2286 ctx = perf_event_ctx_lock(event);
2287 _perf_event_enable(event);
2288 perf_event_ctx_unlock(event, ctx);
2289}
Robert Richterdcfce4a2011-10-11 17:11:08 +02002290EXPORT_SYMBOL_GPL(perf_event_enable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002291
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002292static int _perf_event_refresh(struct perf_event *event, int refresh)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002293{
2294 /*
2295 * not supported on inherited events
2296 */
Franck Bui-Huu2e939d12010-11-23 16:21:44 +01002297 if (event->attr.inherit || !is_sampling_event(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002298 return -EINVAL;
2299
2300 atomic_add(refresh, &event->event_limit);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002301 _perf_event_enable(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002302
2303 return 0;
2304}
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01002305
2306/*
2307 * See perf_event_disable()
2308 */
2309int perf_event_refresh(struct perf_event *event, int refresh)
2310{
2311 struct perf_event_context *ctx;
2312 int ret;
2313
2314 ctx = perf_event_ctx_lock(event);
2315 ret = _perf_event_refresh(event, refresh);
2316 perf_event_ctx_unlock(event, ctx);
2317
2318 return ret;
2319}
Avi Kivity26ca5c12011-06-29 18:42:37 +03002320EXPORT_SYMBOL_GPL(perf_event_refresh);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002321
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002322static void ctx_sched_out(struct perf_event_context *ctx,
2323 struct perf_cpu_context *cpuctx,
2324 enum event_type_t event_type)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002325{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002326 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002327 struct perf_event *event;
2328
2329 lockdep_assert_held(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002330
Peter Zijlstradb24d332011-04-09 21:17:45 +02002331 ctx->is_active &= ~event_type;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002332 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002333 return;
2334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002335 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002336 update_cgrp_time_from_cpuctx(cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002337 if (!ctx->nr_active)
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002338 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002339
Peter Zijlstra075e0b02011-04-09 21:17:40 +02002340 perf_pmu_disable(ctx->pmu);
Peter Zijlstradb24d332011-04-09 21:17:45 +02002341 if ((is_active & EVENT_PINNED) && (event_type & EVENT_PINNED)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002342 list_for_each_entry(event, &ctx->pinned_groups, group_entry)
2343 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002344 }
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002345
Peter Zijlstradb24d332011-04-09 21:17:45 +02002346 if ((is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE)) {
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002347 list_for_each_entry(event, &ctx->flexible_groups, group_entry)
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002348 group_sched_out(event, cpuctx, ctx);
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002349 }
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002350 perf_pmu_enable(ctx->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002351}
2352
2353/*
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002354 * Test whether two contexts are equivalent, i.e. whether they have both been
2355 * cloned from the same version of the same context.
2356 *
2357 * Equivalence is measured using a generation number in the context that is
2358 * incremented on each modification to it; see unclone_ctx(), list_add_event()
2359 * and list_del_event().
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002360 */
2361static int context_equiv(struct perf_event_context *ctx1,
2362 struct perf_event_context *ctx2)
2363{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02002364 lockdep_assert_held(&ctx1->lock);
2365 lockdep_assert_held(&ctx2->lock);
2366
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002367 /* Pinning disables the swap optimization */
2368 if (ctx1->pin_count || ctx2->pin_count)
2369 return 0;
2370
2371 /* If ctx1 is the parent of ctx2 */
2372 if (ctx1 == ctx2->parent_ctx && ctx1->generation == ctx2->parent_gen)
2373 return 1;
2374
2375 /* If ctx2 is the parent of ctx1 */
2376 if (ctx1->parent_ctx == ctx2 && ctx1->parent_gen == ctx2->generation)
2377 return 1;
2378
2379 /*
2380 * If ctx1 and ctx2 have the same parent; we flatten the parent
2381 * hierarchy, see perf_event_init_context().
2382 */
2383 if (ctx1->parent_ctx && ctx1->parent_ctx == ctx2->parent_ctx &&
2384 ctx1->parent_gen == ctx2->parent_gen)
2385 return 1;
2386
2387 /* Unmatched */
2388 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002389}
2390
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002391static void __perf_event_sync_stat(struct perf_event *event,
2392 struct perf_event *next_event)
2393{
2394 u64 value;
2395
2396 if (!event->attr.inherit_stat)
2397 return;
2398
2399 /*
2400 * Update the event value, we cannot use perf_event_read()
2401 * because we're in the middle of a context switch and have IRQs
2402 * disabled, which upsets smp_call_function_single(), however
2403 * we know the event must be on the current CPU, therefore we
2404 * don't need to use it.
2405 */
2406 switch (event->state) {
2407 case PERF_EVENT_STATE_ACTIVE:
Peter Zijlstra3dbebf12009-11-20 22:19:52 +01002408 event->pmu->read(event);
2409 /* fall-through */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002410
2411 case PERF_EVENT_STATE_INACTIVE:
2412 update_event_times(event);
2413 break;
2414
2415 default:
2416 break;
2417 }
2418
2419 /*
2420 * In order to keep per-task stats reliable we need to flip the event
2421 * values when we flip the contexts.
2422 */
Peter Zijlstrae7850592010-05-21 14:43:08 +02002423 value = local64_read(&next_event->count);
2424 value = local64_xchg(&event->count, value);
2425 local64_set(&next_event->count, value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002426
2427 swap(event->total_time_enabled, next_event->total_time_enabled);
2428 swap(event->total_time_running, next_event->total_time_running);
2429
2430 /*
2431 * Since we swizzled the values, update the user visible data too.
2432 */
2433 perf_event_update_userpage(event);
2434 perf_event_update_userpage(next_event);
2435}
2436
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002437static void perf_event_sync_stat(struct perf_event_context *ctx,
2438 struct perf_event_context *next_ctx)
2439{
2440 struct perf_event *event, *next_event;
2441
2442 if (!ctx->nr_stat)
2443 return;
2444
Peter Zijlstra02ffdbc2009-11-20 22:19:50 +01002445 update_context_time(ctx);
2446
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002447 event = list_first_entry(&ctx->event_list,
2448 struct perf_event, event_entry);
2449
2450 next_event = list_first_entry(&next_ctx->event_list,
2451 struct perf_event, event_entry);
2452
2453 while (&event->event_entry != &ctx->event_list &&
2454 &next_event->event_entry != &next_ctx->event_list) {
2455
2456 __perf_event_sync_stat(event, next_event);
2457
2458 event = list_next_entry(event, event_entry);
2459 next_event = list_next_entry(next_event, event_entry);
2460 }
2461}
2462
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002463static void perf_event_context_sched_out(struct task_struct *task, int ctxn,
2464 struct task_struct *next)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002465{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002466 struct perf_event_context *ctx = task->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002467 struct perf_event_context *next_ctx;
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002468 struct perf_event_context *parent, *next_parent;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002469 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002470 int do_switch = 1;
2471
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002472 if (likely(!ctx))
2473 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002474
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002475 cpuctx = __get_cpu_context(ctx);
2476 if (!cpuctx->task_ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002477 return;
2478
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002479 rcu_read_lock();
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002480 next_ctx = next->perf_event_ctxp[ctxn];
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002481 if (!next_ctx)
2482 goto unlock;
2483
2484 parent = rcu_dereference(ctx->parent_ctx);
2485 next_parent = rcu_dereference(next_ctx->parent_ctx);
2486
2487 /* If neither context have a parent context; they cannot be clones. */
Jiri Olsa802c8a62014-09-12 13:18:28 +02002488 if (!parent && !next_parent)
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002489 goto unlock;
2490
2491 if (next_parent == ctx || next_ctx == parent || next_parent == parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002492 /*
2493 * Looks like the two contexts are clones, so we might be
2494 * able to optimize the context switch. We lock both
2495 * contexts and check that they are clones under the
2496 * lock (including re-checking that neither has been
2497 * uncloned in the meantime). It doesn't matter which
2498 * order we take the locks because no other cpu could
2499 * be trying to lock both of these tasks.
2500 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002501 raw_spin_lock(&ctx->lock);
2502 raw_spin_lock_nested(&next_ctx->lock, SINGLE_DEPTH_NESTING);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002503 if (context_equiv(ctx, next_ctx)) {
2504 /*
2505 * XXX do we need a memory barrier of sorts
2506 * wrt to rcu_dereference() of perf_event_ctxp
2507 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002508 task->perf_event_ctxp[ctxn] = next_ctx;
2509 next->perf_event_ctxp[ctxn] = ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002510 ctx->task = next;
2511 next_ctx->task = task;
Yan, Zheng5a158c32014-11-04 21:56:02 -05002512
2513 swap(ctx->task_ctx_data, next_ctx->task_ctx_data);
2514
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002515 do_switch = 0;
2516
2517 perf_event_sync_stat(ctx, next_ctx);
2518 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01002519 raw_spin_unlock(&next_ctx->lock);
2520 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002521 }
Peter Zijlstra5a3126d2013-10-07 17:12:48 +02002522unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002523 rcu_read_unlock();
2524
2525 if (do_switch) {
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002526 raw_spin_lock(&ctx->lock);
Peter Zijlstra8833d0e2016-01-08 10:02:37 +01002527 task_ctx_sched_out(cpuctx, ctx);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002528 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002529 }
2530}
2531
Yan, Zhengba532502014-11-04 21:55:58 -05002532void perf_sched_cb_dec(struct pmu *pmu)
2533{
2534 this_cpu_dec(perf_sched_cb_usages);
2535}
2536
2537void perf_sched_cb_inc(struct pmu *pmu)
2538{
2539 this_cpu_inc(perf_sched_cb_usages);
2540}
2541
2542/*
2543 * This function provides the context switch callback to the lower code
2544 * layer. It is invoked ONLY when the context switch callback is enabled.
2545 */
2546static void perf_pmu_sched_task(struct task_struct *prev,
2547 struct task_struct *next,
2548 bool sched_in)
2549{
2550 struct perf_cpu_context *cpuctx;
2551 struct pmu *pmu;
2552 unsigned long flags;
2553
2554 if (prev == next)
2555 return;
2556
2557 local_irq_save(flags);
2558
2559 rcu_read_lock();
2560
2561 list_for_each_entry_rcu(pmu, &pmus, entry) {
2562 if (pmu->sched_task) {
2563 cpuctx = this_cpu_ptr(pmu->pmu_cpu_context);
2564
2565 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
2566
2567 perf_pmu_disable(pmu);
2568
2569 pmu->sched_task(cpuctx->task_ctx, sched_in);
2570
2571 perf_pmu_enable(pmu);
2572
2573 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
2574 }
2575 }
2576
2577 rcu_read_unlock();
2578
2579 local_irq_restore(flags);
2580}
2581
Adrian Hunter45ac1402015-07-21 12:44:02 +03002582static void perf_event_switch(struct task_struct *task,
2583 struct task_struct *next_prev, bool sched_in);
2584
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002585#define for_each_task_context_nr(ctxn) \
2586 for ((ctxn) = 0; (ctxn) < perf_nr_task_contexts; (ctxn)++)
2587
2588/*
2589 * Called from scheduler to remove the events of the current task,
2590 * with interrupts disabled.
2591 *
2592 * We stop each event and update the event value in event->count.
2593 *
2594 * This does not protect us against NMI, but disable()
2595 * sets the disabled bit in the control field of event _before_
2596 * accessing the event control register. If a NMI hits, then it will
2597 * not restart the event.
2598 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002599void __perf_event_task_sched_out(struct task_struct *task,
2600 struct task_struct *next)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002601{
2602 int ctxn;
2603
Yan, Zhengba532502014-11-04 21:55:58 -05002604 if (__this_cpu_read(perf_sched_cb_usages))
2605 perf_pmu_sched_task(task, next, false);
2606
Adrian Hunter45ac1402015-07-21 12:44:02 +03002607 if (atomic_read(&nr_switch_events))
2608 perf_event_switch(task, next, false);
2609
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002610 for_each_task_context_nr(ctxn)
2611 perf_event_context_sched_out(task, ctxn, next);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002612
2613 /*
2614 * if cgroup events exist on this CPU, then we need
2615 * to check if we have to switch out PMU state.
2616 * cgroup event are system-wide mode only
2617 */
Christoph Lameter4a32fea2014-08-17 12:30:27 -05002618 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
Stephane Eraniana8d757e2011-08-25 15:58:03 +02002619 perf_cgroup_sched_out(task, next);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002620}
2621
Peter Zijlstra3e349502016-01-08 10:01:18 +01002622static void task_ctx_sched_out(struct perf_cpu_context *cpuctx,
2623 struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002624{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002625 if (!cpuctx->task_ctx)
2626 return;
2627
2628 if (WARN_ON_ONCE(ctx != cpuctx->task_ctx))
2629 return;
2630
Peter Zijlstra04dc2db2011-04-09 21:17:43 +02002631 ctx_sched_out(ctx, cpuctx, EVENT_ALL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002632 cpuctx->task_ctx = NULL;
2633}
2634
2635/*
2636 * Called with IRQs disabled
2637 */
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002638static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
2639 enum event_type_t event_type)
2640{
2641 ctx_sched_out(&cpuctx->ctx, cpuctx, event_type);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002642}
2643
2644static void
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002645ctx_pinned_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002646 struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002647{
2648 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002649
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002650 list_for_each_entry(event, &ctx->pinned_groups, group_entry) {
2651 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002652 continue;
Stephane Eranian5632ab12011-01-03 18:20:01 +02002653 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002654 continue;
2655
Stephane Eraniane5d13672011-02-14 11:20:01 +02002656 /* may need to reset tstamp_enabled */
2657 if (is_cgroup_event(event))
2658 perf_cgroup_mark_enabled(event, ctx);
2659
Xiao Guangrong8c9ed8e2009-09-25 13:51:17 +08002660 if (group_can_go_on(event, cpuctx, 1))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002661 group_sched_in(event, cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002662
2663 /*
2664 * If this pinned group hasn't been scheduled,
2665 * put it in error state.
2666 */
2667 if (event->state == PERF_EVENT_STATE_INACTIVE) {
2668 update_group_times(event);
2669 event->state = PERF_EVENT_STATE_ERROR;
2670 }
2671 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002672}
2673
2674static void
2675ctx_flexible_sched_in(struct perf_event_context *ctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01002676 struct perf_cpu_context *cpuctx)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002677{
2678 struct perf_event *event;
2679 int can_add_hw = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002680
Frederic Weisbecker889ff012010-01-09 20:04:47 +01002681 list_for_each_entry(event, &ctx->flexible_groups, group_entry) {
2682 /* Ignore events in OFF or ERROR state */
2683 if (event->state <= PERF_EVENT_STATE_OFF)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002684 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002685 /*
2686 * Listen to the 'cpu' scheduling filter constraint
2687 * of events:
2688 */
Stephane Eranian5632ab12011-01-03 18:20:01 +02002689 if (!event_filter_match(event))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002690 continue;
2691
Stephane Eraniane5d13672011-02-14 11:20:01 +02002692 /* may need to reset tstamp_enabled */
2693 if (is_cgroup_event(event))
2694 perf_cgroup_mark_enabled(event, ctx);
2695
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002696 if (group_can_go_on(event, cpuctx, can_add_hw)) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01002697 if (group_sched_in(event, cpuctx, ctx))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002698 can_add_hw = 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02002699 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002700 }
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002701}
2702
2703static void
2704ctx_sched_in(struct perf_event_context *ctx,
2705 struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002706 enum event_type_t event_type,
2707 struct task_struct *task)
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002708{
Peter Zijlstradb24d332011-04-09 21:17:45 +02002709 int is_active = ctx->is_active;
Peter Zijlstrac994d612016-01-08 09:20:23 +01002710 u64 now;
2711
2712 lockdep_assert_held(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02002713
Peter Zijlstradb24d332011-04-09 21:17:45 +02002714 ctx->is_active |= event_type;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002715 if (likely(!ctx->nr_events))
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002716 return;
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002717
Stephane Eraniane5d13672011-02-14 11:20:01 +02002718 now = perf_clock();
2719 ctx->timestamp = now;
Stephane Eranian3f7cce32011-02-18 14:40:01 +02002720 perf_cgroup_set_timestamp(task, ctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002721 /*
2722 * First go through the list and put on any pinned groups
2723 * in order to give them the best chance of going on.
2724 */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002725 if (!(is_active & EVENT_PINNED) && (event_type & EVENT_PINNED))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002726 ctx_pinned_sched_in(ctx, cpuctx);
Frederic Weisbecker5b0311e2010-01-17 11:59:13 +01002727
2728 /* Then walk through the lower prio flexible groups */
Peter Zijlstradb24d332011-04-09 21:17:45 +02002729 if (!(is_active & EVENT_FLEXIBLE) && (event_type & EVENT_FLEXIBLE))
Peter Zijlstra6e377382010-02-11 13:21:58 +01002730 ctx_flexible_sched_in(ctx, cpuctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002731}
2732
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002733static void cpu_ctx_sched_in(struct perf_cpu_context *cpuctx,
Stephane Eraniane5d13672011-02-14 11:20:01 +02002734 enum event_type_t event_type,
2735 struct task_struct *task)
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002736{
2737 struct perf_event_context *ctx = &cpuctx->ctx;
2738
Stephane Eraniane5d13672011-02-14 11:20:01 +02002739 ctx_sched_in(ctx, cpuctx, event_type, task);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002740}
2741
Stephane Eraniane5d13672011-02-14 11:20:01 +02002742static void perf_event_context_sched_in(struct perf_event_context *ctx,
2743 struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002744{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002745 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002746
Peter Zijlstra108b02c2010-09-06 14:32:03 +02002747 cpuctx = __get_cpu_context(ctx);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002748 if (cpuctx->task_ctx == ctx)
2749 return;
2750
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002751 perf_ctx_lock(cpuctx, ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02002752 perf_pmu_disable(ctx->pmu);
Frederic Weisbecker329c0e02010-01-17 12:56:05 +01002753 /*
2754 * We want to keep the following priority order:
2755 * cpu pinned (that don't need to move), task pinned,
2756 * cpu flexible, task flexible.
2757 */
2758 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
2759
Gleb Natapov1d5f0032011-10-23 19:10:33 +02002760 if (ctx->nr_events)
2761 cpuctx->task_ctx = ctx;
eranian@google.com9b33fa62010-03-10 22:26:05 -08002762
Gleb Natapov86b47c22011-11-22 16:08:21 +02002763 perf_event_sched_in(cpuctx, cpuctx->task_ctx, task);
2764
Peter Zijlstrafacc4302011-04-09 21:17:42 +02002765 perf_pmu_enable(ctx->pmu);
2766 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002767}
2768
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002769/*
2770 * Called from scheduler to add the events of the current task
2771 * with interrupts disabled.
2772 *
2773 * We restore the event value and then enable it.
2774 *
2775 * This does not protect us against NMI, but enable()
2776 * sets the enabled bit in the control field of event _before_
2777 * accessing the event control register. If a NMI hits, then it will
2778 * keep the event running.
2779 */
Jiri Olsaab0cce52012-05-23 13:13:02 +02002780void __perf_event_task_sched_in(struct task_struct *prev,
2781 struct task_struct *task)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002782{
2783 struct perf_event_context *ctx;
2784 int ctxn;
2785
Peter Zijlstra7e41d172016-01-08 09:21:40 +01002786 /*
2787 * If cgroup events exist on this CPU, then we need to check if we have
2788 * to switch in PMU state; cgroup event are system-wide mode only.
2789 *
2790 * Since cgroup events are CPU events, we must schedule these in before
2791 * we schedule in the task events.
2792 */
2793 if (atomic_read(this_cpu_ptr(&perf_cgroup_events)))
2794 perf_cgroup_sched_in(prev, task);
2795
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002796 for_each_task_context_nr(ctxn) {
2797 ctx = task->perf_event_ctxp[ctxn];
2798 if (likely(!ctx))
2799 continue;
2800
Stephane Eraniane5d13672011-02-14 11:20:01 +02002801 perf_event_context_sched_in(ctx, task);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02002802 }
Stephane Eraniand010b332012-02-09 23:21:00 +01002803
Adrian Hunter45ac1402015-07-21 12:44:02 +03002804 if (atomic_read(&nr_switch_events))
2805 perf_event_switch(task, prev, true);
2806
Yan, Zhengba532502014-11-04 21:55:58 -05002807 if (__this_cpu_read(perf_sched_cb_usages))
2808 perf_pmu_sched_task(prev, task, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002809}
2810
Peter Zijlstraabd50712010-01-26 18:50:16 +01002811static u64 perf_calculate_period(struct perf_event *event, u64 nsec, u64 count)
2812{
2813 u64 frequency = event->attr.sample_freq;
2814 u64 sec = NSEC_PER_SEC;
2815 u64 divisor, dividend;
2816
2817 int count_fls, nsec_fls, frequency_fls, sec_fls;
2818
2819 count_fls = fls64(count);
2820 nsec_fls = fls64(nsec);
2821 frequency_fls = fls64(frequency);
2822 sec_fls = 30;
2823
2824 /*
2825 * We got @count in @nsec, with a target of sample_freq HZ
2826 * the target period becomes:
2827 *
2828 * @count * 10^9
2829 * period = -------------------
2830 * @nsec * sample_freq
2831 *
2832 */
2833
2834 /*
2835 * Reduce accuracy by one bit such that @a and @b converge
2836 * to a similar magnitude.
2837 */
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01002838#define REDUCE_FLS(a, b) \
Peter Zijlstraabd50712010-01-26 18:50:16 +01002839do { \
2840 if (a##_fls > b##_fls) { \
2841 a >>= 1; \
2842 a##_fls--; \
2843 } else { \
2844 b >>= 1; \
2845 b##_fls--; \
2846 } \
2847} while (0)
2848
2849 /*
2850 * Reduce accuracy until either term fits in a u64, then proceed with
2851 * the other, so that finally we can do a u64/u64 division.
2852 */
2853 while (count_fls + sec_fls > 64 && nsec_fls + frequency_fls > 64) {
2854 REDUCE_FLS(nsec, frequency);
2855 REDUCE_FLS(sec, count);
2856 }
2857
2858 if (count_fls + sec_fls > 64) {
2859 divisor = nsec * frequency;
2860
2861 while (count_fls + sec_fls > 64) {
2862 REDUCE_FLS(count, sec);
2863 divisor >>= 1;
2864 }
2865
2866 dividend = count * sec;
2867 } else {
2868 dividend = count * sec;
2869
2870 while (nsec_fls + frequency_fls > 64) {
2871 REDUCE_FLS(nsec, frequency);
2872 dividend >>= 1;
2873 }
2874
2875 divisor = nsec * frequency;
2876 }
2877
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002878 if (!divisor)
2879 return dividend;
2880
Peter Zijlstraabd50712010-01-26 18:50:16 +01002881 return div64_u64(dividend, divisor);
2882}
2883
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002884static DEFINE_PER_CPU(int, perf_throttled_count);
2885static DEFINE_PER_CPU(u64, perf_throttled_seq);
2886
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002887static void perf_adjust_period(struct perf_event *event, u64 nsec, u64 count, bool disable)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002888{
2889 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraf6ab91ad2010-06-04 15:18:01 +02002890 s64 period, sample_period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002891 s64 delta;
2892
Peter Zijlstraabd50712010-01-26 18:50:16 +01002893 period = perf_calculate_period(event, nsec, count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002894
2895 delta = (s64)(period - hwc->sample_period);
2896 delta = (delta + 7) / 8; /* low pass filter */
2897
2898 sample_period = hwc->sample_period + delta;
2899
2900 if (!sample_period)
2901 sample_period = 1;
2902
2903 hwc->sample_period = sample_period;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002904
Peter Zijlstrae7850592010-05-21 14:43:08 +02002905 if (local64_read(&hwc->period_left) > 8*sample_period) {
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002906 if (disable)
2907 event->pmu->stop(event, PERF_EF_UPDATE);
2908
Peter Zijlstrae7850592010-05-21 14:43:08 +02002909 local64_set(&hwc->period_left, 0);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002910
2911 if (disable)
2912 event->pmu->start(event, PERF_EF_RELOAD);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002913 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002914}
2915
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002916/*
2917 * combine freq adjustment with unthrottling to avoid two passes over the
2918 * events. At the same time, make sure, having freq events does not change
2919 * the rate of unthrottling as that would introduce bias.
2920 */
2921static void perf_adjust_freq_unthr_context(struct perf_event_context *ctx,
2922 int needs_unthr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002923{
2924 struct perf_event *event;
2925 struct hw_perf_event *hwc;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002926 u64 now, period = TICK_NSEC;
Peter Zijlstraabd50712010-01-26 18:50:16 +01002927 s64 delta;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002928
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002929 /*
2930 * only need to iterate over all events iff:
2931 * - context have events in frequency mode (needs freq adjust)
2932 * - there are events to unthrottle on this cpu
2933 */
2934 if (!(ctx->nr_freq || needs_unthr))
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01002935 return;
2936
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002937 raw_spin_lock(&ctx->lock);
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002938 perf_pmu_disable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002939
Paul Mackerras03541f82009-10-14 16:58:03 +11002940 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002941 if (event->state != PERF_EVENT_STATE_ACTIVE)
2942 continue;
2943
Stephane Eranian5632ab12011-01-03 18:20:01 +02002944 if (!event_filter_match(event))
Peter Zijlstra5d27c232009-12-17 13:16:32 +01002945 continue;
2946
Alexander Shishkin44377272013-12-16 14:17:36 +02002947 perf_pmu_disable(event->pmu);
2948
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002949 hwc = &event->hw;
2950
Jiri Olsaae23bff2013-08-24 16:45:54 +02002951 if (hwc->interrupts == MAX_INTERRUPTS) {
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002952 hwc->interrupts = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002953 perf_log_throttle(event, 1);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002954 event->pmu->start(event, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002955 }
2956
2957 if (!event->attr.freq || !event->attr.sample_freq)
Alexander Shishkin44377272013-12-16 14:17:36 +02002958 goto next;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002959
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002960 /*
2961 * stop the event and update event->count
2962 */
2963 event->pmu->stop(event, PERF_EF_UPDATE);
2964
Peter Zijlstrae7850592010-05-21 14:43:08 +02002965 now = local64_read(&event->count);
Peter Zijlstraabd50712010-01-26 18:50:16 +01002966 delta = now - hwc->freq_count_stamp;
2967 hwc->freq_count_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002968
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002969 /*
2970 * restart the event
2971 * reload only if value has changed
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002972 * we have stopped the event so tell that
2973 * to perf_adjust_period() to avoid stopping it
2974 * twice.
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002975 */
Peter Zijlstraabd50712010-01-26 18:50:16 +01002976 if (delta > 0)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002977 perf_adjust_period(event, period, delta, false);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002978
2979 event->pmu->start(event, delta > 0 ? PERF_EF_RELOAD : 0);
Alexander Shishkin44377272013-12-16 14:17:36 +02002980 next:
2981 perf_pmu_enable(event->pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002982 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002983
Stephane Eranianf39d47f2012-02-07 14:39:57 +01002984 perf_pmu_enable(ctx->pmu);
Stephane Eraniane050e3f2012-01-26 17:03:19 +01002985 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002986}
2987
2988/*
2989 * Round-robin a context's events:
2990 */
2991static void rotate_ctx(struct perf_event_context *ctx)
2992{
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01002993 /*
2994 * Rotate the first entry last of non-pinned groups. Rotation might be
2995 * disabled by the inheritance code.
2996 */
2997 if (!ctx->rotate_disable)
2998 list_rotate_left(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002999}
3000
Stephane Eranian9e630202013-04-03 14:21:33 +02003001static int perf_rotate_context(struct perf_cpu_context *cpuctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003002{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003003 struct perf_event_context *ctx = NULL;
Mark Rutland2fde4f92015-01-07 15:01:54 +00003004 int rotate = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003005
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003006 if (cpuctx->ctx.nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003007 if (cpuctx->ctx.nr_events != cpuctx->ctx.nr_active)
3008 rotate = 1;
3009 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003010
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003011 ctx = cpuctx->task_ctx;
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003012 if (ctx && ctx->nr_events) {
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003013 if (ctx->nr_events != ctx->nr_active)
3014 rotate = 1;
3015 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003016
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003017 if (!rotate)
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003018 goto done;
3019
Peter Zijlstrafacc4302011-04-09 21:17:42 +02003020 perf_ctx_lock(cpuctx, cpuctx->task_ctx);
Peter Zijlstra1b9a6442010-09-07 18:32:22 +02003021 perf_pmu_disable(cpuctx->ctx.pmu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003022
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003023 cpu_ctx_sched_out(cpuctx, EVENT_FLEXIBLE);
3024 if (ctx)
3025 ctx_sched_out(ctx, cpuctx, EVENT_FLEXIBLE);
Peter Zijlstrad4944a02010-03-08 13:51:20 +01003026
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003027 rotate_ctx(&cpuctx->ctx);
3028 if (ctx)
3029 rotate_ctx(ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003030
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003031 perf_event_sched_in(cpuctx, ctx, current);
Peter Zijlstra0f5a2602011-11-16 14:38:16 +01003032
3033 perf_pmu_enable(cpuctx->ctx.pmu);
3034 perf_ctx_unlock(cpuctx, cpuctx->task_ctx);
Peter Zijlstrab5ab4cd2010-09-06 16:32:21 +02003035done:
Stephane Eranian9e630202013-04-03 14:21:33 +02003036
3037 return rotate;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003038}
3039
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003040#ifdef CONFIG_NO_HZ_FULL
3041bool perf_event_can_stop_tick(void)
3042{
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003043 if (atomic_read(&nr_freq_events) ||
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003044 __this_cpu_read(perf_throttled_count))
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003045 return false;
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02003046 else
3047 return true;
Frederic Weisbecker026249e2013-04-20 15:58:34 +02003048}
3049#endif
3050
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003051void perf_event_task_tick(void)
3052{
Mark Rutland2fde4f92015-01-07 15:01:54 +00003053 struct list_head *head = this_cpu_ptr(&active_ctx_list);
3054 struct perf_event_context *ctx, *tmp;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003055 int throttled;
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003056
3057 WARN_ON(!irqs_disabled());
3058
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003059 __this_cpu_inc(perf_throttled_seq);
3060 throttled = __this_cpu_xchg(perf_throttled_count, 0);
3061
Mark Rutland2fde4f92015-01-07 15:01:54 +00003062 list_for_each_entry_safe(ctx, tmp, head, active_ctx_list)
Stephane Eraniane050e3f2012-01-26 17:03:19 +01003063 perf_adjust_freq_unthr_context(ctx, throttled);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003064}
3065
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003066static int event_enable_on_exec(struct perf_event *event,
3067 struct perf_event_context *ctx)
3068{
3069 if (!event->attr.enable_on_exec)
3070 return 0;
3071
3072 event->attr.enable_on_exec = 0;
3073 if (event->state >= PERF_EVENT_STATE_INACTIVE)
3074 return 0;
3075
Peter Zijlstra1d9b4822011-11-23 12:34:20 +01003076 __perf_event_mark_enabled(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003077
3078 return 1;
3079}
3080
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003081/*
3082 * Enable all of a task's events that have been marked enable-on-exec.
3083 * This expects task == current.
3084 */
Peter Zijlstrac1274492015-12-10 20:57:40 +01003085static void perf_event_enable_on_exec(int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003086{
Peter Zijlstrac1274492015-12-10 20:57:40 +01003087 struct perf_event_context *ctx, *clone_ctx = NULL;
Peter Zijlstra3e349502016-01-08 10:01:18 +01003088 struct perf_cpu_context *cpuctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003089 struct perf_event *event;
3090 unsigned long flags;
3091 int enabled = 0;
3092
3093 local_irq_save(flags);
Peter Zijlstrac1274492015-12-10 20:57:40 +01003094 ctx = current->perf_event_ctxp[ctxn];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003095 if (!ctx || !ctx->nr_events)
3096 goto out;
3097
Peter Zijlstra3e349502016-01-08 10:01:18 +01003098 cpuctx = __get_cpu_context(ctx);
3099 perf_ctx_lock(cpuctx, ctx);
3100 list_for_each_entry(event, &ctx->event_list, event_entry)
3101 enabled |= event_enable_on_exec(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003102
3103 /*
Peter Zijlstra3e349502016-01-08 10:01:18 +01003104 * Unclone and reschedule this context if we enabled any event.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003105 */
Peter Zijlstra3e349502016-01-08 10:01:18 +01003106 if (enabled) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003107 clone_ctx = unclone_ctx(ctx);
Peter Zijlstra3e349502016-01-08 10:01:18 +01003108 ctx_resched(cpuctx, ctx);
3109 }
3110 perf_ctx_unlock(cpuctx, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003111
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003112out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003113 local_irq_restore(flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003114
3115 if (clone_ctx)
3116 put_ctx(clone_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003117}
3118
Peter Zijlstrae041e322014-05-21 17:32:19 +02003119void perf_event_exec(void)
3120{
Peter Zijlstrae041e322014-05-21 17:32:19 +02003121 int ctxn;
3122
3123 rcu_read_lock();
Peter Zijlstrac1274492015-12-10 20:57:40 +01003124 for_each_task_context_nr(ctxn)
3125 perf_event_enable_on_exec(ctxn);
Peter Zijlstrae041e322014-05-21 17:32:19 +02003126 rcu_read_unlock();
3127}
3128
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003129struct perf_read_data {
3130 struct perf_event *event;
3131 bool group;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003132 int ret;
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003133};
3134
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003135/*
3136 * Cross CPU call to read the hardware event
3137 */
3138static void __perf_event_read(void *info)
3139{
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003140 struct perf_read_data *data = info;
3141 struct perf_event *sub, *event = data->event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003142 struct perf_event_context *ctx = event->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003143 struct perf_cpu_context *cpuctx = __get_cpu_context(ctx);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003144 struct pmu *pmu = event->pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003145
3146 /*
3147 * If this is a task context, we need to check whether it is
3148 * the current task context of this cpu. If not it has been
3149 * scheduled out before the smp call arrived. In that case
3150 * event->count would have been updated to a recent sample
3151 * when the event was scheduled out.
3152 */
3153 if (ctx->task && cpuctx->task_ctx != ctx)
3154 return;
3155
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003156 raw_spin_lock(&ctx->lock);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003157 if (ctx->is_active) {
Peter Zijlstra542e72f2011-01-26 15:38:35 +01003158 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003159 update_cgrp_time_from_event(event);
3160 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003161
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003162 update_event_times(event);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003163 if (event->state != PERF_EVENT_STATE_ACTIVE)
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003164 goto unlock;
3165
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003166 if (!data->group) {
3167 pmu->read(event);
3168 data->ret = 0;
3169 goto unlock;
3170 }
3171
3172 pmu->start_txn(pmu, PERF_PMU_TXN_READ);
3173
3174 pmu->read(event);
3175
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003176 list_for_each_entry(sub, &event->sibling_list, group_entry) {
3177 update_event_times(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003178 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
3179 /*
3180 * Use sibling's PMU rather than @event's since
3181 * sibling could be on different (eg: software) PMU.
3182 */
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003183 sub->pmu->read(sub);
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003184 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003185 }
Sukadev Bhattiprolu4a00c162015-09-03 20:07:51 -07003186
3187 data->ret = pmu->commit_txn(pmu);
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003188
3189unlock:
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003190 raw_spin_unlock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003191}
3192
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003193static inline u64 perf_event_count(struct perf_event *event)
3194{
Matt Flemingeacd3ec2015-01-23 18:45:41 +00003195 if (event->pmu->count)
3196 return event->pmu->count(event);
3197
3198 return __perf_event_count(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02003199}
3200
Kaixu Xiaffe86902015-08-06 07:02:32 +00003201/*
3202 * NMI-safe method to read a local event, that is an event that
3203 * is:
3204 * - either for the current task, or for this CPU
3205 * - does not have inherit set, for inherited task events
3206 * will not be local and we cannot read them atomically
3207 * - must not have a pmu::count method
3208 */
3209u64 perf_event_read_local(struct perf_event *event)
3210{
3211 unsigned long flags;
3212 u64 val;
3213
3214 /*
3215 * Disabling interrupts avoids all counter scheduling (context
3216 * switches, timer based rotation and IPIs).
3217 */
3218 local_irq_save(flags);
3219
3220 /* If this is a per-task event, it must be for current */
3221 WARN_ON_ONCE((event->attach_state & PERF_ATTACH_TASK) &&
3222 event->hw.target != current);
3223
3224 /* If this is a per-CPU event, it must be for this CPU */
3225 WARN_ON_ONCE(!(event->attach_state & PERF_ATTACH_TASK) &&
3226 event->cpu != smp_processor_id());
3227
3228 /*
3229 * It must not be an event with inherit set, we cannot read
3230 * all child counters from atomic context.
3231 */
3232 WARN_ON_ONCE(event->attr.inherit);
3233
3234 /*
3235 * It must not have a pmu::count method, those are not
3236 * NMI safe.
3237 */
3238 WARN_ON_ONCE(event->pmu->count);
3239
3240 /*
3241 * If the event is currently on this CPU, its either a per-task event,
3242 * or local to this CPU. Furthermore it means its ACTIVE (otherwise
3243 * oncpu == -1).
3244 */
3245 if (event->oncpu == smp_processor_id())
3246 event->pmu->read(event);
3247
3248 val = local64_read(&event->count);
3249 local_irq_restore(flags);
3250
3251 return val;
3252}
3253
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003254static int perf_event_read(struct perf_event *event, bool group)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003255{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003256 int ret = 0;
3257
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003258 /*
3259 * If event is enabled and currently active on a CPU, update the
3260 * value in the event structure:
3261 */
3262 if (event->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003263 struct perf_read_data data = {
3264 .event = event,
3265 .group = group,
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003266 .ret = 0,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003267 };
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003268 smp_call_function_single(event->oncpu,
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003269 __perf_event_read, &data, 1);
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003270 ret = data.ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003271 } else if (event->state == PERF_EVENT_STATE_INACTIVE) {
Peter Zijlstra2b8988c2009-11-20 22:19:54 +01003272 struct perf_event_context *ctx = event->ctx;
3273 unsigned long flags;
3274
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003275 raw_spin_lock_irqsave(&ctx->lock, flags);
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003276 /*
3277 * may read while context is not active
3278 * (e.g., thread is blocked), in that case
3279 * we cannot update context time
3280 */
Stephane Eraniane5d13672011-02-14 11:20:01 +02003281 if (ctx->is_active) {
Stephane Eranianc530ccd2010-10-15 15:26:01 +02003282 update_context_time(ctx);
Stephane Eraniane5d13672011-02-14 11:20:01 +02003283 update_cgrp_time_from_event(event);
3284 }
Peter Zijlstra0492d4c2015-09-03 20:07:48 -07003285 if (group)
3286 update_group_times(event);
3287 else
3288 update_event_times(event);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003289 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003290 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003291
3292 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003293}
3294
3295/*
3296 * Initialize the perf_event context in a task_struct:
3297 */
Peter Zijlstraeb184472010-09-07 15:55:13 +02003298static void __perf_event_init_context(struct perf_event_context *ctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003299{
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003300 raw_spin_lock_init(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003301 mutex_init(&ctx->mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00003302 INIT_LIST_HEAD(&ctx->active_ctx_list);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01003303 INIT_LIST_HEAD(&ctx->pinned_groups);
3304 INIT_LIST_HEAD(&ctx->flexible_groups);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003305 INIT_LIST_HEAD(&ctx->event_list);
3306 atomic_set(&ctx->refcount, 1);
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003307 INIT_DELAYED_WORK(&ctx->orphans_remove, orphans_remove_work);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003308}
3309
Peter Zijlstraeb184472010-09-07 15:55:13 +02003310static struct perf_event_context *
3311alloc_perf_context(struct pmu *pmu, struct task_struct *task)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003312{
3313 struct perf_event_context *ctx;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003314
3315 ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
3316 if (!ctx)
3317 return NULL;
3318
3319 __perf_event_init_context(ctx);
3320 if (task) {
3321 ctx->task = task;
3322 get_task_struct(task);
3323 }
3324 ctx->pmu = pmu;
3325
3326 return ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003327}
3328
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003329static struct task_struct *
3330find_lively_task_by_vpid(pid_t vpid)
3331{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003332 struct task_struct *task;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003333 int err;
3334
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003335 rcu_read_lock();
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003336 if (!vpid)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003337 task = current;
3338 else
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003339 task = find_task_by_vpid(vpid);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003340 if (task)
3341 get_task_struct(task);
3342 rcu_read_unlock();
3343
3344 if (!task)
3345 return ERR_PTR(-ESRCH);
3346
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003347 /* Reuse ptrace permission checks for now. */
3348 err = -EACCES;
3349 if (!ptrace_may_access(task, PTRACE_MODE_READ))
3350 goto errout;
3351
Matt Helsley2ebd4ff2010-09-13 13:01:19 -07003352 return task;
3353errout:
3354 put_task_struct(task);
3355 return ERR_PTR(err);
3356
3357}
3358
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003359/*
3360 * Returns a matching context with refcount and pincount.
3361 */
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003362static struct perf_event_context *
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003363find_get_context(struct pmu *pmu, struct task_struct *task,
3364 struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003365{
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003366 struct perf_event_context *ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003367 struct perf_cpu_context *cpuctx;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003368 void *task_ctx_data = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003369 unsigned long flags;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003370 int ctxn, err;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003371 int cpu = event->cpu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003372
Oleg Nesterov22a4ec72011-01-18 17:10:08 +01003373 if (!task) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003374 /* Must be root to operate on a CPU event: */
3375 if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
3376 return ERR_PTR(-EACCES);
3377
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003378 /*
3379 * We could be clever and allow to attach a event to an
3380 * offline CPU and activate it when the CPU comes up, but
3381 * that's for later.
3382 */
3383 if (!cpu_online(cpu))
3384 return ERR_PTR(-ENODEV);
3385
Peter Zijlstra108b02c2010-09-06 14:32:03 +02003386 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003387 ctx = &cpuctx->ctx;
3388 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003389 ++ctx->pin_count;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003390
3391 return ctx;
3392 }
3393
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003394 err = -EINVAL;
3395 ctxn = pmu->task_ctx_nr;
3396 if (ctxn < 0)
3397 goto errout;
3398
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003399 if (event->attach_state & PERF_ATTACH_TASK_DATA) {
3400 task_ctx_data = kzalloc(pmu->task_ctx_size, GFP_KERNEL);
3401 if (!task_ctx_data) {
3402 err = -ENOMEM;
3403 goto errout;
3404 }
3405 }
3406
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003407retry:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02003408 ctx = perf_lock_task_context(task, ctxn, &flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003409 if (ctx) {
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003410 clone_ctx = unclone_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003411 ++ctx->pin_count;
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003412
3413 if (task_ctx_data && !ctx->task_ctx_data) {
3414 ctx->task_ctx_data = task_ctx_data;
3415 task_ctx_data = NULL;
3416 }
Thomas Gleixnere625cce12009-11-17 18:02:06 +01003417 raw_spin_unlock_irqrestore(&ctx->lock, flags);
Peter Zijlstra211de6e2014-09-30 19:23:08 +02003418
3419 if (clone_ctx)
3420 put_ctx(clone_ctx);
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003421 } else {
Peter Zijlstraeb184472010-09-07 15:55:13 +02003422 ctx = alloc_perf_context(pmu, task);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003423 err = -ENOMEM;
3424 if (!ctx)
3425 goto errout;
Peter Zijlstraeb184472010-09-07 15:55:13 +02003426
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003427 if (task_ctx_data) {
3428 ctx->task_ctx_data = task_ctx_data;
3429 task_ctx_data = NULL;
3430 }
3431
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003432 err = 0;
3433 mutex_lock(&task->perf_event_mutex);
3434 /*
3435 * If it has already passed perf_event_exit_task().
3436 * we must see PF_EXITING, it takes this mutex too.
3437 */
3438 if (task->flags & PF_EXITING)
3439 err = -ESRCH;
3440 else if (task->perf_event_ctxp[ctxn])
3441 err = -EAGAIN;
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003442 else {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003443 get_ctx(ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003444 ++ctx->pin_count;
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003445 rcu_assign_pointer(task->perf_event_ctxp[ctxn], ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003446 }
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003447 mutex_unlock(&task->perf_event_mutex);
3448
3449 if (unlikely(err)) {
Peter Zijlstra9137fb22011-04-09 21:17:41 +02003450 put_ctx(ctx);
Oleg Nesterovdbe08d82011-01-19 19:22:07 +01003451
3452 if (err == -EAGAIN)
3453 goto retry;
3454 goto errout;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003455 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003456 }
3457
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003458 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003459 return ctx;
3460
Peter Zijlstra9ed60602010-06-11 17:36:35 +02003461errout:
Yan, Zheng4af57ef2014-11-04 21:56:01 -05003462 kfree(task_ctx_data);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003463 return ERR_PTR(err);
3464}
3465
Li Zefan6fb29152009-10-15 11:21:42 +08003466static void perf_event_free_filter(struct perf_event *event);
Alexei Starovoitov25415172015-03-25 12:49:20 -07003467static void perf_event_free_bpf_prog(struct perf_event *event);
Li Zefan6fb29152009-10-15 11:21:42 +08003468
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003469static void free_event_rcu(struct rcu_head *head)
3470{
3471 struct perf_event *event;
3472
3473 event = container_of(head, struct perf_event, rcu_head);
3474 if (event->ns)
3475 put_pid_ns(event->ns);
Li Zefan6fb29152009-10-15 11:21:42 +08003476 perf_event_free_filter(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003477 kfree(event);
3478}
3479
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003480static void ring_buffer_attach(struct perf_event *event,
3481 struct ring_buffer *rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003482
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003483static void unaccount_event_cpu(struct perf_event *event, int cpu)
3484{
3485 if (event->parent)
3486 return;
3487
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003488 if (is_cgroup_event(event))
3489 atomic_dec(&per_cpu(perf_cgroup_events, cpu));
3490}
3491
3492static void unaccount_event(struct perf_event *event)
3493{
3494 if (event->parent)
3495 return;
3496
3497 if (event->attach_state & PERF_ATTACH_TASK)
3498 static_key_slow_dec_deferred(&perf_sched_events);
3499 if (event->attr.mmap || event->attr.mmap_data)
3500 atomic_dec(&nr_mmap_events);
3501 if (event->attr.comm)
3502 atomic_dec(&nr_comm_events);
3503 if (event->attr.task)
3504 atomic_dec(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02003505 if (event->attr.freq)
3506 atomic_dec(&nr_freq_events);
Adrian Hunter45ac1402015-07-21 12:44:02 +03003507 if (event->attr.context_switch) {
3508 static_key_slow_dec_deferred(&perf_sched_events);
3509 atomic_dec(&nr_switch_events);
3510 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003511 if (is_cgroup_event(event))
3512 static_key_slow_dec_deferred(&perf_sched_events);
3513 if (has_branch_stack(event))
3514 static_key_slow_dec_deferred(&perf_sched_events);
3515
3516 unaccount_event_cpu(event, event->cpu);
3517}
3518
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003519/*
3520 * The following implement mutual exclusion of events on "exclusive" pmus
3521 * (PERF_PMU_CAP_EXCLUSIVE). Such pmus can only have one event scheduled
3522 * at a time, so we disallow creating events that might conflict, namely:
3523 *
3524 * 1) cpu-wide events in the presence of per-task events,
3525 * 2) per-task events in the presence of cpu-wide events,
3526 * 3) two matching events on the same context.
3527 *
3528 * The former two cases are handled in the allocation path (perf_event_alloc(),
3529 * __free_event()), the latter -- before the first perf_install_in_context().
3530 */
3531static int exclusive_event_init(struct perf_event *event)
3532{
3533 struct pmu *pmu = event->pmu;
3534
3535 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3536 return 0;
3537
3538 /*
3539 * Prevent co-existence of per-task and cpu-wide events on the
3540 * same exclusive pmu.
3541 *
3542 * Negative pmu::exclusive_cnt means there are cpu-wide
3543 * events on this "exclusive" pmu, positive means there are
3544 * per-task events.
3545 *
3546 * Since this is called in perf_event_alloc() path, event::ctx
3547 * doesn't exist yet; it is, however, safe to use PERF_ATTACH_TASK
3548 * to mean "per-task event", because unlike other attach states it
3549 * never gets cleared.
3550 */
3551 if (event->attach_state & PERF_ATTACH_TASK) {
3552 if (!atomic_inc_unless_negative(&pmu->exclusive_cnt))
3553 return -EBUSY;
3554 } else {
3555 if (!atomic_dec_unless_positive(&pmu->exclusive_cnt))
3556 return -EBUSY;
3557 }
3558
3559 return 0;
3560}
3561
3562static void exclusive_event_destroy(struct perf_event *event)
3563{
3564 struct pmu *pmu = event->pmu;
3565
3566 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3567 return;
3568
3569 /* see comment in exclusive_event_init() */
3570 if (event->attach_state & PERF_ATTACH_TASK)
3571 atomic_dec(&pmu->exclusive_cnt);
3572 else
3573 atomic_inc(&pmu->exclusive_cnt);
3574}
3575
3576static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2)
3577{
3578 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) &&
3579 (e1->cpu == e2->cpu ||
3580 e1->cpu == -1 ||
3581 e2->cpu == -1))
3582 return true;
3583 return false;
3584}
3585
3586/* Called under the same ctx::mutex as perf_install_in_context() */
3587static bool exclusive_event_installable(struct perf_event *event,
3588 struct perf_event_context *ctx)
3589{
3590 struct perf_event *iter_event;
3591 struct pmu *pmu = event->pmu;
3592
3593 if (!(pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE))
3594 return true;
3595
3596 list_for_each_entry(iter_event, &ctx->event_list, event_entry) {
3597 if (exclusive_event_match(iter_event, event))
3598 return false;
3599 }
3600
3601 return true;
3602}
3603
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003604static void __free_event(struct perf_event *event)
3605{
3606 if (!event->parent) {
3607 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN)
3608 put_callchain_buffers();
3609 }
3610
Alexei Starovoitovdead9f22015-05-15 12:15:21 -07003611 perf_event_free_bpf_prog(event);
3612
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003613 if (event->destroy)
3614 event->destroy(event);
3615
3616 if (event->ctx)
3617 put_ctx(event->ctx);
3618
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003619 if (event->pmu) {
3620 exclusive_event_destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08003621 module_put(event->pmu->module);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02003622 }
Yan, Zhengc464c762014-03-18 16:56:41 +08003623
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003624 call_rcu(&event->rcu_head, free_event_rcu);
3625}
Peter Zijlstra683ede42014-05-05 12:11:24 +02003626
3627static void _free_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003628{
Peter Zijlstrae360adb2010-10-14 14:01:34 +08003629 irq_work_sync(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003630
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02003631 unaccount_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003632
Frederic Weisbecker76369132011-05-19 19:55:04 +02003633 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003634 /*
3635 * Can happen when we close an event with re-directed output.
3636 *
3637 * Since we have a 0 refcount, perf_mmap_close() will skip
3638 * over us; possibly making our ring_buffer_put() the last.
3639 */
3640 mutex_lock(&event->mmap_mutex);
Peter Zijlstrab69cf532014-03-14 10:50:33 +01003641 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02003642 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003643 }
3644
Stephane Eraniane5d13672011-02-14 11:20:01 +02003645 if (is_cgroup_event(event))
3646 perf_detach_cgroup(event);
3647
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02003648 __free_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003649}
3650
Peter Zijlstra683ede42014-05-05 12:11:24 +02003651/*
3652 * Used to free events which have a known refcount of 1, such as in error paths
3653 * where the event isn't exposed yet and inherited events.
3654 */
3655static void free_event(struct perf_event *event)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003656{
Peter Zijlstra683ede42014-05-05 12:11:24 +02003657 if (WARN(atomic_long_cmpxchg(&event->refcount, 1, 0) != 1,
3658 "unexpected event refcount: %ld; ptr=%p\n",
3659 atomic_long_read(&event->refcount), event)) {
3660 /* leak to avoid use-after-free */
3661 return;
3662 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003663
Peter Zijlstra683ede42014-05-05 12:11:24 +02003664 _free_event(event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003665}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003666
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003667/*
Jiri Olsaf8697762014-08-01 14:33:01 +02003668 * Remove user event from the owner task.
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003669 */
Jiri Olsaf8697762014-08-01 14:33:01 +02003670static void perf_remove_from_owner(struct perf_event *event)
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003671{
Peter Zijlstra88821352010-11-09 19:01:43 +01003672 struct task_struct *owner;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003673
Peter Zijlstra88821352010-11-09 19:01:43 +01003674 rcu_read_lock();
3675 owner = ACCESS_ONCE(event->owner);
3676 /*
3677 * Matches the smp_wmb() in perf_event_exit_task(). If we observe
3678 * !owner it means the list deletion is complete and we can indeed
3679 * free this event, otherwise we need to serialize on
3680 * owner->perf_event_mutex.
3681 */
3682 smp_read_barrier_depends();
3683 if (owner) {
3684 /*
3685 * Since delayed_put_task_struct() also drops the last
3686 * task reference we can safely take a new reference
3687 * while holding the rcu_read_lock().
3688 */
3689 get_task_struct(owner);
3690 }
3691 rcu_read_unlock();
3692
3693 if (owner) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003694 /*
3695 * If we're here through perf_event_exit_task() we're already
3696 * holding ctx->mutex which would be an inversion wrt. the
3697 * normal lock order.
3698 *
3699 * However we can safely take this lock because its the child
3700 * ctx->mutex.
3701 */
3702 mutex_lock_nested(&owner->perf_event_mutex, SINGLE_DEPTH_NESTING);
3703
Peter Zijlstra88821352010-11-09 19:01:43 +01003704 /*
3705 * We have to re-check the event->owner field, if it is cleared
3706 * we raced with perf_event_exit_task(), acquiring the mutex
3707 * ensured they're done, and we can proceed with freeing the
3708 * event.
3709 */
3710 if (event->owner)
3711 list_del_init(&event->owner_entry);
3712 mutex_unlock(&owner->perf_event_mutex);
3713 put_task_struct(owner);
3714 }
Jiri Olsaf8697762014-08-01 14:33:01 +02003715}
3716
Jiri Olsaf8697762014-08-01 14:33:01 +02003717static void put_event(struct perf_event *event)
3718{
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003719 struct perf_event_context *ctx;
Jiri Olsaf8697762014-08-01 14:33:01 +02003720
3721 if (!atomic_long_dec_and_test(&event->refcount))
3722 return;
3723
3724 if (!is_kernel_event(event))
3725 perf_remove_from_owner(event);
Peter Zijlstra88821352010-11-09 19:01:43 +01003726
Peter Zijlstra683ede42014-05-05 12:11:24 +02003727 /*
3728 * There are two ways this annotation is useful:
3729 *
3730 * 1) there is a lock recursion from perf_event_exit_task
3731 * see the comment there.
3732 *
3733 * 2) there is a lock-inversion with mmap_sem through
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003734 * perf_read_group(), which takes faults while
Peter Zijlstra683ede42014-05-05 12:11:24 +02003735 * holding ctx->mutex, however this is called after
3736 * the last filedesc died, so there is no possibility
3737 * to trigger the AB-BA case.
3738 */
Peter Zijlstraa83fe282015-01-29 14:44:34 +01003739 ctx = perf_event_ctx_lock_nested(event, SINGLE_DEPTH_NESTING);
3740 WARN_ON_ONCE(ctx->parent_ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003741 perf_remove_from_context(event, true);
Leon Yud415a7f2015-02-26 20:43:33 +08003742 perf_event_ctx_unlock(event, ctx);
Peter Zijlstra683ede42014-05-05 12:11:24 +02003743
3744 _free_event(event);
Al Viroa6fa9412012-08-20 14:59:25 +01003745}
3746
Peter Zijlstra683ede42014-05-05 12:11:24 +02003747int perf_event_release_kernel(struct perf_event *event)
3748{
3749 put_event(event);
3750 return 0;
3751}
3752EXPORT_SYMBOL_GPL(perf_event_release_kernel);
3753
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02003754/*
3755 * Called when the last reference to the file is gone.
3756 */
Al Viroa6fa9412012-08-20 14:59:25 +01003757static int perf_release(struct inode *inode, struct file *file)
3758{
3759 put_event(file->private_data);
3760 return 0;
Peter Zijlstraa66a3052009-11-23 11:37:23 +01003761}
3762
Jiri Olsafadfe7b2014-08-01 14:33:02 +02003763/*
3764 * Remove all orphanes events from the context.
3765 */
3766static void orphans_remove_work(struct work_struct *work)
3767{
3768 struct perf_event_context *ctx;
3769 struct perf_event *event, *tmp;
3770
3771 ctx = container_of(work, struct perf_event_context,
3772 orphans_remove.work);
3773
3774 mutex_lock(&ctx->mutex);
3775 list_for_each_entry_safe(event, tmp, &ctx->event_list, event_entry) {
3776 struct perf_event *parent_event = event->parent;
3777
3778 if (!is_orphaned_child(event))
3779 continue;
3780
3781 perf_remove_from_context(event, true);
3782
3783 mutex_lock(&parent_event->child_mutex);
3784 list_del_init(&event->child_list);
3785 mutex_unlock(&parent_event->child_mutex);
3786
3787 free_event(event);
3788 put_event(parent_event);
3789 }
3790
3791 raw_spin_lock_irq(&ctx->lock);
3792 ctx->orphans_remove_sched = false;
3793 raw_spin_unlock_irq(&ctx->lock);
3794 mutex_unlock(&ctx->mutex);
3795
3796 put_ctx(ctx);
3797}
3798
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003799u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003800{
3801 struct perf_event *child;
3802 u64 total = 0;
3803
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003804 *enabled = 0;
3805 *running = 0;
3806
Peter Zijlstra6f105812009-11-20 22:19:56 +01003807 mutex_lock(&event->child_mutex);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003808
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003809 (void)perf_event_read(event, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003810 total += perf_event_count(event);
3811
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003812 *enabled += event->total_time_enabled +
3813 atomic64_read(&event->child_total_time_enabled);
3814 *running += event->total_time_running +
3815 atomic64_read(&event->child_total_time_running);
3816
3817 list_for_each_entry(child, &event->child_list, child_list) {
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003818 (void)perf_event_read(child, false);
Sukadev Bhattiprolu01add3e2015-09-03 20:07:46 -07003819 total += perf_event_count(child);
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003820 *enabled += child->total_time_enabled;
3821 *running += child->total_time_running;
3822 }
Peter Zijlstra6f105812009-11-20 22:19:56 +01003823 mutex_unlock(&event->child_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003824
3825 return total;
3826}
Arjan van de Venfb0459d2009-09-25 12:25:56 +02003827EXPORT_SYMBOL_GPL(perf_event_read_value);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003828
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003829static int __perf_read_group_add(struct perf_event *leader,
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003830 u64 read_format, u64 *values)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003831{
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003832 struct perf_event *sub;
3833 int n = 1; /* skip @nr */
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003834 int ret;
Peter Zijlstraabf48682009-11-20 22:19:49 +01003835
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003836 ret = perf_event_read(leader, true);
3837 if (ret)
3838 return ret;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003839
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003840 /*
3841 * Since we co-schedule groups, {enabled,running} times of siblings
3842 * will be identical to those of the leader, so we only publish one
3843 * set.
3844 */
3845 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
3846 values[n++] += leader->total_time_enabled +
3847 atomic64_read(&leader->child_total_time_enabled);
3848 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003849
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003850 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
3851 values[n++] += leader->total_time_running +
3852 atomic64_read(&leader->child_total_time_running);
3853 }
3854
3855 /*
3856 * Write {count,id} tuples for every sibling.
3857 */
3858 values[n++] += perf_event_count(leader);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003859 if (read_format & PERF_FORMAT_ID)
3860 values[n++] = primary_event_id(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003861
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003862 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003863 values[n++] += perf_event_count(sub);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003864 if (read_format & PERF_FORMAT_ID)
3865 values[n++] = primary_event_id(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003866 }
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003867
3868 return 0;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003869}
3870
3871static int perf_read_group(struct perf_event *event,
3872 u64 read_format, char __user *buf)
3873{
3874 struct perf_event *leader = event->group_leader, *child;
3875 struct perf_event_context *ctx = leader->ctx;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003876 int ret;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003877 u64 *values;
3878
3879 lockdep_assert_held(&ctx->mutex);
3880
3881 values = kzalloc(event->read_size, GFP_KERNEL);
3882 if (!values)
3883 return -ENOMEM;
3884
3885 values[0] = 1 + leader->nr_siblings;
3886
3887 /*
3888 * By locking the child_mutex of the leader we effectively
3889 * lock the child list of all siblings.. XXX explain how.
3890 */
3891 mutex_lock(&leader->child_mutex);
3892
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003893 ret = __perf_read_group_add(leader, read_format, values);
3894 if (ret)
3895 goto unlock;
3896
3897 list_for_each_entry(child, &leader->child_list, child_list) {
3898 ret = __perf_read_group_add(child, read_format, values);
3899 if (ret)
3900 goto unlock;
3901 }
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003902
3903 mutex_unlock(&leader->child_mutex);
3904
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003905 ret = event->read_size;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003906 if (copy_to_user(buf, values, event->read_size))
3907 ret = -EFAULT;
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003908 goto out;
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003909
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07003910unlock:
3911 mutex_unlock(&leader->child_mutex);
3912out:
Peter Zijlstrafa8c2692015-09-03 20:07:49 -07003913 kfree(values);
Peter Zijlstraabf48682009-11-20 22:19:49 +01003914 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003915}
3916
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003917static int perf_read_one(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003918 u64 read_format, char __user *buf)
3919{
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003920 u64 enabled, running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003921 u64 values[4];
3922 int n = 0;
3923
Peter Zijlstra59ed4462009-11-20 22:19:55 +01003924 values[n++] = perf_event_read_value(event, &enabled, &running);
3925 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
3926 values[n++] = enabled;
3927 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
3928 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003929 if (read_format & PERF_FORMAT_ID)
3930 values[n++] = primary_event_id(event);
3931
3932 if (copy_to_user(buf, values, n * sizeof(u64)))
3933 return -EFAULT;
3934
3935 return n * sizeof(u64);
3936}
3937
Jiri Olsadc633982014-09-12 13:18:26 +02003938static bool is_event_hup(struct perf_event *event)
3939{
3940 bool no_children;
3941
3942 if (event->state != PERF_EVENT_STATE_EXIT)
3943 return false;
3944
3945 mutex_lock(&event->child_mutex);
3946 no_children = list_empty(&event->child_list);
3947 mutex_unlock(&event->child_mutex);
3948 return no_children;
3949}
3950
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003951/*
3952 * Read the performance event - simple non blocking version for now
3953 */
3954static ssize_t
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003955__perf_read(struct perf_event *event, char __user *buf, size_t count)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003956{
3957 u64 read_format = event->attr.read_format;
3958 int ret;
3959
3960 /*
3961 * Return end-of-file for a read on a event that is in
3962 * error state (i.e. because it was pinned but it couldn't be
3963 * scheduled on to the CPU at some point).
3964 */
3965 if (event->state == PERF_EVENT_STATE_ERROR)
3966 return 0;
3967
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02003968 if (count < event->read_size)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003969 return -ENOSPC;
3970
3971 WARN_ON_ONCE(event->ctx->parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003972 if (read_format & PERF_FORMAT_GROUP)
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003973 ret = perf_read_group(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003974 else
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003975 ret = perf_read_one(event, read_format, buf);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003976
3977 return ret;
3978}
3979
3980static ssize_t
3981perf_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
3982{
3983 struct perf_event *event = file->private_data;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003984 struct perf_event_context *ctx;
3985 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003986
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003987 ctx = perf_event_ctx_lock(event);
Peter Zijlstra (Intel)b15f4952015-09-03 20:07:47 -07003988 ret = __perf_read(event, buf, count);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01003989 perf_event_ctx_unlock(event, ctx);
3990
3991 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003992}
3993
3994static unsigned int perf_poll(struct file *file, poll_table *wait)
3995{
3996 struct perf_event *event = file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02003997 struct ring_buffer *rb;
Jiri Olsa61b67682014-08-13 19:39:56 +02003998 unsigned int events = POLLHUP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02003999
Sebastian Andrzej Siewiore708d7a2014-08-04 15:31:08 +02004000 poll_wait(file, &event->waitq, wait);
Jiri Olsa179033b2014-08-07 11:48:26 -04004001
Jiri Olsadc633982014-09-12 13:18:26 +02004002 if (is_event_hup(event))
Jiri Olsa179033b2014-08-07 11:48:26 -04004003 return events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004004
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004005 /*
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004006 * Pin the event->rb by taking event->mmap_mutex; otherwise
4007 * perf_event_set_output() can swizzle our rb and make us miss wakeups.
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004008 */
4009 mutex_lock(&event->mmap_mutex);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004010 rb = event->rb;
4011 if (rb)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004012 events = atomic_xchg(&rb->poll, 0);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004013 mutex_unlock(&event->mmap_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004014 return events;
4015}
4016
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004017static void _perf_event_reset(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004018{
Sukadev Bhattiprolu7d889622015-09-03 20:07:50 -07004019 (void)perf_event_read(event, false);
Peter Zijlstrae7850592010-05-21 14:43:08 +02004020 local64_set(&event->count, 0);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004021 perf_event_update_userpage(event);
4022}
4023
4024/*
4025 * Holding the top-level event's child_mutex means that any
4026 * descendant process that has inherited this event will block
4027 * in sync_child_event if it goes to exit, thus satisfying the
4028 * task existence requirements of perf_event_enable/disable.
4029 */
4030static void perf_event_for_each_child(struct perf_event *event,
4031 void (*func)(struct perf_event *))
4032{
4033 struct perf_event *child;
4034
4035 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004036
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004037 mutex_lock(&event->child_mutex);
4038 func(event);
4039 list_for_each_entry(child, &event->child_list, child_list)
4040 func(child);
4041 mutex_unlock(&event->child_mutex);
4042}
4043
4044static void perf_event_for_each(struct perf_event *event,
4045 void (*func)(struct perf_event *))
4046{
4047 struct perf_event_context *ctx = event->ctx;
4048 struct perf_event *sibling;
4049
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004050 lockdep_assert_held(&ctx->mutex);
4051
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004052 event = event->group_leader;
4053
4054 perf_event_for_each_child(event, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004055 list_for_each_entry(sibling, &event->sibling_list, group_entry)
Michael Ellerman724b6da2012-04-11 11:54:13 +10004056 perf_event_for_each_child(sibling, func);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004057}
4058
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004059struct period_event {
4060 struct perf_event *event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004061 u64 value;
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004062};
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004063
Peter Zijlstra00179602015-11-30 16:26:35 +01004064static void ___perf_event_period(void *info)
4065{
4066 struct period_event *pe = info;
4067 struct perf_event *event = pe->event;
4068 u64 value = pe->value;
4069
4070 if (event->attr.freq) {
4071 event->attr.sample_freq = value;
4072 } else {
4073 event->attr.sample_period = value;
4074 event->hw.sample_period = value;
4075 }
4076
4077 local64_set(&event->hw.period_left, 0);
4078}
4079
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004080static int __perf_event_period(void *info)
4081{
4082 struct period_event *pe = info;
4083 struct perf_event *event = pe->event;
4084 struct perf_event_context *ctx = event->ctx;
4085 u64 value = pe->value;
4086 bool active;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004087
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004088 raw_spin_lock(&ctx->lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004089 if (event->attr.freq) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004090 event->attr.sample_freq = value;
4091 } else {
4092 event->attr.sample_period = value;
4093 event->hw.sample_period = value;
4094 }
Peter Zijlstrabad71922013-11-27 13:54:38 +00004095
4096 active = (event->state == PERF_EVENT_STATE_ACTIVE);
4097 if (active) {
4098 perf_pmu_disable(ctx->pmu);
4099 event->pmu->stop(event, PERF_EF_UPDATE);
4100 }
4101
4102 local64_set(&event->hw.period_left, 0);
4103
4104 if (active) {
4105 event->pmu->start(event, PERF_EF_RELOAD);
4106 perf_pmu_enable(ctx->pmu);
4107 }
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004108 raw_spin_unlock(&ctx->lock);
Peter Zijlstrabad71922013-11-27 13:54:38 +00004109
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004110 return 0;
4111}
4112
4113static int perf_event_period(struct perf_event *event, u64 __user *arg)
4114{
4115 struct period_event pe = { .event = event, };
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004116 u64 value;
4117
4118 if (!is_sampling_event(event))
4119 return -EINVAL;
4120
4121 if (copy_from_user(&value, arg, sizeof(value)))
4122 return -EFAULT;
4123
4124 if (!value)
4125 return -EINVAL;
4126
4127 if (event->attr.freq && value > sysctl_perf_event_sample_rate)
4128 return -EINVAL;
4129
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004130 pe.value = value;
4131
Peter Zijlstra00179602015-11-30 16:26:35 +01004132 event_function_call(event, __perf_event_period,
4133 ___perf_event_period, &pe);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004134
Peter Zijlstrac7999c62015-08-04 19:22:49 +02004135 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004136}
4137
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004138static const struct file_operations perf_fops;
4139
Al Viro2903ff02012-08-28 12:52:22 -04004140static inline int perf_fget_light(int fd, struct fd *p)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004141{
Al Viro2903ff02012-08-28 12:52:22 -04004142 struct fd f = fdget(fd);
4143 if (!f.file)
4144 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004145
Al Viro2903ff02012-08-28 12:52:22 -04004146 if (f.file->f_op != &perf_fops) {
4147 fdput(f);
4148 return -EBADF;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004149 }
Al Viro2903ff02012-08-28 12:52:22 -04004150 *p = f;
4151 return 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004152}
4153
4154static int perf_event_set_output(struct perf_event *event,
4155 struct perf_event *output_event);
Li Zefan6fb29152009-10-15 11:21:42 +08004156static int perf_event_set_filter(struct perf_event *event, void __user *arg);
Alexei Starovoitov25415172015-03-25 12:49:20 -07004157static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004158
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004159static long _perf_ioctl(struct perf_event *event, unsigned int cmd, unsigned long arg)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004160{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004161 void (*func)(struct perf_event *);
4162 u32 flags = arg;
4163
4164 switch (cmd) {
4165 case PERF_EVENT_IOC_ENABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004166 func = _perf_event_enable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004167 break;
4168 case PERF_EVENT_IOC_DISABLE:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004169 func = _perf_event_disable;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004170 break;
4171 case PERF_EVENT_IOC_RESET:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004172 func = _perf_event_reset;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004173 break;
4174
4175 case PERF_EVENT_IOC_REFRESH:
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004176 return _perf_event_refresh(event, arg);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004177
4178 case PERF_EVENT_IOC_PERIOD:
4179 return perf_event_period(event, (u64 __user *)arg);
4180
Jiri Olsacf4957f2012-10-24 13:37:58 +02004181 case PERF_EVENT_IOC_ID:
4182 {
4183 u64 id = primary_event_id(event);
4184
4185 if (copy_to_user((void __user *)arg, &id, sizeof(id)))
4186 return -EFAULT;
4187 return 0;
4188 }
4189
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004190 case PERF_EVENT_IOC_SET_OUTPUT:
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004191 {
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004192 int ret;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004193 if (arg != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04004194 struct perf_event *output_event;
4195 struct fd output;
4196 ret = perf_fget_light(arg, &output);
4197 if (ret)
4198 return ret;
4199 output_event = output.file->private_data;
4200 ret = perf_event_set_output(event, output_event);
4201 fdput(output);
4202 } else {
4203 ret = perf_event_set_output(event, NULL);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004204 }
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004205 return ret;
4206 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004207
Li Zefan6fb29152009-10-15 11:21:42 +08004208 case PERF_EVENT_IOC_SET_FILTER:
4209 return perf_event_set_filter(event, (void __user *)arg);
4210
Alexei Starovoitov25415172015-03-25 12:49:20 -07004211 case PERF_EVENT_IOC_SET_BPF:
4212 return perf_event_set_bpf_prog(event, arg);
4213
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004214 default:
4215 return -ENOTTY;
4216 }
4217
4218 if (flags & PERF_IOC_FLAG_GROUP)
4219 perf_event_for_each(event, func);
4220 else
4221 perf_event_for_each_child(event, func);
4222
4223 return 0;
4224}
4225
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004226static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
4227{
4228 struct perf_event *event = file->private_data;
4229 struct perf_event_context *ctx;
4230 long ret;
4231
4232 ctx = perf_event_ctx_lock(event);
4233 ret = _perf_ioctl(event, cmd, arg);
4234 perf_event_ctx_unlock(event, ctx);
4235
4236 return ret;
4237}
4238
Pawel Mollb3f20782014-06-13 16:03:32 +01004239#ifdef CONFIG_COMPAT
4240static long perf_compat_ioctl(struct file *file, unsigned int cmd,
4241 unsigned long arg)
4242{
4243 switch (_IOC_NR(cmd)) {
4244 case _IOC_NR(PERF_EVENT_IOC_SET_FILTER):
4245 case _IOC_NR(PERF_EVENT_IOC_ID):
4246 /* Fix up pointer size (usually 4 -> 8 in 32-on-64-bit case */
4247 if (_IOC_SIZE(cmd) == sizeof(compat_uptr_t)) {
4248 cmd &= ~IOCSIZE_MASK;
4249 cmd |= sizeof(void *) << IOCSIZE_SHIFT;
4250 }
4251 break;
4252 }
4253 return perf_ioctl(file, cmd, arg);
4254}
4255#else
4256# define perf_compat_ioctl NULL
4257#endif
4258
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004259int perf_event_task_enable(void)
4260{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004261 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004262 struct perf_event *event;
4263
4264 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004265 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4266 ctx = perf_event_ctx_lock(event);
4267 perf_event_for_each_child(event, _perf_event_enable);
4268 perf_event_ctx_unlock(event, ctx);
4269 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004270 mutex_unlock(&current->perf_event_mutex);
4271
4272 return 0;
4273}
4274
4275int perf_event_task_disable(void)
4276{
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004277 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004278 struct perf_event *event;
4279
4280 mutex_lock(&current->perf_event_mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01004281 list_for_each_entry(event, &current->perf_event_list, owner_entry) {
4282 ctx = perf_event_ctx_lock(event);
4283 perf_event_for_each_child(event, _perf_event_disable);
4284 perf_event_ctx_unlock(event, ctx);
4285 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004286 mutex_unlock(&current->perf_event_mutex);
4287
4288 return 0;
4289}
4290
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004291static int perf_event_index(struct perf_event *event)
4292{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02004293 if (event->hw.state & PERF_HES_STOPPED)
4294 return 0;
4295
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004296 if (event->state != PERF_EVENT_STATE_ACTIVE)
4297 return 0;
4298
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01004299 return event->pmu->event_idx(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004300}
4301
Eric B Munsonc4794292011-06-23 16:34:38 -04004302static void calc_timer_values(struct perf_event *event,
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004303 u64 *now,
Eric B Munson7f310a52011-06-23 16:34:38 -04004304 u64 *enabled,
4305 u64 *running)
Eric B Munsonc4794292011-06-23 16:34:38 -04004306{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004307 u64 ctx_time;
Eric B Munsonc4794292011-06-23 16:34:38 -04004308
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004309 *now = perf_clock();
4310 ctx_time = event->shadow_ctx_time + *now;
Eric B Munsonc4794292011-06-23 16:34:38 -04004311 *enabled = ctx_time - event->tstamp_enabled;
4312 *running = ctx_time - event->tstamp_running;
4313}
4314
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004315static void perf_event_init_userpage(struct perf_event *event)
4316{
4317 struct perf_event_mmap_page *userpg;
4318 struct ring_buffer *rb;
4319
4320 rcu_read_lock();
4321 rb = rcu_dereference(event->rb);
4322 if (!rb)
4323 goto unlock;
4324
4325 userpg = rb->user_page;
4326
4327 /* Allow new userspace to detect that bit 0 is deprecated */
4328 userpg->cap_bit0_is_deprecated = 1;
4329 userpg->size = offsetof(struct perf_event_mmap_page, __reserved);
Alexander Shishkine8c6dea2015-01-14 14:18:10 +02004330 userpg->data_offset = PAGE_SIZE;
4331 userpg->data_size = perf_data_size(rb);
Peter Zijlstrafa7315872013-09-19 10:16:42 +02004332
4333unlock:
4334 rcu_read_unlock();
4335}
4336
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004337void __weak arch_perf_update_userpage(
4338 struct perf_event *event, struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004339{
4340}
4341
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004342/*
4343 * Callers need to ensure there can be no nesting of this function, otherwise
4344 * the seqlock logic goes bad. We can not serialize this because the arch
4345 * code calls this from NMI context.
4346 */
4347void perf_event_update_userpage(struct perf_event *event)
4348{
4349 struct perf_event_mmap_page *userpg;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004350 struct ring_buffer *rb;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004351 u64 enabled, running, now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004352
4353 rcu_read_lock();
Peter Zijlstra5ec4c592013-08-02 21:16:30 +02004354 rb = rcu_dereference(event->rb);
4355 if (!rb)
4356 goto unlock;
4357
Eric B Munson0d641202011-06-24 12:26:26 -04004358 /*
4359 * compute total_time_enabled, total_time_running
4360 * based on snapshot values taken when the event
4361 * was last scheduled in.
4362 *
4363 * we cannot simply called update_context_time()
4364 * because of locking issue as we can be called in
4365 * NMI context
4366 */
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004367 calc_timer_values(event, &now, &enabled, &running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004368
Frederic Weisbecker76369132011-05-19 19:55:04 +02004369 userpg = rb->user_page;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004370 /*
4371 * Disable preemption so as to not let the corresponding user-space
4372 * spin too long if we get preempted.
4373 */
4374 preempt_disable();
4375 ++userpg->lock;
4376 barrier();
4377 userpg->index = perf_event_index(event);
Peter Zijlstrab5e58792010-05-21 14:43:12 +02004378 userpg->offset = perf_event_count(event);
Peter Zijlstra365a4032011-11-21 20:58:59 +01004379 if (userpg->index)
Peter Zijlstrae7850592010-05-21 14:43:08 +02004380 userpg->offset -= local64_read(&event->hw.prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004381
Eric B Munson0d641202011-06-24 12:26:26 -04004382 userpg->time_enabled = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004383 atomic64_read(&event->child_total_time_enabled);
4384
Eric B Munson0d641202011-06-24 12:26:26 -04004385 userpg->time_running = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004386 atomic64_read(&event->child_total_time_running);
4387
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07004388 arch_perf_update_userpage(event, userpg, now);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01004389
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004390 barrier();
4391 ++userpg->lock;
4392 preempt_enable();
4393unlock:
4394 rcu_read_unlock();
4395}
4396
Peter Zijlstra906010b2009-09-21 16:08:49 +02004397static int perf_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
4398{
4399 struct perf_event *event = vma->vm_file->private_data;
Frederic Weisbecker76369132011-05-19 19:55:04 +02004400 struct ring_buffer *rb;
Peter Zijlstra906010b2009-09-21 16:08:49 +02004401 int ret = VM_FAULT_SIGBUS;
4402
4403 if (vmf->flags & FAULT_FLAG_MKWRITE) {
4404 if (vmf->pgoff == 0)
4405 ret = 0;
4406 return ret;
4407 }
4408
4409 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004410 rb = rcu_dereference(event->rb);
4411 if (!rb)
Peter Zijlstra906010b2009-09-21 16:08:49 +02004412 goto unlock;
4413
4414 if (vmf->pgoff && (vmf->flags & FAULT_FLAG_WRITE))
4415 goto unlock;
4416
Frederic Weisbecker76369132011-05-19 19:55:04 +02004417 vmf->page = perf_mmap_to_page(rb, vmf->pgoff);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004418 if (!vmf->page)
4419 goto unlock;
4420
4421 get_page(vmf->page);
4422 vmf->page->mapping = vma->vm_file->f_mapping;
4423 vmf->page->index = vmf->pgoff;
4424
4425 ret = 0;
4426unlock:
4427 rcu_read_unlock();
4428
4429 return ret;
4430}
4431
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004432static void ring_buffer_attach(struct perf_event *event,
4433 struct ring_buffer *rb)
4434{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004435 struct ring_buffer *old_rb = NULL;
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004436 unsigned long flags;
4437
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004438 if (event->rb) {
4439 /*
4440 * Should be impossible, we set this when removing
4441 * event->rb_entry and wait/clear when adding event->rb_entry.
4442 */
4443 WARN_ON_ONCE(event->rcu_pending);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004444
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004445 old_rb = event->rb;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004446 spin_lock_irqsave(&old_rb->event_lock, flags);
4447 list_del_rcu(&event->rb_entry);
4448 spin_unlock_irqrestore(&old_rb->event_lock, flags);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004449
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004450 event->rcu_batches = get_state_synchronize_rcu();
4451 event->rcu_pending = 1;
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004452 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004453
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004454 if (rb) {
Oleg Nesterov2f993cf2015-05-30 22:04:25 +02004455 if (event->rcu_pending) {
4456 cond_synchronize_rcu(event->rcu_batches);
4457 event->rcu_pending = 0;
4458 }
4459
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004460 spin_lock_irqsave(&rb->event_lock, flags);
4461 list_add_rcu(&event->rb_entry, &rb->event_list);
4462 spin_unlock_irqrestore(&rb->event_lock, flags);
4463 }
4464
4465 rcu_assign_pointer(event->rb, rb);
4466
4467 if (old_rb) {
4468 ring_buffer_put(old_rb);
4469 /*
4470 * Since we detached before setting the new rb, so that we
4471 * could attach the new rb, we could have missed a wakeup.
4472 * Provide it now.
4473 */
4474 wake_up_all(&event->waitq);
4475 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004476}
4477
4478static void ring_buffer_wakeup(struct perf_event *event)
4479{
4480 struct ring_buffer *rb;
4481
4482 rcu_read_lock();
4483 rb = rcu_dereference(event->rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004484 if (rb) {
4485 list_for_each_entry_rcu(event, &rb->event_list, rb_entry)
4486 wake_up_all(&event->waitq);
4487 }
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004488 rcu_read_unlock();
4489}
4490
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004491struct ring_buffer *ring_buffer_get(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004492{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004493 struct ring_buffer *rb;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004494
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004495 rcu_read_lock();
Frederic Weisbecker76369132011-05-19 19:55:04 +02004496 rb = rcu_dereference(event->rb);
4497 if (rb) {
4498 if (!atomic_inc_not_zero(&rb->refcount))
4499 rb = NULL;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004500 }
4501 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004502
Frederic Weisbecker76369132011-05-19 19:55:04 +02004503 return rb;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004504}
4505
Alexander Shishkinfdc26702015-01-14 14:18:16 +02004506void ring_buffer_put(struct ring_buffer *rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004507{
Frederic Weisbecker76369132011-05-19 19:55:04 +02004508 if (!atomic_dec_and_test(&rb->refcount))
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004509 return;
4510
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004511 WARN_ON_ONCE(!list_empty(&rb->event_list));
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004512
Frederic Weisbecker76369132011-05-19 19:55:04 +02004513 call_rcu(&rb->rcu_head, rb_free_rcu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004514}
4515
4516static void perf_mmap_open(struct vm_area_struct *vma)
4517{
4518 struct perf_event *event = vma->vm_file->private_data;
4519
4520 atomic_inc(&event->mmap_count);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004521 atomic_inc(&event->rb->mmap_count);
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004522
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004523 if (vma->vm_pgoff)
4524 atomic_inc(&event->rb->aux_mmap_count);
4525
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004526 if (event->pmu->event_mapped)
4527 event->pmu->event_mapped(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004528}
4529
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004530/*
4531 * A buffer can be mmap()ed multiple times; either directly through the same
4532 * event, or through other events by use of perf_event_set_output().
4533 *
4534 * In order to undo the VM accounting done by perf_mmap() we need to destroy
4535 * the buffer here, where we still have a VM context. This means we need
4536 * to detach all events redirecting to us.
4537 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004538static void perf_mmap_close(struct vm_area_struct *vma)
4539{
4540 struct perf_event *event = vma->vm_file->private_data;
4541
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004542 struct ring_buffer *rb = ring_buffer_get(event);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004543 struct user_struct *mmap_user = rb->mmap_user;
4544 int mmap_locked = rb->mmap_locked;
4545 unsigned long size = perf_data_size(rb);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004546
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004547 if (event->pmu->event_unmapped)
4548 event->pmu->event_unmapped(event);
4549
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004550 /*
4551 * rb->aux_mmap_count will always drop before rb->mmap_count and
4552 * event->mmap_count, so it is ok to use event->mmap_mutex to
4553 * serialize with perf_mmap here.
4554 */
4555 if (rb_has_aux(rb) && vma->vm_pgoff == rb->aux_pgoff &&
4556 atomic_dec_and_mutex_lock(&rb->aux_mmap_count, &event->mmap_mutex)) {
4557 atomic_long_sub(rb->aux_nr_pages, &mmap_user->locked_vm);
4558 vma->vm_mm->pinned_vm -= rb->aux_mmap_locked;
4559
4560 rb_free_aux(rb);
4561 mutex_unlock(&event->mmap_mutex);
4562 }
4563
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004564 atomic_dec(&rb->mmap_count);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004565
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004566 if (!atomic_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004567 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004568
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004569 ring_buffer_attach(event, NULL);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004570 mutex_unlock(&event->mmap_mutex);
4571
4572 /* If there's still other mmap()s of this buffer, we're done. */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004573 if (atomic_read(&rb->mmap_count))
4574 goto out_put;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004575
4576 /*
4577 * No other mmap()s, detach from all other events that might redirect
4578 * into the now unreachable buffer. Somewhat complicated by the
4579 * fact that rb::event_lock otherwise nests inside mmap_mutex.
4580 */
4581again:
4582 rcu_read_lock();
4583 list_for_each_entry_rcu(event, &rb->event_list, rb_entry) {
4584 if (!atomic_long_inc_not_zero(&event->refcount)) {
4585 /*
4586 * This event is en-route to free_event() which will
4587 * detach it and remove it from the list.
4588 */
4589 continue;
4590 }
4591 rcu_read_unlock();
4592
4593 mutex_lock(&event->mmap_mutex);
4594 /*
4595 * Check we didn't race with perf_event_set_output() which can
4596 * swizzle the rb from under us while we were waiting to
4597 * acquire mmap_mutex.
4598 *
4599 * If we find a different rb; ignore this event, a next
4600 * iteration will no longer find it on the list. We have to
4601 * still restart the iteration to make sure we're not now
4602 * iterating the wrong list.
4603 */
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004604 if (event->rb == rb)
4605 ring_buffer_attach(event, NULL);
4606
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004607 mutex_unlock(&event->mmap_mutex);
4608 put_event(event);
4609
4610 /*
4611 * Restart the iteration; either we're on the wrong list or
4612 * destroyed its integrity by doing a deletion.
4613 */
4614 goto again;
4615 }
4616 rcu_read_unlock();
4617
4618 /*
4619 * It could be there's still a few 0-ref events on the list; they'll
4620 * get cleaned up by free_event() -- they'll also still have their
4621 * ref on the rb and will free it whenever they are done with it.
4622 *
4623 * Aside from that, this buffer is 'fully' detached and unmapped,
4624 * undo the VM accounting.
4625 */
4626
4627 atomic_long_sub((size >> PAGE_SHIFT) + 1, &mmap_user->locked_vm);
4628 vma->vm_mm->pinned_vm -= mmap_locked;
4629 free_uid(mmap_user);
4630
Peter Zijlstrab69cf532014-03-14 10:50:33 +01004631out_put:
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004632 ring_buffer_put(rb); /* could be last */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004633}
4634
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04004635static const struct vm_operations_struct perf_mmap_vmops = {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004636 .open = perf_mmap_open,
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004637 .close = perf_mmap_close, /* non mergable */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004638 .fault = perf_mmap_fault,
4639 .page_mkwrite = perf_mmap_fault,
4640};
4641
4642static int perf_mmap(struct file *file, struct vm_area_struct *vma)
4643{
4644 struct perf_event *event = file->private_data;
4645 unsigned long user_locked, user_lock_limit;
4646 struct user_struct *user = current_user();
4647 unsigned long locked, lock_limit;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004648 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004649 unsigned long vma_size;
4650 unsigned long nr_pages;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004651 long user_extra = 0, extra = 0;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004652 int ret = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004653
Peter Zijlstrac7920612010-05-18 10:33:24 +02004654 /*
4655 * Don't allow mmap() of inherited per-task counters. This would
4656 * create a performance issue due to all children writing to the
Frederic Weisbecker76369132011-05-19 19:55:04 +02004657 * same rb.
Peter Zijlstrac7920612010-05-18 10:33:24 +02004658 */
4659 if (event->cpu == -1 && event->attr.inherit)
4660 return -EINVAL;
4661
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004662 if (!(vma->vm_flags & VM_SHARED))
4663 return -EINVAL;
4664
4665 vma_size = vma->vm_end - vma->vm_start;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004666
4667 if (vma->vm_pgoff == 0) {
4668 nr_pages = (vma_size / PAGE_SIZE) - 1;
4669 } else {
4670 /*
4671 * AUX area mapping: if rb->aux_nr_pages != 0, it's already
4672 * mapped, all subsequent mappings should have the same size
4673 * and offset. Must be above the normal perf buffer.
4674 */
4675 u64 aux_offset, aux_size;
4676
4677 if (!event->rb)
4678 return -EINVAL;
4679
4680 nr_pages = vma_size / PAGE_SIZE;
4681
4682 mutex_lock(&event->mmap_mutex);
4683 ret = -EINVAL;
4684
4685 rb = event->rb;
4686 if (!rb)
4687 goto aux_unlock;
4688
4689 aux_offset = ACCESS_ONCE(rb->user_page->aux_offset);
4690 aux_size = ACCESS_ONCE(rb->user_page->aux_size);
4691
4692 if (aux_offset < perf_data_size(rb) + PAGE_SIZE)
4693 goto aux_unlock;
4694
4695 if (aux_offset != vma->vm_pgoff << PAGE_SHIFT)
4696 goto aux_unlock;
4697
4698 /* already mapped with a different offset */
4699 if (rb_has_aux(rb) && rb->aux_pgoff != vma->vm_pgoff)
4700 goto aux_unlock;
4701
4702 if (aux_size != vma_size || aux_size != nr_pages * PAGE_SIZE)
4703 goto aux_unlock;
4704
4705 /* already mapped with a different size */
4706 if (rb_has_aux(rb) && rb->aux_nr_pages != nr_pages)
4707 goto aux_unlock;
4708
4709 if (!is_power_of_2(nr_pages))
4710 goto aux_unlock;
4711
4712 if (!atomic_inc_not_zero(&rb->mmap_count))
4713 goto aux_unlock;
4714
4715 if (rb_has_aux(rb)) {
4716 atomic_inc(&rb->aux_mmap_count);
4717 ret = 0;
4718 goto unlock;
4719 }
4720
4721 atomic_set(&rb->aux_mmap_count, 1);
4722 user_extra = nr_pages;
4723
4724 goto accounting;
4725 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004726
4727 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02004728 * If we have rb pages ensure they're a power-of-two number, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004729 * can do bitmasks instead of modulo.
4730 */
Kan Liang2ed11312015-03-02 02:14:26 -05004731 if (nr_pages != 0 && !is_power_of_2(nr_pages))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004732 return -EINVAL;
4733
4734 if (vma_size != PAGE_SIZE * (1 + nr_pages))
4735 return -EINVAL;
4736
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004737 WARN_ON_ONCE(event->ctx->parent_ctx);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004738again:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004739 mutex_lock(&event->mmap_mutex);
Frederic Weisbecker76369132011-05-19 19:55:04 +02004740 if (event->rb) {
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004741 if (event->rb->nr_pages != nr_pages) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004742 ret = -EINVAL;
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004743 goto unlock;
4744 }
4745
4746 if (!atomic_inc_not_zero(&event->rb->mmap_count)) {
4747 /*
4748 * Raced against perf_mmap_close() through
4749 * perf_event_set_output(). Try again, hope for better
4750 * luck.
4751 */
4752 mutex_unlock(&event->mmap_mutex);
4753 goto again;
4754 }
4755
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004756 goto unlock;
4757 }
4758
4759 user_extra = nr_pages + 1;
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004760
4761accounting:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004762 user_lock_limit = sysctl_perf_event_mlock >> (PAGE_SHIFT - 10);
4763
4764 /*
4765 * Increase the limit linearly with more CPUs:
4766 */
4767 user_lock_limit *= num_online_cpus();
4768
4769 user_locked = atomic_long_read(&user->locked_vm) + user_extra;
4770
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004771 if (user_locked > user_lock_limit)
4772 extra = user_locked - user_lock_limit;
4773
Jiri Slaby78d7d402010-03-05 13:42:54 -08004774 lock_limit = rlimit(RLIMIT_MEMLOCK);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004775 lock_limit >>= PAGE_SHIFT;
Christoph Lameterbc3e53f2011-10-31 17:07:30 -07004776 locked = vma->vm_mm->pinned_vm + extra;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004777
4778 if ((locked > lock_limit) && perf_paranoid_tracepoint_raw() &&
4779 !capable(CAP_IPC_LOCK)) {
4780 ret = -EPERM;
4781 goto unlock;
4782 }
4783
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004784 WARN_ON(!rb && event->rb);
Peter Zijlstra906010b2009-09-21 16:08:49 +02004785
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004786 if (vma->vm_flags & VM_WRITE)
Frederic Weisbecker76369132011-05-19 19:55:04 +02004787 flags |= RING_BUFFER_WRITABLE;
Peter Zijlstrad57e34f2010-05-28 19:41:35 +02004788
Frederic Weisbecker76369132011-05-19 19:55:04 +02004789 if (!rb) {
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004790 rb = rb_alloc(nr_pages,
4791 event->attr.watermark ? event->attr.wakeup_watermark : 0,
4792 event->cpu, flags);
4793
4794 if (!rb) {
4795 ret = -ENOMEM;
4796 goto unlock;
4797 }
4798
4799 atomic_set(&rb->mmap_count, 1);
4800 rb->mmap_user = get_current_user();
4801 rb->mmap_locked = extra;
4802
4803 ring_buffer_attach(event, rb);
4804
4805 perf_event_init_userpage(event);
4806 perf_event_update_userpage(event);
4807 } else {
Alexander Shishkin1a594132015-01-14 14:18:18 +02004808 ret = rb_alloc_aux(rb, event, vma->vm_pgoff, nr_pages,
4809 event->attr.aux_watermark, flags);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004810 if (!ret)
4811 rb->aux_mmap_locked = extra;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004812 }
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004813
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004814unlock:
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004815 if (!ret) {
4816 atomic_long_add(user_extra, &user->locked_vm);
4817 vma->vm_mm->pinned_vm += extra;
4818
Peter Zijlstraac9721f2010-05-27 12:54:41 +02004819 atomic_inc(&event->mmap_count);
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02004820 } else if (rb) {
4821 atomic_dec(&rb->mmap_count);
4822 }
4823aux_unlock:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004824 mutex_unlock(&event->mmap_mutex);
4825
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02004826 /*
4827 * Since pinned accounting is per vm we cannot allow fork() to copy our
4828 * vma.
4829 */
Peter Zijlstra26cb63a2013-05-28 10:55:48 +02004830 vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_DONTDUMP;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004831 vma->vm_ops = &perf_mmap_vmops;
4832
Andy Lutomirski1e0fb9e2014-10-24 15:58:10 -07004833 if (event->pmu->event_mapped)
4834 event->pmu->event_mapped(event);
4835
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004836 return ret;
4837}
4838
4839static int perf_fasync(int fd, struct file *filp, int on)
4840{
Al Viro496ad9a2013-01-23 17:07:38 -05004841 struct inode *inode = file_inode(filp);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004842 struct perf_event *event = filp->private_data;
4843 int retval;
4844
4845 mutex_lock(&inode->i_mutex);
4846 retval = fasync_helper(fd, filp, on, &event->fasync);
4847 mutex_unlock(&inode->i_mutex);
4848
4849 if (retval < 0)
4850 return retval;
4851
4852 return 0;
4853}
4854
4855static const struct file_operations perf_fops = {
Arnd Bergmann3326c1c2010-03-23 19:09:33 +01004856 .llseek = no_llseek,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004857 .release = perf_release,
4858 .read = perf_read,
4859 .poll = perf_poll,
4860 .unlocked_ioctl = perf_ioctl,
Pawel Mollb3f20782014-06-13 16:03:32 +01004861 .compat_ioctl = perf_compat_ioctl,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004862 .mmap = perf_mmap,
4863 .fasync = perf_fasync,
4864};
4865
4866/*
4867 * Perf event wakeup
4868 *
4869 * If there's data, ensure we set the poll() state and publish everything
4870 * to user-space before waking everybody up.
4871 */
4872
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004873static inline struct fasync_struct **perf_event_fasync(struct perf_event *event)
4874{
4875 /* only the parent has fasync state */
4876 if (event->parent)
4877 event = event->parent;
4878 return &event->fasync;
4879}
4880
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004881void perf_event_wakeup(struct perf_event *event)
4882{
Peter Zijlstra10c6db12011-11-26 02:47:31 +01004883 ring_buffer_wakeup(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004884
4885 if (event->pending_kill) {
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02004886 kill_fasync(perf_event_fasync(event), SIGIO, event->pending_kill);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004887 event->pending_kill = 0;
4888 }
4889}
4890
Peter Zijlstrae360adb2010-10-14 14:01:34 +08004891static void perf_pending_event(struct irq_work *entry)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004892{
4893 struct perf_event *event = container_of(entry,
4894 struct perf_event, pending);
Peter Zijlstrad5252112015-02-19 18:03:11 +01004895 int rctx;
4896
4897 rctx = perf_swevent_get_recursion_context();
4898 /*
4899 * If we 'fail' here, that's OK, it means recursion is already disabled
4900 * and we won't recurse 'further'.
4901 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004902
4903 if (event->pending_disable) {
4904 event->pending_disable = 0;
4905 __perf_event_disable(event);
4906 }
4907
4908 if (event->pending_wakeup) {
4909 event->pending_wakeup = 0;
4910 perf_event_wakeup(event);
4911 }
Peter Zijlstrad5252112015-02-19 18:03:11 +01004912
4913 if (rctx >= 0)
4914 perf_swevent_put_recursion_context(rctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004915}
4916
Ingo Molnarcdd6c482009-09-21 12:02:48 +02004917/*
Zhang, Yanmin39447b32010-04-19 13:32:41 +08004918 * We assume there is only KVM supporting the callbacks.
4919 * Later on, we might change it to a list if there is
4920 * another virtualization implementation supporting the callbacks.
4921 */
4922struct perf_guest_info_callbacks *perf_guest_cbs;
4923
4924int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4925{
4926 perf_guest_cbs = cbs;
4927 return 0;
4928}
4929EXPORT_SYMBOL_GPL(perf_register_guest_info_callbacks);
4930
4931int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *cbs)
4932{
4933 perf_guest_cbs = NULL;
4934 return 0;
4935}
4936EXPORT_SYMBOL_GPL(perf_unregister_guest_info_callbacks);
4937
Jiri Olsa40189942012-08-07 15:20:37 +02004938static void
4939perf_output_sample_regs(struct perf_output_handle *handle,
4940 struct pt_regs *regs, u64 mask)
4941{
4942 int bit;
4943
4944 for_each_set_bit(bit, (const unsigned long *) &mask,
4945 sizeof(mask) * BITS_PER_BYTE) {
4946 u64 val;
4947
4948 val = perf_reg_value(regs, bit);
4949 perf_output_put(handle, val);
4950 }
4951}
4952
Stephane Eranian60e23642014-09-24 13:48:37 +02004953static void perf_sample_regs_user(struct perf_regs *regs_user,
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004954 struct pt_regs *regs,
4955 struct pt_regs *regs_user_copy)
Jiri Olsa40189942012-08-07 15:20:37 +02004956{
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004957 if (user_mode(regs)) {
4958 regs_user->abi = perf_reg_abi(current);
Peter Zijlstra25657112014-09-24 13:48:42 +02004959 regs_user->regs = regs;
Andy Lutomirski88a7c262015-01-04 10:36:19 -08004960 } else if (current->mm) {
4961 perf_get_regs_user(regs_user, regs, regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02004962 } else {
4963 regs_user->abi = PERF_SAMPLE_REGS_ABI_NONE;
4964 regs_user->regs = NULL;
Jiri Olsa40189942012-08-07 15:20:37 +02004965 }
4966}
4967
Stephane Eranian60e23642014-09-24 13:48:37 +02004968static void perf_sample_regs_intr(struct perf_regs *regs_intr,
4969 struct pt_regs *regs)
4970{
4971 regs_intr->regs = regs;
4972 regs_intr->abi = perf_reg_abi(current);
4973}
4974
4975
Jiri Olsac5ebced2012-08-07 15:20:40 +02004976/*
4977 * Get remaining task size from user stack pointer.
4978 *
4979 * It'd be better to take stack vma map and limit this more
4980 * precisly, but there's no way to get it safely under interrupt,
4981 * so using TASK_SIZE as limit.
4982 */
4983static u64 perf_ustack_task_size(struct pt_regs *regs)
4984{
4985 unsigned long addr = perf_user_stack_pointer(regs);
4986
4987 if (!addr || addr >= TASK_SIZE)
4988 return 0;
4989
4990 return TASK_SIZE - addr;
4991}
4992
4993static u16
4994perf_sample_ustack_size(u16 stack_size, u16 header_size,
4995 struct pt_regs *regs)
4996{
4997 u64 task_size;
4998
4999 /* No regs, no stack pointer, no dump. */
5000 if (!regs)
5001 return 0;
5002
5003 /*
5004 * Check if we fit in with the requested stack size into the:
5005 * - TASK_SIZE
5006 * If we don't, we limit the size to the TASK_SIZE.
5007 *
5008 * - remaining sample size
5009 * If we don't, we customize the stack size to
5010 * fit in to the remaining sample size.
5011 */
5012
5013 task_size = min((u64) USHRT_MAX, perf_ustack_task_size(regs));
5014 stack_size = min(stack_size, (u16) task_size);
5015
5016 /* Current header size plus static size and dynamic size. */
5017 header_size += 2 * sizeof(u64);
5018
5019 /* Do we fit in with the current stack dump size? */
5020 if ((u16) (header_size + stack_size) < header_size) {
5021 /*
5022 * If we overflow the maximum size for the sample,
5023 * we customize the stack dump size to fit in.
5024 */
5025 stack_size = USHRT_MAX - header_size - sizeof(u64);
5026 stack_size = round_up(stack_size, sizeof(u64));
5027 }
5028
5029 return stack_size;
5030}
5031
5032static void
5033perf_output_sample_ustack(struct perf_output_handle *handle, u64 dump_size,
5034 struct pt_regs *regs)
5035{
5036 /* Case of a kernel thread, nothing to dump */
5037 if (!regs) {
5038 u64 size = 0;
5039 perf_output_put(handle, size);
5040 } else {
5041 unsigned long sp;
5042 unsigned int rem;
5043 u64 dyn_size;
5044
5045 /*
5046 * We dump:
5047 * static size
5048 * - the size requested by user or the best one we can fit
5049 * in to the sample max size
5050 * data
5051 * - user stack dump data
5052 * dynamic size
5053 * - the actual dumped size
5054 */
5055
5056 /* Static size. */
5057 perf_output_put(handle, dump_size);
5058
5059 /* Data. */
5060 sp = perf_user_stack_pointer(regs);
5061 rem = __output_copy_user(handle, (void *) sp, dump_size);
5062 dyn_size = dump_size - rem;
5063
5064 perf_output_skip(handle, rem);
5065
5066 /* Dynamic size. */
5067 perf_output_put(handle, dyn_size);
5068 }
5069}
5070
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005071static void __perf_event_header__init_id(struct perf_event_header *header,
5072 struct perf_sample_data *data,
5073 struct perf_event *event)
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005074{
5075 u64 sample_type = event->attr.sample_type;
5076
5077 data->type = sample_type;
5078 header->size += event->id_header_size;
5079
5080 if (sample_type & PERF_SAMPLE_TID) {
5081 /* namespace issues */
5082 data->tid_entry.pid = perf_event_pid(event, current);
5083 data->tid_entry.tid = perf_event_tid(event, current);
5084 }
5085
5086 if (sample_type & PERF_SAMPLE_TIME)
Peter Zijlstra34f43922015-02-20 14:05:38 +01005087 data->time = perf_event_clock(event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005088
Adrian Hunterff3d5272013-08-27 11:23:07 +03005089 if (sample_type & (PERF_SAMPLE_ID | PERF_SAMPLE_IDENTIFIER))
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005090 data->id = primary_event_id(event);
5091
5092 if (sample_type & PERF_SAMPLE_STREAM_ID)
5093 data->stream_id = event->id;
5094
5095 if (sample_type & PERF_SAMPLE_CPU) {
5096 data->cpu_entry.cpu = raw_smp_processor_id();
5097 data->cpu_entry.reserved = 0;
5098 }
5099}
5100
Frederic Weisbecker76369132011-05-19 19:55:04 +02005101void perf_event_header__init_id(struct perf_event_header *header,
5102 struct perf_sample_data *data,
5103 struct perf_event *event)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005104{
5105 if (event->attr.sample_id_all)
5106 __perf_event_header__init_id(header, data, event);
5107}
5108
5109static void __perf_event__output_id_sample(struct perf_output_handle *handle,
5110 struct perf_sample_data *data)
5111{
5112 u64 sample_type = data->type;
5113
5114 if (sample_type & PERF_SAMPLE_TID)
5115 perf_output_put(handle, data->tid_entry);
5116
5117 if (sample_type & PERF_SAMPLE_TIME)
5118 perf_output_put(handle, data->time);
5119
5120 if (sample_type & PERF_SAMPLE_ID)
5121 perf_output_put(handle, data->id);
5122
5123 if (sample_type & PERF_SAMPLE_STREAM_ID)
5124 perf_output_put(handle, data->stream_id);
5125
5126 if (sample_type & PERF_SAMPLE_CPU)
5127 perf_output_put(handle, data->cpu_entry);
Adrian Hunterff3d5272013-08-27 11:23:07 +03005128
5129 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5130 perf_output_put(handle, data->id);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005131}
5132
Frederic Weisbecker76369132011-05-19 19:55:04 +02005133void perf_event__output_id_sample(struct perf_event *event,
5134 struct perf_output_handle *handle,
5135 struct perf_sample_data *sample)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005136{
5137 if (event->attr.sample_id_all)
5138 __perf_event__output_id_sample(handle, sample);
5139}
5140
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005141static void perf_output_read_one(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005142 struct perf_event *event,
5143 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005144{
5145 u64 read_format = event->attr.read_format;
5146 u64 values[4];
5147 int n = 0;
5148
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005149 values[n++] = perf_event_count(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005150 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005151 values[n++] = enabled +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005152 atomic64_read(&event->child_total_time_enabled);
5153 }
5154 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) {
Stephane Eranianeed01522010-10-26 16:08:01 +02005155 values[n++] = running +
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005156 atomic64_read(&event->child_total_time_running);
5157 }
5158 if (read_format & PERF_FORMAT_ID)
5159 values[n++] = primary_event_id(event);
5160
Frederic Weisbecker76369132011-05-19 19:55:04 +02005161 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005162}
5163
5164/*
5165 * XXX PERF_FORMAT_GROUP vs inherited events seems difficult.
5166 */
5167static void perf_output_read_group(struct perf_output_handle *handle,
Stephane Eranianeed01522010-10-26 16:08:01 +02005168 struct perf_event *event,
5169 u64 enabled, u64 running)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005170{
5171 struct perf_event *leader = event->group_leader, *sub;
5172 u64 read_format = event->attr.read_format;
5173 u64 values[5];
5174 int n = 0;
5175
5176 values[n++] = 1 + leader->nr_siblings;
5177
5178 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
Stephane Eranianeed01522010-10-26 16:08:01 +02005179 values[n++] = enabled;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005180
5181 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
Stephane Eranianeed01522010-10-26 16:08:01 +02005182 values[n++] = running;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005183
5184 if (leader != event)
5185 leader->pmu->read(leader);
5186
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005187 values[n++] = perf_event_count(leader);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005188 if (read_format & PERF_FORMAT_ID)
5189 values[n++] = primary_event_id(leader);
5190
Frederic Weisbecker76369132011-05-19 19:55:04 +02005191 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005192
5193 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
5194 n = 0;
5195
Jiri Olsa6f5ab002012-10-15 20:13:45 +02005196 if ((sub != event) &&
5197 (sub->state == PERF_EVENT_STATE_ACTIVE))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005198 sub->pmu->read(sub);
5199
Peter Zijlstrab5e58792010-05-21 14:43:12 +02005200 values[n++] = perf_event_count(sub);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005201 if (read_format & PERF_FORMAT_ID)
5202 values[n++] = primary_event_id(sub);
5203
Frederic Weisbecker76369132011-05-19 19:55:04 +02005204 __output_copy(handle, values, n * sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005205 }
5206}
5207
Stephane Eranianeed01522010-10-26 16:08:01 +02005208#define PERF_FORMAT_TOTAL_TIMES (PERF_FORMAT_TOTAL_TIME_ENABLED|\
5209 PERF_FORMAT_TOTAL_TIME_RUNNING)
5210
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005211static void perf_output_read(struct perf_output_handle *handle,
5212 struct perf_event *event)
5213{
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005214 u64 enabled = 0, running = 0, now;
Stephane Eranianeed01522010-10-26 16:08:01 +02005215 u64 read_format = event->attr.read_format;
5216
5217 /*
5218 * compute total_time_enabled, total_time_running
5219 * based on snapshot values taken when the event
5220 * was last scheduled in.
5221 *
5222 * we cannot simply called update_context_time()
5223 * because of locking issue as we are called in
5224 * NMI context
5225 */
Eric B Munsonc4794292011-06-23 16:34:38 -04005226 if (read_format & PERF_FORMAT_TOTAL_TIMES)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01005227 calc_timer_values(event, &now, &enabled, &running);
Stephane Eranianeed01522010-10-26 16:08:01 +02005228
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005229 if (event->attr.read_format & PERF_FORMAT_GROUP)
Stephane Eranianeed01522010-10-26 16:08:01 +02005230 perf_output_read_group(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005231 else
Stephane Eranianeed01522010-10-26 16:08:01 +02005232 perf_output_read_one(handle, event, enabled, running);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005233}
5234
5235void perf_output_sample(struct perf_output_handle *handle,
5236 struct perf_event_header *header,
5237 struct perf_sample_data *data,
5238 struct perf_event *event)
5239{
5240 u64 sample_type = data->type;
5241
5242 perf_output_put(handle, *header);
5243
Adrian Hunterff3d5272013-08-27 11:23:07 +03005244 if (sample_type & PERF_SAMPLE_IDENTIFIER)
5245 perf_output_put(handle, data->id);
5246
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005247 if (sample_type & PERF_SAMPLE_IP)
5248 perf_output_put(handle, data->ip);
5249
5250 if (sample_type & PERF_SAMPLE_TID)
5251 perf_output_put(handle, data->tid_entry);
5252
5253 if (sample_type & PERF_SAMPLE_TIME)
5254 perf_output_put(handle, data->time);
5255
5256 if (sample_type & PERF_SAMPLE_ADDR)
5257 perf_output_put(handle, data->addr);
5258
5259 if (sample_type & PERF_SAMPLE_ID)
5260 perf_output_put(handle, data->id);
5261
5262 if (sample_type & PERF_SAMPLE_STREAM_ID)
5263 perf_output_put(handle, data->stream_id);
5264
5265 if (sample_type & PERF_SAMPLE_CPU)
5266 perf_output_put(handle, data->cpu_entry);
5267
5268 if (sample_type & PERF_SAMPLE_PERIOD)
5269 perf_output_put(handle, data->period);
5270
5271 if (sample_type & PERF_SAMPLE_READ)
5272 perf_output_read(handle, event);
5273
5274 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5275 if (data->callchain) {
5276 int size = 1;
5277
5278 if (data->callchain)
5279 size += data->callchain->nr;
5280
5281 size *= sizeof(u64);
5282
Frederic Weisbecker76369132011-05-19 19:55:04 +02005283 __output_copy(handle, data->callchain, size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005284 } else {
5285 u64 nr = 0;
5286 perf_output_put(handle, nr);
5287 }
5288 }
5289
5290 if (sample_type & PERF_SAMPLE_RAW) {
5291 if (data->raw) {
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005292 u32 raw_size = data->raw->size;
5293 u32 real_size = round_up(raw_size + sizeof(u32),
5294 sizeof(u64)) - sizeof(u32);
5295 u64 zero = 0;
5296
5297 perf_output_put(handle, real_size);
5298 __output_copy(handle, data->raw->data, raw_size);
5299 if (real_size - raw_size)
5300 __output_copy(handle, &zero, real_size - raw_size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005301 } else {
5302 struct {
5303 u32 size;
5304 u32 data;
5305 } raw = {
5306 .size = sizeof(u32),
5307 .data = 0,
5308 };
5309 perf_output_put(handle, raw);
5310 }
5311 }
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005312
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005313 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5314 if (data->br_stack) {
5315 size_t size;
5316
5317 size = data->br_stack->nr
5318 * sizeof(struct perf_branch_entry);
5319
5320 perf_output_put(handle, data->br_stack->nr);
5321 perf_output_copy(handle, data->br_stack->entries, size);
5322 } else {
5323 /*
5324 * we always store at least the value of nr
5325 */
5326 u64 nr = 0;
5327 perf_output_put(handle, nr);
5328 }
5329 }
Jiri Olsa40189942012-08-07 15:20:37 +02005330
5331 if (sample_type & PERF_SAMPLE_REGS_USER) {
5332 u64 abi = data->regs_user.abi;
5333
5334 /*
5335 * If there are no regs to dump, notice it through
5336 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5337 */
5338 perf_output_put(handle, abi);
5339
5340 if (abi) {
5341 u64 mask = event->attr.sample_regs_user;
5342 perf_output_sample_regs(handle,
5343 data->regs_user.regs,
5344 mask);
5345 }
5346 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005347
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005348 if (sample_type & PERF_SAMPLE_STACK_USER) {
Jiri Olsac5ebced2012-08-07 15:20:40 +02005349 perf_output_sample_ustack(handle,
5350 data->stack_user_size,
5351 data->regs_user.regs);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005352 }
Andi Kleenc3feedf2013-01-24 16:10:28 +01005353
5354 if (sample_type & PERF_SAMPLE_WEIGHT)
5355 perf_output_put(handle, data->weight);
Stephane Eraniand6be9ad2013-01-24 16:10:31 +01005356
5357 if (sample_type & PERF_SAMPLE_DATA_SRC)
5358 perf_output_put(handle, data->data_src.val);
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005359
Andi Kleenfdfbbd02013-09-20 07:40:39 -07005360 if (sample_type & PERF_SAMPLE_TRANSACTION)
5361 perf_output_put(handle, data->txn);
5362
Stephane Eranian60e23642014-09-24 13:48:37 +02005363 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5364 u64 abi = data->regs_intr.abi;
5365 /*
5366 * If there are no regs to dump, notice it through
5367 * first u64 being zero (PERF_SAMPLE_REGS_ABI_NONE).
5368 */
5369 perf_output_put(handle, abi);
5370
5371 if (abi) {
5372 u64 mask = event->attr.sample_regs_intr;
5373
5374 perf_output_sample_regs(handle,
5375 data->regs_intr.regs,
5376 mask);
5377 }
5378 }
5379
Peter Zijlstraa5cdd402013-07-16 17:09:07 +02005380 if (!event->attr.watermark) {
5381 int wakeup_events = event->attr.wakeup_events;
5382
5383 if (wakeup_events) {
5384 struct ring_buffer *rb = handle->rb;
5385 int events = local_inc_return(&rb->events);
5386
5387 if (events >= wakeup_events) {
5388 local_sub(wakeup_events, &rb->events);
5389 local_inc(&rb->wakeup);
5390 }
5391 }
5392 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005393}
5394
5395void perf_prepare_sample(struct perf_event_header *header,
5396 struct perf_sample_data *data,
5397 struct perf_event *event,
5398 struct pt_regs *regs)
5399{
5400 u64 sample_type = event->attr.sample_type;
5401
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005402 header->type = PERF_RECORD_SAMPLE;
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005403 header->size = sizeof(*header) + event->header_size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005404
5405 header->misc = 0;
5406 header->misc |= perf_misc_flags(regs);
5407
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005408 __perf_event_header__init_id(header, data, event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02005409
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005410 if (sample_type & PERF_SAMPLE_IP)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005411 data->ip = perf_instruction_pointer(regs);
5412
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005413 if (sample_type & PERF_SAMPLE_CALLCHAIN) {
5414 int size = 1;
5415
Andrew Vagine6dab5f2012-07-11 18:14:58 +04005416 data->callchain = perf_callchain(event, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005417
5418 if (data->callchain)
5419 size += data->callchain->nr;
5420
5421 header->size += size * sizeof(u64);
5422 }
5423
5424 if (sample_type & PERF_SAMPLE_RAW) {
5425 int size = sizeof(u32);
5426
5427 if (data->raw)
5428 size += data->raw->size;
5429 else
5430 size += sizeof(u32);
5431
Alexei Starovoitovfa128e62015-10-20 20:02:33 -07005432 header->size += round_up(size, sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005433 }
Stephane Eranianbce38cd2012-02-09 23:20:51 +01005434
5435 if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
5436 int size = sizeof(u64); /* nr */
5437 if (data->br_stack) {
5438 size += data->br_stack->nr
5439 * sizeof(struct perf_branch_entry);
5440 }
5441 header->size += size;
5442 }
Jiri Olsa40189942012-08-07 15:20:37 +02005443
Peter Zijlstra25657112014-09-24 13:48:42 +02005444 if (sample_type & (PERF_SAMPLE_REGS_USER | PERF_SAMPLE_STACK_USER))
Andy Lutomirski88a7c262015-01-04 10:36:19 -08005445 perf_sample_regs_user(&data->regs_user, regs,
5446 &data->regs_user_copy);
Peter Zijlstra25657112014-09-24 13:48:42 +02005447
Jiri Olsa40189942012-08-07 15:20:37 +02005448 if (sample_type & PERF_SAMPLE_REGS_USER) {
5449 /* regs dump ABI info */
5450 int size = sizeof(u64);
5451
Jiri Olsa40189942012-08-07 15:20:37 +02005452 if (data->regs_user.regs) {
5453 u64 mask = event->attr.sample_regs_user;
5454 size += hweight64(mask) * sizeof(u64);
5455 }
5456
5457 header->size += size;
5458 }
Jiri Olsac5ebced2012-08-07 15:20:40 +02005459
5460 if (sample_type & PERF_SAMPLE_STACK_USER) {
5461 /*
5462 * Either we need PERF_SAMPLE_STACK_USER bit to be allways
5463 * processed as the last one or have additional check added
5464 * in case new sample type is added, because we could eat
5465 * up the rest of the sample size.
5466 */
Jiri Olsac5ebced2012-08-07 15:20:40 +02005467 u16 stack_size = event->attr.sample_stack_user;
5468 u16 size = sizeof(u64);
5469
Jiri Olsac5ebced2012-08-07 15:20:40 +02005470 stack_size = perf_sample_ustack_size(stack_size, header->size,
Peter Zijlstra25657112014-09-24 13:48:42 +02005471 data->regs_user.regs);
Jiri Olsac5ebced2012-08-07 15:20:40 +02005472
5473 /*
5474 * If there is something to dump, add space for the dump
5475 * itself and for the field that tells the dynamic size,
5476 * which is how many have been actually dumped.
5477 */
5478 if (stack_size)
5479 size += sizeof(u64) + stack_size;
5480
5481 data->stack_user_size = stack_size;
5482 header->size += size;
5483 }
Stephane Eranian60e23642014-09-24 13:48:37 +02005484
5485 if (sample_type & PERF_SAMPLE_REGS_INTR) {
5486 /* regs dump ABI info */
5487 int size = sizeof(u64);
5488
5489 perf_sample_regs_intr(&data->regs_intr, regs);
5490
5491 if (data->regs_intr.regs) {
5492 u64 mask = event->attr.sample_regs_intr;
5493
5494 size += hweight64(mask) * sizeof(u64);
5495 }
5496
5497 header->size += size;
5498 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005499}
5500
Yan, Zheng21509082015-05-06 15:33:49 -04005501void perf_event_output(struct perf_event *event,
5502 struct perf_sample_data *data,
5503 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005504{
5505 struct perf_output_handle handle;
5506 struct perf_event_header header;
5507
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005508 /* protect the callchain buffers */
5509 rcu_read_lock();
5510
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005511 perf_prepare_sample(&header, data, event, regs);
5512
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005513 if (perf_output_begin(&handle, event, header.size))
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005514 goto exit;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005515
5516 perf_output_sample(&handle, &header, data, event);
5517
5518 perf_output_end(&handle);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02005519
5520exit:
5521 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005522}
5523
5524/*
5525 * read event_id
5526 */
5527
5528struct perf_read_event {
5529 struct perf_event_header header;
5530
5531 u32 pid;
5532 u32 tid;
5533};
5534
5535static void
5536perf_event_read_event(struct perf_event *event,
5537 struct task_struct *task)
5538{
5539 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005540 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005541 struct perf_read_event read_event = {
5542 .header = {
5543 .type = PERF_RECORD_READ,
5544 .misc = 0,
Arnaldo Carvalho de Meloc320c7b2010-10-20 12:50:11 -02005545 .size = sizeof(read_event) + event->read_size,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005546 },
5547 .pid = perf_event_pid(event, task),
5548 .tid = perf_event_tid(event, task),
5549 };
5550 int ret;
5551
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005552 perf_event_header__init_id(&read_event.header, &sample, event);
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005553 ret = perf_output_begin(&handle, event, read_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005554 if (ret)
5555 return;
5556
5557 perf_output_put(&handle, read_event);
5558 perf_output_read(&handle, event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005559 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005560
5561 perf_output_end(&handle);
5562}
5563
Jiri Olsa52d857a2013-05-06 18:27:18 +02005564typedef void (perf_event_aux_output_cb)(struct perf_event *event, void *data);
5565
5566static void
5567perf_event_aux_ctx(struct perf_event_context *ctx,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005568 perf_event_aux_output_cb output,
5569 void *data)
5570{
5571 struct perf_event *event;
5572
5573 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
5574 if (event->state < PERF_EVENT_STATE_INACTIVE)
5575 continue;
5576 if (!event_filter_match(event))
5577 continue;
Jiri Olsa67516842013-07-09 18:56:31 +02005578 output(event, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005579 }
5580}
5581
5582static void
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005583perf_event_aux_task_ctx(perf_event_aux_output_cb output, void *data,
5584 struct perf_event_context *task_ctx)
5585{
5586 rcu_read_lock();
5587 preempt_disable();
5588 perf_event_aux_ctx(task_ctx, output, data);
5589 preempt_enable();
5590 rcu_read_unlock();
5591}
5592
5593static void
Jiri Olsa67516842013-07-09 18:56:31 +02005594perf_event_aux(perf_event_aux_output_cb output, void *data,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005595 struct perf_event_context *task_ctx)
5596{
5597 struct perf_cpu_context *cpuctx;
5598 struct perf_event_context *ctx;
5599 struct pmu *pmu;
5600 int ctxn;
5601
Jiri Olsa4e93ad62015-11-04 16:00:05 +01005602 /*
5603 * If we have task_ctx != NULL we only notify
5604 * the task context itself. The task_ctx is set
5605 * only for EXIT events before releasing task
5606 * context.
5607 */
5608 if (task_ctx) {
5609 perf_event_aux_task_ctx(output, data, task_ctx);
5610 return;
5611 }
5612
Jiri Olsa52d857a2013-05-06 18:27:18 +02005613 rcu_read_lock();
5614 list_for_each_entry_rcu(pmu, &pmus, entry) {
5615 cpuctx = get_cpu_ptr(pmu->pmu_cpu_context);
5616 if (cpuctx->unique_pmu != pmu)
5617 goto next;
Jiri Olsa67516842013-07-09 18:56:31 +02005618 perf_event_aux_ctx(&cpuctx->ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005619 ctxn = pmu->task_ctx_nr;
5620 if (ctxn < 0)
5621 goto next;
5622 ctx = rcu_dereference(current->perf_event_ctxp[ctxn]);
5623 if (ctx)
Jiri Olsa67516842013-07-09 18:56:31 +02005624 perf_event_aux_ctx(ctx, output, data);
Jiri Olsa52d857a2013-05-06 18:27:18 +02005625next:
5626 put_cpu_ptr(pmu->pmu_cpu_context);
5627 }
Jiri Olsa52d857a2013-05-06 18:27:18 +02005628 rcu_read_unlock();
5629}
5630
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005631/*
5632 * task tracking -- fork/exit
5633 *
Stephane Eranian13d7a242013-08-21 12:10:24 +02005634 * enabled by: attr.comm | attr.mmap | attr.mmap2 | attr.mmap_data | attr.task
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005635 */
5636
5637struct perf_task_event {
5638 struct task_struct *task;
5639 struct perf_event_context *task_ctx;
5640
5641 struct {
5642 struct perf_event_header header;
5643
5644 u32 pid;
5645 u32 ppid;
5646 u32 tid;
5647 u32 ptid;
5648 u64 time;
5649 } event_id;
5650};
5651
Jiri Olsa67516842013-07-09 18:56:31 +02005652static int perf_event_task_match(struct perf_event *event)
5653{
Stephane Eranian13d7a242013-08-21 12:10:24 +02005654 return event->attr.comm || event->attr.mmap ||
5655 event->attr.mmap2 || event->attr.mmap_data ||
5656 event->attr.task;
Jiri Olsa67516842013-07-09 18:56:31 +02005657}
5658
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005659static void perf_event_task_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005660 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005661{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005662 struct perf_task_event *task_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005663 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005664 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005665 struct task_struct *task = task_event->task;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005666 int ret, size = task_event->event_id.header.size;
Mike Galbraith8bb39f92010-03-26 11:11:33 +01005667
Jiri Olsa67516842013-07-09 18:56:31 +02005668 if (!perf_event_task_match(event))
5669 return;
5670
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005671 perf_event_header__init_id(&task_event->event_id.header, &sample, event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005672
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005673 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005674 task_event->event_id.header.size);
Peter Zijlstraef607772010-05-18 10:50:41 +02005675 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005676 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005677
5678 task_event->event_id.pid = perf_event_pid(event, task);
5679 task_event->event_id.ppid = perf_event_pid(event, current);
5680
5681 task_event->event_id.tid = perf_event_tid(event, task);
5682 task_event->event_id.ptid = perf_event_tid(event, current);
5683
Peter Zijlstra34f43922015-02-20 14:05:38 +01005684 task_event->event_id.time = perf_event_clock(event);
5685
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005686 perf_output_put(&handle, task_event->event_id);
5687
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005688 perf_event__output_id_sample(event, &handle, &sample);
5689
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005690 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005691out:
5692 task_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005693}
5694
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005695static void perf_event_task(struct task_struct *task,
5696 struct perf_event_context *task_ctx,
5697 int new)
5698{
5699 struct perf_task_event task_event;
5700
5701 if (!atomic_read(&nr_comm_events) &&
5702 !atomic_read(&nr_mmap_events) &&
5703 !atomic_read(&nr_task_events))
5704 return;
5705
5706 task_event = (struct perf_task_event){
5707 .task = task,
5708 .task_ctx = task_ctx,
5709 .event_id = {
5710 .header = {
5711 .type = new ? PERF_RECORD_FORK : PERF_RECORD_EXIT,
5712 .misc = 0,
5713 .size = sizeof(task_event.event_id),
5714 },
5715 /* .pid */
5716 /* .ppid */
5717 /* .tid */
5718 /* .ptid */
Peter Zijlstra34f43922015-02-20 14:05:38 +01005719 /* .time */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005720 },
5721 };
5722
Jiri Olsa67516842013-07-09 18:56:31 +02005723 perf_event_aux(perf_event_task_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005724 &task_event,
5725 task_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005726}
5727
5728void perf_event_fork(struct task_struct *task)
5729{
5730 perf_event_task(task, NULL, 1);
5731}
5732
5733/*
5734 * comm tracking
5735 */
5736
5737struct perf_comm_event {
5738 struct task_struct *task;
5739 char *comm;
5740 int comm_size;
5741
5742 struct {
5743 struct perf_event_header header;
5744
5745 u32 pid;
5746 u32 tid;
5747 } event_id;
5748};
5749
Jiri Olsa67516842013-07-09 18:56:31 +02005750static int perf_event_comm_match(struct perf_event *event)
5751{
5752 return event->attr.comm;
5753}
5754
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005755static void perf_event_comm_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005756 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005757{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005758 struct perf_comm_event *comm_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005759 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005760 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005761 int size = comm_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005762 int ret;
5763
Jiri Olsa67516842013-07-09 18:56:31 +02005764 if (!perf_event_comm_match(event))
5765 return;
5766
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005767 perf_event_header__init_id(&comm_event->event_id.header, &sample, event);
5768 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005769 comm_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005770
5771 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005772 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005773
5774 comm_event->event_id.pid = perf_event_pid(event, comm_event->task);
5775 comm_event->event_id.tid = perf_event_tid(event, comm_event->task);
5776
5777 perf_output_put(&handle, comm_event->event_id);
Frederic Weisbecker76369132011-05-19 19:55:04 +02005778 __output_copy(&handle, comm_event->comm,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005779 comm_event->comm_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005780
5781 perf_event__output_id_sample(event, &handle, &sample);
5782
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005783 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005784out:
5785 comm_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005786}
5787
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005788static void perf_event_comm_event(struct perf_comm_event *comm_event)
5789{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005790 char comm[TASK_COMM_LEN];
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005791 unsigned int size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005792
5793 memset(comm, 0, sizeof(comm));
Márton Németh96b02d72009-11-21 23:10:15 +01005794 strlcpy(comm, comm_event->task->comm, sizeof(comm));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005795 size = ALIGN(strlen(comm)+1, sizeof(u64));
5796
5797 comm_event->comm = comm;
5798 comm_event->comm_size = size;
5799
5800 comm_event->event_id.header.size = sizeof(comm_event->event_id) + size;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02005801
Jiri Olsa67516842013-07-09 18:56:31 +02005802 perf_event_aux(perf_event_comm_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005803 comm_event,
5804 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005805}
5806
Adrian Hunter82b89772014-05-28 11:45:04 +03005807void perf_event_comm(struct task_struct *task, bool exec)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005808{
5809 struct perf_comm_event comm_event;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005810
5811 if (!atomic_read(&nr_comm_events))
5812 return;
5813
5814 comm_event = (struct perf_comm_event){
5815 .task = task,
5816 /* .comm */
5817 /* .comm_size */
5818 .event_id = {
5819 .header = {
5820 .type = PERF_RECORD_COMM,
Adrian Hunter82b89772014-05-28 11:45:04 +03005821 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005822 /* .size */
5823 },
5824 /* .pid */
5825 /* .tid */
5826 },
5827 };
5828
5829 perf_event_comm_event(&comm_event);
5830}
5831
5832/*
5833 * mmap tracking
5834 */
5835
5836struct perf_mmap_event {
5837 struct vm_area_struct *vma;
5838
5839 const char *file_name;
5840 int file_size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005841 int maj, min;
5842 u64 ino;
5843 u64 ino_generation;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005844 u32 prot, flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005845
5846 struct {
5847 struct perf_event_header header;
5848
5849 u32 pid;
5850 u32 tid;
5851 u64 start;
5852 u64 len;
5853 u64 pgoff;
5854 } event_id;
5855};
5856
Jiri Olsa67516842013-07-09 18:56:31 +02005857static int perf_event_mmap_match(struct perf_event *event,
5858 void *data)
5859{
5860 struct perf_mmap_event *mmap_event = data;
5861 struct vm_area_struct *vma = mmap_event->vma;
5862 int executable = vma->vm_flags & VM_EXEC;
5863
5864 return (!executable && event->attr.mmap_data) ||
Stephane Eranian13d7a242013-08-21 12:10:24 +02005865 (executable && (event->attr.mmap || event->attr.mmap2));
Jiri Olsa67516842013-07-09 18:56:31 +02005866}
5867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005868static void perf_event_mmap_output(struct perf_event *event,
Jiri Olsa52d857a2013-05-06 18:27:18 +02005869 void *data)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005870{
Jiri Olsa52d857a2013-05-06 18:27:18 +02005871 struct perf_mmap_event *mmap_event = data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005872 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005873 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005874 int size = mmap_event->event_id.header.size;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005875 int ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005876
Jiri Olsa67516842013-07-09 18:56:31 +02005877 if (!perf_event_mmap_match(event, data))
5878 return;
5879
Stephane Eranian13d7a242013-08-21 12:10:24 +02005880 if (event->attr.mmap2) {
5881 mmap_event->event_id.header.type = PERF_RECORD_MMAP2;
5882 mmap_event->event_id.header.size += sizeof(mmap_event->maj);
5883 mmap_event->event_id.header.size += sizeof(mmap_event->min);
5884 mmap_event->event_id.header.size += sizeof(mmap_event->ino);
Arnaldo Carvalho de Melod008d522013-09-10 10:24:05 -03005885 mmap_event->event_id.header.size += sizeof(mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005886 mmap_event->event_id.header.size += sizeof(mmap_event->prot);
5887 mmap_event->event_id.header.size += sizeof(mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005888 }
5889
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005890 perf_event_header__init_id(&mmap_event->event_id.header, &sample, event);
5891 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02005892 mmap_event->event_id.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005893 if (ret)
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005894 goto out;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005895
5896 mmap_event->event_id.pid = perf_event_pid(event, current);
5897 mmap_event->event_id.tid = perf_event_tid(event, current);
5898
5899 perf_output_put(&handle, mmap_event->event_id);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005900
5901 if (event->attr.mmap2) {
5902 perf_output_put(&handle, mmap_event->maj);
5903 perf_output_put(&handle, mmap_event->min);
5904 perf_output_put(&handle, mmap_event->ino);
5905 perf_output_put(&handle, mmap_event->ino_generation);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005906 perf_output_put(&handle, mmap_event->prot);
5907 perf_output_put(&handle, mmap_event->flags);
Stephane Eranian13d7a242013-08-21 12:10:24 +02005908 }
5909
Frederic Weisbecker76369132011-05-19 19:55:04 +02005910 __output_copy(&handle, mmap_event->file_name,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005911 mmap_event->file_size);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005912
5913 perf_event__output_id_sample(event, &handle, &sample);
5914
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005915 perf_output_end(&handle);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02005916out:
5917 mmap_event->event_id.header.size = size;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005918}
5919
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005920static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
5921{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005922 struct vm_area_struct *vma = mmap_event->vma;
5923 struct file *file = vma->vm_file;
Stephane Eranian13d7a242013-08-21 12:10:24 +02005924 int maj = 0, min = 0;
5925 u64 ino = 0, gen = 0;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005926 u32 prot = 0, flags = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005927 unsigned int size;
5928 char tmp[16];
5929 char *buf = NULL;
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005930 char *name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005931
5932 if (file) {
Stephane Eranian13d7a242013-08-21 12:10:24 +02005933 struct inode *inode;
5934 dev_t dev;
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005935
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005936 buf = kmalloc(PATH_MAX, GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005937 if (!buf) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005938 name = "//enomem";
5939 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005940 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005941 /*
Oleg Nesterov3ea2f2b2013-10-16 22:10:04 +02005942 * d_path() works from the end of the rb backwards, so we
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005943 * need to add enough zero bytes after the string to handle
5944 * the 64bit alignment we do later.
5945 */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02005946 name = file_path(file, buf, PATH_MAX - sizeof(u64));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005947 if (IS_ERR(name)) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005948 name = "//toolong";
5949 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005950 }
Stephane Eranian13d7a242013-08-21 12:10:24 +02005951 inode = file_inode(vma->vm_file);
5952 dev = inode->i_sb->s_dev;
5953 ino = inode->i_ino;
5954 gen = inode->i_generation;
5955 maj = MAJOR(dev);
5956 min = MINOR(dev);
Peter Zijlstraf972eb62014-05-19 15:13:47 -04005957
5958 if (vma->vm_flags & VM_READ)
5959 prot |= PROT_READ;
5960 if (vma->vm_flags & VM_WRITE)
5961 prot |= PROT_WRITE;
5962 if (vma->vm_flags & VM_EXEC)
5963 prot |= PROT_EXEC;
5964
5965 if (vma->vm_flags & VM_MAYSHARE)
5966 flags = MAP_SHARED;
5967 else
5968 flags = MAP_PRIVATE;
5969
5970 if (vma->vm_flags & VM_DENYWRITE)
5971 flags |= MAP_DENYWRITE;
5972 if (vma->vm_flags & VM_MAYEXEC)
5973 flags |= MAP_EXECUTABLE;
5974 if (vma->vm_flags & VM_LOCKED)
5975 flags |= MAP_LOCKED;
5976 if (vma->vm_flags & VM_HUGETLB)
5977 flags |= MAP_HUGETLB;
5978
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005979 goto got_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005980 } else {
Jiri Olsafbe26ab2014-07-14 17:57:19 +02005981 if (vma->vm_ops && vma->vm_ops->name) {
5982 name = (char *) vma->vm_ops->name(vma);
5983 if (name)
5984 goto cpy_name;
5985 }
5986
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02005987 name = (char *)arch_vma_name(vma);
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005988 if (name)
5989 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005990
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005991 if (vma->vm_start <= vma->vm_mm->start_brk &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005992 vma->vm_end >= vma->vm_mm->brk) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005993 name = "[heap]";
5994 goto cpy_name;
Oleg Nesterov32c5fb72013-10-16 22:09:45 +02005995 }
5996 if (vma->vm_start <= vma->vm_mm->start_stack &&
Ingo Molnarcdd6c482009-09-21 12:02:48 +02005997 vma->vm_end >= vma->vm_mm->start_stack) {
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02005998 name = "[stack]";
5999 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006000 }
6001
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006002 name = "//anon";
6003 goto cpy_name;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006004 }
6005
Oleg Nesterovc7e548b2013-10-17 20:24:17 +02006006cpy_name:
6007 strlcpy(tmp, name, sizeof(tmp));
6008 name = tmp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006009got_name:
Peter Zijlstra2c42cfbf2013-10-17 00:06:46 +02006010 /*
6011 * Since our buffer works in 8 byte units we need to align our string
6012 * size to a multiple of 8. However, we must guarantee the tail end is
6013 * zero'd out to avoid leaking random bits to userspace.
6014 */
6015 size = strlen(name)+1;
6016 while (!IS_ALIGNED(size, sizeof(u64)))
6017 name[size++] = '\0';
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006018
6019 mmap_event->file_name = name;
6020 mmap_event->file_size = size;
Stephane Eranian13d7a242013-08-21 12:10:24 +02006021 mmap_event->maj = maj;
6022 mmap_event->min = min;
6023 mmap_event->ino = ino;
6024 mmap_event->ino_generation = gen;
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006025 mmap_event->prot = prot;
6026 mmap_event->flags = flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006027
Stephane Eranian2fe85422013-01-24 16:10:39 +01006028 if (!(vma->vm_flags & VM_EXEC))
6029 mmap_event->event_id.header.misc |= PERF_RECORD_MISC_MMAP_DATA;
6030
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006031 mmap_event->event_id.header.size = sizeof(mmap_event->event_id) + size;
6032
Jiri Olsa67516842013-07-09 18:56:31 +02006033 perf_event_aux(perf_event_mmap_output,
Jiri Olsa52d857a2013-05-06 18:27:18 +02006034 mmap_event,
6035 NULL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006036
6037 kfree(buf);
6038}
6039
Eric B Munson3af9e852010-05-18 15:30:49 +01006040void perf_event_mmap(struct vm_area_struct *vma)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006041{
6042 struct perf_mmap_event mmap_event;
6043
6044 if (!atomic_read(&nr_mmap_events))
6045 return;
6046
6047 mmap_event = (struct perf_mmap_event){
6048 .vma = vma,
6049 /* .file_name */
6050 /* .file_size */
6051 .event_id = {
6052 .header = {
6053 .type = PERF_RECORD_MMAP,
Zhang, Yanmin39447b32010-04-19 13:32:41 +08006054 .misc = PERF_RECORD_MISC_USER,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006055 /* .size */
6056 },
6057 /* .pid */
6058 /* .tid */
6059 .start = vma->vm_start,
6060 .len = vma->vm_end - vma->vm_start,
Peter Zijlstra3a0304e2010-02-26 10:33:41 +01006061 .pgoff = (u64)vma->vm_pgoff << PAGE_SHIFT,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006062 },
Stephane Eranian13d7a242013-08-21 12:10:24 +02006063 /* .maj (attr_mmap2 only) */
6064 /* .min (attr_mmap2 only) */
6065 /* .ino (attr_mmap2 only) */
6066 /* .ino_generation (attr_mmap2 only) */
Peter Zijlstraf972eb62014-05-19 15:13:47 -04006067 /* .prot (attr_mmap2 only) */
6068 /* .flags (attr_mmap2 only) */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006069 };
6070
6071 perf_event_mmap_event(&mmap_event);
6072}
6073
Alexander Shishkin68db7e92015-01-14 14:18:15 +02006074void perf_event_aux_event(struct perf_event *event, unsigned long head,
6075 unsigned long size, u64 flags)
6076{
6077 struct perf_output_handle handle;
6078 struct perf_sample_data sample;
6079 struct perf_aux_event {
6080 struct perf_event_header header;
6081 u64 offset;
6082 u64 size;
6083 u64 flags;
6084 } rec = {
6085 .header = {
6086 .type = PERF_RECORD_AUX,
6087 .misc = 0,
6088 .size = sizeof(rec),
6089 },
6090 .offset = head,
6091 .size = size,
6092 .flags = flags,
6093 };
6094 int ret;
6095
6096 perf_event_header__init_id(&rec.header, &sample, event);
6097 ret = perf_output_begin(&handle, event, rec.header.size);
6098
6099 if (ret)
6100 return;
6101
6102 perf_output_put(&handle, rec);
6103 perf_event__output_id_sample(event, &handle, &sample);
6104
6105 perf_output_end(&handle);
6106}
6107
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006108/*
Kan Liangf38b0db2015-05-10 15:13:14 -04006109 * Lost/dropped samples logging
6110 */
6111void perf_log_lost_samples(struct perf_event *event, u64 lost)
6112{
6113 struct perf_output_handle handle;
6114 struct perf_sample_data sample;
6115 int ret;
6116
6117 struct {
6118 struct perf_event_header header;
6119 u64 lost;
6120 } lost_samples_event = {
6121 .header = {
6122 .type = PERF_RECORD_LOST_SAMPLES,
6123 .misc = 0,
6124 .size = sizeof(lost_samples_event),
6125 },
6126 .lost = lost,
6127 };
6128
6129 perf_event_header__init_id(&lost_samples_event.header, &sample, event);
6130
6131 ret = perf_output_begin(&handle, event,
6132 lost_samples_event.header.size);
6133 if (ret)
6134 return;
6135
6136 perf_output_put(&handle, lost_samples_event);
6137 perf_event__output_id_sample(event, &handle, &sample);
6138 perf_output_end(&handle);
6139}
6140
6141/*
Adrian Hunter45ac1402015-07-21 12:44:02 +03006142 * context_switch tracking
6143 */
6144
6145struct perf_switch_event {
6146 struct task_struct *task;
6147 struct task_struct *next_prev;
6148
6149 struct {
6150 struct perf_event_header header;
6151 u32 next_prev_pid;
6152 u32 next_prev_tid;
6153 } event_id;
6154};
6155
6156static int perf_event_switch_match(struct perf_event *event)
6157{
6158 return event->attr.context_switch;
6159}
6160
6161static void perf_event_switch_output(struct perf_event *event, void *data)
6162{
6163 struct perf_switch_event *se = data;
6164 struct perf_output_handle handle;
6165 struct perf_sample_data sample;
6166 int ret;
6167
6168 if (!perf_event_switch_match(event))
6169 return;
6170
6171 /* Only CPU-wide events are allowed to see next/prev pid/tid */
6172 if (event->ctx->task) {
6173 se->event_id.header.type = PERF_RECORD_SWITCH;
6174 se->event_id.header.size = sizeof(se->event_id.header);
6175 } else {
6176 se->event_id.header.type = PERF_RECORD_SWITCH_CPU_WIDE;
6177 se->event_id.header.size = sizeof(se->event_id);
6178 se->event_id.next_prev_pid =
6179 perf_event_pid(event, se->next_prev);
6180 se->event_id.next_prev_tid =
6181 perf_event_tid(event, se->next_prev);
6182 }
6183
6184 perf_event_header__init_id(&se->event_id.header, &sample, event);
6185
6186 ret = perf_output_begin(&handle, event, se->event_id.header.size);
6187 if (ret)
6188 return;
6189
6190 if (event->ctx->task)
6191 perf_output_put(&handle, se->event_id.header);
6192 else
6193 perf_output_put(&handle, se->event_id);
6194
6195 perf_event__output_id_sample(event, &handle, &sample);
6196
6197 perf_output_end(&handle);
6198}
6199
6200static void perf_event_switch(struct task_struct *task,
6201 struct task_struct *next_prev, bool sched_in)
6202{
6203 struct perf_switch_event switch_event;
6204
6205 /* N.B. caller checks nr_switch_events != 0 */
6206
6207 switch_event = (struct perf_switch_event){
6208 .task = task,
6209 .next_prev = next_prev,
6210 .event_id = {
6211 .header = {
6212 /* .type */
6213 .misc = sched_in ? 0 : PERF_RECORD_MISC_SWITCH_OUT,
6214 /* .size */
6215 },
6216 /* .next_prev_pid */
6217 /* .next_prev_tid */
6218 },
6219 };
6220
6221 perf_event_aux(perf_event_switch_output,
6222 &switch_event,
6223 NULL);
6224}
6225
6226/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006227 * IRQ throttle logging
6228 */
6229
6230static void perf_log_throttle(struct perf_event *event, int enable)
6231{
6232 struct perf_output_handle handle;
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006233 struct perf_sample_data sample;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006234 int ret;
6235
6236 struct {
6237 struct perf_event_header header;
6238 u64 time;
6239 u64 id;
6240 u64 stream_id;
6241 } throttle_event = {
6242 .header = {
6243 .type = PERF_RECORD_THROTTLE,
6244 .misc = 0,
6245 .size = sizeof(throttle_event),
6246 },
Peter Zijlstra34f43922015-02-20 14:05:38 +01006247 .time = perf_event_clock(event),
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006248 .id = primary_event_id(event),
6249 .stream_id = event->id,
6250 };
6251
6252 if (enable)
6253 throttle_event.header.type = PERF_RECORD_UNTHROTTLE;
6254
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006255 perf_event_header__init_id(&throttle_event.header, &sample, event);
6256
6257 ret = perf_output_begin(&handle, event,
Peter Zijlstraa7ac67e2011-06-27 16:47:16 +02006258 throttle_event.header.size);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006259 if (ret)
6260 return;
6261
6262 perf_output_put(&handle, throttle_event);
Arnaldo Carvalho de Meloc980d102010-12-04 23:02:20 -02006263 perf_event__output_id_sample(event, &handle, &sample);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006264 perf_output_end(&handle);
6265}
6266
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006267static void perf_log_itrace_start(struct perf_event *event)
6268{
6269 struct perf_output_handle handle;
6270 struct perf_sample_data sample;
6271 struct perf_aux_event {
6272 struct perf_event_header header;
6273 u32 pid;
6274 u32 tid;
6275 } rec;
6276 int ret;
6277
6278 if (event->parent)
6279 event = event->parent;
6280
6281 if (!(event->pmu->capabilities & PERF_PMU_CAP_ITRACE) ||
6282 event->hw.itrace_started)
6283 return;
6284
Alexander Shishkinec0d7722015-01-14 14:18:23 +02006285 rec.header.type = PERF_RECORD_ITRACE_START;
6286 rec.header.misc = 0;
6287 rec.header.size = sizeof(rec);
6288 rec.pid = perf_event_pid(event, current);
6289 rec.tid = perf_event_tid(event, current);
6290
6291 perf_event_header__init_id(&rec.header, &sample, event);
6292 ret = perf_output_begin(&handle, event, rec.header.size);
6293
6294 if (ret)
6295 return;
6296
6297 perf_output_put(&handle, rec);
6298 perf_event__output_id_sample(event, &handle, &sample);
6299
6300 perf_output_end(&handle);
6301}
6302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006303/*
6304 * Generic event overflow handling, sampling.
6305 */
6306
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006307static int __perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006308 int throttle, struct perf_sample_data *data,
6309 struct pt_regs *regs)
6310{
6311 int events = atomic_read(&event->event_limit);
6312 struct hw_perf_event *hwc = &event->hw;
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006313 u64 seq;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006314 int ret = 0;
6315
Peter Zijlstra96398822010-11-24 18:55:29 +01006316 /*
6317 * Non-sampling counters might still use the PMI to fold short
6318 * hardware counters, ignore those.
6319 */
6320 if (unlikely(!is_sampling_event(event)))
6321 return 0;
6322
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006323 seq = __this_cpu_read(perf_throttled_seq);
6324 if (seq != hwc->interrupts_seq) {
6325 hwc->interrupts_seq = seq;
6326 hwc->interrupts = 1;
6327 } else {
6328 hwc->interrupts++;
6329 if (unlikely(throttle
6330 && hwc->interrupts >= max_samples_per_tick)) {
6331 __this_cpu_inc(perf_throttled_count);
Peter Zijlstra163ec432011-02-16 11:22:34 +01006332 hwc->interrupts = MAX_INTERRUPTS;
6333 perf_log_throttle(event, 0);
Frederic Weisbeckerd84153d2013-07-23 02:31:05 +02006334 tick_nohz_full_kick();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006335 ret = 1;
6336 }
Stephane Eraniane050e3f2012-01-26 17:03:19 +01006337 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006338
6339 if (event->attr.freq) {
6340 u64 now = perf_clock();
Peter Zijlstraabd50712010-01-26 18:50:16 +01006341 s64 delta = now - hwc->freq_time_stamp;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006342
Peter Zijlstraabd50712010-01-26 18:50:16 +01006343 hwc->freq_time_stamp = now;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006344
Peter Zijlstraabd50712010-01-26 18:50:16 +01006345 if (delta > 0 && delta < 2*TICK_NSEC)
Stephane Eranianf39d47f2012-02-07 14:39:57 +01006346 perf_adjust_period(event, delta, hwc->last_period, true);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006347 }
6348
6349 /*
6350 * XXX event_limit might not quite work as expected on inherited
6351 * events
6352 */
6353
6354 event->pending_kill = POLL_IN;
6355 if (events && atomic_dec_and_test(&event->event_limit)) {
6356 ret = 1;
6357 event->pending_kill = POLL_HUP;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006358 event->pending_disable = 1;
6359 irq_work_queue(&event->pending);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006360 }
6361
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006362 if (event->overflow_handler)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006363 event->overflow_handler(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006364 else
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006365 perf_event_output(event, data, regs);
Peter Zijlstra453f19e2009-11-20 22:19:43 +01006366
Peter Zijlstrafed66e2cd2015-06-11 10:32:01 +02006367 if (*perf_event_fasync(event) && event->pending_kill) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006368 event->pending_wakeup = 1;
6369 irq_work_queue(&event->pending);
Peter Zijlstraf506b3d2011-05-26 17:02:53 +02006370 }
6371
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006372 return ret;
6373}
6374
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006375int perf_event_overflow(struct perf_event *event,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006376 struct perf_sample_data *data,
6377 struct pt_regs *regs)
6378{
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006379 return __perf_event_overflow(event, 1, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006380}
6381
6382/*
6383 * Generic software event infrastructure
6384 */
6385
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006386struct swevent_htable {
6387 struct swevent_hlist *swevent_hlist;
6388 struct mutex hlist_mutex;
6389 int hlist_refcount;
6390
6391 /* Recursion avoidance in each contexts */
6392 int recursion[PERF_NR_CONTEXTS];
6393};
6394
6395static DEFINE_PER_CPU(struct swevent_htable, swevent_htable);
6396
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006397/*
6398 * We directly increment event->count and keep a second value in
6399 * event->hw.period_left to count intervals. This period event
6400 * is kept in the range [-sample_period, 0] so that we can use the
6401 * sign as trigger.
6402 */
6403
Jiri Olsaab573842013-05-01 17:25:44 +02006404u64 perf_swevent_set_period(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006405{
6406 struct hw_perf_event *hwc = &event->hw;
6407 u64 period = hwc->last_period;
6408 u64 nr, offset;
6409 s64 old, val;
6410
6411 hwc->last_period = hwc->sample_period;
6412
6413again:
Peter Zijlstrae7850592010-05-21 14:43:08 +02006414 old = val = local64_read(&hwc->period_left);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006415 if (val < 0)
6416 return 0;
6417
6418 nr = div64_u64(period + val, period);
6419 offset = nr * period;
6420 val -= offset;
Peter Zijlstrae7850592010-05-21 14:43:08 +02006421 if (local64_cmpxchg(&hwc->period_left, old, val) != old)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006422 goto again;
6423
6424 return nr;
6425}
6426
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006427static void perf_swevent_overflow(struct perf_event *event, u64 overflow,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006428 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006429 struct pt_regs *regs)
6430{
6431 struct hw_perf_event *hwc = &event->hw;
6432 int throttle = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006433
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006434 if (!overflow)
6435 overflow = perf_swevent_set_period(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006436
6437 if (hwc->interrupts == MAX_INTERRUPTS)
6438 return;
6439
6440 for (; overflow; overflow--) {
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006441 if (__perf_event_overflow(event, throttle,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006442 data, regs)) {
6443 /*
6444 * We inhibit the overflow from happening when
6445 * hwc->interrupts == MAX_INTERRUPTS.
6446 */
6447 break;
6448 }
6449 throttle = 1;
6450 }
6451}
6452
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006453static void perf_swevent_event(struct perf_event *event, u64 nr,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006454 struct perf_sample_data *data,
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006455 struct pt_regs *regs)
6456{
6457 struct hw_perf_event *hwc = &event->hw;
6458
Peter Zijlstrae7850592010-05-21 14:43:08 +02006459 local64_add(nr, &event->count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006460
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006461 if (!regs)
6462 return;
6463
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006464 if (!is_sampling_event(event))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006465 return;
6466
Andrew Vagin5d81e5c2011-11-07 15:54:12 +03006467 if ((event->attr.sample_type & PERF_SAMPLE_PERIOD) && !event->attr.freq) {
6468 data->period = nr;
6469 return perf_swevent_overflow(event, 1, data, regs);
6470 } else
6471 data->period = event->hw.last_period;
6472
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006473 if (nr == 1 && hwc->sample_period == 1 && !event->attr.freq)
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006474 return perf_swevent_overflow(event, 1, data, regs);
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006475
Peter Zijlstrae7850592010-05-21 14:43:08 +02006476 if (local64_add_negative(nr, &hwc->period_left))
Peter Zijlstra0cff7842009-11-20 22:19:44 +01006477 return;
6478
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006479 perf_swevent_overflow(event, 0, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006480}
6481
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006482static int perf_exclude_event(struct perf_event *event,
6483 struct pt_regs *regs)
6484{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006485 if (event->hw.state & PERF_HES_STOPPED)
Frederic Weisbecker91b2f482011-03-07 21:27:08 +01006486 return 1;
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006487
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006488 if (regs) {
6489 if (event->attr.exclude_user && user_mode(regs))
6490 return 1;
6491
6492 if (event->attr.exclude_kernel && !user_mode(regs))
6493 return 1;
6494 }
6495
6496 return 0;
6497}
6498
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006499static int perf_swevent_match(struct perf_event *event,
6500 enum perf_type_id type,
Li Zefan6fb29152009-10-15 11:21:42 +08006501 u32 event_id,
6502 struct perf_sample_data *data,
6503 struct pt_regs *regs)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006504{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006505 if (event->attr.type != type)
6506 return 0;
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006507
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006508 if (event->attr.config != event_id)
6509 return 0;
6510
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01006511 if (perf_exclude_event(event, regs))
6512 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006513
6514 return 1;
6515}
6516
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006517static inline u64 swevent_hash(u64 type, u32 event_id)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006518{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006519 u64 val = event_id | (type << 32);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006520
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006521 return hash_64(val, SWEVENT_HLIST_BITS);
6522}
6523
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006524static inline struct hlist_head *
6525__find_swevent_head(struct swevent_hlist *hlist, u64 type, u32 event_id)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006526{
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006527 u64 hash = swevent_hash(type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006528
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006529 return &hlist->heads[hash];
6530}
6531
6532/* For the read side: events when they trigger */
6533static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006534find_swevent_head_rcu(struct swevent_htable *swhash, u64 type, u32 event_id)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006535{
6536 struct swevent_hlist *hlist;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006537
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006538 hlist = rcu_dereference(swhash->swevent_hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006539 if (!hlist)
6540 return NULL;
6541
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006542 return __find_swevent_head(hlist, type, event_id);
6543}
6544
6545/* For the event head insertion and removal in the hlist */
6546static inline struct hlist_head *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006547find_swevent_head(struct swevent_htable *swhash, struct perf_event *event)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006548{
6549 struct swevent_hlist *hlist;
6550 u32 event_id = event->attr.config;
6551 u64 type = event->attr.type;
6552
6553 /*
6554 * Event scheduling is always serialized against hlist allocation
6555 * and release. Which makes the protected version suitable here.
6556 * The context lock guarantees that.
6557 */
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006558 hlist = rcu_dereference_protected(swhash->swevent_hlist,
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006559 lockdep_is_held(&event->ctx->lock));
6560 if (!hlist)
6561 return NULL;
6562
6563 return __find_swevent_head(hlist, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006564}
6565
6566static void do_perf_sw_event(enum perf_type_id type, u32 event_id,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006567 u64 nr,
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006568 struct perf_sample_data *data,
6569 struct pt_regs *regs)
6570{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006571 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006572 struct perf_event *event;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006573 struct hlist_head *head;
6574
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006575 rcu_read_lock();
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006576 head = find_swevent_head_rcu(swhash, type, event_id);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006577 if (!head)
6578 goto end;
6579
Sasha Levinb67bfe02013-02-27 17:06:00 -08006580 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Li Zefan6fb29152009-10-15 11:21:42 +08006581 if (perf_swevent_match(event, type, event_id, data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006582 perf_swevent_event(event, nr, data, regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006583 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006584end:
6585 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006586}
6587
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006588DEFINE_PER_CPU(struct pt_regs, __perf_regs[4]);
6589
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006590int perf_swevent_get_recursion_context(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006591{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006592 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006593
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006594 return get_recursion_context(swhash->recursion);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006595}
Ingo Molnar645e8cc2009-11-22 12:20:19 +01006596EXPORT_SYMBOL_GPL(perf_swevent_get_recursion_context);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006597
Jesper Juhlfa9f90b2010-11-28 21:39:34 +01006598inline void perf_swevent_put_recursion_context(int rctx)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006599{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006600 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02006601
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006602 put_recursion_context(swhash->recursion, rctx);
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01006603}
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006604
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006605void ___perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006606{
Ingo Molnara4234bf2009-11-23 10:57:59 +01006607 struct perf_sample_data data;
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006608
6609 if (WARN_ON_ONCE(!regs))
6610 return;
6611
6612 perf_sample_data_init(&data, addr, 0);
6613 do_perf_sw_event(PERF_TYPE_SOFTWARE, event_id, nr, &data, regs);
6614}
6615
6616void __perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
6617{
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006618 int rctx;
6619
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006620 preempt_disable_notrace();
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006621 rctx = perf_swevent_get_recursion_context();
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006622 if (unlikely(rctx < 0))
6623 goto fail;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006624
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006625 ___perf_sw_event(event_id, nr, regs, addr);
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01006626
6627 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01006628fail:
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006629 preempt_enable_notrace();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006630}
6631
6632static void perf_swevent_read(struct perf_event *event)
6633{
6634}
6635
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006636static int perf_swevent_add(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006637{
Christoph Lameter4a32fea2014-08-17 12:30:27 -05006638 struct swevent_htable *swhash = this_cpu_ptr(&swevent_htable);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006639 struct hw_perf_event *hwc = &event->hw;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006640 struct hlist_head *head;
6641
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01006642 if (is_sampling_event(event)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006643 hwc->last_period = hwc->sample_period;
6644 perf_swevent_set_period(event);
6645 }
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006646
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006647 hwc->state = !(flags & PERF_EF_START);
6648
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006649 head = find_swevent_head(swhash, event);
Peter Zijlstra12ca6ad2015-12-15 13:49:05 +01006650 if (WARN_ON_ONCE(!head))
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006651 return -EINVAL;
6652
6653 hlist_add_head_rcu(&event->hlist_entry, head);
Shaohua Li6a694a62015-02-05 15:55:32 -08006654 perf_event_update_userpage(event);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006655
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006656 return 0;
6657}
6658
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006659static void perf_swevent_del(struct perf_event *event, int flags)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006660{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006661 hlist_del_rcu(&event->hlist_entry);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006662}
6663
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006664static void perf_swevent_start(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006665{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006666 event->hw.state = 0;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006667}
6668
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006669static void perf_swevent_stop(struct perf_event *event, int flags)
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006670{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006671 event->hw.state = PERF_HES_STOPPED;
Peter Zijlstrac6df8d52010-06-03 11:21:20 +02006672}
6673
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006674/* Deref the hlist from the update side */
6675static inline struct swevent_hlist *
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006676swevent_hlist_deref(struct swevent_htable *swhash)
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006677{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006678 return rcu_dereference_protected(swhash->swevent_hlist,
6679 lockdep_is_held(&swhash->hlist_mutex));
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006680}
6681
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006682static void swevent_hlist_release(struct swevent_htable *swhash)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006683{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006684 struct swevent_hlist *hlist = swevent_hlist_deref(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006685
Frederic Weisbecker49f135e2010-05-20 10:17:46 +02006686 if (!hlist)
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006687 return;
6688
Andreea-Cristina Bernat70691d42014-08-22 16:26:05 +03006689 RCU_INIT_POINTER(swhash->swevent_hlist, NULL);
Lai Jiangshanfa4bbc42011-03-18 12:08:29 +08006690 kfree_rcu(hlist, rcu_head);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006691}
6692
6693static void swevent_hlist_put_cpu(struct perf_event *event, int cpu)
6694{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006695 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006696
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006697 mutex_lock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006698
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006699 if (!--swhash->hlist_refcount)
6700 swevent_hlist_release(swhash);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006701
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006702 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006703}
6704
6705static void swevent_hlist_put(struct perf_event *event)
6706{
6707 int cpu;
6708
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006709 for_each_possible_cpu(cpu)
6710 swevent_hlist_put_cpu(event, cpu);
6711}
6712
6713static int swevent_hlist_get_cpu(struct perf_event *event, int cpu)
6714{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006715 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006716 int err = 0;
6717
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006718 mutex_lock(&swhash->hlist_mutex);
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006719 if (!swevent_hlist_deref(swhash) && cpu_online(cpu)) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006720 struct swevent_hlist *hlist;
6721
6722 hlist = kzalloc(sizeof(*hlist), GFP_KERNEL);
6723 if (!hlist) {
6724 err = -ENOMEM;
6725 goto exit;
6726 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006727 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006728 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006729 swhash->hlist_refcount++;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006730exit:
Peter Zijlstrab28ab832010-09-06 14:48:15 +02006731 mutex_unlock(&swhash->hlist_mutex);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006732
6733 return err;
6734}
6735
6736static int swevent_hlist_get(struct perf_event *event)
6737{
6738 int err;
6739 int cpu, failed_cpu;
6740
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006741 get_online_cpus();
6742 for_each_possible_cpu(cpu) {
6743 err = swevent_hlist_get_cpu(event, cpu);
6744 if (err) {
6745 failed_cpu = cpu;
6746 goto fail;
6747 }
6748 }
6749 put_online_cpus();
6750
6751 return 0;
Peter Zijlstra9ed60602010-06-11 17:36:35 +02006752fail:
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006753 for_each_possible_cpu(cpu) {
6754 if (cpu == failed_cpu)
6755 break;
6756 swevent_hlist_put_cpu(event, cpu);
6757 }
6758
6759 put_online_cpus();
6760 return err;
6761}
6762
Ingo Molnarc5905af2012-02-24 08:31:31 +01006763struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006764
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006765static void sw_perf_event_destroy(struct perf_event *event)
6766{
6767 u64 event_id = event->attr.config;
6768
6769 WARN_ON(event->parent);
6770
Ingo Molnarc5905af2012-02-24 08:31:31 +01006771 static_key_slow_dec(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006772 swevent_hlist_put(event);
6773}
6774
6775static int perf_swevent_init(struct perf_event *event)
6776{
Tommi Rantala8176cce2013-04-13 22:49:14 +03006777 u64 event_id = event->attr.config;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006778
6779 if (event->attr.type != PERF_TYPE_SOFTWARE)
6780 return -ENOENT;
6781
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006782 /*
6783 * no branch sampling for software events
6784 */
6785 if (has_branch_stack(event))
6786 return -EOPNOTSUPP;
6787
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006788 switch (event_id) {
6789 case PERF_COUNT_SW_CPU_CLOCK:
6790 case PERF_COUNT_SW_TASK_CLOCK:
6791 return -ENOENT;
6792
6793 default:
6794 break;
6795 }
6796
Dan Carpenterce677832010-10-24 21:50:42 +02006797 if (event_id >= PERF_COUNT_SW_MAX)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006798 return -ENOENT;
6799
6800 if (!event->parent) {
6801 int err;
6802
6803 err = swevent_hlist_get(event);
6804 if (err)
6805 return err;
6806
Ingo Molnarc5905af2012-02-24 08:31:31 +01006807 static_key_slow_inc(&perf_swevent_enabled[event_id]);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006808 event->destroy = sw_perf_event_destroy;
6809 }
6810
6811 return 0;
6812}
6813
6814static struct pmu perf_swevent = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006815 .task_ctx_nr = perf_sw_context,
6816
Peter Zijlstra34f43922015-02-20 14:05:38 +01006817 .capabilities = PERF_PMU_CAP_NO_NMI,
6818
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006819 .event_init = perf_swevent_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006820 .add = perf_swevent_add,
6821 .del = perf_swevent_del,
6822 .start = perf_swevent_start,
6823 .stop = perf_swevent_stop,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006824 .read = perf_swevent_read,
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006825};
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006826
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006827#ifdef CONFIG_EVENT_TRACING
6828
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006829static int perf_tp_filter_match(struct perf_event *event,
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006830 struct perf_sample_data *data)
6831{
6832 void *record = data->raw->data;
6833
Peter Zijlstrab71b4372015-11-02 10:50:51 +01006834 /* only top level events have filters set */
6835 if (event->parent)
6836 event = event->parent;
6837
Frederic Weisbecker95476b62010-04-14 23:42:18 +02006838 if (likely(!event->filter) || filter_match_preds(event->filter, record))
6839 return 1;
6840 return 0;
6841}
6842
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006843static int perf_tp_event_match(struct perf_event *event,
6844 struct perf_sample_data *data,
6845 struct pt_regs *regs)
6846{
Frederic Weisbeckera0f7d0f2011-03-07 21:27:09 +01006847 if (event->hw.state & PERF_HES_STOPPED)
6848 return 0;
Peter Zijlstra580d6072010-05-20 20:54:31 +02006849 /*
6850 * All tracepoints are from kernel-space.
6851 */
6852 if (event->attr.exclude_kernel)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006853 return 0;
6854
6855 if (!perf_tp_filter_match(event, data))
6856 return 0;
6857
6858 return 1;
6859}
6860
6861void perf_tp_event(u64 addr, u64 count, void *record, int entry_size,
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006862 struct pt_regs *regs, struct hlist_head *head, int rctx,
6863 struct task_struct *task)
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006864{
6865 struct perf_sample_data data;
6866 struct perf_event *event;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006867
6868 struct perf_raw_record raw = {
6869 .size = entry_size,
6870 .data = record,
6871 };
6872
Robert Richterfd0d0002012-04-02 20:19:08 +02006873 perf_sample_data_init(&data, addr, 0);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006874 data.raw = &raw;
6875
Sasha Levinb67bfe02013-02-27 17:06:00 -08006876 hlist_for_each_entry_rcu(event, head, hlist_entry) {
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006877 if (perf_tp_event_match(event, &data, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02006878 perf_swevent_event(event, count, &data, regs);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006879 }
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006880
Andrew Vagine6dab5f2012-07-11 18:14:58 +04006881 /*
6882 * If we got specified a target task, also iterate its context and
6883 * deliver this event there too.
6884 */
6885 if (task && task != current) {
6886 struct perf_event_context *ctx;
6887 struct trace_entry *entry = record;
6888
6889 rcu_read_lock();
6890 ctx = rcu_dereference(task->perf_event_ctxp[perf_sw_context]);
6891 if (!ctx)
6892 goto unlock;
6893
6894 list_for_each_entry_rcu(event, &ctx->event_list, event_entry) {
6895 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6896 continue;
6897 if (event->attr.config != entry->type)
6898 continue;
6899 if (perf_tp_event_match(event, &data, regs))
6900 perf_swevent_event(event, count, &data, regs);
6901 }
6902unlock:
6903 rcu_read_unlock();
6904 }
6905
Peter Zijlstraecc55f82010-05-21 15:11:34 +02006906 perf_swevent_put_recursion_context(rctx);
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006907}
6908EXPORT_SYMBOL_GPL(perf_tp_event);
6909
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006910static void tp_perf_event_destroy(struct perf_event *event)
6911{
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006912 perf_trace_destroy(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006913}
6914
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006915static int perf_tp_event_init(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006916{
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02006917 int err;
6918
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006919 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6920 return -ENOENT;
6921
Stephane Eranian2481c5f2012-02-09 23:20:59 +01006922 /*
6923 * no branch sampling for tracepoint events
6924 */
6925 if (has_branch_stack(event))
6926 return -EOPNOTSUPP;
6927
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02006928 err = perf_trace_init(event);
6929 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006930 return err;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006931
6932 event->destroy = tp_perf_event_destroy;
6933
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006934 return 0;
6935}
6936
6937static struct pmu perf_tracepoint = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02006938 .task_ctx_nr = perf_sw_context,
6939
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006940 .event_init = perf_tp_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02006941 .add = perf_trace_add,
6942 .del = perf_trace_del,
6943 .start = perf_swevent_start,
6944 .stop = perf_swevent_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006945 .read = perf_swevent_read,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02006946};
6947
6948static inline void perf_tp_register(void)
6949{
Peter Zijlstra2e80a822010-11-17 23:17:36 +01006950 perf_pmu_register(&perf_tracepoint, "tracepoint", PERF_TYPE_TRACEPOINT);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006951}
Li Zefan6fb29152009-10-15 11:21:42 +08006952
6953static int perf_event_set_filter(struct perf_event *event, void __user *arg)
6954{
6955 char *filter_str;
6956 int ret;
6957
6958 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6959 return -EINVAL;
6960
6961 filter_str = strndup_user(arg, PAGE_SIZE);
6962 if (IS_ERR(filter_str))
6963 return PTR_ERR(filter_str);
6964
6965 ret = ftrace_profile_set_filter(event, event->attr.config, filter_str);
6966
6967 kfree(filter_str);
6968 return ret;
6969}
6970
6971static void perf_event_free_filter(struct perf_event *event)
6972{
6973 ftrace_profile_free_filter(event);
6974}
6975
Alexei Starovoitov25415172015-03-25 12:49:20 -07006976static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
6977{
6978 struct bpf_prog *prog;
6979
6980 if (event->attr.type != PERF_TYPE_TRACEPOINT)
6981 return -EINVAL;
6982
6983 if (event->tp_event->prog)
6984 return -EEXIST;
6985
Wang Nan04a22fa2015-07-01 02:13:50 +00006986 if (!(event->tp_event->flags & TRACE_EVENT_FL_UKPROBE))
6987 /* bpf programs can only be attached to u/kprobes */
Alexei Starovoitov25415172015-03-25 12:49:20 -07006988 return -EINVAL;
6989
6990 prog = bpf_prog_get(prog_fd);
6991 if (IS_ERR(prog))
6992 return PTR_ERR(prog);
6993
Linus Torvalds6c373ca2015-04-15 09:00:47 -07006994 if (prog->type != BPF_PROG_TYPE_KPROBE) {
Alexei Starovoitov25415172015-03-25 12:49:20 -07006995 /* valid fd, but invalid bpf program type */
6996 bpf_prog_put(prog);
6997 return -EINVAL;
6998 }
6999
7000 event->tp_event->prog = prog;
7001
7002 return 0;
7003}
7004
7005static void perf_event_free_bpf_prog(struct perf_event *event)
7006{
7007 struct bpf_prog *prog;
7008
7009 if (!event->tp_event)
7010 return;
7011
7012 prog = event->tp_event->prog;
7013 if (prog) {
7014 event->tp_event->prog = NULL;
7015 bpf_prog_put(prog);
7016 }
7017}
7018
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007019#else
Li Zefan6fb29152009-10-15 11:21:42 +08007020
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007021static inline void perf_tp_register(void)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007022{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007023}
Li Zefan6fb29152009-10-15 11:21:42 +08007024
7025static int perf_event_set_filter(struct perf_event *event, void __user *arg)
7026{
7027 return -ENOENT;
7028}
7029
7030static void perf_event_free_filter(struct perf_event *event)
7031{
7032}
7033
Alexei Starovoitov25415172015-03-25 12:49:20 -07007034static int perf_event_set_bpf_prog(struct perf_event *event, u32 prog_fd)
7035{
7036 return -ENOENT;
7037}
7038
7039static void perf_event_free_bpf_prog(struct perf_event *event)
7040{
7041}
Li Zefan07b139c2009-12-21 14:27:35 +08007042#endif /* CONFIG_EVENT_TRACING */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007043
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007044#ifdef CONFIG_HAVE_HW_BREAKPOINT
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007045void perf_bp_event(struct perf_event *bp, void *data)
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007046{
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007047 struct perf_sample_data sample;
7048 struct pt_regs *regs = data;
7049
Robert Richterfd0d0002012-04-02 20:19:08 +02007050 perf_sample_data_init(&sample, bp->attr.bp_addr, 0);
Frederic Weisbeckerf5ffe022009-11-23 15:42:34 +01007051
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007052 if (!bp->hw.state && !perf_exclude_event(bp, regs))
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02007053 perf_swevent_event(bp, 1, &sample, regs);
Frederic Weisbecker24f1e32c2009-09-09 19:22:48 +02007054}
7055#endif
7056
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007057/*
7058 * hrtimer based swevent callback
7059 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007060
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007061static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007062{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007063 enum hrtimer_restart ret = HRTIMER_RESTART;
7064 struct perf_sample_data data;
7065 struct pt_regs *regs;
7066 struct perf_event *event;
7067 u64 period;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007068
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007069 event = container_of(hrtimer, struct perf_event, hw.hrtimer);
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007070
7071 if (event->state != PERF_EVENT_STATE_ACTIVE)
7072 return HRTIMER_NORESTART;
7073
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007074 event->pmu->read(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007075
Robert Richterfd0d0002012-04-02 20:19:08 +02007076 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007077 regs = get_irq_regs();
7078
7079 if (regs && !perf_exclude_event(event, regs)) {
Paul E. McKenney77aeeeb2011-11-10 16:02:52 -08007080 if (!(event->attr.exclude_idle && is_idle_task(current)))
Robert Richter33b07b82012-04-05 18:24:43 +02007081 if (__perf_event_overflow(event, 1, &data, regs))
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007082 ret = HRTIMER_NORESTART;
7083 }
7084
7085 period = max_t(u64, 10000, event->hw.sample_period);
7086 hrtimer_forward_now(hrtimer, ns_to_ktime(period));
7087
7088 return ret;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007089}
7090
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007091static void perf_swevent_start_hrtimer(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007092{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007093 struct hw_perf_event *hwc = &event->hw;
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007094 s64 period;
7095
7096 if (!is_sampling_event(event))
7097 return;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007098
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007099 period = local64_read(&hwc->period_left);
7100 if (period) {
7101 if (period < 0)
7102 period = 10000;
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007103
Franck Bui-Huu5d508e82010-11-23 16:21:45 +01007104 local64_set(&hwc->period_left, 0);
7105 } else {
7106 period = max_t(u64, 10000, hwc->sample_period);
7107 }
Thomas Gleixner3497d202015-04-14 21:09:03 +00007108 hrtimer_start(&hwc->hrtimer, ns_to_ktime(period),
7109 HRTIMER_MODE_REL_PINNED);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007110}
7111
7112static void perf_swevent_cancel_hrtimer(struct perf_event *event)
7113{
7114 struct hw_perf_event *hwc = &event->hw;
7115
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +01007116 if (is_sampling_event(event)) {
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007117 ktime_t remaining = hrtimer_get_remaining(&hwc->hrtimer);
Peter Zijlstrafa407f32010-06-24 12:35:12 +02007118 local64_set(&hwc->period_left, ktime_to_ns(remaining));
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007119
7120 hrtimer_cancel(&hwc->hrtimer);
7121 }
7122}
7123
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007124static void perf_swevent_init_hrtimer(struct perf_event *event)
7125{
7126 struct hw_perf_event *hwc = &event->hw;
7127
7128 if (!is_sampling_event(event))
7129 return;
7130
7131 hrtimer_init(&hwc->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
7132 hwc->hrtimer.function = perf_swevent_hrtimer;
7133
7134 /*
7135 * Since hrtimers have a fixed rate, we can do a static freq->period
7136 * mapping and avoid the whole period adjust feedback stuff.
7137 */
7138 if (event->attr.freq) {
7139 long freq = event->attr.sample_freq;
7140
7141 event->attr.sample_period = NSEC_PER_SEC / freq;
7142 hwc->sample_period = event->attr.sample_period;
7143 local64_set(&hwc->period_left, hwc->sample_period);
Namhyung Kim778141e2013-03-18 11:41:46 +09007144 hwc->last_period = hwc->sample_period;
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007145 event->attr.freq = 0;
7146 }
7147}
7148
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007149/*
7150 * Software event: cpu wall time clock
7151 */
7152
7153static void cpu_clock_event_update(struct perf_event *event)
7154{
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007155 s64 prev;
7156 u64 now;
7157
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007158 now = local_clock();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007159 prev = local64_xchg(&event->hw.prev_count, now);
7160 local64_add(now - prev, &event->count);
7161}
7162
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007163static void cpu_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007164{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007165 local64_set(&event->hw.prev_count, local_clock());
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007166 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007167}
7168
7169static void cpu_clock_event_stop(struct perf_event *event, int flags)
7170{
7171 perf_swevent_cancel_hrtimer(event);
7172 cpu_clock_event_update(event);
7173}
7174
7175static int cpu_clock_event_add(struct perf_event *event, int flags)
7176{
7177 if (flags & PERF_EF_START)
7178 cpu_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007179 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007180
7181 return 0;
7182}
7183
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007184static void cpu_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007185{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007186 cpu_clock_event_stop(event, flags);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007187}
7188
7189static void cpu_clock_event_read(struct perf_event *event)
7190{
7191 cpu_clock_event_update(event);
7192}
7193
7194static int cpu_clock_event_init(struct perf_event *event)
7195{
7196 if (event->attr.type != PERF_TYPE_SOFTWARE)
7197 return -ENOENT;
7198
7199 if (event->attr.config != PERF_COUNT_SW_CPU_CLOCK)
7200 return -ENOENT;
7201
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007202 /*
7203 * no branch sampling for software events
7204 */
7205 if (has_branch_stack(event))
7206 return -EOPNOTSUPP;
7207
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007208 perf_swevent_init_hrtimer(event);
7209
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007210 return 0;
7211}
7212
7213static struct pmu perf_cpu_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007214 .task_ctx_nr = perf_sw_context,
7215
Peter Zijlstra34f43922015-02-20 14:05:38 +01007216 .capabilities = PERF_PMU_CAP_NO_NMI,
7217
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007218 .event_init = cpu_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007219 .add = cpu_clock_event_add,
7220 .del = cpu_clock_event_del,
7221 .start = cpu_clock_event_start,
7222 .stop = cpu_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007223 .read = cpu_clock_event_read,
7224};
7225
7226/*
7227 * Software event: task time clock
7228 */
7229
7230static void task_clock_event_update(struct perf_event *event, u64 now)
7231{
7232 u64 prev;
7233 s64 delta;
7234
7235 prev = local64_xchg(&event->hw.prev_count, now);
7236 delta = now - prev;
7237 local64_add(delta, &event->count);
7238}
7239
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007240static void task_clock_event_start(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007241{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007242 local64_set(&event->hw.prev_count, event->ctx->time);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007243 perf_swevent_start_hrtimer(event);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007244}
7245
7246static void task_clock_event_stop(struct perf_event *event, int flags)
7247{
7248 perf_swevent_cancel_hrtimer(event);
7249 task_clock_event_update(event, event->ctx->time);
7250}
7251
7252static int task_clock_event_add(struct perf_event *event, int flags)
7253{
7254 if (flags & PERF_EF_START)
7255 task_clock_event_start(event, flags);
Shaohua Li6a694a62015-02-05 15:55:32 -08007256 perf_event_update_userpage(event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007257
7258 return 0;
7259}
7260
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007261static void task_clock_event_del(struct perf_event *event, int flags)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007262{
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007263 task_clock_event_stop(event, PERF_EF_UPDATE);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007264}
7265
7266static void task_clock_event_read(struct perf_event *event)
7267{
Peter Zijlstra768a06e2011-02-22 16:52:24 +01007268 u64 now = perf_clock();
7269 u64 delta = now - event->ctx->timestamp;
7270 u64 time = event->ctx->time + delta;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007271
7272 task_clock_event_update(event, time);
7273}
7274
7275static int task_clock_event_init(struct perf_event *event)
7276{
7277 if (event->attr.type != PERF_TYPE_SOFTWARE)
7278 return -ENOENT;
7279
7280 if (event->attr.config != PERF_COUNT_SW_TASK_CLOCK)
7281 return -ENOENT;
7282
Stephane Eranian2481c5f2012-02-09 23:20:59 +01007283 /*
7284 * no branch sampling for software events
7285 */
7286 if (has_branch_stack(event))
7287 return -EOPNOTSUPP;
7288
Peter Zijlstraba3dd362011-02-15 12:41:46 +01007289 perf_swevent_init_hrtimer(event);
7290
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007291 return 0;
7292}
7293
7294static struct pmu perf_task_clock = {
Peter Zijlstra89a1e182010-09-07 17:34:50 +02007295 .task_ctx_nr = perf_sw_context,
7296
Peter Zijlstra34f43922015-02-20 14:05:38 +01007297 .capabilities = PERF_PMU_CAP_NO_NMI,
7298
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007299 .event_init = task_clock_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02007300 .add = task_clock_event_add,
7301 .del = task_clock_event_del,
7302 .start = task_clock_event_start,
7303 .stop = task_clock_event_stop,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007304 .read = task_clock_event_read,
7305};
7306
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007307static void perf_pmu_nop_void(struct pmu *pmu)
7308{
7309}
7310
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007311static void perf_pmu_nop_txn(struct pmu *pmu, unsigned int flags)
7312{
7313}
7314
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007315static int perf_pmu_nop_int(struct pmu *pmu)
7316{
7317 return 0;
7318}
7319
Geliang Tang18ab2cd2015-09-27 23:25:50 +08007320static DEFINE_PER_CPU(unsigned int, nop_txn_flags);
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007321
7322static void perf_pmu_start_txn(struct pmu *pmu, unsigned int flags)
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007323{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007324 __this_cpu_write(nop_txn_flags, flags);
7325
7326 if (flags & ~PERF_PMU_TXN_ADD)
7327 return;
7328
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007329 perf_pmu_disable(pmu);
7330}
7331
7332static int perf_pmu_commit_txn(struct pmu *pmu)
7333{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007334 unsigned int flags = __this_cpu_read(nop_txn_flags);
7335
7336 __this_cpu_write(nop_txn_flags, 0);
7337
7338 if (flags & ~PERF_PMU_TXN_ADD)
7339 return 0;
7340
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007341 perf_pmu_enable(pmu);
7342 return 0;
7343}
7344
7345static void perf_pmu_cancel_txn(struct pmu *pmu)
7346{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007347 unsigned int flags = __this_cpu_read(nop_txn_flags);
7348
7349 __this_cpu_write(nop_txn_flags, 0);
7350
7351 if (flags & ~PERF_PMU_TXN_ADD)
7352 return;
7353
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007354 perf_pmu_enable(pmu);
7355}
7356
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007357static int perf_event_idx_default(struct perf_event *event)
7358{
Peter Zijlstrac719f562014-10-21 11:10:21 +02007359 return 0;
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007360}
7361
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007362/*
7363 * Ensures all contexts with the same task_ctx_nr have the same
7364 * pmu_cpu_context too.
7365 */
Mark Rutland9e317042014-02-10 17:44:18 +00007366static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007367{
7368 struct pmu *pmu;
7369
7370 if (ctxn < 0)
7371 return NULL;
7372
7373 list_for_each_entry(pmu, &pmus, entry) {
7374 if (pmu->task_ctx_nr == ctxn)
7375 return pmu->pmu_cpu_context;
7376 }
7377
7378 return NULL;
7379}
7380
Peter Zijlstra51676952010-12-07 14:18:20 +01007381static void update_pmu_context(struct pmu *pmu, struct pmu *old_pmu)
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007382{
Peter Zijlstra51676952010-12-07 14:18:20 +01007383 int cpu;
7384
7385 for_each_possible_cpu(cpu) {
7386 struct perf_cpu_context *cpuctx;
7387
7388 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7389
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007390 if (cpuctx->unique_pmu == old_pmu)
7391 cpuctx->unique_pmu = pmu;
Peter Zijlstra51676952010-12-07 14:18:20 +01007392 }
7393}
7394
7395static void free_pmu_context(struct pmu *pmu)
7396{
7397 struct pmu *i;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007398
7399 mutex_lock(&pmus_lock);
7400 /*
7401 * Like a real lame refcount.
7402 */
Peter Zijlstra51676952010-12-07 14:18:20 +01007403 list_for_each_entry(i, &pmus, entry) {
7404 if (i->pmu_cpu_context == pmu->pmu_cpu_context) {
7405 update_pmu_context(i, pmu);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007406 goto out;
Peter Zijlstra51676952010-12-07 14:18:20 +01007407 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007408 }
7409
Peter Zijlstra51676952010-12-07 14:18:20 +01007410 free_percpu(pmu->pmu_cpu_context);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007411out:
7412 mutex_unlock(&pmus_lock);
7413}
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007414static struct idr pmu_idr;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007415
Peter Zijlstraabe43402010-11-17 23:17:37 +01007416static ssize_t
7417type_show(struct device *dev, struct device_attribute *attr, char *page)
7418{
7419 struct pmu *pmu = dev_get_drvdata(dev);
7420
7421 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->type);
7422}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007423static DEVICE_ATTR_RO(type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007424
Stephane Eranian62b85632013-04-03 14:21:34 +02007425static ssize_t
7426perf_event_mux_interval_ms_show(struct device *dev,
7427 struct device_attribute *attr,
7428 char *page)
7429{
7430 struct pmu *pmu = dev_get_drvdata(dev);
7431
7432 return snprintf(page, PAGE_SIZE-1, "%d\n", pmu->hrtimer_interval_ms);
7433}
7434
Peter Zijlstra272325c2015-04-15 11:41:58 +02007435static DEFINE_MUTEX(mux_interval_mutex);
7436
Stephane Eranian62b85632013-04-03 14:21:34 +02007437static ssize_t
7438perf_event_mux_interval_ms_store(struct device *dev,
7439 struct device_attribute *attr,
7440 const char *buf, size_t count)
7441{
7442 struct pmu *pmu = dev_get_drvdata(dev);
7443 int timer, cpu, ret;
7444
7445 ret = kstrtoint(buf, 0, &timer);
7446 if (ret)
7447 return ret;
7448
7449 if (timer < 1)
7450 return -EINVAL;
7451
7452 /* same value, noting to do */
7453 if (timer == pmu->hrtimer_interval_ms)
7454 return count;
7455
Peter Zijlstra272325c2015-04-15 11:41:58 +02007456 mutex_lock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007457 pmu->hrtimer_interval_ms = timer;
7458
7459 /* update all cpuctx for this PMU */
Peter Zijlstra272325c2015-04-15 11:41:58 +02007460 get_online_cpus();
7461 for_each_online_cpu(cpu) {
Stephane Eranian62b85632013-04-03 14:21:34 +02007462 struct perf_cpu_context *cpuctx;
7463 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
7464 cpuctx->hrtimer_interval = ns_to_ktime(NSEC_PER_MSEC * timer);
7465
Peter Zijlstra272325c2015-04-15 11:41:58 +02007466 cpu_function_call(cpu,
7467 (remote_function_f)perf_mux_hrtimer_restart, cpuctx);
Stephane Eranian62b85632013-04-03 14:21:34 +02007468 }
Peter Zijlstra272325c2015-04-15 11:41:58 +02007469 put_online_cpus();
7470 mutex_unlock(&mux_interval_mutex);
Stephane Eranian62b85632013-04-03 14:21:34 +02007471
7472 return count;
7473}
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007474static DEVICE_ATTR_RW(perf_event_mux_interval_ms);
Stephane Eranian62b85632013-04-03 14:21:34 +02007475
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007476static struct attribute *pmu_dev_attrs[] = {
7477 &dev_attr_type.attr,
7478 &dev_attr_perf_event_mux_interval_ms.attr,
7479 NULL,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007480};
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007481ATTRIBUTE_GROUPS(pmu_dev);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007482
7483static int pmu_bus_running;
7484static struct bus_type pmu_bus = {
7485 .name = "event_source",
Greg Kroah-Hartman90826ca2013-08-23 14:24:40 -07007486 .dev_groups = pmu_dev_groups,
Peter Zijlstraabe43402010-11-17 23:17:37 +01007487};
7488
7489static void pmu_dev_release(struct device *dev)
7490{
7491 kfree(dev);
7492}
7493
7494static int pmu_dev_alloc(struct pmu *pmu)
7495{
7496 int ret = -ENOMEM;
7497
7498 pmu->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
7499 if (!pmu->dev)
7500 goto out;
7501
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01007502 pmu->dev->groups = pmu->attr_groups;
Peter Zijlstraabe43402010-11-17 23:17:37 +01007503 device_initialize(pmu->dev);
7504 ret = dev_set_name(pmu->dev, "%s", pmu->name);
7505 if (ret)
7506 goto free_dev;
7507
7508 dev_set_drvdata(pmu->dev, pmu);
7509 pmu->dev->bus = &pmu_bus;
7510 pmu->dev->release = pmu_dev_release;
7511 ret = device_add(pmu->dev);
7512 if (ret)
7513 goto free_dev;
7514
7515out:
7516 return ret;
7517
7518free_dev:
7519 put_device(pmu->dev);
7520 goto out;
7521}
7522
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007523static struct lock_class_key cpuctx_mutex;
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007524static struct lock_class_key cpuctx_lock;
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007525
Mischa Jonker03d8e802013-06-04 11:45:48 +02007526int perf_pmu_register(struct pmu *pmu, const char *name, int type)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007527{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007528 int cpu, ret;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007529
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007530 mutex_lock(&pmus_lock);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007531 ret = -ENOMEM;
7532 pmu->pmu_disable_count = alloc_percpu(int);
7533 if (!pmu->pmu_disable_count)
7534 goto unlock;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007535
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007536 pmu->type = -1;
7537 if (!name)
7538 goto skip_type;
7539 pmu->name = name;
7540
7541 if (type < 0) {
Tejun Heo0e9c3be2013-02-27 17:04:55 -08007542 type = idr_alloc(&pmu_idr, pmu, PERF_TYPE_MAX, 0, GFP_KERNEL);
7543 if (type < 0) {
7544 ret = type;
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007545 goto free_pdc;
7546 }
7547 }
7548 pmu->type = type;
7549
Peter Zijlstraabe43402010-11-17 23:17:37 +01007550 if (pmu_bus_running) {
7551 ret = pmu_dev_alloc(pmu);
7552 if (ret)
7553 goto free_idr;
7554 }
7555
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007556skip_type:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007557 pmu->pmu_cpu_context = find_pmu_context(pmu->task_ctx_nr);
7558 if (pmu->pmu_cpu_context)
7559 goto got_cpu_context;
7560
Wei Yongjunc4814202013-04-12 11:05:54 +08007561 ret = -ENOMEM;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007562 pmu->pmu_cpu_context = alloc_percpu(struct perf_cpu_context);
7563 if (!pmu->pmu_cpu_context)
Peter Zijlstraabe43402010-11-17 23:17:37 +01007564 goto free_dev;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007565
7566 for_each_possible_cpu(cpu) {
7567 struct perf_cpu_context *cpuctx;
7568
7569 cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
Peter Zijlstraeb184472010-09-07 15:55:13 +02007570 __perf_event_init_context(&cpuctx->ctx);
Peter Zijlstra547e9fd2011-01-19 12:51:39 +01007571 lockdep_set_class(&cpuctx->ctx.mutex, &cpuctx_mutex);
Peter Zijlstrafacc4302011-04-09 21:17:42 +02007572 lockdep_set_class(&cpuctx->ctx.lock, &cpuctx_lock);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007573 cpuctx->ctx.pmu = pmu;
Stephane Eranian9e630202013-04-03 14:21:33 +02007574
Peter Zijlstra272325c2015-04-15 11:41:58 +02007575 __perf_mux_hrtimer_init(cpuctx, cpu);
Stephane Eranian9e630202013-04-03 14:21:33 +02007576
Peter Zijlstra3f1f3322012-10-02 15:38:52 +02007577 cpuctx->unique_pmu = pmu;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007578 }
7579
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02007580got_cpu_context:
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007581 if (!pmu->start_txn) {
7582 if (pmu->pmu_enable) {
7583 /*
7584 * If we have pmu_enable/pmu_disable calls, install
7585 * transaction stubs that use that to try and batch
7586 * hardware accesses.
7587 */
7588 pmu->start_txn = perf_pmu_start_txn;
7589 pmu->commit_txn = perf_pmu_commit_txn;
7590 pmu->cancel_txn = perf_pmu_cancel_txn;
7591 } else {
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07007592 pmu->start_txn = perf_pmu_nop_txn;
Peter Zijlstraad5133b2010-06-15 12:22:39 +02007593 pmu->commit_txn = perf_pmu_nop_int;
7594 pmu->cancel_txn = perf_pmu_nop_void;
7595 }
7596 }
7597
7598 if (!pmu->pmu_enable) {
7599 pmu->pmu_enable = perf_pmu_nop_void;
7600 pmu->pmu_disable = perf_pmu_nop_void;
7601 }
7602
Peter Zijlstra35edc2a2011-11-20 20:36:02 +01007603 if (!pmu->event_idx)
7604 pmu->event_idx = perf_event_idx_default;
7605
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007606 list_add_rcu(&pmu->entry, &pmus);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007607 atomic_set(&pmu->exclusive_cnt, 0);
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007608 ret = 0;
7609unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007610 mutex_unlock(&pmus_lock);
7611
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007612 return ret;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007613
Peter Zijlstraabe43402010-11-17 23:17:37 +01007614free_dev:
7615 device_del(pmu->dev);
7616 put_device(pmu->dev);
7617
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007618free_idr:
7619 if (pmu->type >= PERF_TYPE_MAX)
7620 idr_remove(&pmu_idr, pmu->type);
7621
Peter Zijlstra108b02c2010-09-06 14:32:03 +02007622free_pdc:
7623 free_percpu(pmu->pmu_disable_count);
7624 goto unlock;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007625}
Yan, Zhengc464c762014-03-18 16:56:41 +08007626EXPORT_SYMBOL_GPL(perf_pmu_register);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007627
7628void perf_pmu_unregister(struct pmu *pmu)
7629{
7630 mutex_lock(&pmus_lock);
7631 list_del_rcu(&pmu->entry);
7632 mutex_unlock(&pmus_lock);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007633
7634 /*
Peter Zijlstracde8e882010-09-13 11:06:55 +02007635 * We dereference the pmu list under both SRCU and regular RCU, so
7636 * synchronize against both of those.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007637 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007638 synchronize_srcu(&pmus_srcu);
Peter Zijlstracde8e882010-09-13 11:06:55 +02007639 synchronize_rcu();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007640
Peter Zijlstra33696fc2010-06-14 08:49:00 +02007641 free_percpu(pmu->pmu_disable_count);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007642 if (pmu->type >= PERF_TYPE_MAX)
7643 idr_remove(&pmu_idr, pmu->type);
Peter Zijlstraabe43402010-11-17 23:17:37 +01007644 device_del(pmu->dev);
7645 put_device(pmu->dev);
Peter Zijlstra51676952010-12-07 14:18:20 +01007646 free_pmu_context(pmu);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007647}
Yan, Zhengc464c762014-03-18 16:56:41 +08007648EXPORT_SYMBOL_GPL(perf_pmu_unregister);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007649
Mark Rutlandcc34b982015-01-07 14:56:51 +00007650static int perf_try_init_event(struct pmu *pmu, struct perf_event *event)
7651{
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007652 struct perf_event_context *ctx = NULL;
Mark Rutlandcc34b982015-01-07 14:56:51 +00007653 int ret;
7654
7655 if (!try_module_get(pmu->module))
7656 return -ENODEV;
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007657
7658 if (event->group_leader != event) {
Peter Zijlstra8b10c5e2015-05-01 16:08:46 +02007659 /*
7660 * This ctx->mutex can nest when we're called through
7661 * inheritance. See the perf_event_ctx_lock_nested() comment.
7662 */
7663 ctx = perf_event_ctx_lock_nested(event->group_leader,
7664 SINGLE_DEPTH_NESTING);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007665 BUG_ON(!ctx);
7666 }
7667
Mark Rutlandcc34b982015-01-07 14:56:51 +00007668 event->pmu = pmu;
7669 ret = pmu->event_init(event);
Peter Zijlstraccd41c82015-02-25 15:56:04 +01007670
7671 if (ctx)
7672 perf_event_ctx_unlock(event->group_leader, ctx);
7673
Mark Rutlandcc34b982015-01-07 14:56:51 +00007674 if (ret)
7675 module_put(pmu->module);
7676
7677 return ret;
7678}
7679
Geliang Tang18ab2cd2015-09-27 23:25:50 +08007680static struct pmu *perf_init_event(struct perf_event *event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007681{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007682 struct pmu *pmu = NULL;
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007683 int idx;
Lin Ming940c5b22011-02-27 21:13:31 +08007684 int ret;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007685
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007686 idx = srcu_read_lock(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007687
7688 rcu_read_lock();
7689 pmu = idr_find(&pmu_idr, event->attr.type);
7690 rcu_read_unlock();
Lin Ming940c5b22011-02-27 21:13:31 +08007691 if (pmu) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007692 ret = perf_try_init_event(pmu, event);
Lin Ming940c5b22011-02-27 21:13:31 +08007693 if (ret)
7694 pmu = ERR_PTR(ret);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007695 goto unlock;
Lin Ming940c5b22011-02-27 21:13:31 +08007696 }
Peter Zijlstra2e80a822010-11-17 23:17:36 +01007697
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007698 list_for_each_entry_rcu(pmu, &pmus, entry) {
Mark Rutlandcc34b982015-01-07 14:56:51 +00007699 ret = perf_try_init_event(pmu, event);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007700 if (!ret)
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007701 goto unlock;
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02007702
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007703 if (ret != -ENOENT) {
7704 pmu = ERR_PTR(ret);
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007705 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007706 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007707 }
Peter Zijlstrae5f4d332010-09-10 17:38:06 +02007708 pmu = ERR_PTR(-ENOENT);
7709unlock:
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007710 srcu_read_unlock(&pmus_srcu, idx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007711
7712 return pmu;
7713}
7714
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007715static void account_event_cpu(struct perf_event *event, int cpu)
7716{
7717 if (event->parent)
7718 return;
7719
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007720 if (is_cgroup_event(event))
7721 atomic_inc(&per_cpu(perf_cgroup_events, cpu));
7722}
7723
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007724static void account_event(struct perf_event *event)
7725{
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007726 if (event->parent)
7727 return;
7728
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007729 if (event->attach_state & PERF_ATTACH_TASK)
7730 static_key_slow_inc(&perf_sched_events.key);
7731 if (event->attr.mmap || event->attr.mmap_data)
7732 atomic_inc(&nr_mmap_events);
7733 if (event->attr.comm)
7734 atomic_inc(&nr_comm_events);
7735 if (event->attr.task)
7736 atomic_inc(&nr_task_events);
Frederic Weisbecker948b26b2013-08-02 18:29:55 +02007737 if (event->attr.freq) {
7738 if (atomic_inc_return(&nr_freq_events) == 1)
7739 tick_nohz_full_kick_all();
7740 }
Adrian Hunter45ac1402015-07-21 12:44:02 +03007741 if (event->attr.context_switch) {
7742 atomic_inc(&nr_switch_events);
7743 static_key_slow_inc(&perf_sched_events.key);
7744 }
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007745 if (has_branch_stack(event))
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007746 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007747 if (is_cgroup_event(event))
7748 static_key_slow_inc(&perf_sched_events.key);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007749
Frederic Weisbecker4beb31f2013-07-23 02:31:02 +02007750 account_event_cpu(event, event->cpu);
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02007751}
7752
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007753/*
7754 * Allocate and initialize a event structure
7755 */
7756static struct perf_event *
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007757perf_event_alloc(struct perf_event_attr *attr, int cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007758 struct task_struct *task,
7759 struct perf_event *group_leader,
7760 struct perf_event *parent_event,
Avi Kivity4dc0da82011-06-29 18:42:35 +03007761 perf_overflow_handler_t overflow_handler,
Matt Fleming79dff512015-01-23 18:45:42 +00007762 void *context, int cgroup_fd)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007763{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02007764 struct pmu *pmu;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007765 struct perf_event *event;
7766 struct hw_perf_event *hwc;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007767 long err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007768
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007769 if ((unsigned)cpu >= nr_cpu_ids) {
7770 if (!task || cpu != -1)
7771 return ERR_PTR(-EINVAL);
7772 }
7773
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02007774 event = kzalloc(sizeof(*event), GFP_KERNEL);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007775 if (!event)
7776 return ERR_PTR(-ENOMEM);
7777
7778 /*
7779 * Single events are their own group leaders, with an
7780 * empty sibling list:
7781 */
7782 if (!group_leader)
7783 group_leader = event;
7784
7785 mutex_init(&event->child_mutex);
7786 INIT_LIST_HEAD(&event->child_list);
7787
7788 INIT_LIST_HEAD(&event->group_entry);
7789 INIT_LIST_HEAD(&event->event_entry);
7790 INIT_LIST_HEAD(&event->sibling_list);
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007791 INIT_LIST_HEAD(&event->rb_entry);
Stephane Eranian71ad88e2013-11-12 17:58:48 +01007792 INIT_LIST_HEAD(&event->active_entry);
Stephane Eranianf3ae75d2014-01-08 11:15:52 +01007793 INIT_HLIST_NODE(&event->hlist_entry);
7794
Peter Zijlstra10c6db12011-11-26 02:47:31 +01007795
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007796 init_waitqueue_head(&event->waitq);
Peter Zijlstrae360adb2010-10-14 14:01:34 +08007797 init_irq_work(&event->pending, perf_pending_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007798
7799 mutex_init(&event->mmap_mutex);
7800
Al Viroa6fa9412012-08-20 14:59:25 +01007801 atomic_long_set(&event->refcount, 1);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007802 event->cpu = cpu;
7803 event->attr = *attr;
7804 event->group_leader = group_leader;
7805 event->pmu = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007806 event->oncpu = -1;
7807
7808 event->parent = parent_event;
7809
Eric W. Biederman17cf22c2010-03-02 14:51:53 -08007810 event->ns = get_pid_ns(task_active_pid_ns(current));
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007811 event->id = atomic64_inc_return(&perf_event_id);
7812
7813 event->state = PERF_EVENT_STATE_INACTIVE;
7814
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007815 if (task) {
7816 event->attach_state = PERF_ATTACH_TASK;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007817 /*
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007818 * XXX pmu::event_init needs to know what task to account to
7819 * and we cannot use the ctx information because we need the
7820 * pmu before we get a ctx.
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007821 */
Peter Zijlstra50f16a82015-03-05 22:10:19 +01007822 event->hw.target = task;
Peter Zijlstrad580ff82010-10-14 17:43:23 +02007823 }
7824
Peter Zijlstra34f43922015-02-20 14:05:38 +01007825 event->clock = &local_clock;
7826 if (parent_event)
7827 event->clock = parent_event->clock;
7828
Avi Kivity4dc0da82011-06-29 18:42:35 +03007829 if (!overflow_handler && parent_event) {
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007830 overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007831 context = parent_event->overflow_handler_context;
7832 }
Oleg Nesterov66832eb2011-01-18 17:10:32 +01007833
Frederic Weisbeckerb326e952009-12-05 09:44:31 +01007834 event->overflow_handler = overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03007835 event->overflow_handler_context = context;
Frederic Weisbecker97eaf532009-10-18 15:33:50 +02007836
Jiri Olsa0231bb52013-02-01 11:23:45 +01007837 perf_event__state_init(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007838
7839 pmu = NULL;
7840
7841 hwc = &event->hw;
7842 hwc->sample_period = attr->sample_period;
7843 if (attr->freq && attr->sample_freq)
7844 hwc->sample_period = 1;
7845 hwc->last_period = hwc->sample_period;
7846
Peter Zijlstrae7850592010-05-21 14:43:08 +02007847 local64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007848
7849 /*
7850 * we currently do not support PERF_FORMAT_GROUP on inherited events
7851 */
7852 if (attr->inherit && (attr->read_format & PERF_FORMAT_GROUP))
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007853 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007854
Yan, Zhenga46a2302014-11-04 21:56:06 -05007855 if (!has_branch_stack(event))
7856 event->attr.branch_sample_type = 0;
7857
Matt Fleming79dff512015-01-23 18:45:42 +00007858 if (cgroup_fd != -1) {
7859 err = perf_cgroup_connect(cgroup_fd, event, attr, group_leader);
7860 if (err)
7861 goto err_ns;
7862 }
7863
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02007864 pmu = perf_init_event(event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007865 if (!pmu)
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007866 goto err_ns;
7867 else if (IS_ERR(pmu)) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007868 err = PTR_ERR(pmu);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007869 goto err_ns;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007870 }
7871
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007872 err = exclusive_event_init(event);
7873 if (err)
7874 goto err_pmu;
7875
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007876 if (!event->parent) {
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02007877 if (event->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
7878 err = get_callchain_buffers();
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007879 if (err)
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007880 goto err_per_task;
Stephane Eraniand010b332012-02-09 23:21:00 +01007881 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007882 }
7883
7884 return event;
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007885
Alexander Shishkinbed5b252015-01-30 12:31:06 +02007886err_per_task:
7887 exclusive_event_destroy(event);
7888
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007889err_pmu:
7890 if (event->destroy)
7891 event->destroy(event);
Yan, Zhengc464c762014-03-18 16:56:41 +08007892 module_put(pmu->module);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007893err_ns:
Matt Fleming79dff512015-01-23 18:45:42 +00007894 if (is_cgroup_event(event))
7895 perf_detach_cgroup(event);
Frederic Weisbecker90983b12013-07-23 02:31:00 +02007896 if (event->ns)
7897 put_pid_ns(event->ns);
7898 kfree(event);
7899
7900 return ERR_PTR(err);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007901}
7902
7903static int perf_copy_attr(struct perf_event_attr __user *uattr,
7904 struct perf_event_attr *attr)
7905{
7906 u32 size;
7907 int ret;
7908
7909 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
7910 return -EFAULT;
7911
7912 /*
7913 * zero the full structure, so that a short copy will be nice.
7914 */
7915 memset(attr, 0, sizeof(*attr));
7916
7917 ret = get_user(size, &uattr->size);
7918 if (ret)
7919 return ret;
7920
7921 if (size > PAGE_SIZE) /* silly large */
7922 goto err_size;
7923
7924 if (!size) /* abi compat */
7925 size = PERF_ATTR_SIZE_VER0;
7926
7927 if (size < PERF_ATTR_SIZE_VER0)
7928 goto err_size;
7929
7930 /*
7931 * If we're handed a bigger struct than we know of,
7932 * ensure all the unknown bits are 0 - i.e. new
7933 * user-space does not rely on any kernel feature
7934 * extensions we dont know about yet.
7935 */
7936 if (size > sizeof(*attr)) {
7937 unsigned char __user *addr;
7938 unsigned char __user *end;
7939 unsigned char val;
7940
7941 addr = (void __user *)uattr + sizeof(*attr);
7942 end = (void __user *)uattr + size;
7943
7944 for (; addr < end; addr++) {
7945 ret = get_user(val, addr);
7946 if (ret)
7947 return ret;
7948 if (val)
7949 goto err_size;
7950 }
7951 size = sizeof(*attr);
7952 }
7953
7954 ret = copy_from_user(attr, uattr, size);
7955 if (ret)
7956 return -EFAULT;
7957
Mahesh Salgaonkarcd757642010-01-30 10:25:18 +05307958 if (attr->__reserved_1)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02007959 return -EINVAL;
7960
7961 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1))
7962 return -EINVAL;
7963
7964 if (attr->read_format & ~(PERF_FORMAT_MAX-1))
7965 return -EINVAL;
7966
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007967 if (attr->sample_type & PERF_SAMPLE_BRANCH_STACK) {
7968 u64 mask = attr->branch_sample_type;
7969
7970 /* only using defined bits */
7971 if (mask & ~(PERF_SAMPLE_BRANCH_MAX-1))
7972 return -EINVAL;
7973
7974 /* at least one branch bit must be set */
7975 if (!(mask & ~PERF_SAMPLE_BRANCH_PLM_ALL))
7976 return -EINVAL;
7977
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007978 /* propagate priv level, when not set for branch */
7979 if (!(mask & PERF_SAMPLE_BRANCH_PLM_ALL)) {
7980
7981 /* exclude_kernel checked on syscall entry */
7982 if (!attr->exclude_kernel)
7983 mask |= PERF_SAMPLE_BRANCH_KERNEL;
7984
7985 if (!attr->exclude_user)
7986 mask |= PERF_SAMPLE_BRANCH_USER;
7987
7988 if (!attr->exclude_hv)
7989 mask |= PERF_SAMPLE_BRANCH_HV;
7990 /*
7991 * adjust user setting (for HW filter setup)
7992 */
7993 attr->branch_sample_type = mask;
7994 }
Stephane Eraniane7122092013-06-06 11:02:04 +02007995 /* privileged levels capture (kernel, hv): check permissions */
7996 if ((mask & PERF_SAMPLE_BRANCH_PERM_PLM)
Stephane Eranian2b923c82013-05-21 12:53:37 +02007997 && perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
7998 return -EACCES;
Stephane Eranianbce38cd2012-02-09 23:20:51 +01007999 }
Jiri Olsa40189942012-08-07 15:20:37 +02008000
Jiri Olsac5ebced2012-08-07 15:20:40 +02008001 if (attr->sample_type & PERF_SAMPLE_REGS_USER) {
Jiri Olsa40189942012-08-07 15:20:37 +02008002 ret = perf_reg_validate(attr->sample_regs_user);
Jiri Olsac5ebced2012-08-07 15:20:40 +02008003 if (ret)
8004 return ret;
8005 }
8006
8007 if (attr->sample_type & PERF_SAMPLE_STACK_USER) {
8008 if (!arch_perf_have_user_stack_dump())
8009 return -ENOSYS;
8010
8011 /*
8012 * We have __u32 type for the size, but so far
8013 * we can only use __u16 as maximum due to the
8014 * __u16 sample size limit.
8015 */
8016 if (attr->sample_stack_user >= USHRT_MAX)
8017 ret = -EINVAL;
8018 else if (!IS_ALIGNED(attr->sample_stack_user, sizeof(u64)))
8019 ret = -EINVAL;
8020 }
Jiri Olsa40189942012-08-07 15:20:37 +02008021
Stephane Eranian60e23642014-09-24 13:48:37 +02008022 if (attr->sample_type & PERF_SAMPLE_REGS_INTR)
8023 ret = perf_reg_validate(attr->sample_regs_intr);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008024out:
8025 return ret;
8026
8027err_size:
8028 put_user(sizeof(*attr), &uattr->size);
8029 ret = -E2BIG;
8030 goto out;
8031}
8032
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008033static int
8034perf_event_set_output(struct perf_event *event, struct perf_event *output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008035{
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008036 struct ring_buffer *rb = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008037 int ret = -EINVAL;
8038
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008039 if (!output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008040 goto set;
8041
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008042 /* don't allow circular references */
8043 if (event == output_event)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008044 goto out;
8045
Peter Zijlstra0f139302010-05-20 14:35:15 +02008046 /*
8047 * Don't allow cross-cpu buffers
8048 */
8049 if (output_event->cpu != event->cpu)
8050 goto out;
8051
8052 /*
Frederic Weisbecker76369132011-05-19 19:55:04 +02008053 * If its not a per-cpu rb, it must be the same task.
Peter Zijlstra0f139302010-05-20 14:35:15 +02008054 */
8055 if (output_event->cpu == -1 && output_event->ctx != event->ctx)
8056 goto out;
8057
Peter Zijlstra34f43922015-02-20 14:05:38 +01008058 /*
8059 * Mixing clocks in the same buffer is trouble you don't need.
8060 */
8061 if (output_event->clock != event->clock)
8062 goto out;
8063
Peter Zijlstra45bfb2e2015-01-14 14:18:11 +02008064 /*
8065 * If both events generate aux data, they must be on the same PMU
8066 */
8067 if (has_aux(event) && has_aux(output_event) &&
8068 event->pmu != output_event->pmu)
8069 goto out;
8070
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008071set:
8072 mutex_lock(&event->mmap_mutex);
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008073 /* Can't redirect output if we've got an active mmap() */
8074 if (atomic_read(&event->mmap_count))
8075 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008076
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008077 if (output_event) {
Frederic Weisbecker76369132011-05-19 19:55:04 +02008078 /* get the rb we want to redirect to */
8079 rb = ring_buffer_get(output_event);
8080 if (!rb)
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008081 goto unlock;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008082 }
8083
Peter Zijlstrab69cf532014-03-14 10:50:33 +01008084 ring_buffer_attach(event, rb);
Peter Zijlstra9bb5d402013-06-04 10:44:21 +02008085
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008086 ret = 0;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008087unlock:
8088 mutex_unlock(&event->mmap_mutex);
8089
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008090out:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008091 return ret;
8092}
8093
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008094static void mutex_lock_double(struct mutex *a, struct mutex *b)
8095{
8096 if (b < a)
8097 swap(a, b);
8098
8099 mutex_lock(a);
8100 mutex_lock_nested(b, SINGLE_DEPTH_NESTING);
8101}
8102
Peter Zijlstra34f43922015-02-20 14:05:38 +01008103static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
8104{
8105 bool nmi_safe = false;
8106
8107 switch (clk_id) {
8108 case CLOCK_MONOTONIC:
8109 event->clock = &ktime_get_mono_fast_ns;
8110 nmi_safe = true;
8111 break;
8112
8113 case CLOCK_MONOTONIC_RAW:
8114 event->clock = &ktime_get_raw_fast_ns;
8115 nmi_safe = true;
8116 break;
8117
8118 case CLOCK_REALTIME:
8119 event->clock = &ktime_get_real_ns;
8120 break;
8121
8122 case CLOCK_BOOTTIME:
8123 event->clock = &ktime_get_boot_ns;
8124 break;
8125
8126 case CLOCK_TAI:
8127 event->clock = &ktime_get_tai_ns;
8128 break;
8129
8130 default:
8131 return -EINVAL;
8132 }
8133
8134 if (!nmi_safe && !(event->pmu->capabilities & PERF_PMU_CAP_NO_NMI))
8135 return -EINVAL;
8136
8137 return 0;
8138}
8139
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008140/**
8141 * sys_perf_event_open - open a performance event, associate it to a task/cpu
8142 *
8143 * @attr_uptr: event_id type attributes for monitoring/sampling
8144 * @pid: target pid
8145 * @cpu: target cpu
8146 * @group_fd: group leader event fd
8147 */
8148SYSCALL_DEFINE5(perf_event_open,
8149 struct perf_event_attr __user *, attr_uptr,
8150 pid_t, pid, int, cpu, int, group_fd, unsigned long, flags)
8151{
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008152 struct perf_event *group_leader = NULL, *output_event = NULL;
8153 struct perf_event *event, *sibling;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008154 struct perf_event_attr attr;
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008155 struct perf_event_context *ctx, *uninitialized_var(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008156 struct file *event_file = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04008157 struct fd group = {NULL, 0};
Matt Helsley38a81da2010-09-13 13:01:20 -07008158 struct task_struct *task = NULL;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008159 struct pmu *pmu;
Al Viroea635c62010-05-26 17:40:29 -04008160 int event_fd;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008161 int move_group = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008162 int err;
Yann Droneauda21b0b32014-01-05 21:36:33 +01008163 int f_flags = O_RDWR;
Matt Fleming79dff512015-01-23 18:45:42 +00008164 int cgroup_fd = -1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008165
8166 /* for future expandability... */
Stephane Eraniane5d13672011-02-14 11:20:01 +02008167 if (flags & ~PERF_FLAG_ALL)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008168 return -EINVAL;
8169
8170 err = perf_copy_attr(attr_uptr, &attr);
8171 if (err)
8172 return err;
8173
8174 if (!attr.exclude_kernel) {
8175 if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN))
8176 return -EACCES;
8177 }
8178
8179 if (attr.freq) {
8180 if (attr.sample_freq > sysctl_perf_event_sample_rate)
8181 return -EINVAL;
Peter Zijlstra0819b2e2014-05-15 20:23:48 +02008182 } else {
8183 if (attr.sample_period & (1ULL << 63))
8184 return -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008185 }
8186
Stephane Eraniane5d13672011-02-14 11:20:01 +02008187 /*
8188 * In cgroup mode, the pid argument is used to pass the fd
8189 * opened to the cgroup directory in cgroupfs. The cpu argument
8190 * designates the cpu on which to monitor threads from that
8191 * cgroup.
8192 */
8193 if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
8194 return -EINVAL;
8195
Yann Droneauda21b0b32014-01-05 21:36:33 +01008196 if (flags & PERF_FLAG_FD_CLOEXEC)
8197 f_flags |= O_CLOEXEC;
8198
8199 event_fd = get_unused_fd_flags(f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008200 if (event_fd < 0)
8201 return event_fd;
8202
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008203 if (group_fd != -1) {
Al Viro2903ff02012-08-28 12:52:22 -04008204 err = perf_fget_light(group_fd, &group);
8205 if (err)
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008206 goto err_fd;
Al Viro2903ff02012-08-28 12:52:22 -04008207 group_leader = group.file->private_data;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008208 if (flags & PERF_FLAG_FD_OUTPUT)
8209 output_event = group_leader;
8210 if (flags & PERF_FLAG_FD_NO_GROUP)
8211 group_leader = NULL;
8212 }
8213
Stephane Eraniane5d13672011-02-14 11:20:01 +02008214 if (pid != -1 && !(flags & PERF_FLAG_PID_CGROUP)) {
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008215 task = find_lively_task_by_vpid(pid);
8216 if (IS_ERR(task)) {
8217 err = PTR_ERR(task);
8218 goto err_group_fd;
8219 }
8220 }
8221
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008222 if (task && group_leader &&
8223 group_leader->attr.inherit != attr.inherit) {
8224 err = -EINVAL;
8225 goto err_task;
8226 }
8227
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008228 get_online_cpus();
8229
Matt Fleming79dff512015-01-23 18:45:42 +00008230 if (flags & PERF_FLAG_PID_CGROUP)
8231 cgroup_fd = pid;
8232
Avi Kivity4dc0da82011-06-29 18:42:35 +03008233 event = perf_event_alloc(&attr, cpu, task, group_leader, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008234 NULL, NULL, cgroup_fd);
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008235 if (IS_ERR(event)) {
8236 err = PTR_ERR(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008237 goto err_cpus;
Stephane Eraniand14b12d2010-09-17 11:28:47 +02008238 }
8239
Vince Weaver53b25332014-05-16 17:12:12 -04008240 if (is_sampling_event(event)) {
8241 if (event->pmu->capabilities & PERF_PMU_CAP_NO_INTERRUPT) {
8242 err = -ENOTSUPP;
8243 goto err_alloc;
8244 }
8245 }
8246
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008247 account_event(event);
8248
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008249 /*
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008250 * Special case software events and allow them to be part of
8251 * any hardware group.
8252 */
8253 pmu = event->pmu;
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008254
Peter Zijlstra34f43922015-02-20 14:05:38 +01008255 if (attr.use_clockid) {
8256 err = perf_event_set_clock(event, attr.clockid);
8257 if (err)
8258 goto err_alloc;
8259 }
8260
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008261 if (group_leader &&
8262 (is_software_event(event) != is_software_event(group_leader))) {
8263 if (is_software_event(event)) {
8264 /*
8265 * If event and group_leader are not both a software
8266 * event, and event is, then group leader is not.
8267 *
8268 * Allow the addition of software events to !software
8269 * groups, this is safe because software events never
8270 * fail to schedule.
8271 */
8272 pmu = group_leader->pmu;
8273 } else if (is_software_event(group_leader) &&
8274 (group_leader->group_flags & PERF_GROUP_SOFTWARE)) {
8275 /*
8276 * In case the group is a pure software group, and we
8277 * try to add a hardware event, move the whole group to
8278 * the hardware context.
8279 */
8280 move_group = 1;
8281 }
8282 }
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008283
8284 /*
8285 * Get the target context (task or percpu):
8286 */
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008287 ctx = find_get_context(pmu, task, event);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008288 if (IS_ERR(ctx)) {
8289 err = PTR_ERR(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008290 goto err_alloc;
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008291 }
8292
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008293 if ((pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && group_leader) {
8294 err = -EBUSY;
8295 goto err_context;
8296 }
8297
Peter Zijlstrafd1edb32011-03-28 13:13:56 +02008298 if (task) {
8299 put_task_struct(task);
8300 task = NULL;
8301 }
8302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008303 /*
8304 * Look up the group leader (we will attach this event to it):
8305 */
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008306 if (group_leader) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008307 err = -EINVAL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008308
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008309 /*
8310 * Do not allow a recursive hierarchy (this new sibling
8311 * becoming part of another group-sibling):
8312 */
8313 if (group_leader->group_leader != group_leader)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008314 goto err_context;
Peter Zijlstra34f43922015-02-20 14:05:38 +01008315
8316 /* All events in a group should have the same clock */
8317 if (group_leader->clock != event->clock)
8318 goto err_context;
8319
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008320 /*
8321 * Do not allow to attach to a group in a different
8322 * task or CPU context:
8323 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008324 if (move_group) {
Peter Zijlstrac3c87e72015-01-23 11:19:48 +01008325 /*
8326 * Make sure we're both on the same task, or both
8327 * per-cpu events.
8328 */
8329 if (group_leader->ctx->task != ctx->task)
8330 goto err_context;
8331
8332 /*
8333 * Make sure we're both events for the same CPU;
8334 * grouping events for different CPUs is broken; since
8335 * you can never concurrently schedule them anyhow.
8336 */
8337 if (group_leader->cpu != event->cpu)
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008338 goto err_context;
8339 } else {
8340 if (group_leader->ctx != ctx)
8341 goto err_context;
8342 }
8343
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008344 /*
8345 * Only a group leader can be exclusive or pinned
8346 */
8347 if (attr.exclusive || attr.pinned)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008348 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008349 }
8350
8351 if (output_event) {
8352 err = perf_event_set_output(event, output_event);
8353 if (err)
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008354 goto err_context;
Peter Zijlstraac9721f2010-05-27 12:54:41 +02008355 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008356
Yann Droneauda21b0b32014-01-05 21:36:33 +01008357 event_file = anon_inode_getfile("[perf_event]", &perf_fops, event,
8358 f_flags);
Al Viroea635c62010-05-26 17:40:29 -04008359 if (IS_ERR(event_file)) {
8360 err = PTR_ERR(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008361 goto err_context;
Al Viroea635c62010-05-26 17:40:29 -04008362 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008363
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008364 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008365 gctx = group_leader->ctx;
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008366 mutex_lock_double(&gctx->mutex, &ctx->mutex);
8367 } else {
8368 mutex_lock(&ctx->mutex);
8369 }
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008370
Peter Zijlstraa7239682015-09-09 19:06:33 +02008371 if (!perf_event_validate_size(event)) {
8372 err = -E2BIG;
8373 goto err_locked;
8374 }
8375
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008376 /*
8377 * Must be under the same ctx::mutex as perf_install_in_context(),
8378 * because we need to serialize with concurrent event creation.
8379 */
8380 if (!exclusive_event_installable(event, ctx)) {
8381 /* exclusive and group stuff are assumed mutually exclusive */
8382 WARN_ON_ONCE(move_group);
8383
8384 err = -EBUSY;
8385 goto err_locked;
8386 }
8387
8388 WARN_ON_ONCE(ctx->parent_ctx);
8389
8390 if (move_group) {
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008391 /*
8392 * See perf_event_ctx_lock() for comments on the details
8393 * of swizzling perf_event::ctx.
8394 */
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008395 perf_remove_from_context(group_leader, false);
Jiri Olsa0231bb52013-02-01 11:23:45 +01008396
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008397 list_for_each_entry(sibling, &group_leader->sibling_list,
8398 group_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008399 perf_remove_from_context(sibling, false);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008400 put_ctx(gctx);
8401 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008402
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008403 /*
8404 * Wait for everybody to stop referencing the events through
8405 * the old lists, before installing it on new lists.
8406 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008407 synchronize_rcu();
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008408
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008409 /*
8410 * Install the group siblings before the group leader.
8411 *
8412 * Because a group leader will try and install the entire group
8413 * (through the sibling list, which is still in-tact), we can
8414 * end up with siblings installed in the wrong context.
8415 *
8416 * By installing siblings first we NO-OP because they're not
8417 * reachable through the group lists.
8418 */
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008419 list_for_each_entry(sibling, &group_leader->sibling_list,
8420 group_entry) {
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008421 perf_event__state_init(sibling);
Jiri Olsa9fc81d82014-12-10 21:23:51 +01008422 perf_install_in_context(ctx, sibling, sibling->cpu);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008423 get_ctx(ctx);
8424 }
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008425
8426 /*
8427 * Removing from the context ends up with disabled
8428 * event. What we want here is event in the initial
8429 * startup state, ready to be add into new context.
8430 */
8431 perf_event__state_init(group_leader);
8432 perf_install_in_context(ctx, group_leader, group_leader->cpu);
8433 get_ctx(ctx);
Peter Zijlstrab04243e2010-09-17 11:28:48 +02008434
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008435 /*
8436 * Now that all events are installed in @ctx, nothing
8437 * references @gctx anymore, so drop the last reference we have
8438 * on it.
8439 */
8440 put_ctx(gctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008441 }
8442
Peter Zijlstraf73e22a2015-09-09 20:48:22 +02008443 /*
8444 * Precalculate sample_data sizes; do while holding ctx::mutex such
8445 * that we're serialized against further additions and before
8446 * perf_install_in_context() which is the point the event is active and
8447 * can use these values.
8448 */
8449 perf_event__header_size(event);
8450 perf_event__id_header_size(event);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008451
Yan, Zhenge2d37cd2012-06-15 14:31:32 +08008452 perf_install_in_context(ctx, event, event->cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008453 perf_unpin_context(ctx);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008454
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008455 if (move_group)
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008456 mutex_unlock(&gctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008457 mutex_unlock(&ctx->mutex);
8458
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008459 put_online_cpus();
8460
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008461 event->owner = current;
Peter Zijlstra88821352010-11-09 19:01:43 +01008462
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008463 mutex_lock(&current->perf_event_mutex);
8464 list_add_tail(&event->owner_entry, &current->perf_event_list);
8465 mutex_unlock(&current->perf_event_mutex);
8466
Peter Zijlstra8a495422010-05-27 15:47:49 +02008467 /*
8468 * Drop the reference on the group_event after placing the
8469 * new event on the sibling_list. This ensures destruction
8470 * of the group leader will find the pointer to itself in
8471 * perf_group_detach().
8472 */
Al Viro2903ff02012-08-28 12:52:22 -04008473 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008474 fd_install(event_fd, event_file);
8475 return event_fd;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008476
Peter Zijlstraf55fc2a2015-09-09 19:06:33 +02008477err_locked:
8478 if (move_group)
8479 mutex_unlock(&gctx->mutex);
8480 mutex_unlock(&ctx->mutex);
8481/* err_file: */
8482 fput(event_file);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008483err_context:
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008484 perf_unpin_context(ctx);
Al Viroea635c62010-05-26 17:40:29 -04008485 put_ctx(ctx);
Peter Zijlstrac6be5a52010-10-14 16:59:46 +02008486err_alloc:
8487 free_event(event);
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008488err_cpus:
Yan, Zhengfbfc6232012-06-15 14:31:31 +08008489 put_online_cpus();
Peter Zijlstra1f4ee502014-05-06 09:59:34 +02008490err_task:
Peter Zijlstrae7d0bc02010-10-14 16:54:51 +02008491 if (task)
8492 put_task_struct(task);
Peter Zijlstra89a1e182010-09-07 17:34:50 +02008493err_group_fd:
Al Viro2903ff02012-08-28 12:52:22 -04008494 fdput(group);
Al Viroea635c62010-05-26 17:40:29 -04008495err_fd:
8496 put_unused_fd(event_fd);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008497 return err;
8498}
8499
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008500/**
8501 * perf_event_create_kernel_counter
8502 *
8503 * @attr: attributes of the counter to create
8504 * @cpu: cpu in which the counter is bound
Matt Helsley38a81da2010-09-13 13:01:20 -07008505 * @task: task to profile (NULL for percpu)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008506 */
8507struct perf_event *
8508perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
Matt Helsley38a81da2010-09-13 13:01:20 -07008509 struct task_struct *task,
Avi Kivity4dc0da82011-06-29 18:42:35 +03008510 perf_overflow_handler_t overflow_handler,
8511 void *context)
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008512{
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008513 struct perf_event_context *ctx;
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008514 struct perf_event *event;
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008515 int err;
8516
8517 /*
8518 * Get the target context (task or percpu):
8519 */
8520
Avi Kivity4dc0da82011-06-29 18:42:35 +03008521 event = perf_event_alloc(attr, cpu, task, NULL, NULL,
Matt Fleming79dff512015-01-23 18:45:42 +00008522 overflow_handler, context, -1);
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008523 if (IS_ERR(event)) {
8524 err = PTR_ERR(event);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008525 goto err;
8526 }
8527
Jiri Olsaf8697762014-08-01 14:33:01 +02008528 /* Mark owner so we could distinguish it from user events. */
8529 event->owner = EVENT_OWNER_KERNEL;
8530
Frederic Weisbecker766d6c02013-07-23 02:31:01 +02008531 account_event(event);
8532
Yan, Zheng4af57ef2014-11-04 21:56:01 -05008533 ctx = find_get_context(event->pmu, task, event);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008534 if (IS_ERR(ctx)) {
8535 err = PTR_ERR(ctx);
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008536 goto err_free;
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008537 }
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008538
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008539 WARN_ON_ONCE(ctx->parent_ctx);
8540 mutex_lock(&ctx->mutex);
Alexander Shishkinbed5b252015-01-30 12:31:06 +02008541 if (!exclusive_event_installable(event, ctx)) {
8542 mutex_unlock(&ctx->mutex);
8543 perf_unpin_context(ctx);
8544 put_ctx(ctx);
8545 err = -EBUSY;
8546 goto err_free;
8547 }
8548
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008549 perf_install_in_context(ctx, event, cpu);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01008550 perf_unpin_context(ctx);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008551 mutex_unlock(&ctx->mutex);
8552
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008553 return event;
8554
Peter Zijlstrac3f00c72010-08-18 14:37:15 +02008555err_free:
8556 free_event(event);
8557err:
Frederic Weisbeckerc6567f62009-11-26 05:35:41 +01008558 return ERR_PTR(err);
Arjan van de Venfb0459d2009-09-25 12:25:56 +02008559}
8560EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
8561
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008562void perf_pmu_migrate_context(struct pmu *pmu, int src_cpu, int dst_cpu)
8563{
8564 struct perf_event_context *src_ctx;
8565 struct perf_event_context *dst_ctx;
8566 struct perf_event *event, *tmp;
8567 LIST_HEAD(events);
8568
8569 src_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, src_cpu)->ctx;
8570 dst_ctx = &per_cpu_ptr(pmu->pmu_cpu_context, dst_cpu)->ctx;
8571
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008572 /*
8573 * See perf_event_ctx_lock() for comments on the details
8574 * of swizzling perf_event::ctx.
8575 */
8576 mutex_lock_double(&src_ctx->mutex, &dst_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008577 list_for_each_entry_safe(event, tmp, &src_ctx->event_list,
8578 event_entry) {
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02008579 perf_remove_from_context(event, false);
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008580 unaccount_event_cpu(event, src_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008581 put_ctx(src_ctx);
Peter Zijlstra98861672013-10-03 16:02:23 +02008582 list_add(&event->migrate_entry, &events);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008583 }
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008584
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008585 /*
8586 * Wait for the events to quiesce before re-instating them.
8587 */
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008588 synchronize_rcu();
8589
Peter Zijlstra (Intel)8f95b432015-01-27 11:53:12 +01008590 /*
8591 * Re-instate events in 2 passes.
8592 *
8593 * Skip over group leaders and only install siblings on this first
8594 * pass, siblings will not get enabled without a leader, however a
8595 * leader will enable its siblings, even if those are still on the old
8596 * context.
8597 */
8598 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8599 if (event->group_leader == event)
8600 continue;
8601
8602 list_del(&event->migrate_entry);
8603 if (event->state >= PERF_EVENT_STATE_OFF)
8604 event->state = PERF_EVENT_STATE_INACTIVE;
8605 account_event_cpu(event, dst_cpu);
8606 perf_install_in_context(dst_ctx, event, dst_cpu);
8607 get_ctx(dst_ctx);
8608 }
8609
8610 /*
8611 * Once all the siblings are setup properly, install the group leaders
8612 * to make it go.
8613 */
Peter Zijlstra98861672013-10-03 16:02:23 +02008614 list_for_each_entry_safe(event, tmp, &events, migrate_entry) {
8615 list_del(&event->migrate_entry);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008616 if (event->state >= PERF_EVENT_STATE_OFF)
8617 event->state = PERF_EVENT_STATE_INACTIVE;
Frederic Weisbecker9a545de2013-07-23 02:31:03 +02008618 account_event_cpu(event, dst_cpu);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008619 perf_install_in_context(dst_ctx, event, dst_cpu);
8620 get_ctx(dst_ctx);
8621 }
8622 mutex_unlock(&dst_ctx->mutex);
Peter Zijlstraf63a8da2015-01-23 12:24:14 +01008623 mutex_unlock(&src_ctx->mutex);
Yan, Zheng0cda4c02012-06-15 14:31:33 +08008624}
8625EXPORT_SYMBOL_GPL(perf_pmu_migrate_context);
8626
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008627static void sync_child_event(struct perf_event *child_event,
8628 struct task_struct *child)
8629{
8630 struct perf_event *parent_event = child_event->parent;
8631 u64 child_val;
8632
8633 if (child_event->attr.inherit_stat)
8634 perf_event_read_event(child_event, child);
8635
Peter Zijlstrab5e58792010-05-21 14:43:12 +02008636 child_val = perf_event_count(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008637
8638 /*
8639 * Add back the child's count to the parent's count:
8640 */
Peter Zijlstraa6e6dea2010-05-21 14:27:58 +02008641 atomic64_add(child_val, &parent_event->child_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008642 atomic64_add(child_event->total_time_enabled,
8643 &parent_event->child_total_time_enabled);
8644 atomic64_add(child_event->total_time_running,
8645 &parent_event->child_total_time_running);
8646
8647 /*
8648 * Remove this event from the parent's list
8649 */
8650 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8651 mutex_lock(&parent_event->child_mutex);
8652 list_del_init(&child_event->child_list);
8653 mutex_unlock(&parent_event->child_mutex);
8654
8655 /*
Jiri Olsadc633982014-09-12 13:18:26 +02008656 * Make sure user/parent get notified, that we just
8657 * lost one event.
8658 */
8659 perf_event_wakeup(parent_event);
8660
8661 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008662 * Release the parent event, if this was the last
8663 * reference to it.
8664 */
Al Viroa6fa9412012-08-20 14:59:25 +01008665 put_event(parent_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008666}
8667
8668static void
8669__perf_event_exit_task(struct perf_event *child_event,
8670 struct perf_event_context *child_ctx,
8671 struct task_struct *child)
8672{
Peter Zijlstra1903d502014-07-15 17:27:27 +02008673 /*
8674 * Do not destroy the 'original' grouping; because of the context
8675 * switch optimization the original events could've ended up in a
8676 * random child task.
8677 *
8678 * If we were to destroy the original group, all group related
8679 * operations would cease to function properly after this random
8680 * child dies.
8681 *
8682 * Do destroy all inherited groups, we don't care about those
8683 * and being thorough is better.
8684 */
8685 perf_remove_from_context(child_event, !!child_event->parent);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008686
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008687 /*
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008688 * It can happen that the parent exits first, and has events
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008689 * that are still around due to the child reference. These
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008690 * events need to be zapped.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008691 */
Peter Zijlstra38b435b2011-03-15 14:37:10 +01008692 if (child_event->parent) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008693 sync_child_event(child_event, child);
8694 free_event(child_event);
Jiri Olsa179033b2014-08-07 11:48:26 -04008695 } else {
8696 child_event->state = PERF_EVENT_STATE_EXIT;
8697 perf_event_wakeup(child_event);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008698 }
8699}
8700
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008701static void perf_event_exit_task_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008702{
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008703 struct perf_event *child_event, *next;
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008704 struct perf_event_context *child_ctx, *clone_ctx = NULL;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008705 unsigned long flags;
8706
Jiri Olsa4e93ad62015-11-04 16:00:05 +01008707 if (likely(!child->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008708 return;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008709
8710 local_irq_save(flags);
8711 /*
8712 * We can't reschedule here because interrupts are disabled,
8713 * and either child is current or it is a task that can't be
8714 * scheduled, so we are now safe from rescheduling changing
8715 * our context.
8716 */
Oleg Nesterov806839b2011-01-21 18:45:47 +01008717 child_ctx = rcu_dereference_raw(child->perf_event_ctxp[ctxn]);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008718
8719 /*
8720 * Take the context lock here so that if find_get_context is
8721 * reading child->perf_event_ctxp, we wait until it has
8722 * incremented the context's refcount before we do put_ctx below.
8723 */
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008724 raw_spin_lock(&child_ctx->lock);
Peter Zijlstra3e349502016-01-08 10:01:18 +01008725 task_ctx_sched_out(__get_cpu_context(child_ctx), child_ctx);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008726 child->perf_event_ctxp[ctxn] = NULL;
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008727
8728 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008729 * If this context is a clone; unclone it so it can't get
8730 * swapped to another process while we're removing all
8731 * the events from it.
8732 */
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008733 clone_ctx = unclone_ctx(child_ctx);
Peter Zijlstra5e942bb2009-11-23 11:37:26 +01008734 update_context_time(child_ctx);
Thomas Gleixnere625cce12009-11-17 18:02:06 +01008735 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008736
Peter Zijlstra211de6e2014-09-30 19:23:08 +02008737 if (clone_ctx)
8738 put_ctx(clone_ctx);
Peter Zijlstra4a1c0f22014-06-23 16:12:42 +02008739
8740 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008741 * Report the task dead after unscheduling the events so that we
8742 * won't get any samples after PERF_RECORD_EXIT. We can however still
8743 * get a few PERF_RECORD_READ events.
8744 */
8745 perf_event_task(child, child_ctx, 0);
8746
8747 /*
8748 * We can recurse on the same lock type through:
8749 *
8750 * __perf_event_exit_task()
8751 * sync_child_event()
Al Viroa6fa9412012-08-20 14:59:25 +01008752 * put_event()
8753 * mutex_lock(&ctx->mutex)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008754 *
8755 * But since its the parent context it won't be the same instance.
8756 */
Peter Zijlstraa0507c82010-05-06 15:42:53 +02008757 mutex_lock(&child_ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008758
Peter Zijlstraebf905f2014-05-29 19:00:24 +02008759 list_for_each_entry_safe(child_event, next, &child_ctx->event_list, event_entry)
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008760 __perf_event_exit_task(child_event, child_ctx, child);
8761
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008762 mutex_unlock(&child_ctx->mutex);
8763
8764 put_ctx(child_ctx);
8765}
8766
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008767/*
8768 * When a child task exits, feed back event values to parent events.
8769 */
8770void perf_event_exit_task(struct task_struct *child)
8771{
Peter Zijlstra88821352010-11-09 19:01:43 +01008772 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008773 int ctxn;
8774
Peter Zijlstra88821352010-11-09 19:01:43 +01008775 mutex_lock(&child->perf_event_mutex);
8776 list_for_each_entry_safe(event, tmp, &child->perf_event_list,
8777 owner_entry) {
8778 list_del_init(&event->owner_entry);
8779
8780 /*
8781 * Ensure the list deletion is visible before we clear
8782 * the owner, closes a race against perf_release() where
8783 * we need to serialize on the owner->perf_event_mutex.
8784 */
8785 smp_wmb();
8786 event->owner = NULL;
8787 }
8788 mutex_unlock(&child->perf_event_mutex);
8789
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008790 for_each_task_context_nr(ctxn)
8791 perf_event_exit_task_context(child, ctxn);
Jiri Olsa4e93ad62015-11-04 16:00:05 +01008792
8793 /*
8794 * The perf_event_exit_task_context calls perf_event_task
8795 * with child's task_ctx, which generates EXIT events for
8796 * child contexts and sets child->perf_event_ctxp[] to NULL.
8797 * At this point we need to send EXIT events to cpu contexts.
8798 */
8799 perf_event_task(child, NULL, 0);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008800}
8801
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008802static void perf_free_event(struct perf_event *event,
8803 struct perf_event_context *ctx)
8804{
8805 struct perf_event *parent = event->parent;
8806
8807 if (WARN_ON_ONCE(!parent))
8808 return;
8809
8810 mutex_lock(&parent->child_mutex);
8811 list_del_init(&event->child_list);
8812 mutex_unlock(&parent->child_mutex);
8813
Al Viroa6fa9412012-08-20 14:59:25 +01008814 put_event(parent);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008815
Peter Zijlstra652884f2015-01-23 11:20:10 +01008816 raw_spin_lock_irq(&ctx->lock);
Peter Zijlstra8a495422010-05-27 15:47:49 +02008817 perf_group_detach(event);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008818 list_del_event(event, ctx);
Peter Zijlstra652884f2015-01-23 11:20:10 +01008819 raw_spin_unlock_irq(&ctx->lock);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01008820 free_event(event);
8821}
8822
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008823/*
Peter Zijlstra652884f2015-01-23 11:20:10 +01008824 * Free an unexposed, unused context as created by inheritance by
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008825 * perf_event_init_task below, used by fork() in case of fail.
Peter Zijlstra652884f2015-01-23 11:20:10 +01008826 *
8827 * Not all locks are strictly required, but take them anyway to be nice and
8828 * help out with the lockdep assertions.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008829 */
8830void perf_event_free_task(struct task_struct *task)
8831{
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008832 struct perf_event_context *ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008833 struct perf_event *event, *tmp;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008834 int ctxn;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008835
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008836 for_each_task_context_nr(ctxn) {
8837 ctx = task->perf_event_ctxp[ctxn];
8838 if (!ctx)
8839 continue;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008840
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008841 mutex_lock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008842again:
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008843 list_for_each_entry_safe(event, tmp, &ctx->pinned_groups,
8844 group_entry)
8845 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008846
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008847 list_for_each_entry_safe(event, tmp, &ctx->flexible_groups,
8848 group_entry)
8849 perf_free_event(event, ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008850
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008851 if (!list_empty(&ctx->pinned_groups) ||
8852 !list_empty(&ctx->flexible_groups))
8853 goto again;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008854
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008855 mutex_unlock(&ctx->mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008856
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02008857 put_ctx(ctx);
8858 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008859}
8860
Peter Zijlstra4e231c72010-09-09 21:01:59 +02008861void perf_event_delayed_put(struct task_struct *task)
8862{
8863 int ctxn;
8864
8865 for_each_task_context_nr(ctxn)
8866 WARN_ON_ONCE(task->perf_event_ctxp[ctxn]);
8867}
8868
Kaixu Xiaffe86902015-08-06 07:02:32 +00008869struct perf_event *perf_event_get(unsigned int fd)
8870{
8871 int err;
8872 struct fd f;
8873 struct perf_event *event;
8874
8875 err = perf_fget_light(fd, &f);
8876 if (err)
8877 return ERR_PTR(err);
8878
8879 event = f.file->private_data;
8880 atomic_long_inc(&event->refcount);
8881 fdput(f);
8882
8883 return event;
8884}
8885
8886const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
8887{
8888 if (!event)
8889 return ERR_PTR(-EINVAL);
8890
8891 return &event->attr;
8892}
8893
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008894/*
8895 * inherit a event from parent task to child task:
8896 */
8897static struct perf_event *
8898inherit_event(struct perf_event *parent_event,
8899 struct task_struct *parent,
8900 struct perf_event_context *parent_ctx,
8901 struct task_struct *child,
8902 struct perf_event *group_leader,
8903 struct perf_event_context *child_ctx)
8904{
Jiri Olsa1929def2014-09-12 13:18:27 +02008905 enum perf_event_active_state parent_state = parent_event->state;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008906 struct perf_event *child_event;
Peter Zijlstracee010e2010-09-10 12:51:54 +02008907 unsigned long flags;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008908
8909 /*
8910 * Instead of creating recursive hierarchies of events,
8911 * we link inherited events back to the original parent,
8912 * which has a filp for sure, which we use as the reference
8913 * count:
8914 */
8915 if (parent_event->parent)
8916 parent_event = parent_event->parent;
8917
8918 child_event = perf_event_alloc(&parent_event->attr,
8919 parent_event->cpu,
Peter Zijlstrad580ff82010-10-14 17:43:23 +02008920 child,
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008921 group_leader, parent_event,
Matt Fleming79dff512015-01-23 18:45:42 +00008922 NULL, NULL, -1);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008923 if (IS_ERR(child_event))
8924 return child_event;
Al Viroa6fa9412012-08-20 14:59:25 +01008925
Jiri Olsafadfe7b2014-08-01 14:33:02 +02008926 if (is_orphaned_event(parent_event) ||
8927 !atomic_long_inc_not_zero(&parent_event->refcount)) {
Al Viroa6fa9412012-08-20 14:59:25 +01008928 free_event(child_event);
8929 return NULL;
8930 }
8931
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008932 get_ctx(child_ctx);
8933
8934 /*
8935 * Make the child state follow the state of the parent event,
8936 * not its attr.disabled bit. We hold the parent's mutex,
8937 * so we won't race with perf_event_{en, dis}able_family.
8938 */
Jiri Olsa1929def2014-09-12 13:18:27 +02008939 if (parent_state >= PERF_EVENT_STATE_INACTIVE)
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008940 child_event->state = PERF_EVENT_STATE_INACTIVE;
8941 else
8942 child_event->state = PERF_EVENT_STATE_OFF;
8943
8944 if (parent_event->attr.freq) {
8945 u64 sample_period = parent_event->hw.sample_period;
8946 struct hw_perf_event *hwc = &child_event->hw;
8947
8948 hwc->sample_period = sample_period;
8949 hwc->last_period = sample_period;
8950
8951 local64_set(&hwc->period_left, sample_period);
8952 }
8953
8954 child_event->ctx = child_ctx;
8955 child_event->overflow_handler = parent_event->overflow_handler;
Avi Kivity4dc0da82011-06-29 18:42:35 +03008956 child_event->overflow_handler_context
8957 = parent_event->overflow_handler_context;
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008958
8959 /*
Thomas Gleixner614b6782010-12-03 16:24:32 -02008960 * Precalculate sample_data sizes
8961 */
8962 perf_event__header_size(child_event);
Arnaldo Carvalho de Melo6844c092010-12-03 16:36:35 -02008963 perf_event__id_header_size(child_event);
Thomas Gleixner614b6782010-12-03 16:24:32 -02008964
8965 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008966 * Link it up in the child's context:
8967 */
Peter Zijlstracee010e2010-09-10 12:51:54 +02008968 raw_spin_lock_irqsave(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008969 add_event_to_ctx(child_event, child_ctx);
Peter Zijlstracee010e2010-09-10 12:51:54 +02008970 raw_spin_unlock_irqrestore(&child_ctx->lock, flags);
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008971
8972 /*
Peter Zijlstra97dee4f2010-09-07 15:35:33 +02008973 * Link this into the parent event's child list
8974 */
8975 WARN_ON_ONCE(parent_event->ctx->parent_ctx);
8976 mutex_lock(&parent_event->child_mutex);
8977 list_add_tail(&child_event->child_list, &parent_event->child_list);
8978 mutex_unlock(&parent_event->child_mutex);
8979
8980 return child_event;
8981}
8982
8983static int inherit_group(struct perf_event *parent_event,
8984 struct task_struct *parent,
8985 struct perf_event_context *parent_ctx,
8986 struct task_struct *child,
8987 struct perf_event_context *child_ctx)
8988{
8989 struct perf_event *leader;
8990 struct perf_event *sub;
8991 struct perf_event *child_ctr;
8992
8993 leader = inherit_event(parent_event, parent, parent_ctx,
8994 child, NULL, child_ctx);
8995 if (IS_ERR(leader))
8996 return PTR_ERR(leader);
8997 list_for_each_entry(sub, &parent_event->sibling_list, group_entry) {
8998 child_ctr = inherit_event(sub, parent, parent_ctx,
8999 child, leader, child_ctx);
9000 if (IS_ERR(child_ctr))
9001 return PTR_ERR(child_ctr);
9002 }
9003 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009004}
9005
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009006static int
9007inherit_task_group(struct perf_event *event, struct task_struct *parent,
9008 struct perf_event_context *parent_ctx,
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009009 struct task_struct *child, int ctxn,
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009010 int *inherited_all)
9011{
9012 int ret;
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009013 struct perf_event_context *child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009014
9015 if (!event->attr.inherit) {
9016 *inherited_all = 0;
9017 return 0;
9018 }
9019
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009020 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009021 if (!child_ctx) {
9022 /*
9023 * This is executed from the parent task context, so
9024 * inherit events that have been marked for cloning.
9025 * First allocate and initialize a context for the
9026 * child.
9027 */
9028
Jiri Olsa734df5a2013-07-09 17:44:10 +02009029 child_ctx = alloc_perf_context(parent_ctx->pmu, child);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009030 if (!child_ctx)
9031 return -ENOMEM;
9032
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009033 child->perf_event_ctxp[ctxn] = child_ctx;
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009034 }
9035
9036 ret = inherit_group(event, parent, parent_ctx,
9037 child, child_ctx);
9038
9039 if (ret)
9040 *inherited_all = 0;
9041
9042 return ret;
9043}
9044
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009045/*
9046 * Initialize the perf_event context in task_struct
9047 */
Jiri Olsa985c8dc2014-06-24 10:20:24 +02009048static int perf_event_init_context(struct task_struct *child, int ctxn)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009049{
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009050 struct perf_event_context *child_ctx, *parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009051 struct perf_event_context *cloned_ctx;
9052 struct perf_event *event;
9053 struct task_struct *parent = current;
9054 int inherited_all = 1;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009055 unsigned long flags;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009056 int ret = 0;
9057
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009058 if (likely(!parent->perf_event_ctxp[ctxn]))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009059 return 0;
9060
9061 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009062 * If the parent's context is a clone, pin it so it won't get
9063 * swapped under us.
9064 */
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009065 parent_ctx = perf_pin_task_context(parent, ctxn);
Peter Zijlstraffb4ef22014-05-05 19:12:20 +02009066 if (!parent_ctx)
9067 return 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009068
9069 /*
9070 * No need to check if parent_ctx != NULL here; since we saw
9071 * it non-NULL earlier, the only reason for it to become NULL
9072 * is if we exit, and since we're currently in the middle of
9073 * a fork we can't be exiting at the same time.
9074 */
9075
9076 /*
9077 * Lock the parent list. No need to lock the child - not PID
9078 * hashed yet and not running, so nobody can access it.
9079 */
9080 mutex_lock(&parent_ctx->mutex);
9081
9082 /*
9083 * We dont have to disable NMIs - we are only looking at
9084 * the list, not manipulating it:
9085 */
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009086 list_for_each_entry(event, &parent_ctx->pinned_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009087 ret = inherit_task_group(event, parent, parent_ctx,
9088 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009089 if (ret)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009090 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009091 }
9092
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009093 /*
9094 * We can't hold ctx->lock when iterating the ->flexible_group list due
9095 * to allocations, but we need to prevent rotation because
9096 * rotate_ctx() will change the list from interrupt context.
9097 */
9098 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9099 parent_ctx->rotate_disable = 1;
9100 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
9101
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009102 list_for_each_entry(event, &parent_ctx->flexible_groups, group_entry) {
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009103 ret = inherit_task_group(event, parent, parent_ctx,
9104 child, ctxn, &inherited_all);
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009105 if (ret)
9106 break;
9107 }
9108
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009109 raw_spin_lock_irqsave(&parent_ctx->lock, flags);
9110 parent_ctx->rotate_disable = 0;
Thomas Gleixnerdddd3372010-11-24 10:05:55 +01009111
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009112 child_ctx = child->perf_event_ctxp[ctxn];
Frederic Weisbecker889ff012010-01-09 20:04:47 +01009113
Peter Zijlstra05cbaa22009-12-30 16:00:35 +01009114 if (child_ctx && inherited_all) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009115 /*
9116 * Mark the child context as a clone of the parent
9117 * context, or of whatever the parent is a clone of.
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009118 *
9119 * Note that if the parent is a clone, the holding of
9120 * parent_ctx->lock avoids it from being uncloned.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009121 */
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009122 cloned_ctx = parent_ctx->parent_ctx;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009123 if (cloned_ctx) {
9124 child_ctx->parent_ctx = cloned_ctx;
9125 child_ctx->parent_gen = parent_ctx->parent_gen;
9126 } else {
9127 child_ctx->parent_ctx = parent_ctx;
9128 child_ctx->parent_gen = parent_ctx->generation;
9129 }
9130 get_ctx(child_ctx->parent_ctx);
9131 }
9132
Peter Zijlstrac5ed5142011-01-17 13:45:37 +01009133 raw_spin_unlock_irqrestore(&parent_ctx->lock, flags);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009134 mutex_unlock(&parent_ctx->mutex);
9135
9136 perf_unpin_context(parent_ctx);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01009137 put_ctx(parent_ctx);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009138
9139 return ret;
9140}
9141
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009142/*
9143 * Initialize the perf_event context in task_struct
9144 */
9145int perf_event_init_task(struct task_struct *child)
9146{
9147 int ctxn, ret;
9148
Oleg Nesterov8550d7c2011-01-19 19:22:28 +01009149 memset(child->perf_event_ctxp, 0, sizeof(child->perf_event_ctxp));
9150 mutex_init(&child->perf_event_mutex);
9151 INIT_LIST_HEAD(&child->perf_event_list);
9152
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009153 for_each_task_context_nr(ctxn) {
9154 ret = perf_event_init_context(child, ctxn);
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009155 if (ret) {
9156 perf_event_free_task(child);
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009157 return ret;
Peter Zijlstra6c72e3502014-10-02 16:17:02 -07009158 }
Peter Zijlstra8dc85d5472010-09-02 16:50:03 +02009159 }
9160
9161 return 0;
9162}
9163
Paul Mackerras220b1402010-03-10 20:45:52 +11009164static void __init perf_event_init_all_cpus(void)
9165{
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009166 struct swevent_htable *swhash;
Paul Mackerras220b1402010-03-10 20:45:52 +11009167 int cpu;
Paul Mackerras220b1402010-03-10 20:45:52 +11009168
9169 for_each_possible_cpu(cpu) {
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009170 swhash = &per_cpu(swevent_htable, cpu);
9171 mutex_init(&swhash->hlist_mutex);
Mark Rutland2fde4f92015-01-07 15:01:54 +00009172 INIT_LIST_HEAD(&per_cpu(active_ctx_list, cpu));
Paul Mackerras220b1402010-03-10 20:45:52 +11009173 }
9174}
9175
Paul Gortmaker0db06282013-06-19 14:53:51 -04009176static void perf_event_init_cpu(int cpu)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009177{
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009178 struct swevent_htable *swhash = &per_cpu(swevent_htable, cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009179
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009180 mutex_lock(&swhash->hlist_mutex);
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009181 if (swhash->hlist_refcount > 0) {
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009182 struct swevent_hlist *hlist;
9183
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009184 hlist = kzalloc_node(sizeof(*hlist), GFP_KERNEL, cpu_to_node(cpu));
9185 WARN_ON(!hlist);
9186 rcu_assign_pointer(swhash->swevent_hlist, hlist);
Frederic Weisbecker76e1d902010-04-05 15:35:57 +02009187 }
Peter Zijlstrab28ab832010-09-06 14:48:15 +02009188 mutex_unlock(&swhash->hlist_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009189}
9190
Dave Young2965faa2015-09-09 15:38:55 -07009191#if defined CONFIG_HOTPLUG_CPU || defined CONFIG_KEXEC_CORE
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009192static void __perf_event_exit_context(void *__info)
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009193{
Mark Rutland226424e2014-11-05 16:11:44 +00009194 struct remove_event re = { .detach_group = true };
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009195 struct perf_event_context *ctx = __info;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009196
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009197 rcu_read_lock();
Peter Zijlstra46ce0fe2014-05-02 16:56:01 +02009198 list_for_each_entry_rcu(re.event, &ctx->event_list, event_entry)
9199 __perf_remove_from_context(&re);
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009200 rcu_read_unlock();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009201}
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009202
9203static void perf_event_exit_cpu_context(int cpu)
9204{
9205 struct perf_event_context *ctx;
9206 struct pmu *pmu;
9207 int idx;
9208
9209 idx = srcu_read_lock(&pmus_srcu);
9210 list_for_each_entry_rcu(pmu, &pmus, entry) {
Peter Zijlstra917bdd12010-09-17 11:28:49 +02009211 ctx = &per_cpu_ptr(pmu->pmu_cpu_context, cpu)->ctx;
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009212
9213 mutex_lock(&ctx->mutex);
9214 smp_call_function_single(cpu, __perf_event_exit_context, ctx, 1);
9215 mutex_unlock(&ctx->mutex);
9216 }
9217 srcu_read_unlock(&pmus_srcu, idx);
Peter Zijlstra108b02c2010-09-06 14:32:03 +02009218}
9219
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009220static void perf_event_exit_cpu(int cpu)
9221{
Peter Zijlstrae3703f82014-02-24 12:06:12 +01009222 perf_event_exit_cpu_context(cpu);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009223}
9224#else
9225static inline void perf_event_exit_cpu(int cpu) { }
9226#endif
9227
Peter Zijlstrac2774432010-12-08 15:29:02 +01009228static int
9229perf_reboot(struct notifier_block *notifier, unsigned long val, void *v)
9230{
9231 int cpu;
9232
9233 for_each_online_cpu(cpu)
9234 perf_event_exit_cpu(cpu);
9235
9236 return NOTIFY_OK;
9237}
9238
9239/*
9240 * Run the perf reboot notifier at the very last possible moment so that
9241 * the generic watchdog code runs as long as possible.
9242 */
9243static struct notifier_block perf_reboot_notifier = {
9244 .notifier_call = perf_reboot,
9245 .priority = INT_MIN,
9246};
9247
Paul Gortmaker0db06282013-06-19 14:53:51 -04009248static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009249perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
9250{
9251 unsigned int cpu = (long)hcpu;
9252
Linus Torvalds4536e4d2011-11-03 07:44:04 -07009253 switch (action & ~CPU_TASKS_FROZEN) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009254
9255 case CPU_UP_PREPARE:
Peter Zijlstra5e116372010-06-11 13:35:08 +02009256 case CPU_DOWN_FAILED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009257 perf_event_init_cpu(cpu);
9258 break;
9259
Peter Zijlstra5e116372010-06-11 13:35:08 +02009260 case CPU_UP_CANCELED:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009261 case CPU_DOWN_PREPARE:
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009262 perf_event_exit_cpu(cpu);
9263 break;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009264 default:
9265 break;
9266 }
9267
9268 return NOTIFY_OK;
9269}
9270
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009271void __init perf_event_init(void)
9272{
Jason Wessel3c502e72010-11-04 17:33:01 -05009273 int ret;
9274
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009275 idr_init(&pmu_idr);
9276
Paul Mackerras220b1402010-03-10 20:45:52 +11009277 perf_event_init_all_cpus();
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009278 init_srcu_struct(&pmus_srcu);
Peter Zijlstra2e80a822010-11-17 23:17:36 +01009279 perf_pmu_register(&perf_swevent, "software", PERF_TYPE_SOFTWARE);
9280 perf_pmu_register(&perf_cpu_clock, NULL, -1);
9281 perf_pmu_register(&perf_task_clock, NULL, -1);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02009282 perf_tp_register();
9283 perf_cpu_notifier(perf_cpu_notify);
Peter Zijlstrac2774432010-12-08 15:29:02 +01009284 register_reboot_notifier(&perf_reboot_notifier);
Jason Wessel3c502e72010-11-04 17:33:01 -05009285
9286 ret = init_hw_breakpoint();
9287 WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
Gleb Natapovb2029522011-11-27 17:59:09 +02009288
9289 /* do not patch jump label more than once per second */
9290 jump_label_rate_limit(&perf_sched_events, HZ);
Jiri Olsab01c3a02012-03-23 15:41:20 +01009291
9292 /*
9293 * Build time assertion that we keep the data_head at the intended
9294 * location. IOW, validation we got the __reserved[] size right.
9295 */
9296 BUILD_BUG_ON((offsetof(struct perf_event_mmap_page, data_head))
9297 != 1024);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02009298}
Peter Zijlstraabe43402010-11-17 23:17:37 +01009299
Cody P Schaferfd979c02015-01-30 13:45:57 -08009300ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
9301 char *page)
9302{
9303 struct perf_pmu_events_attr *pmu_attr =
9304 container_of(attr, struct perf_pmu_events_attr, attr);
9305
9306 if (pmu_attr->event_str)
9307 return sprintf(page, "%s\n", pmu_attr->event_str);
9308
9309 return 0;
9310}
9311
Peter Zijlstraabe43402010-11-17 23:17:37 +01009312static int __init perf_event_sysfs_init(void)
9313{
9314 struct pmu *pmu;
9315 int ret;
9316
9317 mutex_lock(&pmus_lock);
9318
9319 ret = bus_register(&pmu_bus);
9320 if (ret)
9321 goto unlock;
9322
9323 list_for_each_entry(pmu, &pmus, entry) {
9324 if (!pmu->name || pmu->type < 0)
9325 continue;
9326
9327 ret = pmu_dev_alloc(pmu);
9328 WARN(ret, "Failed to register pmu: %s, reason %d\n", pmu->name, ret);
9329 }
9330 pmu_bus_running = 1;
9331 ret = 0;
9332
9333unlock:
9334 mutex_unlock(&pmus_lock);
9335
9336 return ret;
9337}
9338device_initcall(perf_event_sysfs_init);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009339
9340#ifdef CONFIG_CGROUP_PERF
Tejun Heoeb954192013-08-08 20:11:23 -04009341static struct cgroup_subsys_state *
9342perf_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009343{
9344 struct perf_cgroup *jc;
Stephane Eraniane5d13672011-02-14 11:20:01 +02009345
Li Zefan1b15d052011-03-03 14:26:06 +08009346 jc = kzalloc(sizeof(*jc), GFP_KERNEL);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009347 if (!jc)
9348 return ERR_PTR(-ENOMEM);
9349
Stephane Eraniane5d13672011-02-14 11:20:01 +02009350 jc->info = alloc_percpu(struct perf_cgroup_info);
9351 if (!jc->info) {
9352 kfree(jc);
9353 return ERR_PTR(-ENOMEM);
9354 }
9355
Stephane Eraniane5d13672011-02-14 11:20:01 +02009356 return &jc->css;
9357}
9358
Tejun Heoeb954192013-08-08 20:11:23 -04009359static void perf_cgroup_css_free(struct cgroup_subsys_state *css)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009360{
Tejun Heoeb954192013-08-08 20:11:23 -04009361 struct perf_cgroup *jc = container_of(css, struct perf_cgroup, css);
9362
Stephane Eraniane5d13672011-02-14 11:20:01 +02009363 free_percpu(jc->info);
9364 kfree(jc);
9365}
9366
9367static int __perf_cgroup_move(void *info)
9368{
9369 struct task_struct *task = info;
Stephane Eranianddaaf4e2015-11-12 11:00:03 +01009370 rcu_read_lock();
Stephane Eraniane5d13672011-02-14 11:20:01 +02009371 perf_cgroup_switch(task, PERF_CGROUP_SWOUT | PERF_CGROUP_SWIN);
Stephane Eranianddaaf4e2015-11-12 11:00:03 +01009372 rcu_read_unlock();
Stephane Eraniane5d13672011-02-14 11:20:01 +02009373 return 0;
9374}
9375
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009376static void perf_cgroup_attach(struct cgroup_taskset *tset)
Stephane Eraniane5d13672011-02-14 11:20:01 +02009377{
Tejun Heobb9d97b2011-12-12 18:12:21 -08009378 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009379 struct cgroup_subsys_state *css;
Tejun Heobb9d97b2011-12-12 18:12:21 -08009380
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05009381 cgroup_taskset_for_each(task, css, tset)
Tejun Heobb9d97b2011-12-12 18:12:21 -08009382 task_function_call(task, __perf_cgroup_move, task);
Stephane Eraniane5d13672011-02-14 11:20:01 +02009383}
9384
Tejun Heo073219e2014-02-08 10:36:58 -05009385struct cgroup_subsys perf_event_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08009386 .css_alloc = perf_cgroup_css_alloc,
9387 .css_free = perf_cgroup_css_free,
Tejun Heobb9d97b2011-12-12 18:12:21 -08009388 .attach = perf_cgroup_attach,
Stephane Eraniane5d13672011-02-14 11:20:01 +02009389};
9390#endif /* CONFIG_CGROUP_PERF */